From b893426b82492e59388a326b824a346d829487e8 Mon Sep 17 00:00:00 2001 From: Guillaume Brunerie Date: Tue, 11 Jul 2023 18:42:45 +0200 Subject: [PATCH] fixes for JSX --- common/corpus/declarations.txt | 6 +- common/define-grammar.js | 33 +- package.json | 2 +- tsx/corpus/expressions.txt | 6 + tsx/src/grammar.json | 227 +- tsx/src/node-types.json | 100 +- tsx/src/parser.c | 278279 +++++++++++++++--------------- typescript/src/grammar.json | 223 +- typescript/src/node-types.json | 92 +- typescript/src/parser.c | 253752 +++++++++++++-------------- 10 files changed, 266916 insertions(+), 265804 deletions(-) diff --git a/common/corpus/declarations.txt b/common/corpus/declarations.txt index e09475a2f..d8699087c 100644 --- a/common/corpus/declarations.txt +++ b/common/corpus/declarations.txt @@ -125,7 +125,7 @@ declare module Foo { (ambient_declaration (module - name: (nested_identifier (identifier) (identifier)) + name: (nested_identifier (identifier) (property_identifier)) body: (statement_block (export_statement declaration: (variable_declaration (variable_declarator name: (identifier))))))) @@ -320,7 +320,7 @@ import r = X.N; --- (program - (import_alias (identifier) (nested_identifier (identifier) (identifier)))) + (import_alias (identifier) (nested_identifier (identifier) (property_identifier)))) ================================== Import aliases in modules @@ -334,7 +334,7 @@ module C { (program (module (identifier) (statement_block - (import_alias (identifier) (nested_identifier (identifier) (identifier)))))) + (import_alias (identifier) (nested_identifier (identifier) (property_identifier)))))) ================================== Export import aliases diff --git a/common/define-grammar.js b/common/define-grammar.js index 9ce0a8413..fff62496b 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -214,7 +214,7 @@ module.exports = function defineGrammar(dialect) { if (dialect === 'typescript') { choices.push($.type_assertion); choices.push(...previous.members.filter(member => - member.name !== '_jsx_element' && member.name !== 'jsx_fragment' + member.name !== '_jsx_element' )); } else if (dialect === 'tsx') { choices.push(...previous.members); @@ -227,20 +227,24 @@ module.exports = function defineGrammar(dialect) { _jsx_start_opening_element: $ => seq( '<', - choice( - field('name', choice( - $._jsx_identifier, - $.jsx_namespace_name - )), + optional( seq( - field('name', choice( - $.identifier, - $.nested_identifier - )), - field('type_arguments', optional($.type_arguments)) - ) + choice( + field('name', choice( + $._jsx_identifier, + $.jsx_namespace_name + )), + seq( + field('name', choice( + $.identifier, + $.nested_identifier + )), + field('type_arguments', optional($.type_arguments)) + ) + ), + repeat(field('attribute', $._jsx_attribute)), + ), ), - repeat(field('attribute', $._jsx_attribute)) ), // This rule is only referenced by expression when the dialect is 'tsx' @@ -252,8 +256,7 @@ module.exports = function defineGrammar(dialect) { // tsx only. See jsx_opening_element. jsx_self_closing_element: $ => prec.dynamic(-1, seq( $._jsx_start_opening_element, - '/', - '>' + '/>' )), export_specifier: ($, previous) => seq( diff --git a/package.json b/package.json index 5818f762f..9379e9a02 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "main": "./bindings/node", "devDependencies": { "tree-sitter-cli": "^0.20.6", - "tree-sitter-javascript": "github:tree-sitter/tree-sitter-javascript#d15843d" + "tree-sitter-javascript": "github:tree-sitter/tree-sitter-javascript#f772967" }, "scripts": { "build": "npm run build-typescript && npm run build-tsx", diff --git a/tsx/corpus/expressions.txt b/tsx/corpus/expressions.txt index 099f54b4a..db87b514c 100644 --- a/tsx/corpus/expressions.txt +++ b/tsx/corpus/expressions.txt @@ -4,6 +4,7 @@ Type arguments in JSX >hi; />; +<>fragment; --- @@ -16,4 +17,9 @@ Type arguments in JSX (expression_statement (jsx_self_closing_element (identifier) (type_arguments (type_identifier)))) + (expression_statement + (jsx_element + (jsx_opening_element) + (jsx_text) + (jsx_closing_element))) ) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 325f78429..6a8be96a7 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -1976,10 +1976,6 @@ "type": "SYMBOL", "name": "_jsx_element" }, - { - "type": "SYMBOL", - "name": "jsx_fragment" - }, { "type": "SYMBOL", "name": "assignment_expression" @@ -2782,42 +2778,19 @@ } ] }, - "jsx_fragment": { - "type": "SEQ", + "jsx_text": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_jsx_child" - } - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" + "type": "PATTERN", + "value": "[^{}<>\\n ]([^{}<>\\n]*[^{}<>\\n ])?" }, { - "type": "STRING", - "value": ">" + "type": "PATTERN", + "value": "\\/\\/[^\\n]*" } ] }, - "jsx_text": { - "type": "PATTERN", - "value": "[^{}<>]+" - }, "jsx_expression": { "type": "SEQ", "members": [ @@ -2867,10 +2840,6 @@ "type": "SYMBOL", "name": "_jsx_element" }, - { - "type": "SYMBOL", - "name": "jsx_fragment" - }, { "type": "SYMBOL", "name": "jsx_expression" @@ -2930,8 +2899,13 @@ "name": "identifier" }, { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" } ] }, @@ -2940,8 +2914,13 @@ "value": "." }, { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" } ] } @@ -2971,8 +2950,13 @@ "name": "_jsx_identifier" }, { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" }, { "type": "SYMBOL", @@ -2985,19 +2969,23 @@ "members": [ { "type": "STRING", - "value": "<" + "value": "" + "value": "/>" } ] } @@ -3101,10 +3085,6 @@ { "type": "SYMBOL", "name": "_jsx_element" - }, - { - "type": "SYMBOL", - "name": "jsx_fragment" } ] }, @@ -7213,73 +7193,86 @@ { "type": "CHOICE", "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_jsx_identifier" - }, - { - "type": "SYMBOL", - "name": "jsx_namespace_name" - } - ] - } - }, { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] } - ] - } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "nested_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + ] }, { - "type": "FIELD", - "name": "type_arguments", + "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } } } ] + }, + { + "type": "BLANK" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "FIELD", - "name": "attribute", - "content": { - "type": "SYMBOL", - "name": "_jsx_attribute" - } - } } ] }, diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 2954bb8ec..62d1a0b28 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -179,10 +179,6 @@ "type": "jsx_element", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_self_closing_element", "named": true @@ -3256,10 +3252,6 @@ "type": "jsx_expression", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_namespace_name", "named": true @@ -3285,7 +3277,7 @@ "fields": { "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3296,7 +3288,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -3340,10 +3332,6 @@ "type": "jsx_expression", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_self_closing_element", "named": true @@ -3378,37 +3366,6 @@ ] } }, - { - "type": "jsx_fragment", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "jsx_element", - "named": true - }, - { - "type": "jsx_expression", - "named": true - }, - { - "type": "jsx_fragment", - "named": true - }, - { - "type": "jsx_self_closing_element", - "named": true - }, - { - "type": "jsx_text", - "named": true - } - ] - } - }, { "type": "jsx_namespace_name", "named": true, @@ -3444,7 +3401,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3492,7 +3449,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3520,6 +3477,11 @@ } } }, + { + "type": "jsx_text", + "named": true, + "fields": {} + }, { "type": "labeled_statement", "named": true, @@ -3720,7 +3682,7 @@ "fields": { "object": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "expression", @@ -3740,7 +3702,7 @@ }, "property": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "private_property_identifier", @@ -3752,6 +3714,24 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "property_identifier", + "named": true + } + ] } }, { @@ -4033,7 +4013,11 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", + "named": true + }, + { + "type": "property_identifier", "named": true } ] @@ -6020,6 +6004,10 @@ "type": "/=", "named": false }, + { + "type": "/>", + "named": false + }, { "type": ":", "named": false @@ -6032,6 +6020,10 @@ "type": "<", "named": false }, + { + "type": "", "named": false @@ -6296,10 +6288,6 @@ "type": "is", "named": false }, - { - "type": "jsx_text", - "named": true - }, { "type": "keyof", "named": false @@ -6330,11 +6318,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "object", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 38295f390..d2954e5b0 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4456 -#define LARGE_STATE_COUNT 981 -#define SYMBOL_COUNT 374 +#define STATE_COUNT 4437 +#define LARGE_STATE_COUNT 985 +#define SYMBOL_COUNT 377 #define ALIAS_COUNT 6 -#define TOKEN_COUNT 162 +#define TOKEN_COUNT 165 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 44 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 277 +#define PRODUCTION_ID_COUNT 280 enum { sym_identifier = 1, @@ -65,337 +65,340 @@ enum { sym__glimmer_template_content = 46, anon_sym_LTtemplate_GT = 47, anon_sym_LT_SLASHtemplate_GT = 48, - anon_sym_LT = 49, - anon_sym_GT = 50, - anon_sym_SLASH = 51, - sym_jsx_text = 52, - sym_jsx_identifier = 53, - anon_sym_DOT = 54, - anon_sym_class = 55, - anon_sym_async = 56, - anon_sym_function = 57, - anon_sym_EQ_GT = 58, - anon_sym_QMARK_DOT = 59, - anon_sym_new = 60, - anon_sym_PLUS_EQ = 61, - anon_sym_DASH_EQ = 62, - anon_sym_STAR_EQ = 63, - anon_sym_SLASH_EQ = 64, - anon_sym_PERCENT_EQ = 65, - anon_sym_CARET_EQ = 66, - anon_sym_AMP_EQ = 67, - anon_sym_PIPE_EQ = 68, - anon_sym_GT_GT_EQ = 69, - anon_sym_GT_GT_GT_EQ = 70, - anon_sym_LT_LT_EQ = 71, - anon_sym_STAR_STAR_EQ = 72, - anon_sym_AMP_AMP_EQ = 73, - anon_sym_PIPE_PIPE_EQ = 74, - anon_sym_QMARK_QMARK_EQ = 75, - anon_sym_DOT_DOT_DOT = 76, - anon_sym_AMP_AMP = 77, - anon_sym_PIPE_PIPE = 78, - anon_sym_GT_GT = 79, - anon_sym_GT_GT_GT = 80, - anon_sym_LT_LT = 81, - anon_sym_AMP = 82, - anon_sym_CARET = 83, - anon_sym_PIPE = 84, - anon_sym_PLUS = 85, - anon_sym_DASH = 86, - anon_sym_PERCENT = 87, - anon_sym_STAR_STAR = 88, - anon_sym_LT_EQ = 89, - anon_sym_EQ_EQ = 90, - anon_sym_EQ_EQ_EQ = 91, - anon_sym_BANG_EQ = 92, - anon_sym_BANG_EQ_EQ = 93, - anon_sym_GT_EQ = 94, - anon_sym_QMARK_QMARK = 95, - anon_sym_instanceof = 96, - anon_sym_TILDE = 97, - anon_sym_void = 98, - anon_sym_delete = 99, - anon_sym_PLUS_PLUS = 100, - anon_sym_DASH_DASH = 101, - anon_sym_DQUOTE = 102, - anon_sym_SQUOTE = 103, - sym_unescaped_double_string_fragment = 104, - sym_unescaped_single_string_fragment = 105, - sym_escape_sequence = 106, - sym_comment = 107, - anon_sym_BQUOTE = 108, - anon_sym_DOLLAR_LBRACE = 109, - anon_sym_SLASH2 = 110, - sym_regex_pattern = 111, - sym_regex_flags = 112, - sym_number = 113, - sym_private_property_identifier = 114, - anon_sym_target = 115, - sym_this = 116, - sym_super = 117, - sym_true = 118, - sym_false = 119, - sym_null = 120, - sym_undefined = 121, - anon_sym_AT = 122, - anon_sym_static = 123, - anon_sym_readonly = 124, - anon_sym_get = 125, - anon_sym_set = 126, - anon_sym_QMARK = 127, - anon_sym_declare = 128, - anon_sym_public = 129, - anon_sym_private = 130, - anon_sym_protected = 131, - anon_sym_override = 132, - anon_sym_module = 133, - anon_sym_any = 134, - anon_sym_number = 135, - anon_sym_boolean = 136, - anon_sym_string = 137, - anon_sym_symbol = 138, - anon_sym_abstract = 139, - anon_sym_satisfies = 140, - anon_sym_require = 141, - anon_sym_extends = 142, - anon_sym_implements = 143, - anon_sym_global = 144, - anon_sym_interface = 145, - anon_sym_enum = 146, - anon_sym_DASH_QMARK_COLON = 147, - anon_sym_QMARK_COLON = 148, - anon_sym_asserts = 149, - anon_sym_infer = 150, - anon_sym_is = 151, - anon_sym_keyof = 152, - anon_sym_unknown = 153, - anon_sym_never = 154, - anon_sym_object = 155, - anon_sym_LBRACE_PIPE = 156, - anon_sym_PIPE_RBRACE = 157, - sym__automatic_semicolon = 158, - sym__template_chars = 159, - sym__ternary_qmark = 160, - sym__function_signature_automatic_semicolon = 161, - sym_program = 162, - sym_export_statement = 163, - sym_namespace_export = 164, - sym_export_clause = 165, - sym_export_specifier = 166, - sym__module_export_name = 167, - sym_declaration = 168, - sym_import = 169, - sym_import_statement = 170, - sym_import_clause = 171, - sym__from_clause = 172, - sym_namespace_import = 173, - sym_named_imports = 174, - sym_import_specifier = 175, - sym_expression_statement = 176, - sym_variable_declaration = 177, - sym_lexical_declaration = 178, - sym_variable_declarator = 179, - sym_statement_block = 180, - sym_else_clause = 181, - sym_if_statement = 182, - sym_switch_statement = 183, - sym_for_statement = 184, - sym_for_in_statement = 185, - sym__for_header = 186, - sym_while_statement = 187, - sym_do_statement = 188, - sym_try_statement = 189, - sym_with_statement = 190, - sym_break_statement = 191, - sym_continue_statement = 192, - sym_debugger_statement = 193, - sym_return_statement = 194, - sym_throw_statement = 195, - sym_empty_statement = 196, - sym_labeled_statement = 197, - sym_switch_body = 198, - sym_switch_case = 199, - sym_switch_default = 200, - sym_catch_clause = 201, - sym_finally_clause = 202, - sym_parenthesized_expression = 203, - sym_expression = 204, - sym_primary_expression = 205, - sym_yield_expression = 206, - sym_object = 207, - sym_object_pattern = 208, - sym_assignment_pattern = 209, - sym_object_assignment_pattern = 210, - sym_array = 211, - sym_array_pattern = 212, - sym_glimmer_template = 213, - sym_glimmer_opening_tag = 214, - sym_glimmer_closing_tag = 215, - sym_jsx_element = 216, - sym_jsx_fragment = 217, - sym_jsx_expression = 218, - sym_jsx_opening_element = 219, - sym_nested_identifier = 220, - sym_jsx_namespace_name = 221, - sym_jsx_closing_element = 222, - sym_jsx_self_closing_element = 223, - sym_jsx_attribute = 224, - sym_class = 225, - sym_class_declaration = 226, - sym_class_heritage = 227, - sym_function = 228, - sym_function_declaration = 229, - sym_generator_function = 230, - sym_generator_function_declaration = 231, - sym_arrow_function = 232, - sym__call_signature = 233, - sym__formal_parameter = 234, - sym_optional_chain = 235, - sym_call_expression = 236, - sym_new_expression = 237, - sym_await_expression = 238, - sym_member_expression = 239, - sym_subscript_expression = 240, - sym_assignment_expression = 241, - sym__augmented_assignment_lhs = 242, - sym_augmented_assignment_expression = 243, - sym__initializer = 244, - sym__destructuring_pattern = 245, - sym_spread_element = 246, - sym_ternary_expression = 247, - sym_binary_expression = 248, - sym_unary_expression = 249, - sym_update_expression = 250, - sym_sequence_expression = 251, - sym_string = 252, - sym_template_string = 253, - sym_template_substitution = 254, - sym_regex = 255, - sym_meta_property = 256, - sym_arguments = 257, - sym_decorator = 258, - sym_decorator_member_expression = 259, - sym_decorator_call_expression = 260, - sym_class_body = 261, - sym_formal_parameters = 262, - sym_class_static_block = 263, - sym_pattern = 264, - sym_rest_pattern = 265, - sym_method_definition = 266, - sym_pair = 267, - sym_pair_pattern = 268, - sym__property_name = 269, - sym_computed_property_name = 270, - sym_public_field_definition = 271, - sym__import_identifier = 272, - sym_non_null_expression = 273, - sym_method_signature = 274, - sym_abstract_method_signature = 275, - sym_function_signature = 276, - sym_as_expression = 277, - sym_satisfies_expression = 278, - sym_import_require_clause = 279, - sym_extends_clause = 280, - sym_implements_clause = 281, - sym_ambient_declaration = 282, - sym_abstract_class_declaration = 283, - sym_module = 284, - sym_internal_module = 285, - sym__module = 286, - sym_import_alias = 287, - sym_nested_type_identifier = 288, - sym_interface_declaration = 289, - sym_extends_type_clause = 290, - sym_enum_declaration = 291, - sym_enum_body = 292, - sym_enum_assignment = 293, - sym_type_alias_declaration = 294, - sym_accessibility_modifier = 295, - sym_override_modifier = 296, - sym_required_parameter = 297, - sym_optional_parameter = 298, - sym__parameter_name = 299, - sym_omitting_type_annotation = 300, - sym_opting_type_annotation = 301, - sym_type_annotation = 302, - sym_asserts = 303, - sym__type = 304, - sym_tuple_parameter = 305, - sym_optional_tuple_parameter = 306, - sym_optional_type = 307, - sym_rest_type = 308, - sym__tuple_type_member = 309, - sym_constructor_type = 310, - sym__primary_type = 311, - sym_template_type = 312, - sym_template_literal_type = 313, - sym_infer_type = 314, - sym_conditional_type = 315, - sym_generic_type = 316, - sym_type_predicate = 317, - sym_type_predicate_annotation = 318, - sym__type_query_member_expression = 319, - sym__type_query_subscript_expression = 320, - sym__type_query_call_expression = 321, - sym_type_query = 322, - sym_index_type_query = 323, - sym_lookup_type = 324, - sym_mapped_type_clause = 325, - sym_literal_type = 326, - sym__number = 327, - sym_existential_type = 328, - sym_flow_maybe_type = 329, - sym_parenthesized_type = 330, - sym_predefined_type = 331, - sym_type_arguments = 332, - sym_object_type = 333, - sym_call_signature = 334, - sym_property_signature = 335, - sym_type_parameters = 336, - sym_type_parameter = 337, - sym_default_type = 338, - sym_constraint = 339, - sym_construct_signature = 340, - sym_index_signature = 341, - sym_array_type = 342, - sym_tuple_type = 343, - sym_readonly_type = 344, - sym_union_type = 345, - sym_intersection_type = 346, - sym_function_type = 347, - aux_sym_program_repeat1 = 348, - aux_sym_export_statement_repeat1 = 349, - aux_sym_export_clause_repeat1 = 350, - aux_sym_named_imports_repeat1 = 351, - aux_sym_variable_declaration_repeat1 = 352, - aux_sym_switch_body_repeat1 = 353, - aux_sym_object_repeat1 = 354, - aux_sym_object_pattern_repeat1 = 355, - aux_sym_array_repeat1 = 356, - aux_sym_array_pattern_repeat1 = 357, - aux_sym_glimmer_template_repeat1 = 358, - aux_sym_jsx_element_repeat1 = 359, - aux_sym_string_repeat1 = 360, - aux_sym_string_repeat2 = 361, - aux_sym_template_string_repeat1 = 362, - aux_sym_class_body_repeat1 = 363, - aux_sym_formal_parameters_repeat1 = 364, - aux_sym__jsx_start_opening_element_repeat1 = 365, - aux_sym_extends_clause_repeat1 = 366, - aux_sym_implements_clause_repeat1 = 367, - aux_sym_extends_type_clause_repeat1 = 368, - aux_sym_enum_body_repeat1 = 369, - aux_sym_template_literal_type_repeat1 = 370, - aux_sym_object_type_repeat1 = 371, - aux_sym_type_parameters_repeat1 = 372, - aux_sym_tuple_type_repeat1 = 373, - alias_sym_property_identifier = 374, - alias_sym_shorthand_property_identifier = 375, - alias_sym_shorthand_property_identifier_pattern = 376, - alias_sym_statement_identifier = 377, - alias_sym_this_type = 378, - alias_sym_type_identifier = 379, + aux_sym_jsx_text_token1 = 49, + aux_sym_jsx_text_token2 = 50, + anon_sym_GT = 51, + sym_jsx_identifier = 52, + anon_sym_DOT = 53, + anon_sym_LT_SLASH = 54, + anon_sym_SLASH_GT = 55, + anon_sym_class = 56, + anon_sym_async = 57, + anon_sym_function = 58, + anon_sym_EQ_GT = 59, + anon_sym_QMARK_DOT = 60, + anon_sym_new = 61, + anon_sym_PLUS_EQ = 62, + anon_sym_DASH_EQ = 63, + anon_sym_STAR_EQ = 64, + anon_sym_SLASH_EQ = 65, + anon_sym_PERCENT_EQ = 66, + anon_sym_CARET_EQ = 67, + anon_sym_AMP_EQ = 68, + anon_sym_PIPE_EQ = 69, + anon_sym_GT_GT_EQ = 70, + anon_sym_GT_GT_GT_EQ = 71, + anon_sym_LT_LT_EQ = 72, + anon_sym_STAR_STAR_EQ = 73, + anon_sym_AMP_AMP_EQ = 74, + anon_sym_PIPE_PIPE_EQ = 75, + anon_sym_QMARK_QMARK_EQ = 76, + anon_sym_DOT_DOT_DOT = 77, + anon_sym_AMP_AMP = 78, + anon_sym_PIPE_PIPE = 79, + anon_sym_GT_GT = 80, + anon_sym_GT_GT_GT = 81, + anon_sym_LT_LT = 82, + anon_sym_AMP = 83, + anon_sym_CARET = 84, + anon_sym_PIPE = 85, + anon_sym_PLUS = 86, + anon_sym_DASH = 87, + anon_sym_SLASH = 88, + anon_sym_PERCENT = 89, + anon_sym_STAR_STAR = 90, + anon_sym_LT = 91, + anon_sym_LT_EQ = 92, + anon_sym_EQ_EQ = 93, + anon_sym_EQ_EQ_EQ = 94, + anon_sym_BANG_EQ = 95, + anon_sym_BANG_EQ_EQ = 96, + anon_sym_GT_EQ = 97, + anon_sym_QMARK_QMARK = 98, + anon_sym_instanceof = 99, + anon_sym_TILDE = 100, + anon_sym_void = 101, + anon_sym_delete = 102, + anon_sym_PLUS_PLUS = 103, + anon_sym_DASH_DASH = 104, + anon_sym_DQUOTE = 105, + anon_sym_SQUOTE = 106, + sym_unescaped_double_string_fragment = 107, + sym_unescaped_single_string_fragment = 108, + sym_escape_sequence = 109, + sym_comment = 110, + anon_sym_BQUOTE = 111, + anon_sym_DOLLAR_LBRACE = 112, + anon_sym_SLASH2 = 113, + sym_regex_pattern = 114, + sym_regex_flags = 115, + sym_number = 116, + sym_private_property_identifier = 117, + anon_sym_target = 118, + sym_this = 119, + sym_super = 120, + sym_true = 121, + sym_false = 122, + sym_null = 123, + sym_undefined = 124, + anon_sym_AT = 125, + anon_sym_static = 126, + anon_sym_readonly = 127, + anon_sym_get = 128, + anon_sym_set = 129, + anon_sym_QMARK = 130, + anon_sym_declare = 131, + anon_sym_public = 132, + anon_sym_private = 133, + anon_sym_protected = 134, + anon_sym_override = 135, + anon_sym_module = 136, + anon_sym_any = 137, + anon_sym_number = 138, + anon_sym_boolean = 139, + anon_sym_string = 140, + anon_sym_symbol = 141, + anon_sym_abstract = 142, + anon_sym_satisfies = 143, + anon_sym_require = 144, + anon_sym_extends = 145, + anon_sym_implements = 146, + anon_sym_global = 147, + anon_sym_interface = 148, + anon_sym_enum = 149, + anon_sym_DASH_QMARK_COLON = 150, + anon_sym_QMARK_COLON = 151, + anon_sym_asserts = 152, + anon_sym_infer = 153, + anon_sym_is = 154, + anon_sym_keyof = 155, + anon_sym_unknown = 156, + anon_sym_never = 157, + anon_sym_object = 158, + anon_sym_LBRACE_PIPE = 159, + anon_sym_PIPE_RBRACE = 160, + sym__automatic_semicolon = 161, + sym__template_chars = 162, + sym__ternary_qmark = 163, + sym__function_signature_automatic_semicolon = 164, + sym_program = 165, + sym_export_statement = 166, + sym_namespace_export = 167, + sym_export_clause = 168, + sym_export_specifier = 169, + sym__module_export_name = 170, + sym_declaration = 171, + sym_import = 172, + sym_import_statement = 173, + sym_import_clause = 174, + sym__from_clause = 175, + sym_namespace_import = 176, + sym_named_imports = 177, + sym_import_specifier = 178, + sym_expression_statement = 179, + sym_variable_declaration = 180, + sym_lexical_declaration = 181, + sym_variable_declarator = 182, + sym_statement_block = 183, + sym_else_clause = 184, + sym_if_statement = 185, + sym_switch_statement = 186, + sym_for_statement = 187, + sym_for_in_statement = 188, + sym__for_header = 189, + sym_while_statement = 190, + sym_do_statement = 191, + sym_try_statement = 192, + sym_with_statement = 193, + sym_break_statement = 194, + sym_continue_statement = 195, + sym_debugger_statement = 196, + sym_return_statement = 197, + sym_throw_statement = 198, + sym_empty_statement = 199, + sym_labeled_statement = 200, + sym_switch_body = 201, + sym_switch_case = 202, + sym_switch_default = 203, + sym_catch_clause = 204, + sym_finally_clause = 205, + sym_parenthesized_expression = 206, + sym_expression = 207, + sym_primary_expression = 208, + sym_yield_expression = 209, + sym_object = 210, + sym_object_pattern = 211, + sym_assignment_pattern = 212, + sym_object_assignment_pattern = 213, + sym_array = 214, + sym_array_pattern = 215, + sym_glimmer_template = 216, + sym_glimmer_opening_tag = 217, + sym_glimmer_closing_tag = 218, + sym_jsx_element = 219, + sym_jsx_text = 220, + sym_jsx_expression = 221, + sym_jsx_opening_element = 222, + sym_nested_identifier = 223, + sym_jsx_namespace_name = 224, + sym_jsx_closing_element = 225, + sym_jsx_self_closing_element = 226, + sym_jsx_attribute = 227, + sym_class = 228, + sym_class_declaration = 229, + sym_class_heritage = 230, + sym_function = 231, + sym_function_declaration = 232, + sym_generator_function = 233, + sym_generator_function_declaration = 234, + sym_arrow_function = 235, + sym__call_signature = 236, + sym__formal_parameter = 237, + sym_optional_chain = 238, + sym_call_expression = 239, + sym_new_expression = 240, + sym_await_expression = 241, + sym_member_expression = 242, + sym_subscript_expression = 243, + sym_assignment_expression = 244, + sym__augmented_assignment_lhs = 245, + sym_augmented_assignment_expression = 246, + sym__initializer = 247, + sym__destructuring_pattern = 248, + sym_spread_element = 249, + sym_ternary_expression = 250, + sym_binary_expression = 251, + sym_unary_expression = 252, + sym_update_expression = 253, + sym_sequence_expression = 254, + sym_string = 255, + sym_template_string = 256, + sym_template_substitution = 257, + sym_regex = 258, + sym_meta_property = 259, + sym_arguments = 260, + sym_decorator = 261, + sym_decorator_member_expression = 262, + sym_decorator_call_expression = 263, + sym_class_body = 264, + sym_formal_parameters = 265, + sym_class_static_block = 266, + sym_pattern = 267, + sym_rest_pattern = 268, + sym_method_definition = 269, + sym_pair = 270, + sym_pair_pattern = 271, + sym__property_name = 272, + sym_computed_property_name = 273, + sym_public_field_definition = 274, + sym__import_identifier = 275, + sym_non_null_expression = 276, + sym_method_signature = 277, + sym_abstract_method_signature = 278, + sym_function_signature = 279, + sym_as_expression = 280, + sym_satisfies_expression = 281, + sym_import_require_clause = 282, + sym_extends_clause = 283, + sym_implements_clause = 284, + sym_ambient_declaration = 285, + sym_abstract_class_declaration = 286, + sym_module = 287, + sym_internal_module = 288, + sym__module = 289, + sym_import_alias = 290, + sym_nested_type_identifier = 291, + sym_interface_declaration = 292, + sym_extends_type_clause = 293, + sym_enum_declaration = 294, + sym_enum_body = 295, + sym_enum_assignment = 296, + sym_type_alias_declaration = 297, + sym_accessibility_modifier = 298, + sym_override_modifier = 299, + sym_required_parameter = 300, + sym_optional_parameter = 301, + sym__parameter_name = 302, + sym_omitting_type_annotation = 303, + sym_opting_type_annotation = 304, + sym_type_annotation = 305, + sym_asserts = 306, + sym__type = 307, + sym_tuple_parameter = 308, + sym_optional_tuple_parameter = 309, + sym_optional_type = 310, + sym_rest_type = 311, + sym__tuple_type_member = 312, + sym_constructor_type = 313, + sym__primary_type = 314, + sym_template_type = 315, + sym_template_literal_type = 316, + sym_infer_type = 317, + sym_conditional_type = 318, + sym_generic_type = 319, + sym_type_predicate = 320, + sym_type_predicate_annotation = 321, + sym__type_query_member_expression = 322, + sym__type_query_subscript_expression = 323, + sym__type_query_call_expression = 324, + sym_type_query = 325, + sym_index_type_query = 326, + sym_lookup_type = 327, + sym_mapped_type_clause = 328, + sym_literal_type = 329, + sym__number = 330, + sym_existential_type = 331, + sym_flow_maybe_type = 332, + sym_parenthesized_type = 333, + sym_predefined_type = 334, + sym_type_arguments = 335, + sym_object_type = 336, + sym_call_signature = 337, + sym_property_signature = 338, + sym_type_parameters = 339, + sym_type_parameter = 340, + sym_default_type = 341, + sym_constraint = 342, + sym_construct_signature = 343, + sym_index_signature = 344, + sym_array_type = 345, + sym_tuple_type = 346, + sym_readonly_type = 347, + sym_union_type = 348, + sym_intersection_type = 349, + sym_function_type = 350, + aux_sym_program_repeat1 = 351, + aux_sym_export_statement_repeat1 = 352, + aux_sym_export_clause_repeat1 = 353, + aux_sym_named_imports_repeat1 = 354, + aux_sym_variable_declaration_repeat1 = 355, + aux_sym_switch_body_repeat1 = 356, + aux_sym_object_repeat1 = 357, + aux_sym_object_pattern_repeat1 = 358, + aux_sym_array_repeat1 = 359, + aux_sym_array_pattern_repeat1 = 360, + aux_sym_glimmer_template_repeat1 = 361, + aux_sym_jsx_element_repeat1 = 362, + aux_sym_string_repeat1 = 363, + aux_sym_string_repeat2 = 364, + aux_sym_template_string_repeat1 = 365, + aux_sym_class_body_repeat1 = 366, + aux_sym_formal_parameters_repeat1 = 367, + aux_sym__jsx_start_opening_element_repeat1 = 368, + aux_sym_extends_clause_repeat1 = 369, + aux_sym_implements_clause_repeat1 = 370, + aux_sym_extends_type_clause_repeat1 = 371, + aux_sym_enum_body_repeat1 = 372, + aux_sym_template_literal_type_repeat1 = 373, + aux_sym_object_type_repeat1 = 374, + aux_sym_type_parameters_repeat1 = 375, + aux_sym_tuple_type_repeat1 = 376, + alias_sym_property_identifier = 377, + alias_sym_shorthand_property_identifier = 378, + alias_sym_shorthand_property_identifier_pattern = 379, + alias_sym_statement_identifier = 380, + alias_sym_this_type = 381, + alias_sym_type_identifier = 382, }; static const char * const ts_symbol_names[] = { @@ -448,12 +451,13 @@ static const char * const ts_symbol_names[] = { [sym__glimmer_template_content] = "_glimmer_template_content", [anon_sym_LTtemplate_GT] = "", - [anon_sym_LT] = "<", + [aux_sym_jsx_text_token1] = "jsx_text_token1", + [aux_sym_jsx_text_token2] = "jsx_text_token2", [anon_sym_GT] = ">", - [anon_sym_SLASH] = "/", - [sym_jsx_text] = "jsx_text", [sym_jsx_identifier] = "identifier", [anon_sym_DOT] = ".", + [anon_sym_LT_SLASH] = "", [anon_sym_class] = "class", [anon_sym_async] = "async", [anon_sym_function] = "function", @@ -486,8 +490,10 @@ static const char * const ts_symbol_names[] = { [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] = "===", @@ -616,7 +622,7 @@ static const char * const ts_symbol_names[] = { [sym_glimmer_opening_tag] = "glimmer_opening_tag", [sym_glimmer_closing_tag] = "glimmer_closing_tag", [sym_jsx_element] = "jsx_element", - [sym_jsx_fragment] = "jsx_fragment", + [sym_jsx_text] = "jsx_text", [sym_jsx_expression] = "jsx_expression", [sym_jsx_opening_element] = "jsx_opening_element", [sym_nested_identifier] = "nested_identifier", @@ -831,12 +837,13 @@ static const TSSymbol ts_symbol_map[] = { [sym__glimmer_template_content] = sym__glimmer_template_content, [anon_sym_LTtemplate_GT] = anon_sym_LTtemplate_GT, [anon_sym_LT_SLASHtemplate_GT] = anon_sym_LT_SLASHtemplate_GT, - [anon_sym_LT] = anon_sym_LT, + [aux_sym_jsx_text_token1] = aux_sym_jsx_text_token1, + [aux_sym_jsx_text_token2] = aux_sym_jsx_text_token2, [anon_sym_GT] = anon_sym_GT, - [anon_sym_SLASH] = anon_sym_SLASH, - [sym_jsx_text] = sym_jsx_text, [sym_jsx_identifier] = sym_identifier, [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, + [anon_sym_SLASH_GT] = anon_sym_SLASH_GT, [anon_sym_class] = anon_sym_class, [anon_sym_async] = anon_sym_async, [anon_sym_function] = anon_sym_function, @@ -869,8 +876,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_LT] = anon_sym_LT, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, @@ -999,7 +1008,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, [sym_jsx_element] = sym_jsx_element, - [sym_jsx_fragment] = sym_jsx_fragment, + [sym_jsx_text] = sym_jsx_text, [sym_jsx_expression] = sym_jsx_expression, [sym_jsx_opening_element] = sym_jsx_opening_element, [sym_nested_identifier] = sym_nested_identifier, @@ -1361,22 +1370,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LT] = { - .visible = true, + [aux_sym_jsx_text_token1] = { + .visible = false, .named = false, }, - [anon_sym_GT] = { - .visible = true, + [aux_sym_jsx_text_token2] = { + .visible = false, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_GT] = { .visible = true, .named = false, }, - [sym_jsx_text] = { - .visible = true, - .named = true, - }, [sym_jsx_identifier] = { .visible = true, .named = true, @@ -1385,6 +1390,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_GT] = { + .visible = true, + .named = false, + }, [anon_sym_class] = { .visible = true, .named = false, @@ -1513,6 +1526,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1521,6 +1538,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, [anon_sym_LT_EQ] = { .visible = true, .named = false, @@ -2036,7 +2057,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_jsx_fragment] = { + [sym_jsx_text] = { .visible = true, .named = true, }, @@ -2797,8 +2818,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 8, .length = 1}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 1}, - [12] = {.index = 3, .length = 1}, - [13] = {.index = 12, .length = 1}, + [12] = {.index = 12, .length = 1}, + [13] = {.index = 3, .length = 1}, [14] = {.index = 13, .length = 2}, [15] = {.index = 15, .length = 2}, [16] = {.index = 17, .length = 2}, @@ -2826,21 +2847,21 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [41] = {.index = 63, .length = 2}, [42] = {.index = 65, .length = 2}, [43] = {.index = 67, .length = 1}, - [44] = {.index = 68, .length = 1}, - [45] = {.index = 69, .length = 1}, - [46] = {.index = 70, .length = 2}, - [47] = {.index = 72, .length = 2}, - [48] = {.index = 74, .length = 2}, - [49] = {.index = 76, .length = 1}, - [52] = {.index = 77, .length = 2}, - [53] = {.index = 79, .length = 1}, - [54] = {.index = 80, .length = 2}, - [55] = {.index = 82, .length = 4}, + [44] = {.index = 68, .length = 2}, + [45] = {.index = 70, .length = 1}, + [48] = {.index = 71, .length = 2}, + [49] = {.index = 73, .length = 1}, + [50] = {.index = 74, .length = 2}, + [51] = {.index = 76, .length = 4}, + [52] = {.index = 80, .length = 2}, + [53] = {.index = 82, .length = 2}, + [54] = {.index = 84, .length = 1}, + [55] = {.index = 85, .length = 1}, [56] = {.index = 86, .length = 2}, [57] = {.index = 88, .length = 2}, [58] = {.index = 26, .length = 2}, [59] = {.index = 30, .length = 2}, - [60] = {.index = 74, .length = 2}, + [60] = {.index = 68, .length = 2}, [61] = {.index = 90, .length = 3}, [62] = {.index = 93, .length = 2}, [63] = {.index = 93, .length = 2}, @@ -2856,205 +2877,206 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [73] = {.index = 117, .length = 2}, [74] = {.index = 119, .length = 1}, [75] = {.index = 120, .length = 1}, - [76] = {.index = 26, .length = 2}, - [77] = {.index = 121, .length = 2}, - [78] = {.index = 123, .length = 5}, - [79] = {.index = 128, .length = 1}, - [80] = {.index = 129, .length = 2}, - [81] = {.index = 131, .length = 3}, - [82] = {.index = 134, .length = 2}, - [83] = {.index = 136, .length = 3}, - [84] = {.index = 139, .length = 6}, - [85] = {.index = 145, .length = 1}, - [86] = {.index = 146, .length = 1}, - [87] = {.index = 147, .length = 3}, - [88] = {.index = 150, .length = 3}, - [89] = {.index = 153, .length = 4}, - [90] = {.index = 157, .length = 2}, - [91] = {.index = 159, .length = 3}, - [92] = {.index = 162, .length = 2}, - [93] = {.index = 164, .length = 2}, - [94] = {.index = 166, .length = 2}, - [95] = {.index = 168, .length = 3}, - [96] = {.index = 171, .length = 2}, - [97] = {.index = 173, .length = 4}, - [98] = {.index = 177, .length = 2}, - [99] = {.index = 179, .length = 3}, - [100] = {.index = 182, .length = 2}, - [101] = {.index = 184, .length = 3}, - [102] = {.index = 187, .length = 3}, - [103] = {.index = 190, .length = 2}, - [104] = {.index = 192, .length = 2}, - [105] = {.index = 194, .length = 2}, - [106] = {.index = 196, .length = 2}, - [108] = {.index = 196, .length = 2}, - [109] = {.index = 198, .length = 2}, - [110] = {.index = 200, .length = 2}, - [111] = {.index = 202, .length = 4}, - [112] = {.index = 200, .length = 2}, - [113] = {.index = 206, .length = 4}, - [114] = {.index = 210, .length = 4}, - [115] = {.index = 214, .length = 5}, - [116] = {.index = 219, .length = 3}, - [117] = {.index = 134, .length = 2}, - [118] = {.index = 222, .length = 1}, - [119] = {.index = 222, .length = 1}, - [120] = {.index = 223, .length = 2}, - [121] = {.index = 225, .length = 3}, - [122] = {.index = 228, .length = 2}, - [123] = {.index = 230, .length = 3}, - [124] = {.index = 233, .length = 2}, - [125] = {.index = 235, .length = 3}, - [126] = {.index = 238, .length = 1}, - [127] = {.index = 239, .length = 2}, - [128] = {.index = 241, .length = 2}, - [129] = {.index = 243, .length = 5}, + [78] = {.index = 26, .length = 2}, + [79] = {.index = 121, .length = 2}, + [80] = {.index = 123, .length = 5}, + [81] = {.index = 128, .length = 1}, + [82] = {.index = 129, .length = 2}, + [83] = {.index = 131, .length = 3}, + [84] = {.index = 134, .length = 2}, + [85] = {.index = 136, .length = 3}, + [86] = {.index = 139, .length = 6}, + [87] = {.index = 145, .length = 1}, + [88] = {.index = 146, .length = 1}, + [89] = {.index = 147, .length = 3}, + [90] = {.index = 150, .length = 3}, + [91] = {.index = 153, .length = 4}, + [92] = {.index = 157, .length = 2}, + [93] = {.index = 159, .length = 3}, + [94] = {.index = 162, .length = 4}, + [95] = {.index = 166, .length = 2}, + [96] = {.index = 168, .length = 3}, + [97] = {.index = 171, .length = 2}, + [98] = {.index = 173, .length = 3}, + [99] = {.index = 176, .length = 3}, + [100] = {.index = 179, .length = 2}, + [101] = {.index = 181, .length = 2}, + [102] = {.index = 183, .length = 2}, + [103] = {.index = 185, .length = 2}, + [105] = {.index = 185, .length = 2}, + [106] = {.index = 187, .length = 2}, + [107] = {.index = 189, .length = 2}, + [108] = {.index = 191, .length = 4}, + [109] = {.index = 189, .length = 2}, + [110] = {.index = 195, .length = 4}, + [111] = {.index = 199, .length = 4}, + [112] = {.index = 203, .length = 5}, + [113] = {.index = 208, .length = 3}, + [114] = {.index = 211, .length = 2}, + [115] = {.index = 213, .length = 2}, + [116] = {.index = 215, .length = 2}, + [117] = {.index = 217, .length = 2}, + [118] = {.index = 219, .length = 3}, + [119] = {.index = 134, .length = 2}, + [120] = {.index = 222, .length = 1}, + [121] = {.index = 222, .length = 1}, + [122] = {.index = 223, .length = 2}, + [123] = {.index = 225, .length = 3}, + [124] = {.index = 84, .length = 1}, + [125] = {.index = 228, .length = 2}, + [126] = {.index = 230, .length = 3}, + [127] = {.index = 233, .length = 2}, + [128] = {.index = 235, .length = 3}, + [129] = {.index = 238, .length = 1}, [130] = {.index = 239, .length = 2}, - [131] = {.index = 248, .length = 1}, - [132] = {.index = 249, .length = 4}, - [133] = {.index = 253, .length = 2}, - [134] = {.index = 255, .length = 2}, - [135] = {.index = 257, .length = 3}, - [136] = {.index = 260, .length = 1}, - [137] = {.index = 261, .length = 2}, - [138] = {.index = 263, .length = 2}, - [139] = {.index = 265, .length = 2}, - [140] = {.index = 267, .length = 4}, - [141] = {.index = 271, .length = 3}, - [142] = {.index = 274, .length = 4}, - [143] = {.index = 278, .length = 4}, - [144] = {.index = 282, .length = 1}, - [145] = {.index = 283, .length = 4}, - [146] = {.index = 287, .length = 4}, - [147] = {.index = 291, .length = 2}, - [148] = {.index = 293, .length = 2}, - [149] = {.index = 295, .length = 4}, - [150] = {.index = 299, .length = 4}, - [151] = {.index = 303, .length = 5}, - [152] = {.index = 308, .length = 2}, - [153] = {.index = 310, .length = 3}, - [154] = {.index = 313, .length = 2}, - [155] = {.index = 313, .length = 2}, - [156] = {.index = 315, .length = 3}, - [157] = {.index = 318, .length = 3}, - [158] = {.index = 129, .length = 2}, - [159] = {.index = 321, .length = 2}, - [160] = {.index = 323, .length = 3}, - [161] = {.index = 326, .length = 4}, - [162] = {.index = 330, .length = 3}, - [163] = {.index = 333, .length = 3}, - [164] = {.index = 336, .length = 2}, - [165] = {.index = 338, .length = 3}, - [166] = {.index = 341, .length = 5}, + [131] = {.index = 241, .length = 2}, + [132] = {.index = 243, .length = 5}, + [133] = {.index = 239, .length = 2}, + [134] = {.index = 248, .length = 1}, + [135] = {.index = 249, .length = 4}, + [136] = {.index = 253, .length = 2}, + [137] = {.index = 255, .length = 2}, + [138] = {.index = 257, .length = 1}, + [139] = {.index = 258, .length = 2}, + [140] = {.index = 260, .length = 2}, + [141] = {.index = 262, .length = 2}, + [142] = {.index = 264, .length = 4}, + [143] = {.index = 268, .length = 3}, + [144] = {.index = 271, .length = 4}, + [145] = {.index = 275, .length = 4}, + [146] = {.index = 279, .length = 1}, + [147] = {.index = 280, .length = 4}, + [148] = {.index = 284, .length = 4}, + [149] = {.index = 288, .length = 2}, + [150] = {.index = 290, .length = 2}, + [151] = {.index = 292, .length = 4}, + [152] = {.index = 296, .length = 4}, + [153] = {.index = 300, .length = 5}, + [154] = {.index = 305, .length = 3}, + [155] = {.index = 308, .length = 2}, + [156] = {.index = 310, .length = 3}, + [157] = {.index = 313, .length = 2}, + [158] = {.index = 313, .length = 2}, + [159] = {.index = 315, .length = 3}, + [160] = {.index = 318, .length = 3}, + [161] = {.index = 129, .length = 2}, + [162] = {.index = 321, .length = 2}, + [163] = {.index = 323, .length = 3}, + [164] = {.index = 326, .length = 4}, + [165] = {.index = 330, .length = 3}, + [166] = {.index = 333, .length = 3}, [167] = {.index = 336, .length = 2}, - [168] = {.index = 346, .length = 3}, - [169] = {.index = 346, .length = 3}, - [170] = {.index = 349, .length = 3}, - [171] = {.index = 352, .length = 2}, - [172] = {.index = 354, .length = 4}, - [173] = {.index = 129, .length = 2}, - [174] = {.index = 358, .length = 1}, - [175] = {.index = 359, .length = 2}, - [176] = {.index = 361, .length = 2}, - [177] = {.index = 363, .length = 2}, - [178] = {.index = 365, .length = 2}, - [179] = {.index = 367, .length = 3}, - [180] = {.index = 370, .length = 1}, - [181] = {.index = 371, .length = 3}, - [182] = {.index = 374, .length = 2}, - [183] = {.index = 376, .length = 2}, - [184] = {.index = 378, .length = 1}, - [185] = {.index = 379, .length = 4}, - [186] = {.index = 379, .length = 4}, - [187] = {.index = 383, .length = 4}, - [188] = {.index = 383, .length = 4}, - [189] = {.index = 387, .length = 4}, - [190] = {.index = 387, .length = 4}, - [191] = {.index = 391, .length = 2}, - [192] = {.index = 393, .length = 3}, - [193] = {.index = 396, .length = 5}, - [194] = {.index = 401, .length = 3}, - [195] = {.index = 404, .length = 2}, - [196] = {.index = 406, .length = 2}, - [197] = {.index = 408, .length = 2}, - [198] = {.index = 410, .length = 1}, - [199] = {.index = 411, .length = 4}, - [200] = {.index = 415, .length = 3}, - [201] = {.index = 418, .length = 4}, - [202] = {.index = 422, .length = 5}, - [203] = {.index = 427, .length = 1}, - [204] = {.index = 428, .length = 2}, - [205] = {.index = 430, .length = 4}, - [206] = {.index = 434, .length = 4}, - [207] = {.index = 438, .length = 2}, - [208] = {.index = 440, .length = 4}, - [209] = {.index = 444, .length = 4}, - [210] = {.index = 448, .length = 2}, - [211] = {.index = 450, .length = 2}, - [212] = {.index = 452, .length = 3}, - [213] = {.index = 455, .length = 3}, - [214] = {.index = 458, .length = 2}, - [215] = {.index = 460, .length = 2}, - [216] = {.index = 462, .length = 1}, - [217] = {.index = 463, .length = 1}, - [218] = {.index = 464, .length = 3}, - [219] = {.index = 467, .length = 2}, - [220] = {.index = 469, .length = 2}, - [221] = {.index = 471, .length = 4}, - [222] = {.index = 475, .length = 4}, - [223] = {.index = 479, .length = 4}, - [224] = {.index = 483, .length = 3}, - [225] = {.index = 486, .length = 2}, - [227] = {.index = 488, .length = 4}, - [228] = {.index = 492, .length = 5}, - [229] = {.index = 497, .length = 5}, - [230] = {.index = 502, .length = 5}, - [231] = {.index = 507, .length = 3}, - [232] = {.index = 510, .length = 3}, - [233] = {.index = 513, .length = 3}, - [234] = {.index = 510, .length = 3}, - [235] = {.index = 516, .length = 2}, - [236] = {.index = 518, .length = 4}, - [237] = {.index = 522, .length = 4}, - [238] = {.index = 526, .length = 3}, - [239] = {.index = 529, .length = 2}, - [240] = {.index = 531, .length = 2}, - [241] = {.index = 533, .length = 3}, - [242] = {.index = 536, .length = 2}, - [243] = {.index = 538, .length = 2}, - [244] = {.index = 540, .length = 1}, - [245] = {.index = 541, .length = 3}, - [246] = {.index = 544, .length = 2}, - [247] = {.index = 546, .length = 4}, - [248] = {.index = 550, .length = 4}, - [249] = {.index = 554, .length = 4}, - [250] = {.index = 558, .length = 3}, - [251] = {.index = 561, .length = 5}, - [252] = {.index = 566, .length = 5}, - [253] = {.index = 571, .length = 4}, - [254] = {.index = 575, .length = 4}, - [255] = {.index = 579, .length = 3}, - [256] = {.index = 582, .length = 3}, - [257] = {.index = 582, .length = 3}, - [258] = {.index = 585, .length = 2}, - [259] = {.index = 587, .length = 2}, - [260] = {.index = 589, .length = 3}, - [261] = {.index = 592, .length = 2}, - [262] = {.index = 594, .length = 2}, - [263] = {.index = 596, .length = 4}, - [264] = {.index = 600, .length = 5}, - [265] = {.index = 605, .length = 5}, - [266] = {.index = 610, .length = 4}, - [267] = {.index = 610, .length = 4}, - [268] = {.index = 614, .length = 4}, - [269] = {.index = 618, .length = 3}, - [270] = {.index = 621, .length = 2}, - [271] = {.index = 623, .length = 2}, - [272] = {.index = 625, .length = 3}, - [273] = {.index = 628, .length = 4}, - [274] = {.index = 632, .length = 5}, - [275] = {.index = 637, .length = 3}, - [276] = {.index = 640, .length = 4}, + [168] = {.index = 338, .length = 3}, + [169] = {.index = 341, .length = 5}, + [170] = {.index = 336, .length = 2}, + [171] = {.index = 346, .length = 3}, + [172] = {.index = 346, .length = 3}, + [173] = {.index = 349, .length = 3}, + [174] = {.index = 352, .length = 2}, + [175] = {.index = 354, .length = 4}, + [176] = {.index = 129, .length = 2}, + [177] = {.index = 358, .length = 1}, + [178] = {.index = 359, .length = 2}, + [179] = {.index = 361, .length = 2}, + [180] = {.index = 363, .length = 2}, + [181] = {.index = 365, .length = 2}, + [182] = {.index = 367, .length = 3}, + [183] = {.index = 370, .length = 1}, + [184] = {.index = 371, .length = 3}, + [185] = {.index = 374, .length = 2}, + [186] = {.index = 376, .length = 2}, + [187] = {.index = 378, .length = 1}, + [188] = {.index = 379, .length = 4}, + [189] = {.index = 379, .length = 4}, + [190] = {.index = 383, .length = 4}, + [191] = {.index = 383, .length = 4}, + [192] = {.index = 387, .length = 4}, + [193] = {.index = 387, .length = 4}, + [194] = {.index = 391, .length = 2}, + [195] = {.index = 393, .length = 3}, + [196] = {.index = 396, .length = 5}, + [197] = {.index = 401, .length = 3}, + [198] = {.index = 404, .length = 2}, + [199] = {.index = 406, .length = 2}, + [200] = {.index = 408, .length = 2}, + [201] = {.index = 410, .length = 1}, + [202] = {.index = 411, .length = 4}, + [203] = {.index = 415, .length = 3}, + [204] = {.index = 418, .length = 4}, + [205] = {.index = 422, .length = 5}, + [206] = {.index = 427, .length = 1}, + [207] = {.index = 428, .length = 2}, + [208] = {.index = 430, .length = 4}, + [209] = {.index = 434, .length = 4}, + [210] = {.index = 438, .length = 2}, + [211] = {.index = 440, .length = 4}, + [212] = {.index = 444, .length = 4}, + [213] = {.index = 448, .length = 2}, + [214] = {.index = 450, .length = 2}, + [215] = {.index = 452, .length = 3}, + [216] = {.index = 455, .length = 3}, + [217] = {.index = 458, .length = 2}, + [218] = {.index = 460, .length = 2}, + [219] = {.index = 462, .length = 1}, + [220] = {.index = 463, .length = 1}, + [221] = {.index = 464, .length = 3}, + [222] = {.index = 467, .length = 2}, + [223] = {.index = 469, .length = 2}, + [224] = {.index = 471, .length = 4}, + [225] = {.index = 475, .length = 4}, + [226] = {.index = 479, .length = 4}, + [227] = {.index = 483, .length = 3}, + [228] = {.index = 486, .length = 2}, + [230] = {.index = 488, .length = 4}, + [231] = {.index = 492, .length = 5}, + [232] = {.index = 497, .length = 5}, + [233] = {.index = 502, .length = 5}, + [234] = {.index = 507, .length = 3}, + [235] = {.index = 510, .length = 3}, + [236] = {.index = 513, .length = 3}, + [237] = {.index = 510, .length = 3}, + [238] = {.index = 516, .length = 2}, + [239] = {.index = 518, .length = 4}, + [240] = {.index = 522, .length = 4}, + [241] = {.index = 526, .length = 3}, + [242] = {.index = 529, .length = 2}, + [243] = {.index = 531, .length = 2}, + [244] = {.index = 533, .length = 3}, + [245] = {.index = 536, .length = 2}, + [246] = {.index = 538, .length = 2}, + [247] = {.index = 540, .length = 1}, + [248] = {.index = 541, .length = 3}, + [249] = {.index = 544, .length = 2}, + [250] = {.index = 546, .length = 4}, + [251] = {.index = 550, .length = 4}, + [252] = {.index = 554, .length = 4}, + [253] = {.index = 558, .length = 3}, + [254] = {.index = 561, .length = 5}, + [255] = {.index = 566, .length = 5}, + [256] = {.index = 571, .length = 4}, + [257] = {.index = 575, .length = 4}, + [258] = {.index = 579, .length = 3}, + [259] = {.index = 582, .length = 3}, + [260] = {.index = 582, .length = 3}, + [261] = {.index = 585, .length = 2}, + [262] = {.index = 587, .length = 2}, + [263] = {.index = 589, .length = 3}, + [264] = {.index = 592, .length = 2}, + [265] = {.index = 594, .length = 2}, + [266] = {.index = 596, .length = 4}, + [267] = {.index = 600, .length = 5}, + [268] = {.index = 605, .length = 5}, + [269] = {.index = 610, .length = 4}, + [270] = {.index = 610, .length = 4}, + [271] = {.index = 614, .length = 4}, + [272] = {.index = 618, .length = 3}, + [273] = {.index = 621, .length = 2}, + [274] = {.index = 623, .length = 2}, + [275] = {.index = 625, .length = 3}, + [276] = {.index = 628, .length = 4}, + [277] = {.index = 632, .length = 5}, + [278] = {.index = 637, .length = 3}, + [279] = {.index = 640, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3164,39 +3186,39 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [67] = {field_label, 1}, [68] = - {field_name, 1}, - [69] = - {field_attribute, 0}, - [70] = - {field_name, 0}, - {field_value, 1}, - [72] = - {field_constraint, 1}, - {field_name, 0}, - [74] = {field_body, 2}, {field_name, 1}, - [76] = + [70] = {field_value, 1}, - [77] = + [71] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [79] = + [73] = {field_body, 2}, - [80] = + [74] = {field_body, 2}, {field_type_parameters, 1}, - [82] = + [76] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [86] = + [80] = {field_arguments, 2}, {field_constructor, 1}, - [88] = + [82] = {field_constructor, 1}, {field_type_arguments, 2}, + [84] = + {field_name, 1}, + [85] = + {field_attribute, 0}, + [86] = + {field_name, 0}, + {field_value, 1}, + [88] = + {field_constraint, 1}, + {field_name, 0}, [90] = {field_left, 0}, {field_operator, 1}, @@ -3298,87 +3320,87 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_finalizer, 3}, {field_handler, 2}, [162] = - {field_attribute, 2, .inherited = true}, - {field_name, 1}, - [164] = - {field_attribute, 0, .inherited = true}, - {field_attribute, 1, .inherited = true}, - [166] = - {field_name, 1}, - {field_type_arguments, 2}, - [168] = - {field_constraint, 1}, - {field_name, 0}, - {field_value, 2}, - [171] = - {field_flags, 3}, - {field_pattern, 1}, - [173] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [177] = + [166] = {field_body, 3}, {field_name, 1}, - [179] = + [168] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [182] = + [171] = {field_type_arguments, 2}, {field_value, 1}, - [184] = + [173] = {field_type_arguments, 2, .inherited = true}, {field_value, 1}, {field_value, 2, .inherited = true}, - [187] = + [176] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [190] = + [179] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [192] = + [181] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [194] = + [183] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [196] = + [185] = {field_name, 0}, {field_type_arguments, 1}, - [198] = + [187] = {field_body, 3}, {field_type_parameters, 1}, - [200] = + [189] = {field_body, 3}, {field_parameter, 1}, - [202] = + [191] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [206] = + [195] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [210] = + [199] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [214] = + [203] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [219] = + [208] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, + [211] = + {field_flags, 3}, + {field_pattern, 1}, + [213] = + {field_attribute, 2, .inherited = true}, + {field_name, 1}, + [215] = + {field_attribute, 0, .inherited = true}, + {field_attribute, 1, .inherited = true}, + [217] = + {field_name, 1}, + {field_type_arguments, 2}, + [219] = + {field_constraint, 1}, + {field_name, 0}, + {field_value, 2}, [222] = {field_type, 1}, [223] = @@ -3430,73 +3452,73 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 1}, {field_condition, 3}, [257] = - {field_attribute, 3, .inherited = true}, - {field_name, 1}, - {field_type_arguments, 2}, - [260] = {field_name, 2}, - [261] = + [258] = {field_name, 1}, {field_value, 2, .inherited = true}, - [263] = + [260] = {field_name, 1}, {field_type, 2}, - [265] = + [262] = {field_name, 0}, {field_value, 2, .inherited = true}, - [267] = + [264] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [271] = + [268] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [274] = + [271] = {field_type_arguments, 2}, {field_type_arguments, 3, .inherited = true}, {field_value, 1}, {field_value, 3, .inherited = true}, - [278] = + [275] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [282] = + [279] = {field_parameters, 1}, - [283] = + [280] = {field_arguments, 1}, {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [287] = + [284] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [291] = + [288] = {field_module, 0}, {field_name, 2}, - [293] = + [290] = {field_parameters, 0}, {field_return_type, 2}, - [295] = + [292] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [299] = + [296] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [303] = + [300] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, + [305] = + {field_attribute, 3, .inherited = true}, + {field_name, 1}, + {field_type_arguments, 2}, [308] = {field_body, 4}, {field_name, 2}, @@ -3956,7 +3978,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_property_identifier, }, - [12] = { + [13] = { [0] = alias_sym_type_identifier, }, [21] = { @@ -3980,20 +4002,20 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [43] = { [1] = alias_sym_statement_identifier, }, + [44] = { + [1] = alias_sym_type_identifier, + }, [46] = { [0] = alias_sym_type_identifier, }, [47] = { - [0] = alias_sym_type_identifier, - }, - [48] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_this_type, }, - [50] = { + [56] = { [0] = alias_sym_type_identifier, }, - [51] = { - [0] = alias_sym_this_type, + [57] = { + [0] = alias_sym_type_identifier, }, [62] = { [2] = alias_sym_property_identifier, @@ -4002,122 +4024,135 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_property_identifier, }, [76] = { + [2] = alias_sym_property_identifier, + }, + [77] = { + [0] = sym_member_expression, + [2] = alias_sym_property_identifier, + }, + [78] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, [95] = { - [0] = alias_sym_type_identifier, - }, - [98] = { [1] = alias_sym_type_identifier, }, - [99] = { + [96] = { [1] = alias_sym_type_identifier, }, - [106] = { + [103] = { [0] = alias_sym_type_identifier, }, - [107] = { + [104] = { [1] = alias_sym_type_identifier, }, - [110] = { + [107] = { [1] = sym_identifier, }, - [117] = { + [118] = { + [0] = alias_sym_type_identifier, + }, + [119] = { [2] = alias_sym_type_identifier, }, - [118] = { + [120] = { [1] = alias_sym_type_identifier, }, - [123] = { + [124] = { + [1] = sym_member_expression, + }, + [126] = { [2] = alias_sym_type_identifier, }, - [128] = { + [131] = { [1] = alias_sym_type_identifier, }, - [130] = { + [133] = { [0] = sym_identifier, }, - [141] = { + [143] = { [1] = alias_sym_type_identifier, }, - [147] = { + [149] = { [2] = alias_sym_type_identifier, }, - [152] = { + [155] = { [2] = alias_sym_type_identifier, }, - [153] = { + [156] = { [2] = alias_sym_type_identifier, }, - [154] = { + [157] = { [1] = alias_sym_type_identifier, }, - [158] = { + [161] = { [0] = sym_identifier, }, - [160] = { + [163] = { [2] = alias_sym_type_identifier, }, - [161] = { + [164] = { [2] = alias_sym_type_identifier, }, - [163] = { + [166] = { [3] = alias_sym_type_identifier, }, - [165] = { + [168] = { [1] = alias_sym_type_identifier, }, - [167] = { + [170] = { [1] = sym_identifier, }, - [168] = { + [171] = { [1] = sym_identifier, }, - [173] = { + [176] = { [0] = alias_sym_type_identifier, }, - [185] = { + [188] = { [2] = alias_sym_property_identifier, }, - [187] = { + [190] = { [2] = alias_sym_property_identifier, }, - [189] = { + [192] = { [2] = alias_sym_property_identifier, }, - [194] = { + [197] = { [2] = alias_sym_type_identifier, }, - [199] = { + [202] = { [2] = alias_sym_type_identifier, }, - [200] = { + [203] = { [3] = alias_sym_type_identifier, }, - [201] = { + [204] = { [3] = alias_sym_type_identifier, }, - [226] = { + [229] = { [3] = alias_sym_property_identifier, }, - [227] = { + [230] = { [3] = alias_sym_type_identifier, }, - [232] = { + [235] = { [1] = sym_identifier, }, - [233] = { + [236] = { [0] = alias_sym_type_identifier, }, - [256] = { + [259] = { [2] = sym_identifier, }, - [266] = { + [269] = { [3] = sym_identifier, }, }; static const uint16_t ts_non_terminal_alias_map[] = { + sym_nested_identifier, 2, + sym_nested_identifier, + sym_member_expression, sym_predefined_type, 2, sym_predefined_type, sym_identifier, @@ -4141,58 +4176,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 16, - [17] = 17, + [16] = 14, + [17] = 14, [18] = 15, - [19] = 15, - [20] = 14, + [19] = 19, + [20] = 15, [21] = 15, - [22] = 14, + [22] = 15, [23] = 14, - [24] = 15, - [25] = 25, + [24] = 14, + [25] = 15, [26] = 14, [27] = 15, [28] = 14, - [29] = 15, - [30] = 14, + [29] = 29, + [30] = 30, [31] = 31, [32] = 32, [33] = 33, [34] = 34, - [35] = 32, + [35] = 35, [36] = 36, - [37] = 36, + [37] = 31, [38] = 38, [39] = 39, - [40] = 40, - [41] = 38, - [42] = 42, - [43] = 31, - [44] = 44, - [45] = 39, - [46] = 33, - [47] = 42, - [48] = 44, - [49] = 34, + [40] = 38, + [41] = 41, + [42] = 39, + [43] = 36, + [44] = 35, + [45] = 33, + [46] = 32, + [47] = 34, + [48] = 48, + [49] = 41, [50] = 50, [51] = 51, - [52] = 51, - [53] = 53, - [54] = 54, - [55] = 51, - [56] = 56, - [57] = 57, + [52] = 52, + [53] = 50, + [54] = 52, + [55] = 50, + [56] = 50, + [57] = 50, [58] = 58, - [59] = 59, - [60] = 51, - [61] = 51, - [62] = 51, - [63] = 57, - [64] = 51, - [65] = 51, - [66] = 51, - [67] = 51, + [59] = 50, + [60] = 60, + [61] = 61, + [62] = 50, + [63] = 50, + [64] = 50, + [65] = 65, + [66] = 66, + [67] = 50, [68] = 68, [69] = 68, [70] = 68, @@ -4204,16 +4239,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [76] = 76, [77] = 77, [78] = 78, - [79] = 78, + [79] = 79, [80] = 80, - [81] = 78, - [82] = 78, - [83] = 78, - [84] = 78, - [85] = 78, - [86] = 86, - [87] = 78, - [88] = 78, + [81] = 79, + [82] = 79, + [83] = 79, + [84] = 79, + [85] = 79, + [86] = 79, + [87] = 79, + [88] = 79, [89] = 89, [90] = 89, [91] = 89, @@ -4223,51 +4258,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 89, [96] = 89, [97] = 97, - [98] = 97, - [99] = 99, - [100] = 97, - [101] = 99, - [102] = 99, + [98] = 98, + [99] = 97, + [100] = 98, + [101] = 97, + [102] = 98, [103] = 103, [104] = 103, [105] = 103, [106] = 103, [107] = 107, [108] = 108, - [109] = 108, - [110] = 103, - [111] = 108, - [112] = 103, - [113] = 103, - [114] = 107, + [109] = 103, + [110] = 107, + [111] = 103, + [112] = 107, + [113] = 108, + [114] = 103, [115] = 103, [116] = 116, [117] = 116, [118] = 118, [119] = 119, - [120] = 118, - [121] = 121, - [122] = 119, - [123] = 121, - [124] = 121, - [125] = 118, - [126] = 119, + [120] = 119, + [121] = 118, + [122] = 118, + [123] = 123, + [124] = 119, + [125] = 123, + [126] = 123, [127] = 127, [128] = 128, [129] = 129, - [130] = 129, - [131] = 128, - [132] = 129, - [133] = 129, - [134] = 129, - [135] = 135, - [136] = 136, - [137] = 129, + [130] = 130, + [131] = 131, + [132] = 130, + [133] = 130, + [134] = 130, + [135] = 130, + [136] = 130, + [137] = 137, [138] = 129, [139] = 139, [140] = 140, [141] = 141, - [142] = 136, + [142] = 130, [143] = 143, [144] = 144, [145] = 145, @@ -4283,167 +4318,167 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [155] = 155, [156] = 156, [157] = 157, - [158] = 158, - [159] = 151, + [158] = 131, + [159] = 159, [160] = 160, [161] = 161, [162] = 162, [163] = 163, [164] = 164, - [165] = 136, - [166] = 162, + [165] = 165, + [166] = 166, [167] = 167, [168] = 168, [169] = 169, [170] = 170, [171] = 171, - [172] = 172, - [173] = 173, + [172] = 131, + [173] = 170, [174] = 174, [175] = 175, - [176] = 176, + [176] = 171, [177] = 177, - [178] = 136, - [179] = 136, - [180] = 176, - [181] = 136, - [182] = 136, - [183] = 176, - [184] = 136, - [185] = 185, - [186] = 176, - [187] = 176, - [188] = 136, - [189] = 176, - [190] = 176, - [191] = 191, - [192] = 192, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 178, + [182] = 131, + [183] = 178, + [184] = 178, + [185] = 131, + [186] = 178, + [187] = 131, + [188] = 131, + [189] = 131, + [190] = 131, + [191] = 178, + [192] = 178, [193] = 193, [194] = 194, - [195] = 191, - [196] = 193, + [195] = 195, + [196] = 194, [197] = 197, [198] = 198, [199] = 199, [200] = 200, - [201] = 199, - [202] = 202, - [203] = 199, - [204] = 204, + [201] = 200, + [202] = 198, + [203] = 203, + [204] = 199, [205] = 205, - [206] = 199, - [207] = 199, - [208] = 208, - [209] = 199, - [210] = 199, - [211] = 199, - [212] = 204, - [213] = 200, - [214] = 199, - [215] = 199, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 199, - [220] = 199, - [221] = 199, - [222] = 222, - [223] = 222, + [206] = 206, + [207] = 205, + [208] = 205, + [209] = 205, + [210] = 210, + [211] = 205, + [212] = 205, + [213] = 205, + [214] = 205, + [215] = 215, + [216] = 205, + [217] = 205, + [218] = 205, + [219] = 219, + [220] = 220, + [221] = 205, + [222] = 205, + [223] = 223, [224] = 224, - [225] = 225, + [225] = 224, [226] = 226, [227] = 227, [228] = 228, - [229] = 228, - [230] = 228, - [231] = 228, - [232] = 232, - [233] = 233, - [234] = 226, - [235] = 228, - [236] = 228, - [237] = 237, - [238] = 228, - [239] = 228, - [240] = 225, - [241] = 241, - [242] = 242, - [243] = 226, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 231, + [233] = 231, + [234] = 234, + [235] = 226, + [236] = 230, + [237] = 231, + [238] = 227, + [239] = 239, + [240] = 240, + [241] = 240, + [242] = 230, + [243] = 240, [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, + [245] = 229, + [246] = 240, + [247] = 229, [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, + [249] = 240, + [250] = 226, + [251] = 226, + [252] = 234, [253] = 253, - [254] = 228, - [255] = 255, - [256] = 232, - [257] = 251, - [258] = 258, - [259] = 225, - [260] = 258, + [254] = 234, + [255] = 226, + [256] = 256, + [257] = 257, + [258] = 244, + [259] = 259, + [260] = 260, [261] = 261, - [262] = 253, - [263] = 226, - [264] = 226, - [265] = 244, - [266] = 245, - [267] = 246, - [268] = 246, - [269] = 245, - [270] = 244, - [271] = 226, - [272] = 244, - [273] = 245, - [274] = 253, - [275] = 246, - [276] = 261, - [277] = 232, - [278] = 225, - [279] = 253, - [280] = 280, - [281] = 246, - [282] = 245, - [283] = 244, - [284] = 226, - [285] = 253, - [286] = 255, - [287] = 225, - [288] = 225, - [289] = 232, - [290] = 225, - [291] = 253, - [292] = 246, - [293] = 245, - [294] = 244, - [295] = 232, - [296] = 232, - [297] = 244, - [298] = 225, - [299] = 245, - [300] = 253, - [301] = 246, - [302] = 245, - [303] = 244, - [304] = 246, - [305] = 226, - [306] = 253, - [307] = 232, - [308] = 226, - [309] = 232, - [310] = 310, - [311] = 311, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 234, + [266] = 227, + [267] = 229, + [268] = 230, + [269] = 227, + [270] = 226, + [271] = 260, + [272] = 263, + [273] = 227, + [274] = 229, + [275] = 264, + [276] = 263, + [277] = 240, + [278] = 263, + [279] = 229, + [280] = 234, + [281] = 240, + [282] = 240, + [283] = 230, + [284] = 230, + [285] = 229, + [286] = 263, + [287] = 229, + [288] = 234, + [289] = 263, + [290] = 229, + [291] = 240, + [292] = 244, + [293] = 234, + [294] = 230, + [295] = 295, + [296] = 231, + [297] = 226, + [298] = 256, + [299] = 227, + [300] = 234, + [301] = 227, + [302] = 231, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 248, + [307] = 231, + [308] = 231, + [309] = 230, + [310] = 226, + [311] = 263, [312] = 312, - [313] = 313, - [314] = 314, + [313] = 263, + [314] = 227, [315] = 315, [316] = 316, [317] = 317, - [318] = 310, + [318] = 315, [319] = 319, [320] = 320, [321] = 321, @@ -4451,277 +4486,277 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [323] = 323, [324] = 324, [325] = 325, - [326] = 325, - [327] = 311, + [326] = 326, + [327] = 327, [328] = 328, [329] = 329, - [330] = 330, + [330] = 316, [331] = 331, - [332] = 332, - [333] = 333, - [334] = 332, - [335] = 329, - [336] = 325, + [332] = 327, + [333] = 317, + [334] = 334, + [335] = 335, + [336] = 336, [337] = 337, [338] = 338, [339] = 339, [340] = 340, - [341] = 339, - [342] = 342, - [343] = 329, - [344] = 332, - [345] = 345, - [346] = 346, - [347] = 329, - [348] = 330, - [349] = 331, - [350] = 332, - [351] = 351, - [352] = 330, + [341] = 341, + [342] = 337, + [343] = 343, + [344] = 334, + [345] = 339, + [346] = 338, + [347] = 323, + [348] = 335, + [349] = 334, + [350] = 331, + [351] = 316, + [352] = 328, [353] = 353, - [354] = 354, + [354] = 326, [355] = 355, - [356] = 331, - [357] = 337, - [358] = 329, - [359] = 351, - [360] = 332, - [361] = 353, - [362] = 362, - [363] = 337, - [364] = 364, - [365] = 355, - [366] = 353, - [367] = 312, - [368] = 313, - [369] = 314, - [370] = 315, - [371] = 316, - [372] = 317, - [373] = 373, - [374] = 310, - [375] = 320, - [376] = 321, - [377] = 325, - [378] = 322, - [379] = 323, - [380] = 324, - [381] = 311, - [382] = 382, - [383] = 311, - [384] = 353, - [385] = 329, - [386] = 328, - [387] = 353, - [388] = 353, - [389] = 330, - [390] = 339, - [391] = 391, - [392] = 331, - [393] = 393, - [394] = 325, - [395] = 325, + [356] = 325, + [357] = 324, + [358] = 322, + [359] = 321, + [360] = 320, + [361] = 319, + [362] = 315, + [363] = 363, + [364] = 323, + [365] = 353, + [366] = 363, + [367] = 317, + [368] = 315, + [369] = 369, + [370] = 327, + [371] = 319, + [372] = 320, + [373] = 321, + [374] = 326, + [375] = 334, + [376] = 363, + [377] = 322, + [378] = 378, + [379] = 324, + [380] = 325, + [381] = 326, + [382] = 315, + [383] = 383, + [384] = 384, + [385] = 328, + [386] = 340, + [387] = 316, + [388] = 331, + [389] = 334, + [390] = 335, + [391] = 353, + [392] = 339, + [393] = 338, + [394] = 339, + [395] = 337, [396] = 353, - [397] = 339, - [398] = 330, - [399] = 355, - [400] = 324, + [397] = 337, + [398] = 353, + [399] = 325, + [400] = 340, [401] = 339, - [402] = 353, - [403] = 325, - [404] = 353, - [405] = 405, - [406] = 323, - [407] = 331, - [408] = 331, - [409] = 355, - [410] = 328, - [411] = 312, - [412] = 313, - [413] = 311, - [414] = 314, - [415] = 324, - [416] = 315, - [417] = 316, - [418] = 317, - [419] = 323, - [420] = 310, - [421] = 351, - [422] = 320, - [423] = 313, - [424] = 321, - [425] = 322, - [426] = 322, - [427] = 323, - [428] = 324, - [429] = 339, - [430] = 321, - [431] = 330, - [432] = 311, - [433] = 320, - [434] = 328, - [435] = 322, - [436] = 317, - [437] = 316, - [438] = 315, - [439] = 314, - [440] = 313, - [441] = 312, - [442] = 321, - [443] = 328, - [444] = 353, - [445] = 331, - [446] = 353, - [447] = 320, - [448] = 314, - [449] = 315, - [450] = 355, - [451] = 310, - [452] = 317, - [453] = 453, - [454] = 338, - [455] = 316, - [456] = 315, - [457] = 316, - [458] = 314, - [459] = 313, - [460] = 312, - [461] = 453, - [462] = 317, - [463] = 353, - [464] = 310, - [465] = 320, - [466] = 351, - [467] = 355, - [468] = 312, - [469] = 313, - [470] = 312, - [471] = 314, - [472] = 315, - [473] = 330, - [474] = 332, - [475] = 321, - [476] = 328, - [477] = 325, - [478] = 328, - [479] = 331, - [480] = 316, - [481] = 317, - [482] = 324, - [483] = 310, - [484] = 328, - [485] = 323, - [486] = 311, - [487] = 339, - [488] = 324, - [489] = 323, - [490] = 322, - [491] = 321, - [492] = 320, - [493] = 310, - [494] = 317, - [495] = 316, - [496] = 315, - [497] = 314, - [498] = 313, - [499] = 312, - [500] = 311, - [501] = 329, - [502] = 355, - [503] = 332, - [504] = 324, - [505] = 322, - [506] = 355, - [507] = 353, - [508] = 323, - [509] = 509, + [402] = 338, + [403] = 327, + [404] = 335, + [405] = 363, + [406] = 337, + [407] = 319, + [408] = 320, + [409] = 321, + [410] = 322, + [411] = 353, + [412] = 324, + [413] = 325, + [414] = 327, + [415] = 317, + [416] = 334, + [417] = 317, + [418] = 340, + [419] = 331, + [420] = 335, + [421] = 326, + [422] = 328, + [423] = 326, + [424] = 328, + [425] = 325, + [426] = 426, + [427] = 324, + [428] = 322, + [429] = 321, + [430] = 316, + [431] = 431, + [432] = 315, + [433] = 433, + [434] = 340, + [435] = 363, + [436] = 331, + [437] = 320, + [438] = 319, + [439] = 338, + [440] = 363, + [441] = 363, + [442] = 442, + [443] = 426, + [444] = 444, + [445] = 363, + [446] = 335, + [447] = 363, + [448] = 323, + [449] = 341, + [450] = 315, + [451] = 426, + [452] = 442, + [453] = 319, + [454] = 320, + [455] = 321, + [456] = 322, + [457] = 315, + [458] = 363, + [459] = 324, + [460] = 325, + [461] = 461, + [462] = 326, + [463] = 328, + [464] = 316, + [465] = 340, + [466] = 319, + [467] = 331, + [468] = 320, + [469] = 469, + [470] = 317, + [471] = 327, + [472] = 334, + [473] = 321, + [474] = 335, + [475] = 363, + [476] = 323, + [477] = 338, + [478] = 323, + [479] = 426, + [480] = 323, + [481] = 338, + [482] = 327, + [483] = 317, + [484] = 339, + [485] = 322, + [486] = 324, + [487] = 323, + [488] = 337, + [489] = 325, + [490] = 326, + [491] = 328, + [492] = 353, + [493] = 316, + [494] = 331, + [495] = 331, + [496] = 340, + [497] = 334, + [498] = 328, + [499] = 499, + [500] = 337, + [501] = 319, + [502] = 338, + [503] = 335, + [504] = 317, + [505] = 320, + [506] = 321, + [507] = 327, + [508] = 363, + [509] = 322, [510] = 339, - [511] = 322, - [512] = 321, - [513] = 330, - [514] = 320, - [515] = 329, - [516] = 332, - [517] = 517, - [518] = 517, - [519] = 517, - [520] = 520, - [521] = 520, + [511] = 340, + [512] = 339, + [513] = 353, + [514] = 514, + [515] = 316, + [516] = 337, + [517] = 324, + [518] = 363, + [519] = 519, + [520] = 519, + [521] = 519, [522] = 522, [523] = 522, - [524] = 522, - [525] = 525, - [526] = 525, + [524] = 524, + [525] = 524, + [526] = 524, [527] = 527, [528] = 527, - [529] = 527, - [530] = 530, - [531] = 530, + [529] = 529, + [530] = 529, + [531] = 529, [532] = 532, - [533] = 530, - [534] = 169, + [533] = 155, + [534] = 161, [535] = 532, - [536] = 163, + [536] = 536, [537] = 537, [538] = 537, - [539] = 532, - [540] = 540, - [541] = 541, + [539] = 537, + [540] = 536, + [541] = 536, [542] = 542, [543] = 543, [544] = 544, [545] = 545, - [546] = 545, + [546] = 546, [547] = 547, - [548] = 545, + [548] = 548, [549] = 547, - [550] = 547, - [551] = 551, - [552] = 552, - [553] = 552, - [554] = 554, - [555] = 554, - [556] = 554, - [557] = 554, - [558] = 558, - [559] = 559, - [560] = 554, - [561] = 558, - [562] = 551, - [563] = 554, - [564] = 554, - [565] = 554, + [550] = 548, + [551] = 547, + [552] = 548, + [553] = 553, + [554] = 553, + [555] = 555, + [556] = 556, + [557] = 556, + [558] = 556, + [559] = 556, + [560] = 560, + [561] = 560, + [562] = 562, + [563] = 555, + [564] = 556, + [565] = 556, [566] = 566, - [567] = 554, - [568] = 167, - [569] = 554, - [570] = 152, - [571] = 571, - [572] = 172, - [573] = 146, - [574] = 167, - [575] = 160, - [576] = 172, - [577] = 577, - [578] = 152, + [567] = 567, + [568] = 556, + [569] = 145, + [570] = 162, + [571] = 556, + [572] = 556, + [573] = 556, + [574] = 159, + [575] = 575, + [576] = 153, + [577] = 163, + [578] = 145, [579] = 579, - [580] = 554, - [581] = 170, - [582] = 577, - [583] = 583, - [584] = 577, - [585] = 160, - [586] = 552, - [587] = 554, - [588] = 139, - [589] = 554, - [590] = 551, - [591] = 559, - [592] = 592, - [593] = 554, - [594] = 594, + [580] = 580, + [581] = 556, + [582] = 163, + [583] = 154, + [584] = 579, + [585] = 553, + [586] = 154, + [587] = 556, + [588] = 162, + [589] = 579, + [590] = 137, + [591] = 141, + [592] = 556, + [593] = 555, + [594] = 562, [595] = 595, - [596] = 596, + [596] = 556, [597] = 597, [598] = 598, [599] = 599, @@ -4731,17 +4766,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [603] = 603, [604] = 604, [605] = 605, - [606] = 140, + [606] = 556, [607] = 607, - [608] = 608, + [608] = 140, [609] = 609, - [610] = 153, + [610] = 610, [611] = 611, [612] = 612, [613] = 613, - [614] = 554, - [615] = 615, - [616] = 616, + [614] = 614, + [615] = 164, + [616] = 156, [617] = 617, [618] = 618, [619] = 619, @@ -4761,19 +4796,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [633] = 633, [634] = 634, [635] = 635, - [636] = 636, + [636] = 146, [637] = 637, [638] = 638, [639] = 639, [640] = 640, [641] = 641, - [642] = 146, - [643] = 170, + [642] = 642, + [643] = 643, [644] = 644, - [645] = 645, + [645] = 153, [646] = 646, [647] = 647, - [648] = 648, + [648] = 159, [649] = 649, [650] = 650, [651] = 651, @@ -4821,7 +4856,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [693] = 693, [694] = 694, [695] = 695, - [696] = 174, + [696] = 696, [697] = 697, [698] = 698, [699] = 699, @@ -4846,7 +4881,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [718] = 718, [719] = 719, [720] = 720, - [721] = 721, + [721] = 166, [722] = 722, [723] = 723, [724] = 724, @@ -4857,7 +4892,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [729] = 729, [730] = 730, [731] = 731, - [732] = 156, + [732] = 732, [733] = 733, [734] = 734, [735] = 735, @@ -4887,24 +4922,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [759] = 759, [760] = 760, [761] = 761, - [762] = 761, - [763] = 761, - [764] = 761, - [765] = 761, - [766] = 766, - [767] = 767, - [768] = 767, - [769] = 766, - [770] = 766, - [771] = 767, - [772] = 766, - [773] = 767, - [774] = 767, - [775] = 766, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 765, + [767] = 765, + [768] = 765, + [769] = 765, + [770] = 770, + [771] = 771, + [772] = 771, + [773] = 770, + [774] = 771, + [775] = 770, + [776] = 770, + [777] = 771, + [778] = 770, + [779] = 771, [780] = 780, [781] = 781, [782] = 782, @@ -4919,447 +4954,447 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [791] = 791, [792] = 792, [793] = 793, - [794] = 793, + [794] = 794, [795] = 795, - [796] = 795, - [797] = 795, - [798] = 793, - [799] = 799, - [800] = 799, - [801] = 799, - [802] = 802, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 797, + [800] = 797, + [801] = 798, + [802] = 798, [803] = 803, - [804] = 804, - [805] = 805, + [804] = 803, + [805] = 803, [806] = 806, [807] = 807, - [808] = 802, - [809] = 806, + [808] = 808, + [809] = 809, [810] = 807, - [811] = 805, - [812] = 803, - [813] = 805, - [814] = 803, - [815] = 815, - [816] = 802, - [817] = 802, - [818] = 807, - [819] = 815, - [820] = 815, - [821] = 815, - [822] = 822, - [823] = 815, - [824] = 802, - [825] = 822, - [826] = 815, + [811] = 807, + [812] = 812, + [813] = 809, + [814] = 814, + [815] = 806, + [816] = 814, + [817] = 817, + [818] = 809, + [819] = 808, + [820] = 817, + [821] = 808, + [822] = 817, + [823] = 823, + [824] = 807, + [825] = 807, + [826] = 814, [827] = 807, - [828] = 806, - [829] = 815, - [830] = 807, - [831] = 806, + [828] = 817, + [829] = 807, + [830] = 809, + [831] = 817, [832] = 806, - [833] = 815, - [834] = 803, - [835] = 815, - [836] = 802, - [837] = 805, - [838] = 838, + [833] = 814, + [834] = 808, + [835] = 817, + [836] = 807, + [837] = 809, + [838] = 807, [839] = 806, - [840] = 815, - [841] = 807, - [842] = 815, - [843] = 807, - [844] = 803, - [845] = 805, - [846] = 815, - [847] = 805, - [848] = 806, + [840] = 806, + [841] = 808, + [842] = 807, + [843] = 817, + [844] = 809, + [845] = 807, + [846] = 809, + [847] = 814, + [848] = 807, [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, + [850] = 806, + [851] = 812, + [852] = 808, [853] = 853, [854] = 854, - [855] = 854, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, [859] = 859, - [860] = 852, - [861] = 861, - [862] = 862, - [863] = 862, + [860] = 854, + [861] = 856, + [862] = 853, + [863] = 858, [864] = 864, [865] = 865, - [866] = 856, - [867] = 851, - [868] = 857, - [869] = 849, - [870] = 870, - [871] = 871, - [872] = 865, - [873] = 857, - [874] = 874, - [875] = 864, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 861, - [881] = 849, - [882] = 862, - [883] = 883, - [884] = 884, - [885] = 885, + [866] = 866, + [867] = 857, + [868] = 868, + [869] = 857, + [870] = 854, + [871] = 854, + [872] = 872, + [873] = 873, + [874] = 856, + [875] = 875, + [876] = 864, + [877] = 853, + [878] = 864, + [879] = 864, + [880] = 880, + [881] = 881, + [882] = 859, + [883] = 854, + [884] = 857, + [885] = 855, [886] = 886, - [887] = 878, - [888] = 861, - [889] = 858, - [890] = 878, - [891] = 849, - [892] = 870, - [893] = 859, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 872, + [891] = 891, + [892] = 855, + [893] = 893, [894] = 894, - [895] = 864, - [896] = 865, - [897] = 856, - [898] = 886, - [899] = 870, - [900] = 858, - [901] = 859, - [902] = 878, - [903] = 886, - [904] = 856, - [905] = 865, - [906] = 864, - [907] = 852, - [908] = 864, - [909] = 862, - [910] = 849, - [911] = 857, - [912] = 865, - [913] = 851, - [914] = 914, - [915] = 915, - [916] = 856, - [917] = 876, - [918] = 861, - [919] = 851, - [920] = 870, - [921] = 878, - [922] = 858, + [895] = 886, + [896] = 875, + [897] = 865, + [898] = 898, + [899] = 866, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 872, + [904] = 893, + [905] = 901, + [906] = 881, + [907] = 855, + [908] = 855, + [909] = 886, + [910] = 853, + [911] = 898, + [912] = 893, + [913] = 868, + [914] = 858, + [915] = 881, + [916] = 916, + [917] = 881, + [918] = 872, + [919] = 902, + [920] = 920, + [921] = 921, + [922] = 922, [923] = 859, - [924] = 862, - [925] = 874, - [926] = 852, - [927] = 927, - [928] = 849, - [929] = 862, - [930] = 861, - [931] = 870, - [932] = 857, - [933] = 874, - [934] = 876, - [935] = 851, - [936] = 874, - [937] = 914, - [938] = 886, - [939] = 851, - [940] = 914, - [941] = 857, - [942] = 876, - [943] = 914, - [944] = 852, - [945] = 878, - [946] = 870, - [947] = 856, - [948] = 865, - [949] = 864, - [950] = 879, - [951] = 886, - [952] = 861, - [953] = 953, - [954] = 852, + [924] = 856, + [925] = 858, + [926] = 858, + [927] = 856, + [928] = 872, + [929] = 875, + [930] = 901, + [931] = 859, + [932] = 866, + [933] = 933, + [934] = 880, + [935] = 898, + [936] = 865, + [937] = 865, + [938] = 875, + [939] = 864, + [940] = 881, + [941] = 893, + [942] = 886, + [943] = 855, + [944] = 859, + [945] = 893, + [946] = 864, + [947] = 881, + [948] = 872, + [949] = 853, + [950] = 886, + [951] = 893, + [952] = 853, + [953] = 875, + [954] = 898, [955] = 955, - [956] = 877, - [957] = 927, - [958] = 958, - [959] = 955, - [960] = 858, + [956] = 956, + [957] = 957, + [958] = 859, + [959] = 959, + [960] = 865, [961] = 961, - [962] = 859, - [963] = 963, - [964] = 862, - [965] = 914, - [966] = 853, - [967] = 967, - [968] = 859, - [969] = 969, - [970] = 876, - [971] = 874, - [972] = 886, - [973] = 973, - [974] = 874, - [975] = 975, - [976] = 876, - [977] = 914, - [978] = 978, - [979] = 969, - [980] = 858, - [981] = 927, - [982] = 838, - [983] = 983, - [984] = 927, - [985] = 927, + [962] = 898, + [963] = 856, + [964] = 858, + [965] = 866, + [966] = 901, + [967] = 893, + [968] = 968, + [969] = 901, + [970] = 970, + [971] = 857, + [972] = 854, + [973] = 886, + [974] = 866, + [975] = 898, + [976] = 865, + [977] = 875, + [978] = 891, + [979] = 901, + [980] = 866, + [981] = 889, + [982] = 922, + [983] = 857, + [984] = 933, + [985] = 985, [986] = 986, - [987] = 986, - [988] = 927, - [989] = 989, - [990] = 983, - [991] = 991, - [992] = 991, - [993] = 927, - [994] = 927, - [995] = 991, - [996] = 927, - [997] = 927, - [998] = 998, + [987] = 985, + [988] = 849, + [989] = 880, + [990] = 880, + [991] = 986, + [992] = 880, + [993] = 880, + [994] = 994, + [995] = 995, + [996] = 880, + [997] = 880, + [998] = 995, [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, + [1000] = 880, + [1001] = 995, + [1002] = 880, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, [1007] = 1007, - [1008] = 1008, - [1009] = 1003, - [1010] = 1005, - [1011] = 927, - [1012] = 927, + [1008] = 812, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1007, [1013] = 1013, [1014] = 1013, [1015] = 1015, - [1016] = 1003, - [1017] = 1000, - [1018] = 822, + [1016] = 1016, + [1017] = 880, + [1018] = 880, [1019] = 1019, - [1020] = 1005, - [1021] = 927, - [1022] = 927, - [1023] = 1023, - [1024] = 838, - [1025] = 780, - [1026] = 989, + [1020] = 1020, + [1021] = 1007, + [1022] = 1016, + [1023] = 1013, + [1024] = 1009, + [1025] = 880, + [1026] = 994, [1027] = 1027, - [1028] = 1028, + [1028] = 880, [1029] = 1029, - [1030] = 927, - [1031] = 1031, - [1032] = 1027, - [1033] = 789, - [1034] = 1027, - [1035] = 1035, - [1036] = 1029, - [1037] = 927, - [1038] = 1038, + [1030] = 880, + [1031] = 849, + [1032] = 791, + [1033] = 1033, + [1034] = 1034, + [1035] = 786, + [1036] = 1036, + [1037] = 1027, + [1038] = 1029, [1039] = 1039, - [1040] = 1040, - [1041] = 1027, - [1042] = 1027, - [1043] = 1029, - [1044] = 1023, - [1045] = 1027, - [1046] = 1046, - [1047] = 1023, - [1048] = 1048, - [1049] = 1038, - [1050] = 1023, - [1051] = 1039, - [1052] = 1048, - [1053] = 1053, - [1054] = 1040, - [1055] = 1048, + [1040] = 1027, + [1041] = 1041, + [1042] = 1036, + [1043] = 1043, + [1044] = 1044, + [1045] = 1044, + [1046] = 1027, + [1047] = 1047, + [1048] = 1047, + [1049] = 880, + [1050] = 1029, + [1051] = 1029, + [1052] = 1027, + [1053] = 1036, + [1054] = 1054, + [1055] = 1027, [1056] = 1056, - [1057] = 1040, + [1057] = 1057, [1058] = 1058, [1059] = 1059, - [1060] = 1060, - [1061] = 1058, - [1062] = 1027, - [1063] = 1060, - [1064] = 1040, - [1065] = 1027, - [1066] = 1066, - [1067] = 1059, - [1068] = 1053, + [1060] = 1057, + [1061] = 1056, + [1062] = 1062, + [1063] = 1062, + [1064] = 1058, + [1065] = 1059, + [1066] = 1027, + [1067] = 1043, + [1068] = 1029, [1069] = 1027, - [1070] = 1066, - [1071] = 1023, - [1072] = 1023, - [1073] = 1040, + [1070] = 1054, + [1071] = 1027, + [1072] = 1043, + [1073] = 1043, [1074] = 1074, - [1075] = 1031, - [1076] = 1040, - [1077] = 1058, - [1078] = 1059, - [1079] = 1027, - [1080] = 1006, - [1081] = 1081, - [1082] = 1058, - [1083] = 1046, - [1084] = 1084, - [1085] = 1085, - [1086] = 1058, - [1087] = 1048, - [1088] = 1059, - [1089] = 1031, - [1090] = 780, - [1091] = 1015, - [1092] = 1092, - [1093] = 1058, - [1094] = 1001, - [1095] = 1023, - [1096] = 1008, - [1097] = 1019, - [1098] = 1027, - [1099] = 999, - [1100] = 1023, - [1101] = 1074, - [1102] = 1081, - [1103] = 1059, - [1104] = 1059, - [1105] = 789, - [1106] = 1085, - [1107] = 1004, - [1108] = 1040, - [1109] = 1056, - [1110] = 1023, + [1075] = 1054, + [1076] = 1029, + [1077] = 1027, + [1078] = 1057, + [1079] = 1033, + [1080] = 1005, + [1081] = 1043, + [1082] = 1003, + [1083] = 1006, + [1084] = 1057, + [1085] = 1058, + [1086] = 1033, + [1087] = 1027, + [1088] = 1010, + [1089] = 1011, + [1090] = 1029, + [1091] = 1043, + [1092] = 1041, + [1093] = 1093, + [1094] = 1094, + [1095] = 1058, + [1096] = 1054, + [1097] = 1057, + [1098] = 1057, + [1099] = 1099, + [1100] = 1100, + [1101] = 1029, + [1102] = 1102, + [1103] = 1099, + [1104] = 786, + [1105] = 1019, + [1106] = 791, + [1107] = 1020, + [1108] = 1100, + [1109] = 1058, + [1110] = 1102, [1111] = 1058, - [1112] = 1040, - [1113] = 1113, - [1114] = 1058, - [1115] = 1031, - [1116] = 1027, - [1117] = 1059, - [1118] = 1035, + [1112] = 1112, + [1113] = 1027, + [1114] = 1057, + [1115] = 1029, + [1116] = 1057, + [1117] = 1043, + [1118] = 1118, [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1059, - [1123] = 1031, + [1120] = 1033, + [1121] = 1058, + [1122] = 1057, + [1123] = 1057, [1124] = 1124, - [1125] = 1027, - [1126] = 1059, + [1125] = 1119, + [1126] = 1027, [1127] = 1127, - [1128] = 1058, - [1129] = 1059, - [1130] = 1058, - [1131] = 1124, - [1132] = 1132, - [1133] = 1133, - [1134] = 1039, - [1135] = 1058, - [1136] = 1040, + [1128] = 1033, + [1129] = 1129, + [1130] = 1039, + [1131] = 1058, + [1132] = 1058, + [1133] = 1074, + [1134] = 1058, + [1135] = 1043, + [1136] = 1033, [1137] = 1137, - [1138] = 1031, - [1139] = 1139, - [1140] = 1031, - [1141] = 1038, - [1142] = 1059, - [1143] = 1058, - [1144] = 1144, - [1145] = 1059, - [1146] = 1146, - [1147] = 1066, - [1148] = 1059, - [1149] = 1092, + [1138] = 1057, + [1139] = 1044, + [1140] = 1047, + [1141] = 1043, + [1142] = 1058, + [1143] = 1143, + [1144] = 1033, + [1145] = 1145, + [1146] = 1057, + [1147] = 1058, + [1148] = 1148, + [1149] = 1149, [1150] = 1150, - [1151] = 1059, - [1152] = 1031, - [1153] = 1058, - [1154] = 1084, + [1151] = 1058, + [1152] = 1152, + [1153] = 1093, + [1154] = 1057, [1155] = 1058, - [1156] = 1046, - [1157] = 1157, - [1158] = 1158, - [1159] = 1056, - [1160] = 1059, - [1161] = 1031, - [1162] = 1058, - [1163] = 1119, - [1164] = 1164, - [1165] = 1164, - [1166] = 1164, - [1167] = 1164, - [1168] = 1164, - [1169] = 1164, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, + [1156] = 1033, + [1157] = 1062, + [1158] = 1041, + [1159] = 1094, + [1160] = 1057, + [1161] = 1161, + [1162] = 1162, + [1163] = 1057, + [1164] = 1058, + [1165] = 1033, + [1166] = 1118, + [1167] = 1074, + [1168] = 1168, + [1169] = 1168, + [1170] = 1168, + [1171] = 1168, + [1172] = 1168, + [1173] = 1168, [1174] = 1174, - [1175] = 1171, - [1176] = 1173, - [1177] = 1172, - [1178] = 1171, - [1179] = 1174, - [1180] = 1172, - [1181] = 1174, - [1182] = 1172, - [1183] = 1171, - [1184] = 1171, - [1185] = 1174, - [1186] = 1173, - [1187] = 1172, - [1188] = 1173, - [1189] = 1174, - [1190] = 1171, - [1191] = 1173, - [1192] = 1173, - [1193] = 1172, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1197, - [1199] = 169, - [1200] = 1197, - [1201] = 163, - [1202] = 1197, - [1203] = 1197, - [1204] = 1197, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1176, + [1180] = 1176, + [1181] = 1177, + [1182] = 1175, + [1183] = 1177, + [1184] = 1178, + [1185] = 1176, + [1186] = 1177, + [1187] = 1177, + [1188] = 1178, + [1189] = 1175, + [1190] = 1178, + [1191] = 1178, + [1192] = 1175, + [1193] = 1175, + [1194] = 1177, + [1195] = 1175, + [1196] = 1178, + [1197] = 1176, + [1198] = 1198, + [1199] = 1199, + [1200] = 155, + [1201] = 1198, + [1202] = 1198, + [1203] = 1203, + [1204] = 1198, [1205] = 1205, - [1206] = 1206, - [1207] = 139, - [1208] = 1208, + [1206] = 1198, + [1207] = 161, + [1208] = 1198, [1209] = 1209, [1210] = 1210, - [1211] = 1209, - [1212] = 1209, - [1213] = 1209, - [1214] = 1209, - [1215] = 140, - [1216] = 1209, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 127, + [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 163, + [1219] = 1212, + [1220] = 1212, [1221] = 1221, - [1222] = 1209, - [1223] = 1223, - [1224] = 169, - [1225] = 141, + [1222] = 1212, + [1223] = 137, + [1224] = 1212, + [1225] = 140, [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 167, - [1231] = 140, - [1232] = 139, + [1227] = 141, + [1228] = 161, + [1229] = 155, + [1230] = 1212, + [1231] = 1212, + [1232] = 1232, [1233] = 1233, - [1234] = 1234, + [1234] = 140, [1235] = 1235, [1236] = 1236, [1237] = 1237, @@ -5369,9 +5404,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 153, + [1244] = 1244, [1245] = 1245, - [1246] = 544, + [1246] = 1246, [1247] = 1247, [1248] = 1248, [1249] = 1249, @@ -5379,13 +5414,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1251] = 1251, [1252] = 1252, [1253] = 1253, - [1254] = 1254, + [1254] = 544, [1255] = 1255, [1256] = 1256, - [1257] = 1257, + [1257] = 141, [1258] = 1258, [1259] = 1259, - [1260] = 1260, + [1260] = 137, [1261] = 1261, [1262] = 1262, [1263] = 1263, @@ -5393,13 +5428,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1265] = 1265, [1266] = 1266, [1267] = 1267, - [1268] = 543, + [1268] = 1268, [1269] = 1269, - [1270] = 152, - [1271] = 540, + [1270] = 1270, + [1271] = 1271, [1272] = 1272, [1273] = 1273, - [1274] = 1274, + [1274] = 145, [1275] = 1275, [1276] = 1276, [1277] = 1277, @@ -5419,20 +5454,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1291] = 1291, [1292] = 1292, [1293] = 1293, - [1294] = 1294, + [1294] = 796, [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 791, + [1298] = 1298, [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1303, + [1303] = 542, [1304] = 1304, [1305] = 1305, [1306] = 1306, - [1307] = 541, + [1307] = 1307, [1308] = 1308, [1309] = 1309, [1310] = 1310, @@ -5443,18 +5478,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1318, + [1318] = 545, [1319] = 1319, [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 792, + [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, - [1328] = 1328, - [1329] = 1329, + [1328] = 162, + [1329] = 794, [1330] = 1330, [1331] = 1331, [1332] = 1332, @@ -5469,45 +5504,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1341] = 1341, [1342] = 1342, [1343] = 1343, - [1344] = 790, + [1344] = 543, [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, [1349] = 1349, [1350] = 1350, - [1351] = 542, - [1352] = 1352, + [1351] = 1351, + [1352] = 546, [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 1342, + [1356] = 1356, [1357] = 1357, - [1358] = 160, - [1359] = 1359, - [1360] = 1360, + [1358] = 1358, + [1359] = 156, + [1360] = 795, [1361] = 1361, [1362] = 1362, - [1363] = 1363, + [1363] = 164, [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1367, + [1367] = 1361, [1368] = 1368, - [1369] = 1248, - [1370] = 1205, - [1371] = 1371, + [1369] = 1369, + [1370] = 1370, + [1371] = 1275, [1372] = 1372, - [1373] = 1262, - [1374] = 1374, + [1373] = 1373, + [1374] = 1236, [1375] = 1375, - [1376] = 1376, - [1377] = 1377, - [1378] = 172, + [1376] = 1290, + [1377] = 159, + [1378] = 1378, [1379] = 1379, - [1380] = 156, + [1380] = 1380, [1381] = 1381, - [1382] = 1382, + [1382] = 1244, [1383] = 1383, [1384] = 1384, [1385] = 1385, @@ -5515,825 +5550,825 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 1390, - [1391] = 153, - [1392] = 174, - [1393] = 1302, - [1394] = 1256, + [1390] = 154, + [1391] = 1245, + [1392] = 1392, + [1393] = 1364, + [1394] = 1394, [1395] = 1395, - [1396] = 1262, - [1397] = 1355, - [1398] = 1272, - [1399] = 1277, + [1396] = 1361, + [1397] = 1397, + [1398] = 1324, + [1399] = 1399, [1400] = 1400, [1401] = 1401, - [1402] = 1336, + [1402] = 153, [1403] = 1403, - [1404] = 1321, - [1405] = 1390, + [1404] = 1404, + [1405] = 1405, [1406] = 1406, - [1407] = 1248, - [1408] = 170, - [1409] = 1409, + [1407] = 1407, + [1408] = 1408, + [1409] = 1356, [1410] = 1410, - [1411] = 1411, - [1412] = 1320, - [1413] = 1413, - [1414] = 1414, - [1415] = 160, + [1411] = 1348, + [1412] = 1412, + [1413] = 1349, + [1414] = 1350, + [1415] = 1338, [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 1325, - [1420] = 1317, - [1421] = 1316, - [1422] = 1422, + [1417] = 1247, + [1418] = 163, + [1419] = 1368, + [1420] = 166, + [1421] = 1421, + [1422] = 146, [1423] = 1423, - [1424] = 1424, + [1424] = 146, [1425] = 1425, - [1426] = 1426, + [1426] = 154, [1427] = 1427, - [1428] = 1428, - [1429] = 1315, - [1430] = 1314, - [1431] = 1390, + [1428] = 159, + [1429] = 145, + [1430] = 1430, + [1431] = 1431, [1432] = 1432, - [1433] = 1433, - [1434] = 1434, + [1433] = 1275, + [1434] = 166, [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1253, - [1440] = 1256, - [1441] = 1381, - [1442] = 1312, - [1443] = 1310, - [1444] = 1309, - [1445] = 1308, - [1446] = 1306, - [1447] = 1206, - [1448] = 1448, - [1449] = 1449, - [1450] = 1305, - [1451] = 1451, - [1452] = 170, - [1453] = 1288, - [1454] = 1390, - [1455] = 1455, + [1436] = 1247, + [1437] = 1286, + [1438] = 1288, + [1439] = 156, + [1440] = 1289, + [1441] = 1350, + [1442] = 1347, + [1443] = 1210, + [1444] = 1444, + [1445] = 164, + [1446] = 1446, + [1447] = 1245, + [1448] = 1295, + [1449] = 1236, + [1450] = 1324, + [1451] = 1349, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1290, [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, + [1457] = 1348, + [1458] = 153, + [1459] = 1356, [1460] = 1460, - [1461] = 1253, - [1462] = 1272, + [1461] = 1244, + [1462] = 1462, [1463] = 1463, - [1464] = 146, - [1465] = 1465, - [1466] = 1466, - [1467] = 174, - [1468] = 1302, - [1469] = 167, + [1464] = 1464, + [1465] = 1300, + [1466] = 1301, + [1467] = 1302, + [1468] = 1468, + [1469] = 1469, [1470] = 1470, [1471] = 1471, - [1472] = 1472, - [1473] = 1277, - [1474] = 1325, - [1475] = 1288, - [1476] = 1476, - [1477] = 1477, - [1478] = 1342, - [1479] = 1336, - [1480] = 1295, - [1481] = 1291, - [1482] = 1355, - [1483] = 1483, - [1484] = 1294, - [1485] = 1295, - [1486] = 146, - [1487] = 1321, - [1488] = 1320, - [1489] = 1317, - [1490] = 1294, - [1491] = 1316, - [1492] = 1492, + [1472] = 1339, + [1473] = 1473, + [1474] = 1312, + [1475] = 1475, + [1476] = 1286, + [1477] = 1288, + [1478] = 1319, + [1479] = 1479, + [1480] = 1289, + [1481] = 1481, + [1482] = 1321, + [1483] = 1295, + [1484] = 1347, + [1485] = 1300, + [1486] = 1209, + [1487] = 1364, + [1488] = 1322, + [1489] = 1301, + [1490] = 1364, + [1491] = 1491, + [1492] = 1427, [1493] = 1493, - [1494] = 1291, + [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1374, - [1498] = 152, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, - [1500] = 1305, - [1501] = 1501, - [1502] = 1306, - [1503] = 1308, - [1504] = 1309, - [1505] = 1310, - [1506] = 172, - [1507] = 1379, - [1508] = 1312, - [1509] = 156, - [1510] = 1315, - [1511] = 1511, - [1512] = 1314, - [1513] = 1223, - [1514] = 1219, - [1515] = 1381, - [1516] = 1321, - [1517] = 1314, - [1518] = 1352, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1321, - [1523] = 1320, - [1524] = 1217, - [1525] = 1297, - [1526] = 1210, - [1527] = 1521, - [1528] = 1374, - [1529] = 1529, - [1530] = 1262, - [1531] = 1256, - [1532] = 1520, - [1533] = 1521, - [1534] = 1320, - [1535] = 1355, - [1536] = 1272, - [1537] = 1277, - [1538] = 1288, - [1539] = 1291, - [1540] = 1294, - [1541] = 1295, - [1542] = 1302, - [1543] = 1543, - [1544] = 1305, - [1545] = 1306, - [1546] = 1308, - [1547] = 1547, - [1548] = 1317, - [1549] = 1253, + [1500] = 1500, + [1501] = 1302, + [1502] = 1304, + [1503] = 1312, + [1504] = 1504, + [1505] = 1473, + [1506] = 1506, + [1507] = 1507, + [1508] = 1319, + [1509] = 1509, + [1510] = 1510, + [1511] = 162, + [1512] = 1512, + [1513] = 1321, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1322, + [1518] = 1338, + [1519] = 1339, + [1520] = 163, + [1521] = 1304, + [1522] = 1522, + [1523] = 1275, + [1524] = 1347, + [1525] = 1348, + [1526] = 1349, + [1527] = 1350, + [1528] = 1339, + [1529] = 1361, + [1530] = 1338, + [1531] = 1531, + [1532] = 1532, + [1533] = 1322, + [1534] = 1321, + [1535] = 1289, + [1536] = 1319, + [1537] = 1312, + [1538] = 1324, + [1539] = 1539, + [1540] = 1304, + [1541] = 1302, + [1542] = 1301, + [1543] = 1539, + [1544] = 1214, + [1545] = 1217, + [1546] = 1221, + [1547] = 1300, + [1548] = 1548, + [1549] = 1356, [1550] = 1550, - [1551] = 1248, - [1552] = 1552, - [1553] = 1309, - [1554] = 1310, - [1555] = 1312, - [1556] = 1336, - [1557] = 1557, - [1558] = 1558, - [1559] = 1316, - [1560] = 1315, - [1561] = 1316, - [1562] = 1315, - [1563] = 1221, - [1564] = 1317, - [1565] = 1294, - [1566] = 1566, - [1567] = 1438, - [1568] = 1342, - [1569] = 1314, - [1570] = 1550, - [1571] = 1355, - [1572] = 1336, - [1573] = 1342, - [1574] = 1325, - [1575] = 1312, - [1576] = 1310, - [1577] = 1521, - [1578] = 1520, - [1579] = 1325, - [1580] = 1519, - [1581] = 1248, - [1582] = 1253, - [1583] = 1256, - [1584] = 1262, - [1585] = 1519, - [1586] = 1438, - [1587] = 1226, + [1551] = 1295, + [1552] = 1339, + [1553] = 1531, + [1554] = 1289, + [1555] = 1555, + [1556] = 1288, + [1557] = 1324, + [1558] = 1286, + [1559] = 1446, + [1560] = 1244, + [1561] = 1290, + [1562] = 1236, + [1563] = 1563, + [1564] = 1350, + [1565] = 1539, + [1566] = 1550, + [1567] = 1531, + [1568] = 1349, + [1569] = 1539, + [1570] = 1338, + [1571] = 1348, + [1572] = 1361, + [1573] = 1573, + [1574] = 1446, + [1575] = 1531, + [1576] = 1532, + [1577] = 1356, + [1578] = 1320, + [1579] = 1326, + [1580] = 1245, + [1581] = 1275, + [1582] = 1582, + [1583] = 1326, + [1584] = 1247, + [1585] = 1531, + [1586] = 1586, + [1587] = 1587, [1588] = 1588, - [1589] = 1519, - [1590] = 1590, - [1591] = 1208, - [1592] = 1218, - [1593] = 1521, - [1594] = 1594, - [1595] = 1590, - [1596] = 1272, - [1597] = 1308, - [1598] = 1277, - [1599] = 1599, - [1600] = 1288, - [1601] = 1352, - [1602] = 1338, - [1603] = 1338, - [1604] = 1352, - [1605] = 1520, - [1606] = 1306, - [1607] = 1521, - [1608] = 1521, - [1609] = 1291, - [1610] = 1379, - [1611] = 1295, - [1612] = 1302, - [1613] = 1613, - [1614] = 1520, - [1615] = 1519, - [1616] = 1309, - [1617] = 1305, - [1618] = 1618, - [1619] = 1338, - [1620] = 1329, - [1621] = 1350, - [1622] = 1622, - [1623] = 1287, - [1624] = 1286, - [1625] = 1284, - [1626] = 1282, - [1627] = 1335, - [1628] = 1279, - [1629] = 1278, - [1630] = 1276, - [1631] = 1275, - [1632] = 1273, - [1633] = 1352, - [1634] = 540, - [1635] = 1622, - [1636] = 1301, - [1637] = 1338, - [1638] = 1303, - [1639] = 1343, - [1640] = 1243, - [1641] = 1641, - [1642] = 1242, - [1643] = 792, - [1644] = 1236, - [1645] = 1376, - [1646] = 1622, - [1647] = 1622, - [1648] = 541, - [1649] = 1649, - [1650] = 1311, - [1651] = 1318, - [1652] = 1324, - [1653] = 1266, - [1654] = 1326, - [1655] = 1264, - [1656] = 1263, - [1657] = 1261, - [1658] = 1260, - [1659] = 1259, - [1660] = 1258, - [1661] = 1257, - [1662] = 1255, - [1663] = 1254, - [1664] = 790, - [1665] = 1252, - [1666] = 1666, - [1667] = 1618, - [1668] = 1668, - [1669] = 1249, - [1670] = 1330, - [1671] = 544, - [1672] = 1331, - [1673] = 1332, - [1674] = 1333, - [1675] = 1334, - [1676] = 1248, - [1677] = 1253, - [1678] = 1337, - [1679] = 1256, - [1680] = 1339, - [1681] = 1340, - [1682] = 1341, - [1683] = 1345, - [1684] = 1346, - [1685] = 1262, - [1686] = 1347, - [1687] = 1687, - [1688] = 1319, - [1689] = 1296, - [1690] = 1558, - [1691] = 1449, - [1692] = 1451, - [1693] = 1693, - [1694] = 1349, - [1695] = 1299, - [1696] = 1338, - [1697] = 1697, - [1698] = 791, - [1699] = 1233, - [1700] = 1700, - [1701] = 1558, - [1702] = 1352, - [1703] = 1289, - [1704] = 1558, - [1705] = 542, - [1706] = 1353, - [1707] = 1237, - [1708] = 1240, - [1709] = 1328, - [1710] = 1304, - [1711] = 1300, - [1712] = 1293, - [1713] = 1290, - [1714] = 1285, - [1715] = 1227, - [1716] = 1716, - [1717] = 1280, - [1718] = 1274, - [1719] = 1719, + [1589] = 1589, + [1590] = 1347, + [1591] = 1320, + [1592] = 1550, + [1593] = 1245, + [1594] = 1573, + [1595] = 1247, + [1596] = 1596, + [1597] = 1531, + [1598] = 1211, + [1599] = 1322, + [1600] = 1216, + [1601] = 1293, + [1602] = 1319, + [1603] = 1603, + [1604] = 1312, + [1605] = 1605, + [1606] = 1473, + [1607] = 1539, + [1608] = 1368, + [1609] = 1304, + [1610] = 1302, + [1611] = 1611, + [1612] = 1427, + [1613] = 1213, + [1614] = 1320, + [1615] = 1236, + [1616] = 1550, + [1617] = 1326, + [1618] = 1290, + [1619] = 1218, + [1620] = 1531, + [1621] = 1301, + [1622] = 1300, + [1623] = 1244, + [1624] = 1226, + [1625] = 1295, + [1626] = 1550, + [1627] = 1321, + [1628] = 1288, + [1629] = 1286, + [1630] = 1277, + [1631] = 1292, + [1632] = 1296, + [1633] = 1268, + [1634] = 1265, + [1635] = 1299, + [1636] = 1306, + [1637] = 1307, + [1638] = 1308, + [1639] = 1314, + [1640] = 1475, + [1641] = 545, + [1642] = 1244, + [1643] = 1259, + [1644] = 1256, + [1645] = 1325, + [1646] = 1330, + [1647] = 1331, + [1648] = 1333, + [1649] = 1341, + [1650] = 1343, + [1651] = 1651, + [1652] = 1351, + [1653] = 1354, + [1654] = 1355, + [1655] = 1334, + [1656] = 1353, + [1657] = 1281, + [1658] = 1366, + [1659] = 1278, + [1660] = 1345, + [1661] = 1337, + [1662] = 1335, + [1663] = 1255, + [1664] = 544, + [1665] = 1665, + [1666] = 127, + [1667] = 1275, + [1668] = 1370, + [1669] = 1269, + [1670] = 1247, + [1671] = 1311, + [1672] = 1672, + [1673] = 1305, + [1674] = 795, + [1675] = 1251, + [1676] = 1250, + [1677] = 1232, + [1678] = 1678, + [1679] = 1245, + [1680] = 1680, + [1681] = 1233, + [1682] = 1249, + [1683] = 1248, + [1684] = 1684, + [1685] = 1243, + [1686] = 1242, + [1687] = 1370, + [1688] = 1241, + [1689] = 1291, + [1690] = 1240, + [1691] = 1239, + [1692] = 1238, + [1693] = 1297, + [1694] = 796, + [1695] = 1253, + [1696] = 1696, + [1697] = 1320, + [1698] = 1326, + [1699] = 1326, + [1700] = 1678, + [1701] = 1320, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 1366, + [1706] = 1706, + [1707] = 1258, + [1708] = 1370, + [1709] = 1605, + [1710] = 1340, + [1711] = 1605, + [1712] = 1336, + [1713] = 1342, + [1714] = 1714, + [1715] = 1715, + [1716] = 1475, + [1717] = 1286, + [1718] = 1696, + [1719] = 1702, [1720] = 1720, - [1721] = 1269, - [1722] = 1451, - [1723] = 1723, - [1724] = 1238, - [1725] = 1381, - [1726] = 1281, - [1727] = 1283, - [1728] = 543, - [1729] = 1228, - [1730] = 1292, - [1731] = 1267, - [1732] = 1376, - [1733] = 1265, - [1734] = 1251, - [1735] = 1229, - [1736] = 1449, - [1737] = 1250, - [1738] = 1738, - [1739] = 1739, - [1740] = 1245, - [1741] = 1241, - [1742] = 1239, - [1743] = 1743, - [1744] = 1354, - [1745] = 1348, + [1721] = 1366, + [1722] = 1722, + [1723] = 1346, + [1724] = 1272, + [1725] = 1475, + [1726] = 1316, + [1727] = 1282, + [1728] = 1284, + [1729] = 1285, + [1730] = 1323, + [1731] = 542, + [1732] = 1678, + [1733] = 1288, + [1734] = 1347, + [1735] = 1262, + [1736] = 1362, + [1737] = 1737, + [1738] = 794, + [1739] = 1310, + [1740] = 1280, + [1741] = 1368, + [1742] = 1315, + [1743] = 1317, + [1744] = 1316, + [1745] = 1427, [1746] = 1327, [1747] = 1747, - [1748] = 1322, - [1749] = 1723, - [1750] = 1313, - [1751] = 1325, - [1752] = 141, - [1753] = 1693, - [1754] = 1649, - [1755] = 1376, - [1756] = 1343, - [1757] = 1342, - [1758] = 1336, - [1759] = 1355, - [1760] = 1760, - [1761] = 1321, - [1762] = 1247, - [1763] = 1449, - [1764] = 1320, - [1765] = 1687, - [1766] = 1317, - [1767] = 1316, - [1768] = 1315, - [1769] = 1314, - [1770] = 1312, - [1771] = 1310, - [1772] = 1309, - [1773] = 1773, - [1774] = 1308, - [1775] = 1306, - [1776] = 1379, - [1777] = 1305, - [1778] = 1338, - [1779] = 1622, - [1780] = 1352, - [1781] = 1697, - [1782] = 1302, - [1783] = 1295, - [1784] = 1784, - [1785] = 1294, - [1786] = 1786, - [1787] = 1291, - [1788] = 1788, - [1789] = 1789, - [1790] = 141, - [1791] = 1234, - [1792] = 1235, - [1793] = 1451, - [1794] = 1288, - [1795] = 1668, - [1796] = 1247, - [1797] = 1374, - [1798] = 1618, - [1799] = 1277, - [1800] = 1272, - [1801] = 1773, - [1802] = 1434, - [1803] = 1305, - [1804] = 1804, - [1805] = 1295, - [1806] = 1806, - [1807] = 1291, - [1808] = 1376, - [1809] = 1738, - [1810] = 1401, - [1811] = 1413, - [1812] = 1247, - [1813] = 157, - [1814] = 1814, + [1748] = 1748, + [1749] = 1749, + [1750] = 1290, + [1751] = 1589, + [1752] = 1752, + [1753] = 1753, + [1754] = 1236, + [1755] = 1755, + [1756] = 1672, + [1757] = 1361, + [1758] = 1332, + [1759] = 1235, + [1760] = 1279, + [1761] = 1270, + [1762] = 1267, + [1763] = 1263, + [1764] = 1313, + [1765] = 1252, + [1766] = 1358, + [1767] = 1720, + [1768] = 1326, + [1769] = 546, + [1770] = 1722, + [1771] = 1320, + [1772] = 1772, + [1773] = 127, + [1774] = 1348, + [1775] = 1309, + [1776] = 1349, + [1777] = 1350, + [1778] = 1678, + [1779] = 1357, + [1780] = 543, + [1781] = 1283, + [1782] = 1287, + [1783] = 1605, + [1784] = 1298, + [1785] = 1289, + [1786] = 1752, + [1787] = 1589, + [1788] = 1678, + [1789] = 1276, + [1790] = 1266, + [1791] = 1264, + [1792] = 1262, + [1793] = 1261, + [1794] = 1324, + [1795] = 1356, + [1796] = 1246, + [1797] = 1714, + [1798] = 1339, + [1799] = 1338, + [1800] = 1237, + [1801] = 1295, + [1802] = 1271, + [1803] = 1273, + [1804] = 1473, + [1805] = 1322, + [1806] = 1321, + [1807] = 1319, + [1808] = 1312, + [1809] = 1304, + [1810] = 1302, + [1811] = 1301, + [1812] = 1300, + [1813] = 1813, + [1814] = 1471, [1815] = 1815, - [1816] = 1499, - [1817] = 154, - [1818] = 173, - [1819] = 1804, - [1820] = 173, - [1821] = 1288, - [1822] = 1822, - [1823] = 1823, - [1824] = 1423, - [1825] = 1825, - [1826] = 1826, - [1827] = 1493, - [1828] = 1277, - [1829] = 168, - [1830] = 154, - [1831] = 149, - [1832] = 148, - [1833] = 1359, - [1834] = 1823, - [1835] = 155, - [1836] = 161, - [1837] = 1558, - [1838] = 1432, - [1839] = 147, - [1840] = 1360, - [1841] = 157, - [1842] = 1361, - [1843] = 1438, - [1844] = 1362, - [1845] = 1363, - [1846] = 147, - [1847] = 1388, - [1848] = 1823, - [1849] = 1849, - [1850] = 1460, - [1851] = 1459, - [1852] = 1387, - [1853] = 1386, - [1854] = 1364, - [1855] = 1376, - [1856] = 1343, - [1857] = 161, - [1858] = 1385, - [1859] = 155, + [1816] = 1816, + [1817] = 1817, + [1818] = 1444, + [1819] = 1475, + [1820] = 1366, + [1821] = 1821, + [1822] = 1473, + [1823] = 1368, + [1824] = 169, + [1825] = 1427, + [1826] = 1813, + [1827] = 1813, + [1828] = 1435, + [1829] = 1425, + [1830] = 1491, + [1831] = 1510, + [1832] = 1509, + [1833] = 1507, + [1834] = 1506, + [1835] = 1504, + [1836] = 1460, + [1837] = 1500, + [1838] = 1499, + [1839] = 1498, + [1840] = 1497, + [1841] = 1372, + [1842] = 1842, + [1843] = 1496, + [1844] = 1383, + [1845] = 1845, + [1846] = 1495, + [1847] = 1821, + [1848] = 1848, + [1849] = 1494, + [1850] = 1493, + [1851] = 1421, + [1852] = 1852, + [1853] = 1853, + [1854] = 1406, + [1855] = 1446, + [1856] = 1605, + [1857] = 1469, + [1858] = 1651, + [1859] = 1464, [1860] = 1463, - [1861] = 1861, - [1862] = 1822, - [1863] = 1414, - [1864] = 1384, - [1865] = 1804, - [1866] = 1866, - [1867] = 144, - [1868] = 1868, - [1869] = 1869, - [1870] = 1411, - [1871] = 1410, - [1872] = 1618, - [1873] = 1873, - [1874] = 1357, - [1875] = 145, - [1876] = 158, - [1877] = 1823, - [1878] = 1511, - [1879] = 1383, - [1880] = 1406, - [1881] = 1881, - [1882] = 1416, - [1883] = 1382, - [1884] = 1823, - [1885] = 1501, - [1886] = 148, - [1887] = 1738, - [1888] = 149, - [1889] = 1823, - [1890] = 1409, - [1891] = 1496, - [1892] = 1465, - [1893] = 1495, - [1894] = 1894, - [1895] = 1451, - [1896] = 1822, - [1897] = 1804, + [1861] = 1387, + [1862] = 1236, + [1863] = 1386, + [1864] = 1381, + [1865] = 1468, + [1866] = 1375, + [1867] = 150, + [1868] = 1290, + [1869] = 1244, + [1870] = 1456, + [1871] = 1286, + [1872] = 151, + [1873] = 1288, + [1874] = 1289, + [1875] = 1295, + [1876] = 1300, + [1877] = 1301, + [1878] = 1454, + [1879] = 1302, + [1880] = 1373, + [1881] = 152, + [1882] = 1845, + [1883] = 157, + [1884] = 1430, + [1885] = 1453, + [1886] = 1452, + [1887] = 167, + [1888] = 144, + [1889] = 1889, + [1890] = 1304, + [1891] = 160, + [1892] = 149, + [1893] = 1475, + [1894] = 1316, + [1895] = 1895, + [1896] = 1896, + [1897] = 1853, [1898] = 1898, - [1899] = 1272, - [1900] = 1823, - [1901] = 1901, - [1902] = 171, - [1903] = 1372, - [1904] = 1403, - [1905] = 1470, - [1906] = 1822, - [1907] = 1907, - [1908] = 144, - [1909] = 1901, - [1910] = 1804, - [1911] = 1417, - [1912] = 1806, - [1913] = 1433, - [1914] = 1381, - [1915] = 1822, - [1916] = 1294, - [1917] = 1492, - [1918] = 1455, - [1919] = 1302, - [1920] = 1435, - [1921] = 1436, - [1922] = 1437, - [1923] = 1428, - [1924] = 1471, - [1925] = 1451, - [1926] = 1472, - [1927] = 1247, - [1928] = 1375, - [1929] = 1427, - [1930] = 1426, - [1931] = 1262, - [1932] = 168, - [1933] = 1256, - [1934] = 1253, - [1935] = 1248, - [1936] = 1325, - [1937] = 1476, - [1938] = 1371, - [1939] = 1418, - [1940] = 1342, - [1941] = 1336, - [1942] = 1306, - [1943] = 145, - [1944] = 158, - [1945] = 1352, - [1946] = 1338, - [1947] = 171, - [1948] = 1355, - [1949] = 1448, - [1950] = 1477, - [1951] = 1823, - [1952] = 1365, - [1953] = 1953, - [1954] = 1352, - [1955] = 1366, - [1956] = 1321, - [1957] = 1320, - [1958] = 1317, - [1959] = 1338, - [1960] = 1367, - [1961] = 1424, - [1962] = 1316, - [1963] = 1308, - [1964] = 1425, - [1965] = 1374, - [1966] = 1379, - [1967] = 1309, - [1968] = 1456, - [1969] = 1422, - [1970] = 1310, - [1971] = 1368, - [1972] = 1312, - [1973] = 1558, - [1974] = 1849, - [1975] = 1315, - [1976] = 1976, - [1977] = 1457, - [1978] = 1314, - [1979] = 1312, - [1980] = 1451, - [1981] = 1294, - [1982] = 1355, - [1983] = 1983, - [1984] = 1325, - [1985] = 1277, - [1986] = 1272, - [1987] = 1379, - [1988] = 1336, - [1989] = 1338, - [1990] = 1352, - [1991] = 1983, - [1992] = 1376, - [1993] = 1983, - [1994] = 1253, - [1995] = 1256, - [1996] = 1449, - [1997] = 1558, - [1998] = 1998, - [1999] = 1983, - [2000] = 1305, - [2001] = 1738, - [2002] = 1288, - [2003] = 1291, - [2004] = 1295, + [1899] = 1852, + [1900] = 1522, + [1901] = 165, + [1902] = 1589, + [1903] = 148, + [1904] = 147, + [1905] = 1516, + [1906] = 1312, + [1907] = 1319, + [1908] = 1262, + [1909] = 1813, + [1910] = 1366, + [1911] = 1400, + [1912] = 1401, + [1913] = 168, + [1914] = 1813, + [1915] = 1915, + [1916] = 169, + [1917] = 1651, + [1918] = 1405, + [1919] = 1408, + [1920] = 1410, + [1921] = 1326, + [1922] = 1320, + [1923] = 1399, + [1924] = 1412, + [1925] = 1321, + [1926] = 1394, + [1927] = 1605, + [1928] = 1392, + [1929] = 1326, + [1930] = 1322, + [1931] = 1320, + [1932] = 150, + [1933] = 151, + [1934] = 1934, + [1935] = 1338, + [1936] = 1389, + [1937] = 1339, + [1938] = 1388, + [1939] = 1939, + [1940] = 1432, + [1941] = 1941, + [1942] = 168, + [1943] = 1403, + [1944] = 1813, + [1945] = 1852, + [1946] = 1512, + [1947] = 152, + [1948] = 157, + [1949] = 1369, + [1950] = 1384, + [1951] = 1404, + [1952] = 1853, + [1953] = 1380, + [1954] = 1379, + [1955] = 1378, + [1956] = 1956, + [1957] = 167, + [1958] = 144, + [1959] = 1959, + [1960] = 1356, + [1961] = 1324, + [1962] = 1915, + [1963] = 160, + [1964] = 1813, + [1965] = 1262, + [1966] = 149, + [1967] = 1967, + [1968] = 1853, + [1969] = 1350, + [1970] = 1852, + [1971] = 1245, + [1972] = 1385, + [1973] = 165, + [1974] = 1853, + [1975] = 1852, + [1976] = 1813, + [1977] = 1349, + [1978] = 1515, + [1979] = 148, + [1980] = 1407, + [1981] = 1348, + [1982] = 147, + [1983] = 1347, + [1984] = 1247, + [1985] = 1395, + [1986] = 1397, + [1987] = 1416, + [1988] = 1275, + [1989] = 1431, + [1990] = 1361, + [1991] = 1596, + [1992] = 1289, + [1993] = 1651, + [1994] = 1324, + [1995] = 1995, + [1996] = 1605, + [1997] = 1236, + [1998] = 1995, + [1999] = 1290, + [2000] = 1316, + [2001] = 1244, + [2002] = 1995, + [2003] = 1304, + [2004] = 1350, [2005] = 1302, - [2006] = 1306, - [2007] = 1308, - [2008] = 1309, - [2009] = 1449, - [2010] = 1310, - [2011] = 2011, - [2012] = 1314, - [2013] = 2013, - [2014] = 1247, - [2015] = 1315, - [2016] = 1316, - [2017] = 1317, - [2018] = 1320, - [2019] = 1321, - [2020] = 1983, - [2021] = 1248, - [2022] = 1558, - [2023] = 1998, - [2024] = 1343, - [2025] = 1566, - [2026] = 1262, - [2027] = 1247, - [2028] = 1342, - [2029] = 1558, - [2030] = 2030, - [2031] = 2030, - [2032] = 1449, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2030, - [2038] = 2038, - [2039] = 2039, - [2040] = 1381, + [2006] = 1366, + [2007] = 2007, + [2008] = 1262, + [2009] = 1247, + [2010] = 1262, + [2011] = 1312, + [2012] = 1275, + [2013] = 1301, + [2014] = 1347, + [2015] = 2015, + [2016] = 1370, + [2017] = 1245, + [2018] = 1349, + [2019] = 1286, + [2020] = 2020, + [2021] = 2020, + [2022] = 1319, + [2023] = 1288, + [2024] = 1348, + [2025] = 1605, + [2026] = 1321, + [2027] = 1370, + [2028] = 1995, + [2029] = 1320, + [2030] = 1326, + [2031] = 1995, + [2032] = 1356, + [2033] = 1300, + [2034] = 1339, + [2035] = 1338, + [2036] = 1322, + [2037] = 1361, + [2038] = 1295, + [2039] = 1475, + [2040] = 1368, [2041] = 2041, [2042] = 2042, - [2043] = 2030, - [2044] = 2034, - [2045] = 2045, - [2046] = 2039, + [2043] = 1366, + [2044] = 2041, + [2045] = 1370, + [2046] = 2046, [2047] = 2047, - [2048] = 2048, - [2049] = 1379, + [2048] = 2042, + [2049] = 2049, [2050] = 2050, - [2051] = 2051, - [2052] = 1374, - [2053] = 1449, - [2054] = 1335, + [2051] = 2047, + [2052] = 1368, + [2053] = 1475, + [2054] = 2054, [2055] = 2055, - [2056] = 2030, + [2056] = 2047, [2057] = 2057, - [2058] = 1376, - [2059] = 2059, - [2060] = 1451, - [2061] = 1247, - [2062] = 2030, + [2058] = 1262, + [2059] = 1573, + [2060] = 2060, + [2061] = 2061, + [2062] = 2047, [2063] = 2063, - [2064] = 1550, - [2065] = 2065, - [2066] = 2030, - [2067] = 2067, + [2064] = 2064, + [2065] = 1370, + [2066] = 2066, + [2067] = 2047, [2068] = 2068, [2069] = 2069, - [2070] = 2069, + [2070] = 1605, [2071] = 2071, [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2071, - [2076] = 1738, - [2077] = 2071, - [2078] = 2074, - [2079] = 1861, + [2073] = 1473, + [2074] = 2047, + [2075] = 1427, + [2076] = 1323, + [2077] = 2047, + [2078] = 2078, + [2079] = 2079, [2080] = 2080, - [2081] = 2074, - [2082] = 2073, - [2083] = 2069, + [2081] = 2081, + [2082] = 1427, + [2083] = 2083, [2084] = 2084, [2085] = 2085, - [2086] = 2074, - [2087] = 2071, - [2088] = 2088, - [2089] = 1247, + [2086] = 2086, + [2087] = 2087, + [2088] = 1368, + [2089] = 2089, [2090] = 2090, - [2091] = 2069, + [2091] = 2091, [2092] = 2080, - [2093] = 2074, - [2094] = 2094, + [2093] = 2084, + [2094] = 2084, [2095] = 2095, - [2096] = 2080, - [2097] = 1381, - [2098] = 2069, - [2099] = 2080, - [2100] = 2080, - [2101] = 1379, - [2102] = 2095, - [2103] = 2069, - [2104] = 2104, - [2105] = 2105, + [2096] = 2096, + [2097] = 2097, + [2098] = 1473, + [2099] = 2086, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 2087, + [2104] = 1262, + [2105] = 2084, [2106] = 2106, - [2107] = 2071, - [2108] = 1374, - [2109] = 2080, + [2107] = 2080, + [2108] = 2081, + [2109] = 2084, [2110] = 2110, - [2111] = 2111, - [2112] = 2069, - [2113] = 2080, - [2114] = 2114, + [2111] = 1956, + [2112] = 2080, + [2113] = 2087, + [2114] = 2110, [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2118, + [2116] = 2110, + [2117] = 2087, + [2118] = 2084, [2119] = 2119, - [2120] = 2111, - [2121] = 2104, + [2120] = 2080, + [2121] = 2084, [2122] = 2122, [2123] = 2123, [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2124, + [2125] = 1651, + [2126] = 2085, + [2127] = 2127, [2128] = 2128, - [2129] = 2129, - [2130] = 2130, + [2129] = 2110, + [2130] = 2080, [2131] = 2131, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, - [2135] = 2124, - [2136] = 2132, - [2137] = 2124, + [2132] = 2080, + [2133] = 2110, + [2134] = 2097, + [2135] = 2087, + [2136] = 2136, + [2137] = 2137, [2138] = 2138, - [2139] = 2133, - [2140] = 2126, + [2139] = 2138, + [2140] = 2140, [2141] = 2141, - [2142] = 2124, - [2143] = 2125, + [2142] = 2142, + [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2124, - [2149] = 2124, - [2150] = 2150, + [2146] = 2138, + [2147] = 2141, + [2148] = 2138, + [2149] = 2149, + [2150] = 2138, [2151] = 2151, [2152] = 2152, [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, + [2154] = 2138, + [2155] = 2137, + [2156] = 2145, [2157] = 2157, - [2158] = 2158, - [2159] = 2159, + [2158] = 2138, + [2159] = 2149, [2160] = 2160, - [2161] = 2074, + [2161] = 2161, [2162] = 2162, [2163] = 2163, - [2164] = 2071, - [2165] = 2074, - [2166] = 2071, - [2167] = 2071, - [2168] = 2071, - [2169] = 2071, - [2170] = 2074, - [2171] = 2074, - [2172] = 2074, - [2173] = 2071, - [2174] = 2074, - [2175] = 2074, - [2176] = 2071, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 2158, - [2183] = 2183, - [2184] = 2157, - [2185] = 2183, - [2186] = 2181, - [2187] = 2187, - [2188] = 2183, - [2189] = 1127, - [2190] = 2190, - [2191] = 160, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2087, + [2174] = 2174, + [2175] = 2175, + [2176] = 2087, + [2177] = 2110, + [2178] = 2087, + [2179] = 2110, + [2180] = 2110, + [2181] = 2087, + [2182] = 2110, + [2183] = 2110, + [2184] = 2184, + [2185] = 2110, + [2186] = 2186, + [2187] = 2087, + [2188] = 2188, + [2189] = 2110, + [2190] = 2087, + [2191] = 2087, [2192] = 2192, - [2193] = 2193, - [2194] = 2194, + [2193] = 2167, + [2194] = 2166, [2195] = 2195, [2196] = 2196, - [2197] = 2197, + [2197] = 2195, [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, + [2199] = 1127, + [2200] = 2196, + [2201] = 2196, [2202] = 2202, [2203] = 2203, - [2204] = 152, + [2204] = 1150, [2205] = 2205, [2206] = 2206, [2207] = 2207, - [2208] = 2208, + [2208] = 162, [2209] = 2209, [2210] = 2210, [2211] = 2211, @@ -6343,74 +6378,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2215] = 2215, [2216] = 2216, [2217] = 2217, - [2218] = 2218, - [2219] = 1139, + [2218] = 145, + [2219] = 2219, [2220] = 2220, [2221] = 2221, - [2222] = 172, + [2222] = 2222, [2223] = 2223, [2224] = 2224, [2225] = 2225, - [2226] = 167, + [2226] = 2226, [2227] = 2227, [2228] = 2228, - [2229] = 2146, + [2229] = 2229, [2230] = 2230, - [2231] = 2150, - [2232] = 2125, - [2233] = 2132, - [2234] = 2125, - [2235] = 2126, - [2236] = 2126, - [2237] = 2133, - [2238] = 2141, - [2239] = 152, - [2240] = 2132, + [2231] = 2231, + [2232] = 2232, + [2233] = 2233, + [2234] = 154, + [2235] = 163, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2240, [2241] = 2241, [2242] = 2242, [2243] = 2243, - [2244] = 2244, - [2245] = 2243, - [2246] = 2133, - [2247] = 167, - [2248] = 2138, - [2249] = 2249, - [2250] = 2250, - [2251] = 2251, - [2252] = 790, - [2253] = 2253, - [2254] = 2254, - [2255] = 172, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 791, - [2260] = 1157, - [2261] = 792, + [2244] = 2145, + [2245] = 2137, + [2246] = 2149, + [2247] = 2247, + [2248] = 2136, + [2249] = 2144, + [2250] = 2145, + [2251] = 162, + [2252] = 145, + [2253] = 2140, + [2254] = 2240, + [2255] = 2149, + [2256] = 2141, + [2257] = 2137, + [2258] = 2152, + [2259] = 2141, + [2260] = 2260, + [2261] = 2261, [2262] = 2262, - [2263] = 160, - [2264] = 1158, + [2263] = 795, + [2264] = 154, [2265] = 2265, [2266] = 2266, - [2267] = 2267, - [2268] = 2254, - [2269] = 2251, - [2270] = 2258, - [2271] = 2271, - [2272] = 2262, - [2273] = 2267, - [2274] = 2274, + [2267] = 163, + [2268] = 2268, + [2269] = 1161, + [2270] = 1162, + [2271] = 2265, + [2272] = 2272, + [2273] = 796, + [2274] = 794, [2275] = 2275, [2276] = 2276, [2277] = 2277, [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2147, - [2282] = 2282, - [2283] = 2283, - [2284] = 2284, - [2285] = 2285, + [2281] = 2281, + [2282] = 2276, + [2283] = 2275, + [2284] = 2268, + [2285] = 2280, [2286] = 2286, [2287] = 2287, [2288] = 2288, @@ -6422,1284 +6457,1284 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2294] = 2294, [2295] = 2295, [2296] = 2296, - [2297] = 2297, + [2297] = 2162, [2298] = 2298, [2299] = 2299, [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 2303, - [2304] = 2295, + [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 2300, + [2307] = 2307, [2308] = 2308, [2309] = 2309, - [2310] = 2296, + [2310] = 2310, [2311] = 2311, [2312] = 2312, [2313] = 2313, [2314] = 2314, [2315] = 2315, - [2316] = 2311, - [2317] = 2306, + [2316] = 2316, + [2317] = 2317, [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 2299, + [2319] = 2316, + [2320] = 2310, + [2321] = 2317, [2322] = 2322, - [2323] = 1285, - [2324] = 1327, - [2325] = 1240, - [2326] = 1293, - [2327] = 1237, - [2328] = 1337, - [2329] = 1324, - [2330] = 1353, - [2331] = 1218, - [2332] = 1326, - [2333] = 1300, - [2334] = 1290, - [2335] = 1304, - [2336] = 1208, - [2337] = 1226, - [2338] = 1311, - [2339] = 1217, - [2340] = 1328, - [2341] = 1236, - [2342] = 1242, - [2343] = 1227, - [2344] = 1233, - [2345] = 1329, - [2346] = 2346, - [2347] = 1206, - [2348] = 1330, - [2349] = 1354, - [2350] = 1341, - [2351] = 1318, - [2352] = 1348, - [2353] = 1239, - [2354] = 1339, - [2355] = 1241, - [2356] = 1245, - [2357] = 1331, - [2358] = 1332, - [2359] = 1250, - [2360] = 1251, - [2361] = 1265, - [2362] = 1267, - [2363] = 1333, + [2323] = 2323, + [2324] = 2312, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2329, + [2333] = 2323, + [2334] = 2334, + [2335] = 1217, + [2336] = 1284, + [2337] = 1343, + [2338] = 1272, + [2339] = 1306, + [2340] = 1346, + [2341] = 1210, + [2342] = 1258, + [2343] = 1325, + [2344] = 1330, + [2345] = 1255, + [2346] = 1253, + [2347] = 1221, + [2348] = 1277, + [2349] = 1282, + [2350] = 1296, + [2351] = 1331, + [2352] = 2352, + [2353] = 1238, + [2354] = 1265, + [2355] = 1239, + [2356] = 1256, + [2357] = 1240, + [2358] = 1241, + [2359] = 1218, + [2360] = 1242, + [2361] = 1243, + [2362] = 1214, + [2363] = 1354, [2364] = 1334, - [2365] = 1340, - [2366] = 2346, - [2367] = 1275, - [2368] = 1249, - [2369] = 1284, - [2370] = 1276, - [2371] = 1210, - [2372] = 1273, - [2373] = 163, - [2374] = 169, - [2375] = 1219, - [2376] = 1287, - [2377] = 2377, - [2378] = 1292, - [2379] = 2377, - [2380] = 1299, + [2365] = 1309, + [2366] = 1333, + [2367] = 1259, + [2368] = 1341, + [2369] = 1292, + [2370] = 1351, + [2371] = 1299, + [2372] = 1269, + [2373] = 1355, + [2374] = 1297, + [2375] = 1268, + [2376] = 2352, + [2377] = 1285, + [2378] = 1362, + [2379] = 1235, + [2380] = 1279, [2381] = 1252, - [2382] = 1228, - [2383] = 1282, - [2384] = 1229, - [2385] = 1283, - [2386] = 1281, - [2387] = 1254, - [2388] = 2377, - [2389] = 2377, - [2390] = 2377, - [2391] = 1238, - [2392] = 1257, - [2393] = 1280, - [2394] = 1258, - [2395] = 1345, - [2396] = 1274, - [2397] = 1269, - [2398] = 1346, - [2399] = 1259, - [2400] = 2377, - [2401] = 1261, - [2402] = 1347, - [2403] = 1206, - [2404] = 1350, - [2405] = 1263, - [2406] = 1223, - [2407] = 1264, - [2408] = 1226, - [2409] = 1208, - [2410] = 1218, - [2411] = 1266, - [2412] = 1221, - [2413] = 1322, - [2414] = 1303, - [2415] = 1278, - [2416] = 2377, - [2417] = 1279, - [2418] = 2377, - [2419] = 1311, - [2420] = 1337, - [2421] = 1251, - [2422] = 1265, - [2423] = 1267, - [2424] = 1227, - [2425] = 1285, - [2426] = 2426, - [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 1290, - [2431] = 1293, - [2432] = 2427, + [2382] = 1226, + [2383] = 1283, + [2384] = 1313, + [2385] = 1358, + [2386] = 155, + [2387] = 1213, + [2388] = 161, + [2389] = 1337, + [2390] = 1232, + [2391] = 2391, + [2392] = 1273, + [2393] = 2391, + [2394] = 1280, + [2395] = 1307, + [2396] = 1308, + [2397] = 1314, + [2398] = 2391, + [2399] = 1251, + [2400] = 1287, + [2401] = 1298, + [2402] = 2391, + [2403] = 2391, + [2404] = 2391, + [2405] = 1270, + [2406] = 1216, + [2407] = 1327, + [2408] = 2391, + [2409] = 1317, + [2410] = 1249, + [2411] = 1310, + [2412] = 1353, + [2413] = 1335, + [2414] = 1221, + [2415] = 1217, + [2416] = 1214, + [2417] = 1267, + [2418] = 1311, + [2419] = 1211, + [2420] = 2391, + [2421] = 1248, + [2422] = 1305, + [2423] = 1210, + [2424] = 1233, + [2425] = 1261, + [2426] = 1276, + [2427] = 1237, + [2428] = 1263, + [2429] = 1266, + [2430] = 1345, + [2431] = 1246, + [2432] = 1240, [2433] = 2433, - [2434] = 1300, - [2435] = 2426, - [2436] = 2427, + [2434] = 2434, + [2435] = 2434, + [2436] = 1271, [2437] = 2437, - [2438] = 2428, + [2438] = 2433, [2439] = 2439, - [2440] = 2429, - [2441] = 1301, - [2442] = 1304, - [2443] = 1328, - [2444] = 1240, - [2445] = 2445, - [2446] = 2446, - [2447] = 1349, - [2448] = 1313, - [2449] = 1237, - [2450] = 1260, - [2451] = 1353, - [2452] = 2452, - [2453] = 1245, - [2454] = 2426, - [2455] = 1255, - [2456] = 1241, - [2457] = 1286, - [2458] = 1239, - [2459] = 1354, - [2460] = 1348, - [2461] = 2429, - [2462] = 2462, - [2463] = 1327, - [2464] = 2464, - [2465] = 2465, - [2466] = 1341, - [2467] = 2429, - [2468] = 2428, - [2469] = 1340, - [2470] = 2428, - [2471] = 2427, - [2472] = 2428, - [2473] = 1217, - [2474] = 2427, - [2475] = 2426, - [2476] = 2426, - [2477] = 1339, - [2478] = 1334, - [2479] = 2429, - [2480] = 1234, - [2481] = 1235, - [2482] = 1250, - [2483] = 1318, - [2484] = 1324, - [2485] = 1326, - [2486] = 1329, - [2487] = 1330, - [2488] = 1331, - [2489] = 1332, - [2490] = 1333, - [2491] = 2491, - [2492] = 2492, - [2493] = 1218, - [2494] = 1208, - [2495] = 1226, - [2496] = 2496, + [2440] = 2434, + [2441] = 2439, + [2442] = 2439, + [2443] = 2434, + [2444] = 2444, + [2445] = 1334, + [2446] = 2433, + [2447] = 2447, + [2448] = 1355, + [2449] = 2449, + [2450] = 2450, + [2451] = 2433, + [2452] = 1264, + [2453] = 2439, + [2454] = 1354, + [2455] = 1351, + [2456] = 1343, + [2457] = 2447, + [2458] = 1315, + [2459] = 1341, + [2460] = 1333, + [2461] = 1331, + [2462] = 1330, + [2463] = 2463, + [2464] = 1325, + [2465] = 1278, + [2466] = 2466, + [2467] = 2439, + [2468] = 1306, + [2469] = 2469, + [2470] = 1299, + [2471] = 1296, + [2472] = 1292, + [2473] = 2473, + [2474] = 1277, + [2475] = 1268, + [2476] = 1336, + [2477] = 1342, + [2478] = 1265, + [2479] = 1332, + [2480] = 1259, + [2481] = 1256, + [2482] = 1255, + [2483] = 1285, + [2484] = 1284, + [2485] = 1282, + [2486] = 1272, + [2487] = 1346, + [2488] = 1258, + [2489] = 1253, + [2490] = 1297, + [2491] = 1238, + [2492] = 1239, + [2493] = 2447, + [2494] = 1241, + [2495] = 1242, + [2496] = 1243, [2497] = 2497, - [2498] = 1210, - [2499] = 1284, - [2500] = 2492, - [2501] = 1273, - [2502] = 1276, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, + [2498] = 1250, + [2499] = 2433, + [2500] = 1218, + [2501] = 2447, + [2502] = 2447, + [2503] = 2434, + [2504] = 794, + [2505] = 1226, [2506] = 2506, - [2507] = 791, - [2508] = 2503, - [2509] = 2492, - [2510] = 1249, + [2507] = 2507, + [2508] = 2506, + [2509] = 2509, + [2510] = 2510, [2511] = 2511, [2512] = 2512, - [2513] = 790, - [2514] = 2514, - [2515] = 1206, - [2516] = 1275, - [2517] = 2517, - [2518] = 792, - [2519] = 2519, - [2520] = 1334, + [2513] = 2513, + [2514] = 795, + [2515] = 2515, + [2516] = 1214, + [2517] = 1217, + [2518] = 2518, + [2519] = 1235, + [2520] = 1279, [2521] = 2521, - [2522] = 2522, - [2523] = 2523, - [2524] = 2524, - [2525] = 2525, - [2526] = 163, - [2527] = 1239, - [2528] = 1217, - [2529] = 2529, - [2530] = 2530, + [2522] = 1313, + [2523] = 1252, + [2524] = 1358, + [2525] = 1221, + [2526] = 2507, + [2527] = 2527, + [2528] = 1210, + [2529] = 796, + [2530] = 2507, [2531] = 2531, - [2532] = 2532, - [2533] = 1241, - [2534] = 2531, - [2535] = 1245, - [2536] = 1250, - [2537] = 1251, - [2538] = 1265, - [2539] = 169, - [2540] = 1267, + [2532] = 1283, + [2533] = 161, + [2534] = 1240, + [2535] = 2535, + [2536] = 2536, + [2537] = 1354, + [2538] = 1351, + [2539] = 2539, + [2540] = 2540, [2541] = 2541, [2542] = 2542, - [2543] = 2543, - [2544] = 1227, - [2545] = 1285, - [2546] = 1290, - [2547] = 1293, - [2548] = 2532, - [2549] = 1300, - [2550] = 2532, + [2543] = 1343, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 155, + [2548] = 2539, + [2549] = 2549, + [2550] = 1218, [2551] = 2551, - [2552] = 1304, - [2553] = 1328, - [2554] = 1327, + [2552] = 1341, + [2553] = 2535, + [2554] = 2535, [2555] = 2555, - [2556] = 2532, - [2557] = 2557, - [2558] = 2532, + [2556] = 2556, + [2557] = 2542, + [2558] = 1333, [2559] = 2559, - [2560] = 1240, - [2561] = 2561, - [2562] = 1348, - [2563] = 1219, - [2564] = 2531, - [2565] = 1333, - [2566] = 2566, - [2567] = 1237, - [2568] = 1332, - [2569] = 1331, - [2570] = 1353, - [2571] = 1354, - [2572] = 1330, - [2573] = 1329, - [2574] = 1326, - [2575] = 2531, - [2576] = 2576, - [2577] = 1324, - [2578] = 1341, - [2579] = 1340, - [2580] = 1339, - [2581] = 1318, - [2582] = 1221, - [2583] = 1223, + [2560] = 2560, + [2561] = 2535, + [2562] = 2562, + [2563] = 1331, + [2564] = 1334, + [2565] = 2565, + [2566] = 2562, + [2567] = 1330, + [2568] = 1325, + [2569] = 2542, + [2570] = 2562, + [2571] = 1355, + [2572] = 2542, + [2573] = 1306, + [2574] = 1299, + [2575] = 2539, + [2576] = 1296, + [2577] = 1292, + [2578] = 1277, + [2579] = 2579, + [2580] = 1268, + [2581] = 2539, + [2582] = 1285, + [2583] = 1284, [2584] = 2584, - [2585] = 1311, - [2586] = 1337, - [2587] = 1235, - [2588] = 1257, - [2589] = 1279, - [2590] = 1278, - [2591] = 540, - [2592] = 2592, - [2593] = 542, - [2594] = 1280, - [2595] = 1229, - [2596] = 1274, - [2597] = 1284, - [2598] = 1269, + [2585] = 1265, + [2586] = 2586, + [2587] = 1282, + [2588] = 1272, + [2589] = 1216, + [2590] = 1211, + [2591] = 1346, + [2592] = 1258, + [2593] = 1253, + [2594] = 2562, + [2595] = 1297, + [2596] = 1238, + [2597] = 1259, + [2598] = 1239, [2599] = 2599, - [2600] = 792, - [2601] = 1301, - [2602] = 543, - [2603] = 1350, - [2604] = 1233, - [2605] = 1210, - [2606] = 1286, - [2607] = 544, - [2608] = 791, - [2609] = 1287, - [2610] = 1276, - [2611] = 1275, - [2612] = 1349, - [2613] = 1266, - [2614] = 1347, - [2615] = 1264, - [2616] = 1263, - [2617] = 1242, - [2618] = 1238, - [2619] = 2619, - [2620] = 1261, - [2621] = 1281, - [2622] = 1273, - [2623] = 1292, - [2624] = 1322, - [2625] = 1299, - [2626] = 1260, - [2627] = 1313, - [2628] = 1283, - [2629] = 1228, - [2630] = 1249, - [2631] = 1346, - [2632] = 1259, - [2633] = 1303, - [2634] = 790, - [2635] = 1258, - [2636] = 1282, - [2637] = 1252, - [2638] = 1345, - [2639] = 1255, - [2640] = 1236, - [2641] = 541, - [2642] = 1234, - [2643] = 1254, - [2644] = 2644, + [2600] = 2600, + [2601] = 1213, + [2602] = 1241, + [2603] = 1256, + [2604] = 1255, + [2605] = 2605, + [2606] = 2562, + [2607] = 1243, + [2608] = 1242, + [2609] = 1269, + [2610] = 1232, + [2611] = 1353, + [2612] = 1311, + [2613] = 1305, + [2614] = 1235, + [2615] = 543, + [2616] = 1278, + [2617] = 1233, + [2618] = 1276, + [2619] = 1266, + [2620] = 1283, + [2621] = 1261, + [2622] = 1246, + [2623] = 1307, + [2624] = 1237, + [2625] = 1271, + [2626] = 1273, + [2627] = 1280, + [2628] = 1287, + [2629] = 1309, + [2630] = 1298, + [2631] = 1308, + [2632] = 1314, + [2633] = 1279, + [2634] = 795, + [2635] = 544, + [2636] = 2636, + [2637] = 1313, + [2638] = 1252, + [2639] = 1327, + [2640] = 2640, + [2641] = 1335, + [2642] = 545, + [2643] = 1251, + [2644] = 794, [2645] = 2645, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2644, - [2651] = 2645, - [2652] = 2645, - [2653] = 1221, - [2654] = 2654, - [2655] = 1218, - [2656] = 2656, - [2657] = 1208, - [2658] = 2654, - [2659] = 2649, - [2660] = 1226, - [2661] = 2661, - [2662] = 2644, - [2663] = 2645, - [2664] = 2664, - [2665] = 2665, - [2666] = 1223, - [2667] = 2654, + [2646] = 546, + [2647] = 1263, + [2648] = 1267, + [2649] = 1270, + [2650] = 1362, + [2651] = 1336, + [2652] = 1342, + [2653] = 1345, + [2654] = 1358, + [2655] = 1264, + [2656] = 1250, + [2657] = 1332, + [2658] = 1337, + [2659] = 1249, + [2660] = 1317, + [2661] = 1226, + [2662] = 1248, + [2663] = 542, + [2664] = 1310, + [2665] = 796, + [2666] = 2666, + [2667] = 1315, [2668] = 2668, - [2669] = 2669, - [2670] = 2648, - [2671] = 1219, - [2672] = 2672, - [2673] = 2673, - [2674] = 2649, - [2675] = 2648, - [2676] = 2649, - [2677] = 2646, - [2678] = 2678, - [2679] = 2678, - [2680] = 2680, + [2669] = 1221, + [2670] = 2670, + [2671] = 2671, + [2672] = 1211, + [2673] = 1214, + [2674] = 2674, + [2675] = 2675, + [2676] = 2668, + [2677] = 1216, + [2678] = 1213, + [2679] = 2671, + [2680] = 1217, [2681] = 2681, [2682] = 2682, - [2683] = 1206, - [2684] = 2654, + [2683] = 2683, + [2684] = 2684, [2685] = 2685, [2686] = 2686, - [2687] = 1313, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, + [2687] = 2681, + [2688] = 2674, + [2689] = 2681, + [2690] = 2668, [2691] = 2691, [2692] = 2692, [2693] = 2693, [2694] = 2694, [2695] = 2695, - [2696] = 1235, - [2697] = 1234, - [2698] = 2698, - [2699] = 1266, - [2700] = 1259, - [2701] = 2701, - [2702] = 2532, + [2696] = 2681, + [2697] = 2674, + [2698] = 1210, + [2699] = 2691, + [2700] = 2700, + [2701] = 2562, + [2702] = 2702, [2703] = 2703, [2704] = 2704, [2705] = 2705, - [2706] = 2672, - [2707] = 2707, + [2706] = 2706, + [2707] = 2562, [2708] = 2708, - [2709] = 2709, + [2709] = 1278, [2710] = 2710, - [2711] = 2711, - [2712] = 2704, - [2713] = 2713, - [2714] = 2694, - [2715] = 543, + [2711] = 1353, + [2712] = 2693, + [2713] = 2562, + [2714] = 2562, + [2715] = 2715, [2716] = 2716, - [2717] = 1229, - [2718] = 2718, - [2719] = 1269, - [2720] = 1274, - [2721] = 1292, + [2717] = 2717, + [2718] = 1342, + [2719] = 2719, + [2720] = 2706, + [2721] = 2721, [2722] = 2722, - [2723] = 1228, - [2724] = 2680, - [2725] = 2725, - [2726] = 1280, - [2727] = 2727, - [2728] = 1283, - [2729] = 1281, - [2730] = 1238, + [2723] = 2723, + [2724] = 1233, + [2725] = 2704, + [2726] = 2726, + [2727] = 2721, + [2728] = 1305, + [2729] = 2729, + [2730] = 1311, [2731] = 2731, - [2732] = 2725, - [2733] = 2664, - [2734] = 2734, - [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 2532, - [2739] = 2532, + [2732] = 2722, + [2733] = 2715, + [2734] = 545, + [2735] = 1335, + [2736] = 1337, + [2737] = 1345, + [2738] = 2738, + [2739] = 1336, [2740] = 2740, - [2741] = 2736, - [2742] = 2686, - [2743] = 2698, - [2744] = 544, - [2745] = 2725, - [2746] = 2688, - [2747] = 2693, - [2748] = 169, - [2749] = 1252, - [2750] = 1254, - [2751] = 1255, - [2752] = 1257, - [2753] = 1258, - [2754] = 2532, - [2755] = 1260, - [2756] = 1261, - [2757] = 1263, - [2758] = 1264, - [2759] = 2686, - [2760] = 163, - [2761] = 2532, - [2762] = 1322, - [2763] = 2736, - [2764] = 2740, - [2765] = 2765, - [2766] = 2765, - [2767] = 2736, - [2768] = 2686, - [2769] = 1242, - [2770] = 540, - [2771] = 2771, - [2772] = 2703, - [2773] = 2698, - [2774] = 1278, - [2775] = 1279, - [2776] = 2710, - [2777] = 1282, - [2778] = 2711, - [2779] = 1286, - [2780] = 1287, - [2781] = 1299, - [2782] = 1301, - [2783] = 1303, - [2784] = 2532, - [2785] = 2708, - [2786] = 1236, - [2787] = 2787, - [2788] = 2771, - [2789] = 541, - [2790] = 2740, - [2791] = 2765, - [2792] = 2771, - [2793] = 2692, - [2794] = 2711, - [2795] = 2710, - [2796] = 2703, - [2797] = 2771, - [2798] = 2798, - [2799] = 2703, - [2800] = 2692, - [2801] = 2710, - [2802] = 2701, - [2803] = 2765, - [2804] = 1345, - [2805] = 1346, - [2806] = 2740, - [2807] = 2711, - [2808] = 1347, - [2809] = 1349, - [2810] = 1350, - [2811] = 1233, - [2812] = 542, - [2813] = 2532, - [2814] = 2692, - [2815] = 2815, - [2816] = 2816, - [2817] = 2816, - [2818] = 2816, - [2819] = 792, - [2820] = 790, - [2821] = 2821, - [2822] = 791, + [2741] = 2741, + [2742] = 2742, + [2743] = 2722, + [2744] = 2675, + [2745] = 2700, + [2746] = 2746, + [2747] = 1314, + [2748] = 1308, + [2749] = 2706, + [2750] = 2750, + [2751] = 2721, + [2752] = 2719, + [2753] = 543, + [2754] = 2754, + [2755] = 1307, + [2756] = 2694, + [2757] = 2726, + [2758] = 1276, + [2759] = 1266, + [2760] = 1264, + [2761] = 1261, + [2762] = 1246, + [2763] = 2716, + [2764] = 1271, + [2765] = 1273, + [2766] = 1280, + [2767] = 1287, + [2768] = 2703, + [2769] = 2769, + [2770] = 1237, + [2771] = 2704, + [2772] = 1298, + [2773] = 2703, + [2774] = 2774, + [2775] = 2775, + [2776] = 2716, + [2777] = 2731, + [2778] = 1309, + [2779] = 546, + [2780] = 2562, + [2781] = 2781, + [2782] = 2703, + [2783] = 1263, + [2784] = 1267, + [2785] = 2719, + [2786] = 1270, + [2787] = 1332, + [2788] = 1327, + [2789] = 1317, + [2790] = 1315, + [2791] = 1310, + [2792] = 2792, + [2793] = 2704, + [2794] = 1362, + [2795] = 2742, + [2796] = 2796, + [2797] = 542, + [2798] = 2721, + [2799] = 2731, + [2800] = 155, + [2801] = 2801, + [2802] = 2562, + [2803] = 2754, + [2804] = 2562, + [2805] = 2719, + [2806] = 2754, + [2807] = 2706, + [2808] = 2722, + [2809] = 2754, + [2810] = 2741, + [2811] = 2811, + [2812] = 1248, + [2813] = 1249, + [2814] = 2814, + [2815] = 161, + [2816] = 1232, + [2817] = 1250, + [2818] = 1251, + [2819] = 1269, + [2820] = 544, + [2821] = 2740, + [2822] = 2675, [2823] = 2823, - [2824] = 2824, - [2825] = 2816, - [2826] = 2816, - [2827] = 2664, - [2828] = 2816, - [2829] = 2816, + [2824] = 796, + [2825] = 2825, + [2826] = 794, + [2827] = 795, + [2828] = 2823, + [2829] = 2823, [2830] = 2830, [2831] = 2831, - [2832] = 2823, - [2833] = 139, - [2834] = 2816, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 2839, - [2840] = 153, - [2841] = 2835, - [2842] = 2689, - [2843] = 2690, + [2832] = 2832, + [2833] = 2833, + [2834] = 2823, + [2835] = 2823, + [2836] = 2823, + [2837] = 2823, + [2838] = 2825, + [2839] = 141, + [2840] = 2823, + [2841] = 137, + [2842] = 2842, + [2843] = 2843, [2844] = 2844, [2845] = 2845, - [2846] = 1242, + [2846] = 140, [2847] = 2847, [2848] = 2848, - [2849] = 2713, + [2849] = 2849, [2850] = 2850, [2851] = 2851, [2852] = 2852, - [2853] = 2853, + [2853] = 1362, [2854] = 2854, - [2855] = 2855, + [2855] = 2847, [2856] = 2856, [2857] = 2857, - [2858] = 153, - [2859] = 2837, + [2858] = 2858, + [2859] = 2859, [2860] = 2860, [2861] = 2861, - [2862] = 140, + [2862] = 1269, [2863] = 2863, - [2864] = 1221, - [2865] = 2865, - [2866] = 2863, - [2867] = 2838, - [2868] = 2868, - [2869] = 1223, + [2864] = 2864, + [2865] = 1216, + [2866] = 1211, + [2867] = 2867, + [2868] = 156, + [2869] = 164, [2870] = 2870, - [2871] = 2871, + [2871] = 2636, [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 2875, - [2876] = 2876, - [2877] = 2850, - [2878] = 2875, - [2879] = 2844, + [2875] = 2858, + [2876] = 1309, + [2877] = 2877, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, - [2881] = 2871, + [2881] = 2881, [2882] = 2882, - [2883] = 2872, + [2883] = 2883, [2884] = 2884, - [2885] = 2619, + [2885] = 2852, [2886] = 2886, [2887] = 2887, - [2888] = 2888, + [2888] = 2863, [2889] = 2889, [2890] = 2890, - [2891] = 2861, - [2892] = 2892, - [2893] = 2893, + [2891] = 2891, + [2892] = 2872, + [2893] = 2858, [2894] = 2894, [2895] = 2895, [2896] = 2896, [2897] = 2897, - [2898] = 2898, - [2899] = 2876, + [2898] = 2879, + [2899] = 2899, [2900] = 2900, [2901] = 2901, [2902] = 2902, - [2903] = 2903, - [2904] = 2737, + [2903] = 2867, + [2904] = 2904, [2905] = 2905, [2906] = 2906, - [2907] = 2907, + [2907] = 2886, [2908] = 2908, - [2909] = 2909, - [2910] = 2910, - [2911] = 2892, - [2912] = 2887, - [2913] = 2847, - [2914] = 2914, + [2909] = 2860, + [2910] = 2889, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 2890, [2915] = 2915, - [2916] = 2884, + [2916] = 2916, [2917] = 2917, [2918] = 2918, - [2919] = 2919, - [2920] = 2707, + [2919] = 2848, + [2920] = 2920, [2921] = 2921, [2922] = 2922, - [2923] = 2888, + [2923] = 2923, [2924] = 2924, - [2925] = 2922, - [2926] = 2886, - [2927] = 2884, - [2928] = 2928, - [2929] = 2873, - [2930] = 2930, - [2931] = 2931, - [2932] = 2855, - [2933] = 2668, - [2934] = 2863, + [2925] = 2925, + [2926] = 2926, + [2927] = 2927, + [2928] = 2717, + [2929] = 2750, + [2930] = 2867, + [2931] = 2692, + [2932] = 156, + [2933] = 164, + [2934] = 2801, [2935] = 2935, - [2936] = 2936, - [2937] = 2937, - [2938] = 2938, - [2939] = 1233, + [2936] = 2935, + [2937] = 2769, + [2938] = 2923, + [2939] = 2939, [2940] = 2940, [2941] = 2941, [2942] = 2942, - [2943] = 2875, + [2943] = 2942, [2944] = 2944, - [2945] = 2945, - [2946] = 2871, - [2947] = 2947, + [2945] = 2944, + [2946] = 2792, + [2947] = 2864, [2948] = 2948, - [2949] = 1236, + [2949] = 2923, [2950] = 2950, - [2951] = 2951, + [2951] = 2950, [2952] = 2952, - [2953] = 2672, - [2954] = 2954, + [2953] = 2953, + [2954] = 2921, [2955] = 2955, - [2956] = 2956, - [2957] = 2957, - [2958] = 2958, + [2956] = 2854, + [2957] = 2856, + [2958] = 2848, [2959] = 2959, [2960] = 2960, [2961] = 2961, [2962] = 2962, - [2963] = 2874, - [2964] = 2868, + [2963] = 2963, + [2964] = 2939, [2965] = 2965, - [2966] = 2950, - [2967] = 2967, + [2966] = 2966, + [2967] = 2843, [2968] = 2968, [2969] = 2969, [2970] = 2970, - [2971] = 2860, + [2971] = 2971, [2972] = 2972, - [2973] = 2910, - [2974] = 2974, - [2975] = 2975, + [2973] = 2973, + [2974] = 2870, + [2975] = 2940, [2976] = 2976, [2977] = 2977, - [2978] = 2950, - [2979] = 2890, - [2980] = 2980, + [2978] = 2976, + [2979] = 2977, + [2980] = 2969, [2981] = 2981, - [2982] = 2893, - [2983] = 2976, - [2984] = 2895, - [2985] = 2941, - [2986] = 2986, - [2987] = 2954, + [2982] = 2968, + [2983] = 2941, + [2984] = 2965, + [2985] = 2973, + [2986] = 2969, + [2987] = 2987, [2988] = 2988, - [2989] = 2989, - [2990] = 2959, - [2991] = 2991, - [2992] = 2965, - [2993] = 2908, - [2994] = 2994, - [2995] = 2957, - [2996] = 2959, + [2989] = 2977, + [2990] = 2976, + [2991] = 2873, + [2992] = 2968, + [2993] = 2965, + [2994] = 2969, + [2995] = 2995, + [2996] = 2977, [2997] = 2997, - [2998] = 2998, + [2998] = 2969, [2999] = 2999, - [3000] = 3000, - [3001] = 2977, + [3000] = 2965, + [3001] = 2968, [3002] = 3002, - [3003] = 2592, - [3004] = 2937, - [3005] = 2965, + [3003] = 2961, + [3004] = 2965, + [3005] = 2968, [3006] = 3006, - [3007] = 3007, - [3008] = 2975, - [3009] = 2896, - [3010] = 2959, + [3007] = 2844, + [3008] = 2966, + [3009] = 3009, + [3010] = 3010, [3011] = 3011, [3012] = 3012, - [3013] = 3013, + [3013] = 2960, [3014] = 3014, - [3015] = 3015, + [3015] = 2976, [3016] = 3016, - [3017] = 2957, - [3018] = 3018, + [3017] = 2977, + [3018] = 2882, [3019] = 3019, - [3020] = 2952, - [3021] = 2954, - [3022] = 2976, - [3023] = 2907, - [3024] = 2957, - [3025] = 2906, - [3026] = 2955, - [3027] = 2870, - [3028] = 3028, - [3029] = 2845, + [3020] = 3020, + [3021] = 3021, + [3022] = 3022, + [3023] = 3020, + [3024] = 2927, + [3025] = 3025, + [3026] = 3026, + [3027] = 2973, + [3028] = 2926, + [3029] = 543, [3030] = 3030, - [3031] = 1313, - [3032] = 3012, - [3033] = 2977, - [3034] = 3034, - [3035] = 3035, + [3031] = 3031, + [3032] = 2925, + [3033] = 1264, + [3034] = 1271, + [3035] = 2922, [3036] = 3036, - [3037] = 2680, - [3038] = 2975, - [3039] = 2974, - [3040] = 2989, - [3041] = 3041, - [3042] = 1349, - [3043] = 2914, - [3044] = 2897, - [3045] = 2975, + [3037] = 3037, + [3038] = 3038, + [3039] = 546, + [3040] = 3040, + [3041] = 2915, + [3042] = 2911, + [3043] = 3043, + [3044] = 3044, + [3045] = 2908, [3046] = 3046, - [3047] = 2902, - [3048] = 2989, - [3049] = 1260, + [3047] = 3047, + [3048] = 3048, + [3049] = 2906, [3050] = 3050, - [3051] = 3051, - [3052] = 2975, - [3053] = 3053, + [3051] = 1278, + [3052] = 3038, + [3053] = 2694, [3054] = 3054, - [3055] = 1255, + [3055] = 3044, [3056] = 3056, - [3057] = 2965, - [3058] = 3007, - [3059] = 1235, - [3060] = 3060, + [3057] = 2976, + [3058] = 2948, + [3059] = 3059, + [3060] = 2962, [3061] = 3061, - [3062] = 2957, - [3063] = 1234, - [3064] = 3064, + [3062] = 1250, + [3063] = 3063, + [3064] = 542, [3065] = 3065, - [3066] = 3034, - [3067] = 2980, - [3068] = 2954, - [3069] = 1301, - [3070] = 1286, - [3071] = 2851, - [3072] = 3035, - [3073] = 2976, - [3074] = 2977, - [3075] = 2905, - [3076] = 2950, - [3077] = 2994, - [3078] = 3018, - [3079] = 2950, - [3080] = 2977, - [3081] = 3035, - [3082] = 3082, - [3083] = 2989, - [3084] = 543, - [3085] = 3085, - [3086] = 2976, - [3087] = 542, - [3088] = 2975, - [3089] = 541, - [3090] = 2954, - [3091] = 540, - [3092] = 3065, - [3093] = 3015, + [3066] = 3066, + [3067] = 3067, + [3068] = 2640, + [3069] = 3069, + [3070] = 3070, + [3071] = 2969, + [3072] = 2972, + [3073] = 3026, + [3074] = 544, + [3075] = 545, + [3076] = 1342, + [3077] = 1336, + [3078] = 2973, + [3079] = 3079, + [3080] = 3080, + [3081] = 2891, + [3082] = 2901, + [3083] = 3083, + [3084] = 2904, + [3085] = 1315, + [3086] = 1332, + [3087] = 3087, + [3088] = 2965, + [3089] = 2968, + [3090] = 3009, + [3091] = 3091, + [3092] = 3092, + [3093] = 2977, [3094] = 3094, - [3095] = 2950, - [3096] = 2957, - [3097] = 2954, - [3098] = 544, - [3099] = 3015, - [3100] = 3100, + [3095] = 3095, + [3096] = 3054, + [3097] = 2902, + [3098] = 3010, + [3099] = 2973, + [3100] = 2973, [3101] = 3101, - [3102] = 2915, - [3103] = 2977, - [3104] = 3011, - [3105] = 3105, - [3106] = 3106, - [3107] = 3107, - [3108] = 3108, - [3109] = 3109, - [3110] = 2917, - [3111] = 2956, - [3112] = 2903, - [3113] = 3053, - [3114] = 2856, - [3115] = 2918, - [3116] = 2921, - [3117] = 2976, - [3118] = 2969, - [3119] = 2909, - [3120] = 2954, + [3102] = 3102, + [3103] = 3091, + [3104] = 3014, + [3105] = 2999, + [3106] = 2900, + [3107] = 2895, + [3108] = 2977, + [3109] = 2899, + [3110] = 3061, + [3111] = 3011, + [3112] = 3112, + [3113] = 2693, + [3114] = 3011, + [3115] = 2963, + [3116] = 3116, + [3117] = 3117, + [3118] = 2897, + [3119] = 3091, + [3120] = 2976, [3121] = 3121, [3122] = 3122, [3123] = 3123, - [3124] = 692, - [3125] = 3107, + [3124] = 603, + [3125] = 642, [3126] = 3126, - [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 700, - [3131] = 3131, - [3132] = 701, + [3127] = 641, + [3128] = 700, + [3129] = 701, + [3130] = 3130, + [3131] = 763, + [3132] = 3132, [3133] = 3133, - [3134] = 616, - [3135] = 703, - [3136] = 602, + [3134] = 3134, + [3135] = 3135, + [3136] = 3136, [3137] = 3137, - [3138] = 3105, + [3138] = 3138, [3139] = 3139, - [3140] = 719, - [3141] = 720, - [3142] = 721, - [3143] = 722, - [3144] = 3144, + [3140] = 742, + [3141] = 3141, + [3142] = 3142, + [3143] = 739, + [3144] = 759, [3145] = 3145, - [3146] = 3146, - [3147] = 2935, - [3148] = 751, - [3149] = 753, + [3146] = 155, + [3147] = 738, + [3148] = 3148, + [3149] = 737, [3150] = 3150, - [3151] = 754, - [3152] = 3152, + [3151] = 146, + [3152] = 752, [3153] = 3153, - [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 3157, + [3154] = 734, + [3155] = 161, + [3156] = 762, + [3157] = 741, [3158] = 3158, [3159] = 3159, [3160] = 3160, [3161] = 3161, - [3162] = 3162, + [3162] = 740, [3163] = 3163, - [3164] = 3127, + [3164] = 3164, [3165] = 3165, [3166] = 3166, - [3167] = 3167, - [3168] = 3137, - [3169] = 3169, - [3170] = 156, - [3171] = 3153, - [3172] = 3172, + [3167] = 735, + [3168] = 3168, + [3169] = 758, + [3170] = 659, + [3171] = 3171, + [3172] = 3171, [3173] = 3173, - [3174] = 3174, + [3174] = 3173, [3175] = 3175, - [3176] = 3165, - [3177] = 3160, - [3178] = 174, + [3176] = 3176, + [3177] = 3177, + [3178] = 3178, [3179] = 3179, [3180] = 3180, [3181] = 3181, [3182] = 3182, [3183] = 3183, [3184] = 3184, - [3185] = 3185, + [3185] = 678, [3186] = 3186, - [3187] = 3187, - [3188] = 604, - [3189] = 3185, - [3190] = 3169, + [3187] = 1497, + [3188] = 3184, + [3189] = 3189, + [3190] = 3190, [3191] = 3191, - [3192] = 3131, - [3193] = 653, - [3194] = 3133, - [3195] = 3163, - [3196] = 652, + [3192] = 601, + [3193] = 3122, + [3194] = 712, + [3195] = 696, + [3196] = 3196, [3197] = 3197, - [3198] = 651, + [3198] = 617, [3199] = 3199, - [3200] = 3200, - [3201] = 650, - [3202] = 3202, - [3203] = 649, - [3204] = 3175, + [3200] = 725, + [3201] = 3171, + [3202] = 3135, + [3203] = 733, + [3204] = 1460, [3205] = 3205, - [3206] = 169, - [3207] = 3146, - [3208] = 648, - [3209] = 3162, - [3210] = 3161, - [3211] = 3211, + [3206] = 3206, + [3207] = 3126, + [3208] = 3208, + [3209] = 599, + [3210] = 2918, + [3211] = 1407, [3212] = 3212, [3213] = 3213, - [3214] = 3214, + [3214] = 2917, [3215] = 3215, - [3216] = 3187, - [3217] = 3191, + [3216] = 1403, + [3217] = 1381, [3218] = 3218, [3219] = 3219, [3220] = 3220, [3221] = 3221, [3222] = 3222, [3223] = 3223, - [3224] = 163, - [3225] = 3225, - [3226] = 624, - [3227] = 621, + [3224] = 3223, + [3225] = 3158, + [3226] = 3160, + [3227] = 3227, [3228] = 3228, - [3229] = 3229, - [3230] = 617, - [3231] = 3231, - [3232] = 611, - [3233] = 595, + [3229] = 1235, + [3230] = 3230, + [3231] = 166, + [3232] = 3232, + [3233] = 674, [3234] = 3234, [3235] = 3235, - [3236] = 3236, + [3236] = 668, [3237] = 3237, - [3238] = 3215, - [3239] = 3167, - [3240] = 3240, - [3241] = 3229, - [3242] = 3242, + [3238] = 1386, + [3239] = 3239, + [3240] = 3141, + [3241] = 3173, + [3242] = 3183, [3243] = 3243, [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 3248, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, + [3245] = 745, + [3246] = 2924, + [3247] = 627, + [3248] = 3179, + [3249] = 756, + [3250] = 611, + [3251] = 598, + [3252] = 607, [3253] = 3253, - [3254] = 1457, - [3255] = 1456, + [3254] = 631, + [3255] = 3255, [3256] = 3256, - [3257] = 3121, - [3258] = 3258, - [3259] = 3220, - [3260] = 3260, - [3261] = 603, - [3262] = 3262, - [3263] = 3150, - [3264] = 1423, - [3265] = 3265, - [3266] = 670, - [3267] = 671, + [3257] = 3190, + [3258] = 1403, + [3259] = 3259, + [3260] = 724, + [3261] = 3261, + [3262] = 634, + [3263] = 3263, + [3264] = 689, + [3265] = 3173, + [3266] = 3213, + [3267] = 3267, [3268] = 3268, - [3269] = 3269, - [3270] = 3085, + [3269] = 619, + [3270] = 3270, [3271] = 3271, [3272] = 3272, - [3273] = 3129, - [3274] = 2948, - [3275] = 2836, - [3276] = 3220, + [3273] = 3273, + [3274] = 691, + [3275] = 3069, + [3276] = 3276, [3277] = 3277, [3278] = 3278, - [3279] = 3218, - [3280] = 3250, + [3279] = 3059, + [3280] = 597, [3281] = 3281, - [3282] = 3212, + [3282] = 3145, [3283] = 3283, - [3284] = 3284, - [3285] = 3222, - [3286] = 1359, - [3287] = 639, - [3288] = 618, - [3289] = 757, - [3290] = 673, - [3291] = 665, - [3292] = 697, - [3293] = 662, - [3294] = 1501, - [3295] = 647, + [3284] = 699, + [3285] = 707, + [3286] = 3286, + [3287] = 3287, + [3288] = 1392, + [3289] = 708, + [3290] = 3290, + [3291] = 3291, + [3292] = 693, + [3293] = 3293, + [3294] = 3171, + [3295] = 3295, [3296] = 3296, - [3297] = 3277, + [3297] = 3297, [3298] = 3298, - [3299] = 708, - [3300] = 694, - [3301] = 3028, - [3302] = 600, - [3303] = 3303, - [3304] = 707, - [3305] = 664, - [3306] = 663, - [3307] = 658, - [3308] = 656, - [3309] = 644, - [3310] = 659, - [3311] = 699, - [3312] = 1360, - [3313] = 1361, - [3314] = 3126, - [3315] = 3315, + [3299] = 3239, + [3300] = 3255, + [3301] = 3301, + [3302] = 3142, + [3303] = 709, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3031, + [3308] = 3230, + [3309] = 3295, + [3310] = 3310, + [3311] = 3180, + [3312] = 1497, + [3313] = 3313, + [3314] = 710, + [3315] = 609, [3316] = 3316, - [3317] = 1362, + [3317] = 3317, [3318] = 3318, - [3319] = 1363, - [3320] = 679, - [3321] = 3321, - [3322] = 1364, - [3323] = 3323, + [3319] = 3319, + [3320] = 726, + [3321] = 727, + [3322] = 728, + [3323] = 3296, [3324] = 3324, - [3325] = 731, - [3326] = 597, - [3327] = 3327, - [3328] = 729, - [3329] = 596, - [3330] = 730, - [3331] = 3150, - [3332] = 612, + [3325] = 3325, + [3326] = 3326, + [3327] = 715, + [3328] = 3328, + [3329] = 1468, + [3330] = 3330, + [3331] = 729, + [3332] = 3332, [3333] = 3333, - [3334] = 3146, + [3334] = 3334, [3335] = 3335, - [3336] = 633, - [3337] = 3337, + [3336] = 3336, + [3337] = 1469, [3338] = 3338, - [3339] = 3339, - [3340] = 3340, - [3341] = 3220, - [3342] = 3342, - [3343] = 3343, - [3344] = 3158, - [3345] = 615, - [3346] = 3346, - [3347] = 626, - [3348] = 3258, - [3349] = 619, - [3350] = 3350, - [3351] = 3129, - [3352] = 607, - [3353] = 744, - [3354] = 594, - [3355] = 3231, - [3356] = 745, - [3357] = 723, + [3339] = 3244, + [3340] = 1496, + [3341] = 761, + [3342] = 757, + [3343] = 3276, + [3344] = 3189, + [3345] = 3345, + [3346] = 3092, + [3347] = 716, + [3348] = 1495, + [3349] = 3349, + [3350] = 723, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3356, + [3357] = 3295, [3358] = 3358, [3359] = 3359, [3360] = 3360, - [3361] = 717, - [3362] = 759, - [3363] = 3363, - [3364] = 3364, - [3365] = 760, - [3366] = 3225, + [3361] = 3361, + [3362] = 1494, + [3363] = 3196, + [3364] = 3326, + [3365] = 3365, + [3366] = 1493, [3367] = 3367, - [3368] = 752, + [3368] = 3368, [3369] = 3369, - [3370] = 3160, - [3371] = 3371, - [3372] = 3165, + [3370] = 3370, + [3371] = 3234, + [3372] = 3372, [3373] = 3373, - [3374] = 1284, - [3375] = 3220, - [3376] = 3376, + [3374] = 3208, + [3375] = 3230, + [3376] = 753, [3377] = 3377, - [3378] = 3175, - [3379] = 3231, - [3380] = 1410, - [3381] = 3144, - [3382] = 748, - [3383] = 676, - [3384] = 677, - [3385] = 669, - [3386] = 3262, - [3387] = 660, - [3388] = 641, + [3378] = 730, + [3379] = 1493, + [3380] = 1494, + [3381] = 747, + [3382] = 3295, + [3383] = 3383, + [3384] = 746, + [3385] = 3385, + [3386] = 1468, + [3387] = 3212, + [3388] = 686, [3389] = 3389, - [3390] = 3390, - [3391] = 668, - [3392] = 1425, - [3393] = 3393, + [3390] = 2884, + [3391] = 3391, + [3392] = 3261, + [3393] = 722, [3394] = 3394, - [3395] = 3395, - [3396] = 3283, - [3397] = 3200, - [3398] = 3398, - [3399] = 601, - [3400] = 3150, - [3401] = 3401, - [3402] = 3402, - [3403] = 3150, - [3404] = 3404, - [3405] = 3405, - [3406] = 3406, - [3407] = 3407, - [3408] = 3158, - [3409] = 2865, + [3395] = 705, + [3396] = 3281, + [3397] = 3256, + [3398] = 3173, + [3399] = 612, + [3400] = 3218, + [3401] = 3184, + [3402] = 605, + [3403] = 614, + [3404] = 702, + [3405] = 1495, + [3406] = 1392, + [3407] = 1460, + [3408] = 3370, + [3409] = 1407, [3410] = 3410, - [3411] = 627, + [3411] = 3411, [3412] = 3412, - [3413] = 3413, - [3414] = 3414, - [3415] = 3415, + [3413] = 1469, + [3414] = 704, + [3415] = 3263, [3416] = 3416, - [3417] = 3417, - [3418] = 3418, + [3417] = 1381, + [3418] = 3183, [3419] = 3419, [3420] = 3420, [3421] = 3421, - [3422] = 3422, + [3422] = 3179, [3423] = 3423, [3424] = 3424, - [3425] = 3425, - [3426] = 3426, + [3425] = 1496, + [3426] = 717, [3427] = 3427, - [3428] = 3428, - [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, - [3433] = 3426, + [3428] = 3219, + [3429] = 3171, + [3430] = 3130, + [3431] = 749, + [3432] = 1386, + [3433] = 706, [3434] = 3434, - [3435] = 3435, - [3436] = 3436, + [3435] = 3180, + [3436] = 3263, [3437] = 3437, - [3438] = 3438, - [3439] = 3439, - [3440] = 3440, - [3441] = 3421, - [3442] = 3419, - [3443] = 3430, - [3444] = 3444, - [3445] = 3432, - [3446] = 3425, + [3438] = 713, + [3439] = 3267, + [3440] = 3255, + [3441] = 3441, + [3442] = 754, + [3443] = 1279, + [3444] = 750, + [3445] = 3445, + [3446] = 3446, [3447] = 3447, [3448] = 3448, - [3449] = 3424, - [3450] = 3436, + [3449] = 3449, + [3450] = 3450, [3451] = 3451, [3452] = 3452, [3453] = 3453, [3454] = 3454, [3455] = 3455, - [3456] = 3431, + [3456] = 3456, [3457] = 3457, - [3458] = 3452, - [3459] = 3436, - [3460] = 3453, - [3461] = 3425, - [3462] = 3454, - [3463] = 3455, - [3464] = 3455, - [3465] = 3454, - [3466] = 3466, - [3467] = 3437, - [3468] = 3432, + [3458] = 3458, + [3459] = 3459, + [3460] = 3454, + [3461] = 3445, + [3462] = 3462, + [3463] = 3454, + [3464] = 3464, + [3465] = 3465, + [3466] = 3462, + [3467] = 3445, + [3468] = 3457, [3469] = 3469, [3470] = 3470, - [3471] = 3453, - [3472] = 3452, - [3473] = 3466, - [3474] = 3453, - [3475] = 3430, - [3476] = 3452, - [3477] = 3454, - [3478] = 3455, - [3479] = 3452, - [3480] = 3455, - [3481] = 3454, - [3482] = 3453, + [3471] = 3459, + [3472] = 3455, + [3473] = 3473, + [3474] = 3474, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 3445, + [3479] = 3457, + [3480] = 3454, + [3481] = 3455, + [3482] = 3482, [3483] = 3483, - [3484] = 3432, - [3485] = 3453, - [3486] = 3466, - [3487] = 3430, - [3488] = 3488, - [3489] = 3425, - [3490] = 3453, - [3491] = 3452, - [3492] = 3436, - [3493] = 3452, - [3494] = 3494, - [3495] = 3495, - [3496] = 3496, - [3497] = 3436, - [3498] = 3437, - [3499] = 3430, + [3484] = 3454, + [3485] = 3485, + [3486] = 3486, + [3487] = 3445, + [3488] = 3446, + [3489] = 3457, + [3490] = 3455, + [3491] = 3446, + [3492] = 3492, + [3493] = 3493, + [3494] = 3446, + [3495] = 3454, + [3496] = 3455, + [3497] = 3497, + [3498] = 3498, + [3499] = 3499, [3500] = 3500, - [3501] = 3436, - [3502] = 3466, - [3503] = 3503, - [3504] = 3504, + [3501] = 3501, + [3502] = 3455, + [3503] = 3454, + [3504] = 3464, [3505] = 3505, - [3506] = 3430, - [3507] = 3426, - [3508] = 3426, - [3509] = 3432, - [3510] = 3444, - [3511] = 3511, - [3512] = 3466, - [3513] = 3504, - [3514] = 3511, - [3515] = 3503, - [3516] = 3516, - [3517] = 3452, - [3518] = 3518, - [3519] = 3519, - [3520] = 3426, - [3521] = 3453, - [3522] = 3522, - [3523] = 3454, - [3524] = 3454, - [3525] = 3455, - [3526] = 3455, - [3527] = 3432, - [3528] = 3466, + [3506] = 3499, + [3507] = 3457, + [3508] = 3508, + [3509] = 3445, + [3510] = 3455, + [3511] = 3457, + [3512] = 3512, + [3513] = 3451, + [3514] = 3469, + [3515] = 3457, + [3516] = 3445, + [3517] = 3512, + [3518] = 3446, + [3519] = 3508, + [3520] = 3452, + [3521] = 3521, + [3522] = 3459, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3526, + [3527] = 3527, + [3528] = 3528, [3529] = 3529, - [3530] = 3454, - [3531] = 3500, - [3532] = 3532, - [3533] = 3533, - [3534] = 3437, - [3535] = 3494, - [3536] = 3536, + [3530] = 3508, + [3531] = 3531, + [3532] = 3447, + [3533] = 3458, + [3534] = 3534, + [3535] = 3508, + [3536] = 3459, [3537] = 3537, - [3538] = 3455, - [3539] = 3518, - [3540] = 3540, + [3538] = 3538, + [3539] = 3469, + [3540] = 3469, [3541] = 3541, [3542] = 3542, - [3543] = 3543, - [3544] = 3544, + [3543] = 3454, + [3544] = 3452, [3545] = 3545, [3546] = 3546, - [3547] = 3437, + [3547] = 3447, [3548] = 3548, - [3549] = 1359, - [3550] = 3550, - [3551] = 3551, - [3552] = 3552, - [3553] = 3553, - [3554] = 3554, - [3555] = 3555, + [3549] = 3452, + [3550] = 3447, + [3551] = 3469, + [3552] = 3447, + [3553] = 3450, + [3554] = 3508, + [3555] = 3452, [3556] = 3556, [3557] = 3557, - [3558] = 3558, + [3558] = 3459, [3559] = 3559, - [3560] = 3556, - [3561] = 3561, - [3562] = 3562, - [3563] = 3563, - [3564] = 2845, - [3565] = 3565, - [3566] = 3566, - [3567] = 3567, + [3560] = 3447, + [3561] = 3469, + [3562] = 3457, + [3563] = 3508, + [3564] = 3526, + [3565] = 3498, + [3566] = 3446, + [3567] = 3525, [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, + [3569] = 3505, + [3570] = 3445, + [3571] = 3455, [3572] = 3572, [3573] = 3573, - [3574] = 3574, + [3574] = 1237, [3575] = 3575, [3576] = 3576, [3577] = 3577, @@ -7711,510 +7746,510 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3583] = 3583, [3584] = 3584, [3585] = 3585, - [3586] = 3586, - [3587] = 2874, - [3588] = 3562, - [3589] = 3589, + [3586] = 3352, + [3587] = 1309, + [3588] = 3588, + [3589] = 1362, [3590] = 3590, [3591] = 3591, - [3592] = 3592, - [3593] = 2844, - [3594] = 3594, - [3595] = 3595, - [3596] = 3568, + [3592] = 1269, + [3593] = 3583, + [3594] = 2921, + [3595] = 1298, + [3596] = 3596, [3597] = 3597, [3598] = 3598, - [3599] = 3599, + [3599] = 3598, [3600] = 3600, [3601] = 3601, [3602] = 3602, - [3603] = 3603, - [3604] = 3604, + [3603] = 3601, + [3604] = 3602, [3605] = 3605, - [3606] = 3606, + [3606] = 3338, [3607] = 3607, - [3608] = 3608, - [3609] = 3609, + [3608] = 2895, + [3609] = 3605, [3610] = 3610, - [3611] = 3562, + [3611] = 3611, [3612] = 3612, [3613] = 3613, - [3614] = 3602, - [3615] = 3582, - [3616] = 3616, - [3617] = 3577, - [3618] = 3576, - [3619] = 3619, - [3620] = 3575, - [3621] = 3601, + [3614] = 3614, + [3615] = 3615, + [3616] = 3607, + [3617] = 3610, + [3618] = 3614, + [3619] = 3615, + [3620] = 3572, + [3621] = 3621, [3622] = 3622, - [3623] = 3623, + [3623] = 3597, [3624] = 3624, [3625] = 3625, [3626] = 3626, [3627] = 3627, - [3628] = 3303, + [3628] = 3628, [3629] = 3629, - [3630] = 1425, + [3630] = 3630, [3631] = 3631, [3632] = 3632, - [3633] = 3552, + [3633] = 3633, [3634] = 3634, [3635] = 3635, [3636] = 3636, - [3637] = 3637, + [3637] = 3629, [3638] = 3638, - [3639] = 1233, - [3640] = 3598, - [3641] = 3556, - [3642] = 1236, - [3643] = 1457, - [3644] = 1242, - [3645] = 3589, - [3646] = 3646, - [3647] = 3553, - [3648] = 3555, + [3639] = 3639, + [3640] = 3640, + [3641] = 3631, + [3642] = 3632, + [3643] = 3643, + [3644] = 3644, + [3645] = 3576, + [3646] = 3628, + [3647] = 3578, + [3648] = 3627, [3649] = 3649, - [3650] = 3563, - [3651] = 3651, - [3652] = 3571, - [3653] = 3573, - [3654] = 1456, - [3655] = 3655, - [3656] = 3582, + [3650] = 3650, + [3651] = 3199, + [3652] = 3652, + [3653] = 3634, + [3654] = 3654, + [3655] = 3635, + [3656] = 3656, [3657] = 3657, - [3658] = 1423, - [3659] = 3584, - [3660] = 3660, - [3661] = 3661, + [3658] = 3658, + [3659] = 3659, + [3660] = 3585, + [3661] = 3622, [3662] = 3662, [3663] = 3663, - [3664] = 3664, - [3665] = 3665, - [3666] = 3666, - [3667] = 2856, + [3664] = 3630, + [3665] = 3627, + [3666] = 3628, + [3667] = 3667, [3668] = 3668, [3669] = 3669, - [3670] = 3670, + [3670] = 3596, [3671] = 3671, [3672] = 3672, [3673] = 3673, - [3674] = 3673, - [3675] = 3675, - [3676] = 3672, + [3674] = 3674, + [3675] = 3639, + [3676] = 3676, [3677] = 3677, - [3678] = 3601, - [3679] = 3602, + [3678] = 3678, + [3679] = 3679, [3680] = 3680, - [3681] = 3681, - [3682] = 3682, - [3683] = 1360, + [3681] = 2891, + [3682] = 3644, + [3683] = 3683, [3684] = 3684, - [3685] = 3410, - [3686] = 3576, + [3685] = 3685, + [3686] = 3686, [3687] = 3687, - [3688] = 3575, - [3689] = 3552, + [3688] = 3649, + [3689] = 3650, [3690] = 3690, - [3691] = 3691, - [3692] = 3595, - [3693] = 3693, - [3694] = 3694, + [3691] = 3625, + [3692] = 3692, + [3693] = 3629, + [3694] = 3572, [3695] = 3695, [3696] = 3696, - [3697] = 1361, - [3698] = 1362, - [3699] = 3699, - [3700] = 3700, - [3701] = 1363, - [3702] = 3702, - [3703] = 3703, + [3697] = 3697, + [3698] = 3698, + [3699] = 3576, + [3700] = 3578, + [3701] = 3701, + [3702] = 3657, + [3703] = 3659, [3704] = 3704, - [3705] = 1364, - [3706] = 3601, - [3707] = 3601, - [3708] = 3602, - [3709] = 3602, + [3705] = 3680, + [3706] = 3627, + [3707] = 3628, + [3708] = 3627, + [3709] = 3628, [3710] = 3710, - [3711] = 3711, + [3711] = 3639, [3712] = 3712, - [3713] = 3576, + [3713] = 3713, [3714] = 3714, - [3715] = 3575, + [3715] = 3576, [3716] = 3716, - [3717] = 3717, - [3718] = 3657, - [3719] = 3601, - [3720] = 3690, + [3717] = 3578, + [3718] = 3585, + [3719] = 3719, + [3720] = 3720, [3721] = 3721, [3722] = 3722, [3723] = 3723, - [3724] = 3602, - [3725] = 3693, + [3724] = 3724, + [3725] = 3725, [3726] = 3726, - [3727] = 3727, - [3728] = 3728, + [3727] = 3683, + [3728] = 3684, [3729] = 3729, [3730] = 3730, [3731] = 3731, [3732] = 3732, [3733] = 3733, [3734] = 3734, - [3735] = 3735, - [3736] = 3736, - [3737] = 3574, + [3735] = 3720, + [3736] = 3627, + [3737] = 3628, [3738] = 3738, - [3739] = 3739, + [3739] = 2882, [3740] = 3740, - [3741] = 2870, - [3742] = 3582, - [3743] = 3743, - [3744] = 1410, + [3741] = 3741, + [3742] = 3576, + [3743] = 3629, + [3744] = 3578, [3745] = 3745, - [3746] = 3746, - [3747] = 3552, - [3748] = 3575, + [3746] = 3572, + [3747] = 3747, + [3748] = 3748, [3749] = 3749, [3750] = 3750, - [3751] = 3576, - [3752] = 3663, - [3753] = 3666, - [3754] = 3702, - [3755] = 3738, - [3756] = 3585, - [3757] = 3757, - [3758] = 3552, - [3759] = 3574, - [3760] = 3337, - [3761] = 1501, + [3751] = 3751, + [3752] = 3752, + [3753] = 3753, + [3754] = 3696, + [3755] = 3755, + [3756] = 3697, + [3757] = 3576, + [3758] = 3734, + [3759] = 3759, + [3760] = 3578, + [3761] = 3761, [3762] = 3762, - [3763] = 3234, - [3764] = 3631, - [3765] = 3736, - [3766] = 3562, - [3767] = 3703, - [3768] = 3629, - [3769] = 3575, - [3770] = 3582, + [3763] = 2873, + [3764] = 3698, + [3765] = 3580, + [3766] = 3766, + [3767] = 3605, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, [3771] = 3771, - [3772] = 3562, - [3773] = 3704, - [3774] = 3548, - [3775] = 3627, - [3776] = 3576, - [3777] = 1259, - [3778] = 3710, - [3779] = 1266, - [3780] = 3625, - [3781] = 3582, + [3772] = 3772, + [3773] = 3572, + [3774] = 3585, + [3775] = 3775, + [3776] = 3776, + [3777] = 3644, + [3778] = 3627, + [3779] = 3628, + [3780] = 3590, + [3781] = 3591, [3782] = 3782, - [3783] = 3157, + [3783] = 3783, [3784] = 3784, - [3785] = 3599, - [3786] = 613, - [3787] = 3732, - [3788] = 3733, - [3789] = 3789, - [3790] = 3576, - [3791] = 3631, - [3792] = 3550, - [3793] = 3584, - [3794] = 3629, - [3795] = 2868, - [3796] = 3575, - [3797] = 3600, - [3798] = 3574, - [3799] = 3627, + [3785] = 3785, + [3786] = 3658, + [3787] = 3639, + [3788] = 3656, + [3789] = 2870, + [3790] = 3790, + [3791] = 3654, + [3792] = 3629, + [3793] = 3793, + [3794] = 604, + [3795] = 3572, + [3796] = 3652, + [3797] = 3652, + [3798] = 3798, + [3799] = 3576, [3800] = 3800, - [3801] = 3625, + [3801] = 3585, [3802] = 3802, - [3803] = 3803, - [3804] = 3602, - [3805] = 3601, - [3806] = 3649, - [3807] = 3807, + [3803] = 3658, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 3656, [3808] = 3808, - [3809] = 3809, - [3810] = 3810, + [3809] = 3654, + [3810] = 3578, [3811] = 3811, - [3812] = 3812, - [3813] = 3813, + [3812] = 2221, + [3813] = 3528, [3814] = 3814, - [3815] = 3483, + [3815] = 3815, [3816] = 3816, [3817] = 3817, [3818] = 3818, [3819] = 3819, [3820] = 3820, - [3821] = 3821, + [3821] = 3815, [3822] = 3822, [3823] = 3823, [3824] = 3824, - [3825] = 3825, - [3826] = 3085, - [3827] = 3827, - [3828] = 3107, + [3825] = 3820, + [3826] = 3826, + [3827] = 2212, + [3828] = 3828, [3829] = 3829, [3830] = 3830, [3831] = 3831, - [3832] = 3832, - [3833] = 3833, - [3834] = 3834, + [3832] = 2210, + [3833] = 3819, + [3834] = 3818, [3835] = 3835, [3836] = 3836, - [3837] = 3105, + [3837] = 3820, [3838] = 3838, - [3839] = 3839, - [3840] = 3840, - [3841] = 3841, - [3842] = 2224, - [3843] = 3811, + [3839] = 786, + [3840] = 791, + [3841] = 2236, + [3842] = 3842, + [3843] = 2216, [3844] = 3844, - [3845] = 2198, + [3845] = 3845, [3846] = 3846, - [3847] = 3820, - [3848] = 3817, + [3847] = 3847, + [3848] = 2202, [3849] = 3849, [3850] = 3850, [3851] = 3851, - [3852] = 3812, - [3853] = 3853, - [3854] = 3854, - [3855] = 3855, - [3856] = 3856, + [3852] = 3852, + [3853] = 3031, + [3854] = 3819, + [3855] = 2237, + [3856] = 2217, [3857] = 3857, [3858] = 3858, [3859] = 3859, - [3860] = 3860, - [3861] = 3861, - [3862] = 3862, - [3863] = 3859, + [3860] = 2226, + [3861] = 2229, + [3862] = 3818, + [3863] = 3863, [3864] = 3864, - [3865] = 3865, + [3865] = 2203, [3866] = 3866, [3867] = 3867, [3868] = 3868, - [3869] = 3824, + [3869] = 3869, [3870] = 3870, - [3871] = 2208, + [3871] = 3871, [3872] = 3872, - [3873] = 2207, + [3873] = 3873, [3874] = 3874, - [3875] = 3875, + [3875] = 3867, [3876] = 3876, - [3877] = 3853, - [3878] = 3878, + [3877] = 3877, + [3878] = 3859, [3879] = 3879, [3880] = 3880, [3881] = 3881, - [3882] = 3882, + [3882] = 2205, [3883] = 3883, [3884] = 3884, [3885] = 3885, - [3886] = 3882, + [3886] = 3886, [3887] = 3887, [3888] = 3888, - [3889] = 3889, + [3889] = 2215, [3890] = 3890, - [3891] = 3891, - [3892] = 2194, + [3891] = 3835, + [3892] = 3844, [3893] = 3893, - [3894] = 3809, - [3895] = 2193, - [3896] = 3838, + [3894] = 3894, + [3895] = 3895, + [3896] = 3896, [3897] = 3897, [3898] = 3898, [3899] = 3899, [3900] = 3900, [3901] = 3901, - [3902] = 3881, - [3903] = 3903, + [3902] = 3902, + [3903] = 3814, [3904] = 3904, - [3905] = 3905, - [3906] = 780, + [3905] = 3893, + [3906] = 3906, [3907] = 3907, - [3908] = 3875, + [3908] = 3908, [3909] = 3909, - [3910] = 3910, - [3911] = 3829, + [3910] = 3904, + [3911] = 3906, [3912] = 3912, [3913] = 3913, [3914] = 3914, - [3915] = 3915, - [3916] = 789, - [3917] = 3917, + [3915] = 3912, + [3916] = 3831, + [3917] = 3913, [3918] = 3918, [3919] = 3919, [3920] = 3920, - [3921] = 3921, - [3922] = 3853, - [3923] = 3923, - [3924] = 2221, - [3925] = 3857, - [3926] = 3851, - [3927] = 3849, - [3928] = 3810, + [3921] = 3826, + [3922] = 3922, + [3923] = 3824, + [3924] = 3924, + [3925] = 3922, + [3926] = 3816, + [3927] = 3919, + [3928] = 3918, [3929] = 3929, - [3930] = 3923, - [3931] = 3921, - [3932] = 3932, - [3933] = 3933, - [3934] = 3934, - [3935] = 3840, - [3936] = 3854, - [3937] = 3917, - [3938] = 3855, - [3939] = 3861, - [3940] = 3940, - [3941] = 3920, - [3942] = 3942, - [3943] = 3821, - [3944] = 3929, - [3945] = 3940, - [3946] = 3919, - [3947] = 3947, + [3930] = 3930, + [3931] = 3931, + [3932] = 3092, + [3933] = 3815, + [3934] = 3909, + [3935] = 3859, + [3936] = 3844, + [3937] = 3844, + [3938] = 3929, + [3939] = 3845, + [3940] = 3851, + [3941] = 3941, + [3942] = 3857, + [3943] = 3943, + [3944] = 3930, + [3945] = 3931, + [3946] = 3946, + [3947] = 3815, [3948] = 3948, - [3949] = 3949, + [3949] = 3852, [3950] = 3950, [3951] = 3951, - [3952] = 3952, - [3953] = 3953, + [3952] = 3886, + [3953] = 3820, [3954] = 3954, [3955] = 3955, - [3956] = 3853, - [3957] = 3957, + [3956] = 3956, + [3957] = 2222, [3958] = 3958, - [3959] = 3959, - [3960] = 3887, - [3961] = 3885, - [3962] = 3962, - [3963] = 3878, - [3964] = 3905, - [3965] = 3955, - [3966] = 3966, - [3967] = 3881, - [3968] = 3890, - [3969] = 3814, - [3970] = 3822, - [3971] = 3824, - [3972] = 3832, - [3973] = 3833, - [3974] = 3836, - [3975] = 3897, - [3976] = 3839, + [3959] = 3919, + [3960] = 3819, + [3961] = 3961, + [3962] = 3830, + [3963] = 3963, + [3964] = 3964, + [3965] = 3965, + [3966] = 3896, + [3967] = 3967, + [3968] = 3818, + [3969] = 3969, + [3970] = 3970, + [3971] = 3842, + [3972] = 3972, + [3973] = 3896, + [3974] = 3974, + [3975] = 3943, + [3976] = 2220, [3977] = 3977, - [3978] = 3846, - [3979] = 3979, - [3980] = 3858, - [3981] = 3862, - [3982] = 3864, - [3983] = 3923, - [3984] = 3921, - [3985] = 3920, - [3986] = 3919, - [3987] = 3909, - [3988] = 3988, - [3989] = 3989, + [3978] = 3978, + [3979] = 2211, + [3980] = 3844, + [3981] = 3981, + [3982] = 3982, + [3983] = 2214, + [3984] = 3871, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 3857, + [3989] = 3851, [3990] = 3990, [3991] = 3991, - [3992] = 3919, - [3993] = 3920, + [3992] = 3992, + [3993] = 3941, [3994] = 3994, - [3995] = 3921, + [3995] = 3995, [3996] = 3996, - [3997] = 3923, - [3998] = 3899, - [3999] = 3999, - [4000] = 2190, + [3997] = 3919, + [3998] = 2213, + [3999] = 3896, + [4000] = 3822, [4001] = 4001, - [4002] = 3905, - [4003] = 3948, - [4004] = 3822, - [4005] = 3814, + [4002] = 4002, + [4003] = 2224, + [4004] = 4004, + [4005] = 3842, [4006] = 4006, [4007] = 4007, - [4008] = 3874, - [4009] = 3900, + [4008] = 4008, + [4009] = 4009, [4010] = 4010, - [4011] = 2201, - [4012] = 3853, - [4013] = 3865, - [4014] = 3915, - [4015] = 3901, - [4016] = 3903, - [4017] = 3860, - [4018] = 4018, - [4019] = 2209, - [4020] = 4020, + [4011] = 3845, + [4012] = 4012, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 4016, + [4017] = 3844, + [4018] = 3886, + [4019] = 3842, + [4020] = 3961, [4021] = 4021, - [4022] = 3905, - [4023] = 3881, - [4024] = 3824, - [4025] = 2196, - [4026] = 2212, - [4027] = 4027, - [4028] = 4010, - [4029] = 4029, + [4022] = 3964, + [4023] = 3830, + [4024] = 3967, + [4025] = 4025, + [4026] = 4026, + [4027] = 3970, + [4028] = 4028, + [4029] = 3863, [4030] = 4030, - [4031] = 3028, - [4032] = 4007, - [4033] = 2215, - [4034] = 3907, - [4035] = 2223, + [4031] = 4031, + [4032] = 4032, + [4033] = 4033, + [4034] = 3919, + [4035] = 4035, [4036] = 4036, - [4037] = 4037, - [4038] = 4038, - [4039] = 2216, - [4040] = 2227, - [4041] = 2195, - [4042] = 3824, - [4043] = 4043, + [4037] = 3946, + [4038] = 3896, + [4039] = 4002, + [4040] = 4040, + [4041] = 3842, + [4042] = 4042, + [4043] = 4040, [4044] = 4044, - [4045] = 4045, - [4046] = 3990, - [4047] = 3979, - [4048] = 2197, - [4049] = 3999, - [4050] = 3910, - [4051] = 4051, - [4052] = 3912, - [4053] = 3882, + [4045] = 4044, + [4046] = 3842, + [4047] = 4047, + [4048] = 4030, + [4049] = 4049, + [4050] = 2207, + [4051] = 3863, + [4052] = 4052, + [4053] = 4053, [4054] = 4054, [4055] = 4055, - [4056] = 3881, - [4057] = 3905, - [4058] = 4058, - [4059] = 3881, - [4060] = 3824, - [4061] = 3905, - [4062] = 3917, - [4063] = 4063, - [4064] = 2214, - [4065] = 4065, - [4066] = 4066, - [4067] = 2218, - [4068] = 3955, - [4069] = 3853, - [4070] = 4070, - [4071] = 2213, - [4072] = 4072, - [4073] = 3948, - [4074] = 3990, - [4075] = 4075, - [4076] = 3919, - [4077] = 3920, - [4078] = 3921, - [4079] = 3923, - [4080] = 2225, - [4081] = 3832, - [4082] = 3822, - [4083] = 3814, - [4084] = 3885, - [4085] = 4085, - [4086] = 4086, - [4087] = 4087, + [4056] = 3965, + [4057] = 3852, + [4058] = 3896, + [4059] = 3824, + [4060] = 4049, + [4061] = 3920, + [4062] = 4062, + [4063] = 3919, + [4064] = 4047, + [4065] = 3818, + [4066] = 3819, + [4067] = 3820, + [4068] = 3815, + [4069] = 3907, + [4070] = 3902, + [4071] = 3996, + [4072] = 3880, + [4073] = 3872, + [4074] = 2232, + [4075] = 3995, + [4076] = 3994, + [4077] = 4077, + [4078] = 3873, + [4079] = 3992, + [4080] = 3059, + [4081] = 3069, + [4082] = 3851, + [4083] = 3857, + [4084] = 3874, + [4085] = 3985, + [4086] = 3870, + [4087] = 3876, [4088] = 4088, - [4089] = 4089, + [4089] = 2233, [4090] = 4090, [4091] = 4091, [4092] = 4092, @@ -8247,340 +8282,321 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4119] = 4119, [4120] = 4120, [4121] = 4121, - [4122] = 4116, - [4123] = 4120, - [4124] = 4124, + [4122] = 4122, + [4123] = 4123, + [4124] = 4123, [4125] = 4125, [4126] = 4126, - [4127] = 4127, - [4128] = 4128, + [4127] = 4125, + [4128] = 4091, [4129] = 4129, - [4130] = 4112, + [4130] = 4130, [4131] = 4131, [4132] = 4132, [4133] = 4133, [4134] = 4134, - [4135] = 4088, - [4136] = 4111, - [4137] = 4086, + [4135] = 4110, + [4136] = 4102, + [4137] = 4101, [4138] = 4138, - [4139] = 4139, - [4140] = 4109, - [4141] = 4108, - [4142] = 4107, + [4139] = 4109, + [4140] = 4140, + [4141] = 4141, + [4142] = 4123, [4143] = 4143, [4144] = 4144, - [4145] = 4145, - [4146] = 4129, - [4147] = 4147, - [4148] = 4148, + [4145] = 4099, + [4146] = 4146, + [4147] = 4126, + [4148] = 4095, [4149] = 4149, - [4150] = 4150, + [4150] = 4092, [4151] = 4151, [4152] = 4152, [4153] = 4153, [4154] = 4154, [4155] = 4155, [4156] = 4156, - [4157] = 4157, + [4157] = 4098, [4158] = 4158, - [4159] = 4131, + [4159] = 4159, [4160] = 4160, - [4161] = 4161, - [4162] = 4162, + [4161] = 4119, + [4162] = 4103, [4163] = 4163, - [4164] = 4157, - [4165] = 4152, - [4166] = 4151, - [4167] = 4134, - [4168] = 4150, - [4169] = 4149, - [4170] = 4170, - [4171] = 4143, - [4172] = 4139, - [4173] = 4138, - [4174] = 4133, - [4175] = 4086, - [4176] = 4119, - [4177] = 4129, - [4178] = 4110, - [4179] = 4128, - [4180] = 4113, - [4181] = 4114, - [4182] = 4115, - [4183] = 4118, - [4184] = 4117, - [4185] = 4127, - [4186] = 4106, - [4187] = 4105, - [4188] = 4161, - [4189] = 4131, - [4190] = 4190, - [4191] = 4091, - [4192] = 4125, - [4193] = 4092, - [4194] = 4194, - [4195] = 4096, - [4196] = 4102, - [4197] = 4124, + [4164] = 4108, + [4165] = 4159, + [4166] = 4166, + [4167] = 4160, + [4168] = 4112, + [4169] = 4169, + [4170] = 4115, + [4171] = 4116, + [4172] = 4117, + [4173] = 4173, + [4174] = 4119, + [4175] = 4090, + [4176] = 4176, + [4177] = 4091, + [4178] = 4123, + [4179] = 4130, + [4180] = 4099, + [4181] = 4141, + [4182] = 4169, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 4114, + [4187] = 4090, + [4188] = 4163, + [4189] = 4173, + [4190] = 4183, + [4191] = 4191, + [4192] = 4101, + [4193] = 4123, + [4194] = 4094, + [4195] = 4158, + [4196] = 4169, + [4197] = 4166, [4198] = 4198, - [4199] = 4087, - [4200] = 4095, - [4201] = 4125, + [4199] = 4130, + [4200] = 4117, + [4201] = 4100, [4202] = 4116, - [4203] = 4112, - [4204] = 4131, - [4205] = 4111, - [4206] = 4109, - [4207] = 4108, - [4208] = 4208, - [4209] = 4107, - [4210] = 4101, + [4203] = 4091, + [4204] = 4115, + [4205] = 4108, + [4206] = 4103, + [4207] = 4207, + [4208] = 4098, + [4209] = 4209, + [4210] = 4210, [4211] = 4211, - [4212] = 4100, - [4213] = 4099, - [4214] = 4098, - [4215] = 4094, - [4216] = 4090, - [4217] = 1422, - [4218] = 4117, - [4219] = 4219, - [4220] = 4128, - [4221] = 4221, - [4222] = 4089, - [4223] = 4110, - [4224] = 4224, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, - [4228] = 4095, - [4229] = 4097, - [4230] = 4097, - [4231] = 4095, - [4232] = 4088, - [4233] = 4115, - [4234] = 4114, - [4235] = 4087, - [4236] = 4113, - [4237] = 4089, - [4238] = 4114, - [4239] = 4115, - [4240] = 4090, - [4241] = 4198, - [4242] = 4211, - [4243] = 4102, - [4244] = 4170, - [4245] = 4113, - [4246] = 4096, - [4247] = 4156, - [4248] = 4092, - [4249] = 4147, - [4250] = 4250, - [4251] = 4091, - [4252] = 4161, - [4253] = 4105, - [4254] = 4115, - [4255] = 4114, - [4256] = 4113, - [4257] = 4093, - [4258] = 4094, - [4259] = 4259, - [4260] = 4106, - [4261] = 4225, - [4262] = 4208, - [4263] = 4110, - [4264] = 4264, - [4265] = 4127, - [4266] = 4118, - [4267] = 4267, - [4268] = 4119, - [4269] = 4133, - [4270] = 4198, - [4271] = 4118, - [4272] = 4138, - [4273] = 4139, - [4274] = 4143, - [4275] = 4098, - [4276] = 4149, - [4277] = 4099, - [4278] = 4100, - [4279] = 4101, - [4280] = 4150, - [4281] = 4151, - [4282] = 4107, - [4283] = 4108, - [4284] = 4152, - [4285] = 4157, - [4286] = 4286, - [4287] = 4287, - [4288] = 4288, - [4289] = 4109, - [4290] = 4111, - [4291] = 4112, - [4292] = 4134, - [4293] = 4116, - [4294] = 4106, - [4295] = 4105, - [4296] = 4161, - [4297] = 4091, - [4298] = 4133, - [4299] = 4299, - [4300] = 4300, - [4301] = 4129, - [4302] = 4096, - [4303] = 4097, - [4304] = 4124, - [4305] = 4120, - [4306] = 4306, - [4307] = 4101, + [4212] = 4112, + [4213] = 4213, + [4214] = 4214, + [4215] = 4215, + [4216] = 4214, + [4217] = 4163, + [4218] = 4092, + [4219] = 4112, + [4220] = 4160, + [4221] = 4159, + [4222] = 4158, + [4223] = 4102, + [4224] = 4115, + [4225] = 4110, + [4226] = 4116, + [4227] = 4117, + [4228] = 4097, + [4229] = 4125, + [4230] = 4230, + [4231] = 4231, + [4232] = 4232, + [4233] = 4126, + [4234] = 4234, + [4235] = 4152, + [4236] = 4236, + [4237] = 4113, + [4238] = 4176, + [4239] = 4166, + [4240] = 4146, + [4241] = 4109, + [4242] = 4149, + [4243] = 4105, + [4244] = 4121, + [4245] = 4144, + [4246] = 4169, + [4247] = 4247, + [4248] = 4095, + [4249] = 4173, + [4250] = 4099, + [4251] = 4114, + [4252] = 4140, + [4253] = 4253, + [4254] = 4141, + [4255] = 4183, + [4256] = 4101, + [4257] = 4143, + [4258] = 4146, + [4259] = 4130, + [4260] = 4158, + [4261] = 4159, + [4262] = 4262, + [4263] = 4263, + [4264] = 4160, + [4265] = 4143, + [4266] = 4141, + [4267] = 4140, + [4268] = 4099, + [4269] = 4113, + [4270] = 4118, + [4271] = 4236, + [4272] = 4272, + [4273] = 4253, + [4274] = 4163, + [4275] = 4176, + [4276] = 4276, + [4277] = 4166, + [4278] = 4234, + [4279] = 4125, + [4280] = 4095, + [4281] = 4149, + [4282] = 4282, + [4283] = 4173, + [4284] = 4284, + [4285] = 4152, + [4286] = 4108, + [4287] = 4090, + [4288] = 4103, + [4289] = 4094, + [4290] = 4231, + [4291] = 4114, + [4292] = 4183, + [4293] = 4113, + [4294] = 4118, + [4295] = 4098, + [4296] = 4092, + [4297] = 4101, + [4298] = 4152, + [4299] = 4102, + [4300] = 4120, + [4301] = 4111, + [4302] = 4109, + [4303] = 4149, + [4304] = 4304, + [4305] = 4121, + [4306] = 4110, + [4307] = 4230, [4308] = 4308, - [4309] = 4100, - [4310] = 4097, - [4311] = 4311, - [4312] = 4102, - [4313] = 4099, - [4314] = 4127, - [4315] = 4315, - [4316] = 4316, - [4317] = 4317, - [4318] = 4318, - [4319] = 4125, - [4320] = 4198, - [4321] = 4098, - [4322] = 4120, - [4323] = 4124, - [4324] = 4125, - [4325] = 4087, - [4326] = 4326, - [4327] = 4088, - [4328] = 4311, - [4329] = 4128, - [4330] = 4118, - [4331] = 4129, - [4332] = 4095, - [4333] = 4088, - [4334] = 4087, - [4335] = 4101, - [4336] = 4198, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, - [4341] = 4102, - [4342] = 4259, - [4343] = 4110, - [4344] = 4124, - [4345] = 4225, - [4346] = 4113, - [4347] = 4114, - [4348] = 4115, - [4349] = 4095, - [4350] = 4226, - [4351] = 4100, - [4352] = 4097, - [4353] = 4096, - [4354] = 4092, - [4355] = 4219, - [4356] = 4091, - [4357] = 4115, - [4358] = 4114, - [4359] = 4113, - [4360] = 4360, - [4361] = 4161, - [4362] = 4105, - [4363] = 4106, - [4364] = 4131, - [4365] = 4120, - [4366] = 4133, - [4367] = 4134, - [4368] = 4099, - [4369] = 4118, - [4370] = 4089, - [4371] = 4119, - [4372] = 4157, - [4373] = 4152, - [4374] = 4098, - [4375] = 4090, - [4376] = 4151, - [4377] = 4150, - [4378] = 4149, - [4379] = 4143, - [4380] = 4086, - [4381] = 4138, - [4382] = 4098, - [4383] = 4225, - [4384] = 4139, - [4385] = 4225, - [4386] = 4139, - [4387] = 4143, - [4388] = 4138, - [4389] = 4110, - [4390] = 4110, - [4391] = 4086, - [4392] = 4225, - [4393] = 4119, - [4394] = 4149, - [4395] = 4225, - [4396] = 4113, - [4397] = 4150, - [4398] = 4114, - [4399] = 4115, - [4400] = 4110, - [4401] = 4100, - [4402] = 4267, - [4403] = 4151, - [4404] = 4259, - [4405] = 4152, + [4309] = 4140, + [4310] = 4143, + [4311] = 4095, + [4312] = 4151, + [4313] = 4151, + [4314] = 4314, + [4315] = 4121, + [4316] = 4314, + [4317] = 4122, + [4318] = 4117, + [4319] = 4116, + [4320] = 4117, + [4321] = 4115, + [4322] = 4116, + [4323] = 4323, + [4324] = 4146, + [4325] = 4119, + [4326] = 4151, + [4327] = 4327, + [4328] = 4126, + [4329] = 4112, + [4330] = 4115, + [4331] = 4214, + [4332] = 4115, + [4333] = 4116, + [4334] = 4117, + [4335] = 4335, + [4336] = 4113, + [4337] = 4140, + [4338] = 4121, + [4339] = 4118, + [4340] = 4149, + [4341] = 4341, + [4342] = 4113, + [4343] = 4118, + [4344] = 4118, + [4345] = 4122, + [4346] = 4151, + [4347] = 4158, + [4348] = 4159, + [4349] = 4176, + [4350] = 4350, + [4351] = 4351, + [4352] = 4160, + [4353] = 4163, + [4354] = 4122, + [4355] = 4355, + [4356] = 4146, + [4357] = 4143, + [4358] = 4358, + [4359] = 4141, + [4360] = 4166, + [4361] = 4361, + [4362] = 4169, + [4363] = 4173, + [4364] = 4090, + [4365] = 4114, + [4366] = 4183, + [4367] = 4101, + [4368] = 4368, + [4369] = 4214, + [4370] = 4130, + [4371] = 4091, + [4372] = 4108, + [4373] = 4093, + [4374] = 4214, + [4375] = 4375, + [4376] = 4112, + [4377] = 4112, + [4378] = 4378, + [4379] = 4214, + [4380] = 4380, + [4381] = 4103, + [4382] = 4115, + [4383] = 4098, + [4384] = 4116, + [4385] = 4117, + [4386] = 4386, + [4387] = 4378, + [4388] = 4144, + [4389] = 4389, + [4390] = 4390, + [4391] = 4391, + [4392] = 4092, + [4393] = 4215, + [4394] = 4102, + [4395] = 4110, + [4396] = 4125, + [4397] = 4397, + [4398] = 4126, + [4399] = 4399, + [4400] = 4214, + [4401] = 4112, + [4402] = 4214, + [4403] = 4144, + [4404] = 4404, + [4405] = 4405, [4406] = 4406, - [4407] = 4407, - [4408] = 4408, - [4409] = 4360, - [4410] = 4410, - [4411] = 4411, - [4412] = 4412, - [4413] = 4413, - [4414] = 4221, - [4415] = 4157, - [4416] = 4129, - [4417] = 4099, - [4418] = 4225, - [4419] = 4419, - [4420] = 4420, - [4421] = 4421, - [4422] = 4259, - [4423] = 4117, - [4424] = 4424, - [4425] = 4425, - [4426] = 4420, - [4427] = 4259, - [4428] = 4428, - [4429] = 4429, - [4430] = 4430, - [4431] = 4413, - [4432] = 4092, - [4433] = 4340, - [4434] = 4338, - [4435] = 4117, - [4436] = 4318, - [4437] = 4437, - [4438] = 4153, - [4439] = 4259, - [4440] = 4437, - [4441] = 4419, - [4442] = 4412, - [4443] = 4093, - [4444] = 4339, - [4445] = 4299, - [4446] = 4094, - [4447] = 4120, - [4448] = 4131, - [4449] = 4449, - [4450] = 4450, - [4451] = 4451, - [4452] = 4148, - [4453] = 4317, - [4454] = 4264, - [4455] = 4162, + [4407] = 4355, + [4408] = 4144, + [4409] = 4109, + [4410] = 4350, + [4411] = 4210, + [4412] = 4121, + [4413] = 4308, + [4414] = 4390, + [4415] = 4380, + [4416] = 4094, + [4417] = 1416, + [4418] = 4152, + [4419] = 4276, + [4420] = 4144, + [4421] = 4104, + [4422] = 4106, + [4423] = 4119, + [4424] = 4141, + [4425] = 4123, + [4426] = 4351, + [4427] = 4149, + [4428] = 4095, + [4429] = 4109, + [4430] = 4099, + [4431] = 4140, + [4432] = 4272, + [4433] = 4284, + [4434] = 4111, + [4435] = 4435, + [4436] = 4304, }; static inline bool anon_sym_BANG_character_set_1(int32_t c) { @@ -8615,6 +8631,20 @@ static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { : (c <= 12288 || c == 65279)))); } +static inline bool aux_sym_jsx_text_token1_character_set_1(int32_t c) { + return (c < 8192 + ? (c < 160 + ? (c < '\r' + ? c == '\t' + : c <= '\r') + : (c <= 160 || c == 5760)) + : (c <= 8203 || (c < 12288 + ? (c < 8287 + ? c == 8239 + : c <= 8288) + : (c <= 12288 || c == 65279)))); +} + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 160 ? (c < ':' @@ -8706,1259 +8736,1287 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '$') ADVANCE(268); - if (lookahead == '%') ADVANCE(198); + if (eof) ADVANCE(104); + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(13); + if (lookahead == '$') ADVANCE(278); + if (lookahead == '%') ADVANCE(200); if (lookahead == '&') ADVANCE(180); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(103); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(107); if (lookahead == '+') ADVANCE(192); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(248); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(274); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(258); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(205); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(284); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(112); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(97) + if (lookahead == '}') ADVANCE(116); + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(101) if (lookahead != 0 && - lookahead > 31) ADVANCE(269); + lookahead > 31) ADVANCE(279); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1) - if (lookahead == '-') ADVANCE(125); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '<') ADVANCE(122); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(124); - if (lookahead != 0) ADVANCE(121); + if (lookahead == '\n') SKIP(31) + if (lookahead == ' ') ADVANCE(1); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '/') ADVANCE(132); + if (lookahead == '<') ADVANCE(204); + if (lookahead == '{') ADVANCE(113); + if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(136); + if (lookahead != 0 && + lookahead != '>' && + lookahead != '}') ADVANCE(135); END_STATE(); case 2: - if (lookahead == '\n') SKIP(31) - if (lookahead == '-') ADVANCE(251); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(250); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(249); - if (lookahead != 0) ADVANCE(255); + if (lookahead == '\n') SKIP(2) + if (lookahead == '-') ADVANCE(129); + if (lookahead == '/') ADVANCE(127); + if (lookahead == '<') ADVANCE(126); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(128); + if (lookahead != 0) ADVANCE(125); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(41); - if (lookahead == '%') ADVANCE(198); + if (lookahead == '\n') SKIP(35) + if (lookahead == '-') ADVANCE(261); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(259); + if (lookahead != 0) ADVANCE(265); + END_STATE(); + case 4: + if (lookahead == ' ') ADVANCE(4); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '<' && + lookahead != '>' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); + END_STATE(); + case 5: + if (lookahead == ' ') ADVANCE(5); + if (lookahead == '*') ADVANCE(137); + if (lookahead == '\n' || + lookahead == '<' || + lookahead == '>' || + lookahead == '{' || + lookahead == '}') ADVANCE(29); + if (lookahead != 0) ADVANCE(138); + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(45); + if (lookahead == '%') ADVANCE(200); if (lookahead == '&') ADVANCE(180); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(103); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(107); if (lookahead == '+') ADVANCE(192); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(150); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(129); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(274); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(148); + if (lookahead == '/') ADVANCE(198); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(284); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(3) + if (lookahead == '}') ADVANCE(116); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) if (lookahead != 0 && lookahead > 31 && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '%') ADVANCE(198); + case 7: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '%') ADVANCE(200); if (lookahead == '&') ADVANCE(180); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(103); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(107); if (lookahead == '+') ADVANCE(192); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(274); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(198); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == '<') ADVANCE(207); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(284); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(185); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(4) + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) if (lookahead != 0 && lookahead > '#' && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(279); END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '%') ADVANCE(198); + case 8: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '%') ADVANCE(200); if (lookahead == '&') ADVANCE(180); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(103); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(107); if (lookahead == '+') ADVANCE(192); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(274); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(198); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == '<') ADVANCE(207); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(284); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(185); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(5) + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) if (lookahead != 0 && lookahead > '#' && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(279); END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '%') ADVANCE(198); + case 9: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '%') ADVANCE(200); if (lookahead == '&') ADVANCE(180); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(103); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(107); if (lookahead == '+') ADVANCE(192); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(138); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(129); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(274); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(146); + if (lookahead == '/') ADVANCE(198); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(284); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(112); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) + if (lookahead == '}') ADVANCE(116); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) if (lookahead != 0 && lookahead > '#' && (lookahead < '0' || '9' < lookahead) && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '%') ADVANCE(197); + case 10: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '%') ADVANCE(199); if (lookahead == '&') ADVANCE(181); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(104); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(108); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(137); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(106); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(275); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(146); + if (lookahead == '/') ADVANCE(197); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(110); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(285); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(182); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(188); - if (lookahead == '}') ADVANCE(112); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) + if (lookahead == '}') ADVANCE(116); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) if (lookahead != 0 && lookahead > '#' && (lookahead < '0' || '@' < lookahead) && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(197); + case 11: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '%') ADVANCE(199); if (lookahead == '&') ADVANCE(181); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(104); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(108); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(137); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(37); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(146); + if (lookahead == '/') ADVANCE(197); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(41); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(182); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(187); - if (lookahead == '}') ADVANCE(112); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); + if (lookahead == '}') ADVANCE(116); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(266); if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(197); + case 12: + if (lookahead == '!') ADVANCE(118); + if (lookahead == '%') ADVANCE(199); if (lookahead == '&') ADVANCE(181); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(104); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(108); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(137); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(37); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(146); + if (lookahead == '/') ADVANCE(197); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(41); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(182); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(187); - if (lookahead == '}') ADVANCE(112); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) + if (lookahead == '}') ADVANCE(116); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '\\') ADVANCE(59); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(270); + case 13: + if (lookahead == '!') ADVANCE(105); + if (lookahead == '\\') ADVANCE(63); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(28); + case 14: + if (lookahead == '!') ADVANCE(32); END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(41); + case 15: + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(45); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(102); - if (lookahead == ',') ADVANCE(111); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(106); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(272); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(112); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(282); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) + if (lookahead == '}') ADVANCE(116); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '+' < lookahead) && lookahead != '^' && lookahead != '`' && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(41); + case 16: + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(45); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == '*') ADVANCE(102); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == '*') ADVANCE(106); if (lookahead == '+') ADVANCE(190); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(248); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(272); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(258); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(112); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(282); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) + if (lookahead == '}') ADVANCE(116); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || ')' < lookahead) && lookahead != '^' && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(41); + case 17: + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(45); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == '*') ADVANCE(102); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == '*') ADVANCE(106); if (lookahead == '+') ADVANCE(190); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(272); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(112); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(282); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) + if (lookahead == '}') ADVANCE(116); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || ')' < lookahead) && lookahead != '^' && - lookahead != '~') ADVANCE(269); + lookahead != '~') ADVANCE(279); END_STATE(); - case 15: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(212); + case 18: + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(222); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(102); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(106); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '/') ADVANCE(137); - if (lookahead == '0') ADVANCE(258); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '?') ADVANCE(272); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '.') ADVANCE(36); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(268); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '?') ADVANCE(282); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(184); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) if (lookahead != 0 && lookahead > '#' && (lookahead < '%' || '>' < lookahead) && lookahead != '^' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(279); END_STATE(); - case 16: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(212); + case 19: + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(222); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(137); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(273); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(112); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(283); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(112); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) + if (lookahead == '}') ADVANCE(116); + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) if (lookahead != 0 && lookahead > '#' && (lookahead < '%' || '*' < lookahead) && - lookahead != '^') ADVANCE(269); + lookahead != '^') ADVANCE(279); END_STATE(); - case 17: - if (lookahead == '"') ADVANCE(212); + case 20: + if (lookahead == '"') ADVANCE(222); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == '*') ADVANCE(102); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == '*') ADVANCE(106); if (lookahead == '+') ADVANCE(190); if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(75); - if (lookahead == '/') ADVANCE(137); - if (lookahead == '0') ADVANCE(258); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(272); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '0') ADVANCE(268); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(282); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(277); if (lookahead != 0 && - lookahead > '~') ADVANCE(269); + lookahead > '~') ADVANCE(279); END_STATE(); - case 18: - if (lookahead == '"') ADVANCE(212); - if (lookahead == '-') ADVANCE(220); - if (lookahead == '/') ADVANCE(216); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '\\') ADVANCE(61); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(219); - if (lookahead != 0) ADVANCE(224); + case 21: + if (lookahead == '"') ADVANCE(222); + if (lookahead == '-') ADVANCE(230); + if (lookahead == '/') ADVANCE(226); + if (lookahead == '<') ADVANCE(225); + if (lookahead == '\\') ADVANCE(65); + if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(229); + if (lookahead != 0) ADVANCE(234); END_STATE(); - case 19: - if (lookahead == '$') ADVANCE(62); - if (lookahead == '-') ADVANCE(29); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '\\') ADVANCE(61); - if (lookahead == '`') ADVANCE(246); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) + case 22: + if (lookahead == '$') ADVANCE(66); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(14); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '`') ADVANCE(256); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) END_STATE(); - case 20: - if (lookahead == '$') ADVANCE(62); - if (lookahead == '-') ADVANCE(29); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '`') ADVANCE(246); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) + case 23: + if (lookahead == '$') ADVANCE(66); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(14); + if (lookahead == '`') ADVANCE(256); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) END_STATE(); - case 21: + case 24: if (lookahead == '&') ADVANCE(179); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ',') ADVANCE(111); - if (lookahead == '-') ADVANCE(30); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(137); - if (lookahead == ':') ADVANCE(118); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ',') ADVANCE(115); + if (lookahead == '-') ADVANCE(34); + if (lookahead == '.') ADVANCE(146); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(122); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(109); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(184); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(24) if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(277); if (lookahead != 0 && - lookahead > '~') ADVANCE(269); - END_STATE(); - case 22: - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '/') ADVANCE(227); - if (lookahead == '<') ADVANCE(226); - if (lookahead == '\\') ADVANCE(61); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(230); - if (lookahead != 0) ADVANCE(235); - END_STATE(); - case 23: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(243); - END_STATE(); - case 24: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(240); - if (lookahead != 0) ADVANCE(25); + lookahead > '~') ADVANCE(279); END_STATE(); case 25: - if (lookahead == '*') ADVANCE(24); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '-') ADVANCE(241); + if (lookahead == '/') ADVANCE(237); + if (lookahead == '<') ADVANCE(236); + if (lookahead == '\\') ADVANCE(65); + if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(240); + if (lookahead != 0) ADVANCE(245); END_STATE(); case 26: - if (lookahead == '-') ADVANCE(243); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(253); END_STATE(); case 27: - if (lookahead == '-') ADVANCE(144); - if (lookahead == '/') ADVANCE(140); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '{') ADVANCE(109); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(143); - if (lookahead != 0 && - lookahead != '>' && - lookahead != '}') ADVANCE(146); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 28: - if (lookahead == '-') ADVANCE(26); + if (lookahead == '*') ADVANCE(28); + if (lookahead == '/') ADVANCE(250); + if (lookahead != 0) ADVANCE(29); END_STATE(); case 29: - if (lookahead == '-') ADVANCE(38); + if (lookahead == '*') ADVANCE(28); + if (lookahead != 0) ADVANCE(29); END_STATE(); case 30: - if (lookahead == '-') ADVANCE(38); - if (lookahead == '?') ADVANCE(35); + if (lookahead == '-') ADVANCE(253); END_STATE(); case 31: - if (lookahead == '-') ADVANCE(29); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(11); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(31) + if (lookahead == '-') ADVANCE(133); + if (lookahead == '/') ADVANCE(132); + if (lookahead == '<') ADVANCE(204); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '\n' || + lookahead == ' ') SKIP(31) + if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(136); + if (lookahead != 0 && + lookahead != '>' && + lookahead != '}') ADVANCE(135); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (lookahead == '-') ADVANCE(30); END_STATE(); case 33: - if (lookahead == '.') ADVANCE(152); - if (lookahead == '?') ADVANCE(207); + if (lookahead == '-') ADVANCE(42); END_STATE(); case 34: - if (lookahead == '.') ADVANCE(168); + if (lookahead == '-') ADVANCE(42); + if (lookahead == '?') ADVANCE(39); END_STATE(); case 35: - if (lookahead == ':') ADVANCE(276); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(14); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) END_STATE(); case 36: - if (lookahead == ':') ADVANCE(277); + if (lookahead == '.') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); case 37: - if (lookahead == '=') ADVANCE(202); + if (lookahead == '.') ADVANCE(152); + if (lookahead == '?') ADVANCE(217); END_STATE(); case 38: - if (lookahead == '>') ADVANCE(243); + if (lookahead == '.') ADVANCE(168); END_STATE(); case 39: - if (lookahead == '>') ADVANCE(126); + if (lookahead == ':') ADVANCE(286); END_STATE(); case 40: - if (lookahead == '>') ADVANCE(127); + if (lookahead == ':') ADVANCE(287); END_STATE(); case 41: - if (lookahead == '\\') ADVANCE(59); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(270); + if (lookahead == '=') ADVANCE(212); END_STATE(); case 42: - if (lookahead == '\\') ADVANCE(95); - if (lookahead == ']') ADVANCE(255); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(42); + if (lookahead == '>') ADVANCE(253); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(55); + if (lookahead == '>') ADVANCE(130); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(56); + if (lookahead == '>') ADVANCE(131); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(51); + if (lookahead == '\\') ADVANCE(63); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(280); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(39); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(265); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(46); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(40); + if (lookahead == 'a') ADVANCE(59); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(52); + if (lookahead == 'a') ADVANCE(60); END_STATE(); case 49: - if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'e') ADVANCE(55); END_STATE(); case 50: - if (lookahead == 'l') ADVANCE(44); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 51: - if (lookahead == 'm') ADVANCE(53); + if (lookahead == 'e') ADVANCE(44); END_STATE(); case 52: - if (lookahead == 'm') ADVANCE(54); + if (lookahead == 'e') ADVANCE(56); END_STATE(); case 53: - if (lookahead == 'p') ADVANCE(49); + if (lookahead == 'l') ADVANCE(47); END_STATE(); case 54: - if (lookahead == 'p') ADVANCE(50); + if (lookahead == 'l') ADVANCE(48); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(46); + if (lookahead == 'm') ADVANCE(57); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(47); + if (lookahead == 'm') ADVANCE(58); END_STATE(); case 57: - if (lookahead == 't') ADVANCE(48); + if (lookahead == 'p') ADVANCE(53); END_STATE(); case 58: - if (lookahead == 'u') ADVANCE(63); - if (lookahead == 'x') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(239); - if (lookahead != 0) ADVANCE(236); + if (lookahead == 'p') ADVANCE(54); END_STATE(); case 59: - if (lookahead == 'u') ADVANCE(64); + if (lookahead == 't') ADVANCE(50); END_STATE(); case 60: - if (lookahead == 'u') ADVANCE(65); + if (lookahead == 't') ADVANCE(51); END_STATE(); case 61: - if (lookahead == 'u') ADVANCE(66); - if (lookahead == 'x') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(239); - if (lookahead != 0) ADVANCE(236); + if (lookahead == 't') ADVANCE(52); END_STATE(); case 62: - if (lookahead == '{') ADVANCE(247); + if (lookahead == 'u') ADVANCE(67); + if (lookahead == 'x') ADVANCE(91); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); + if (lookahead != 0) ADVANCE(246); END_STATE(); case 63: - if (lookahead == '{') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + if (lookahead == 'u') ADVANCE(68); END_STATE(); case 64: - if (lookahead == '{') ADVANCE(85); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + if (lookahead == 'u') ADVANCE(69); END_STATE(); case 65: - if (lookahead == '{') ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); + if (lookahead == 'u') ADVANCE(70); + if (lookahead == 'x') ADVANCE(91); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); + if (lookahead != 0) ADVANCE(246); END_STATE(); case 66: - if (lookahead == '{') ADVANCE(88); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); + if (lookahead == '{') ADVANCE(257); END_STATE(); case 67: - if (lookahead == '}') ADVANCE(269); + if (lookahead == '{') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); case 68: - if (lookahead == '}') ADVANCE(270); + if (lookahead == '{') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(68); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(97); END_STATE(); case 69: - if (lookahead == '}') ADVANCE(236); + if (lookahead == '{') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); END_STATE(); case 70: - if (lookahead == '}') ADVANCE(237); + if (lookahead == '{') ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); END_STATE(); case 71: - if (lookahead == '+' || - lookahead == '-') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (lookahead == '}') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(71); END_STATE(); case 72: - if (lookahead == '0' || - lookahead == '1') ADVANCE(260); + if (lookahead == '}') ADVANCE(280); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); case 73: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(261); + if (lookahead == '}') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(73); END_STATE(); case 74: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (lookahead == '}') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(74); END_STATE(); case 75: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (lookahead == '+' || + lookahead == '-') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 76: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + if (lookahead == '0' || + lookahead == '1') ADVANCE(270); END_STATE(); case 77: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(271); END_STATE(); case 78: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); case 79: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); case 80: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 81: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 82: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(279); END_STATE(); case 83: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(280); END_STATE(); case 84: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); END_STATE(); case 85: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(68); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); END_STATE(); case 86: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(74); END_STATE(); case 87: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(247); END_STATE(); case 88: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 89: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); case 90: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(71); END_STATE(); case 91: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); END_STATE(); case 92: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(73); END_STATE(); case 93: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); END_STATE(); case 94: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 95: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); END_STATE(); case 96: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); END_STATE(); case 97: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '$') ADVANCE(268); - if (lookahead == '%') ADVANCE(198); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); + END_STATE(); + case 98: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); + END_STATE(); + case 99: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(46); + END_STATE(); + case 100: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(265); + END_STATE(); + case 101: + if (eof) ADVANCE(104); + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(13); + if (lookahead == '$') ADVANCE(278); + if (lookahead == '%') ADVANCE(200); if (lookahead == '&') ADVANCE(180); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(103); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(107); if (lookahead == '+') ADVANCE(192); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(137); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(274); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(205); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(284); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(110); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(114); if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(112); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(97) + if (lookahead == '}') ADVANCE(116); + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(101) if (lookahead != 0 && - lookahead > 31) ADVANCE(269); + lookahead > 31) ADVANCE(279); END_STATE(); - case 98: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(114); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '%') ADVANCE(197); + case 102: + if (eof) ADVANCE(104); + if (lookahead == '!') ADVANCE(118); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '%') ADVANCE(199); if (lookahead == '&') ADVANCE(181); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(104); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(108); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(150); - if (lookahead == '/') ADVANCE(137); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(106); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); + if (lookahead == '.') ADVANCE(148); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(110); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); if (lookahead == '^') ADVANCE(182); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(187); - if (lookahead == '}') ADVANCE(112); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(98) + if (lookahead == '}') ADVANCE(116); + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(102) if (lookahead != 0 && - lookahead > '#') ADVANCE(269); + lookahead > '#') ADVANCE(279); END_STATE(); - case 99: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(212); - if (lookahead == '#') ADVANCE(10); + case 103: + if (eof) ADVANCE(104); + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(13); if (lookahead == '&') ADVANCE(179); - if (lookahead == '\'') ADVANCE(213); - if (lookahead == '(') ADVANCE(115); - if (lookahead == ')') ADVANCE(116); - if (lookahead == '*') ADVANCE(102); + if (lookahead == '\'') ADVANCE(223); + if (lookahead == '(') ADVANCE(119); + if (lookahead == ')') ADVANCE(120); + if (lookahead == '*') ADVANCE(106); if (lookahead == '+') ADVANCE(191); - if (lookahead == ',') ADVANCE(111); + if (lookahead == ',') ADVANCE(115); if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(149); - if (lookahead == '/') ADVANCE(137); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(117); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(134); - if (lookahead == '?') ADVANCE(272); - if (lookahead == '@') ADVANCE(271); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '`') ADVANCE(246); - if (lookahead == '{') ADVANCE(109); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(268); + if (lookahead == ':') ADVANCE(122); + if (lookahead == ';') ADVANCE(121); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(112); + if (lookahead == '>') ADVANCE(142); + if (lookahead == '?') ADVANCE(282); + if (lookahead == '@') ADVANCE(281); + if (lookahead == '[') ADVANCE(123); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '`') ADVANCE(256); + if (lookahead == '{') ADVANCE(113); if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(112); - if (lookahead == '~') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(99) + if (lookahead == '}') ADVANCE(116); + if (lookahead == '~') ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(103) if (lookahead != 0 && lookahead > 31 && lookahead != '%' && - lookahead != '^') ADVANCE(269); + lookahead != '^') ADVANCE(279); END_STATE(); - case 100: + case 104: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 101: + case 105: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(101); + lookahead != '\n') ADVANCE(105); END_STATE(); - case 102: + case 106: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 103: + case 107: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(200); + if (lookahead == '*') ADVANCE(202); if (lookahead == '=') ADVANCE(155); END_STATE(); - case 104: + case 108: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(199); + if (lookahead == '*') ADVANCE(201); END_STATE(); - case 105: + case 109: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 106: + case 110: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '=') ADVANCE(212); END_STATE(); - case 107: + case 111: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '=') ADVANCE(212); if (lookahead == '>') ADVANCE(151); END_STATE(); - case 108: + case 112: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '>') ADVANCE(151); END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(278); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(288); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(214); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 121: - ACCEPT_TOKEN(sym__glimmer_template_content); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 122: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '!') ADVANCE(28); - if (lookahead == '/') ADVANCE(57); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 123: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 124: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '-') ADVANCE(125); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '<') ADVANCE(122); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(124); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 125: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '-') ADVANCE(38); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_LTtemplate_GT); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '/') ADVANCE(61); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(253); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(28); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '-') ADVANCE(129); + if (lookahead == '/') ADVANCE(127); + if (lookahead == '<') ADVANCE(126); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(128); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(125); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(28); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(201); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '-') ADVANCE(42); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(28); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(201); - if (lookahead == 't') ADVANCE(45); + ACCEPT_TOKEN(anon_sym_LTtemplate_GT); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(28); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(28); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(201); - if (lookahead == 't') ADVANCE(45); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(4); + if (lookahead == '*') ADVANCE(138); + if (lookahead == '/') ADVANCE(139); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '<' && + lookahead != '>' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(28); - if (lookahead == 't') ADVANCE(45); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(4); + if (lookahead == '-') ADVANCE(134); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '<' && + lookahead != '>' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(4); + if (lookahead == '>') ADVANCE(253); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '<' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(173); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(4); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '<' && + lookahead != '>' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(174); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(1); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '/') ADVANCE(132); + if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(136); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '<' && + lookahead != '>' && + lookahead != '{' && + lookahead != '}') ADVANCE(135); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(243); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(5); + if (lookahead == '*') ADVANCE(137); + if (lookahead == '/') ADVANCE(135); + if (lookahead == '\n' || + lookahead == '<' || + lookahead == '>' || + lookahead == '{' || + lookahead == '}') ADVANCE(29); + if (lookahead != 0) ADVANCE(138); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(243); - if (lookahead == '=') ADVANCE(156); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(5); + if (lookahead == '*') ADVANCE(137); + if (lookahead == '\n' || + lookahead == '<' || + lookahead == '>' || + lookahead == '{' || + lookahead == '}') ADVANCE(29); + if (lookahead != 0) ADVANCE(138); END_STATE(); case 139: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '\n') ADVANCE(146); + ACCEPT_TOKEN(aux_sym_jsx_text_token1); + if (lookahead == ' ') ADVANCE(140); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(243); - if (lookahead != 0) ADVANCE(139); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '/') ADVANCE(139); + lookahead == '}') ADVANCE(141); if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(146); + lookahead != '\n') ADVANCE(139); END_STATE(); - case 141: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(141); - if (lookahead == '/') ADVANCE(146); + case 140: + ACCEPT_TOKEN(aux_sym_jsx_text_token2); + if (lookahead == ' ') ADVANCE(140); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(25); - if (lookahead != 0) ADVANCE(142); + lookahead == '}') ADVANCE(141); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(139); + END_STATE(); + case 141: + ACCEPT_TOKEN(aux_sym_jsx_text_token2); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(141); END_STATE(); case 142: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(141); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(25); - if (lookahead != 0) ADVANCE(142); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 143: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '/') ADVANCE(140); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(143); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(216); + if (lookahead == '>') ADVANCE(173); END_STATE(); case 144: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '-') ADVANCE(145); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(216); + if (lookahead == '>') ADVANCE(174); END_STATE(); case 145: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '>') ADVANCE(243); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') ADVANCE(146); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(146); - END_STATE(); - case 147: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_EQ_GT); @@ -10082,7 +10140,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '=') ADVANCE(160); if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(279); + if (lookahead == '}') ADVANCE(289); END_STATE(); case 187: ACCEPT_TOKEN(anon_sym_PIPE); @@ -10091,522 +10149,581 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 188: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') ADVANCE(171); - if (lookahead == '}') ADVANCE(279); + if (lookahead == '}') ADVANCE(289); END_STATE(); case 189: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(279); + if (lookahead == '}') ADVANCE(289); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(210); + if (lookahead == '+') ADVANCE(220); END_STATE(); case 192: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(210); + if (lookahead == '+') ADVANCE(220); if (lookahead == '=') ADVANCE(153); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(211); + if (lookahead == '-') ADVANCE(221); END_STATE(); case 194: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(211); + if (lookahead == '-') ADVANCE(221); if (lookahead == '=') ADVANCE(154); END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(211); + if (lookahead == '-') ADVANCE(221); if (lookahead == '=') ADVANCE(154); - if (lookahead == '?') ADVANCE(35); + if (lookahead == '?') ADVANCE(39); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(38); + if (lookahead == '-') ADVANCE(42); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(253); END_STATE(); case 198: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '=') ADVANCE(156); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 200: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(157); END_STATE(); - case 199: + case 201: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 200: + case 202: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == '=') ADVANCE(164); END_STATE(); - case 201: + case 203: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '/') ADVANCE(149); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '/') ADVANCE(149); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(211); + if (lookahead == 't') ADVANCE(49); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(211); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(211); + if (lookahead == 't') ADVANCE(49); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(211); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(211); + if (lookahead == 't') ADVANCE(49); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(32); + if (lookahead == 't') ADVANCE(49); + END_STATE(); + case 211: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 202: + case 212: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '=') ADVANCE(213); END_STATE(); - case 203: + case 213: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 204: + case 214: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '=') ADVANCE(215); END_STATE(); - case 205: + case 215: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 206: + case 216: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 207: + case 217: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 208: + case 218: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); if (lookahead == '=') ADVANCE(167); END_STATE(); - case 209: + case 219: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 210: + case 220: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 211: + case 221: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '>') ADVANCE(243); + if (lookahead == '>') ADVANCE(253); END_STATE(); - case 212: + case 222: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 213: + case 223: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 214: + case 224: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(224); + if (lookahead == '\n') ADVANCE(234); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(214); + lookahead != '\\') ADVANCE(224); END_STATE(); - case 215: + case 225: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '!') ADVANCE(222); + if (lookahead == '!') ADVANCE(232); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 216: + case 226: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(218); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '*') ADVANCE(228); + if (lookahead == '/') ADVANCE(224); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 217: + case 227: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(217); - if (lookahead == '/') ADVANCE(224); + if (lookahead == '*') ADVANCE(227); + if (lookahead == '/') ADVANCE(234); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(218); + lookahead != '\\') ADVANCE(228); END_STATE(); - case 218: + case 228: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(217); + if (lookahead == '*') ADVANCE(227); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(218); + lookahead != '\\') ADVANCE(228); END_STATE(); - case 219: + case 229: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(220); - if (lookahead == '/') ADVANCE(216); - if (lookahead == '<') ADVANCE(215); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(219); + if (lookahead == '-') ADVANCE(230); + if (lookahead == '/') ADVANCE(226); + if (lookahead == '<') ADVANCE(225); + if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(229); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 220: + case 230: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(223); + if (lookahead == '-') ADVANCE(233); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 221: + case 231: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(214); + if (lookahead == '-') ADVANCE(224); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 222: + case 232: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(221); + if (lookahead == '-') ADVANCE(231); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 223: + case 233: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '>') ADVANCE(214); + if (lookahead == '>') ADVANCE(224); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 224: + case 234: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(224); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 225: + case 235: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '\n') ADVANCE(235); + if (lookahead == '\n') ADVANCE(245); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(225); + lookahead != '\\') ADVANCE(235); END_STATE(); - case 226: + case 236: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '!') ADVANCE(233); + if (lookahead == '!') ADVANCE(243); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 227: + case 237: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '/') ADVANCE(225); + if (lookahead == '*') ADVANCE(239); + if (lookahead == '/') ADVANCE(235); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 228: + case 238: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(228); - if (lookahead == '/') ADVANCE(235); + if (lookahead == '*') ADVANCE(238); + if (lookahead == '/') ADVANCE(245); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(229); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 229: + case 239: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(228); + if (lookahead == '*') ADVANCE(238); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(229); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 230: + case 240: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '/') ADVANCE(227); - if (lookahead == '<') ADVANCE(226); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(230); + if (lookahead == '-') ADVANCE(241); + if (lookahead == '/') ADVANCE(237); + if (lookahead == '<') ADVANCE(236); + if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(240); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 231: + case 241: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(234); + if (lookahead == '-') ADVANCE(244); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 232: + case 242: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(225); + if (lookahead == '-') ADVANCE(235); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 233: + case 243: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(232); + if (lookahead == '-') ADVANCE(242); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 234: + case 244: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '>') ADVANCE(225); + if (lookahead == '>') ADVANCE(235); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 235: + case 245: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 236: + case 246: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 237: + case 247: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(60); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(269); + if (lookahead == '\\') ADVANCE(64); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(279); END_STATE(); - case 238: + case 248: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(236); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(246); END_STATE(); - case 239: + case 249: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(238); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(248); END_STATE(); - case 240: + case 250: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 241: + case 251: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(243); - if (lookahead == '[') ADVANCE(242); - if (lookahead == '\\') ADVANCE(244); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '[') ADVANCE(252); + if (lookahead == '\\') ADVANCE(254); if (lookahead != 0 && - lookahead != '\n') ADVANCE(241); + lookahead != '\n') ADVANCE(251); END_STATE(); - case 242: + case 252: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(245); - if (lookahead == ']') ADVANCE(241); + if (lookahead == '\\') ADVANCE(255); + if (lookahead == ']') ADVANCE(251); if (lookahead != 0 && - lookahead != '\n') ADVANCE(242); + lookahead != '\n') ADVANCE(252); END_STATE(); - case 243: + case 253: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(243); + lookahead != '\n') ADVANCE(253); END_STATE(); - case 244: + case 254: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(241); + lookahead != '\n') ADVANCE(251); END_STATE(); - case 245: + case 255: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(242); + lookahead != '\n') ADVANCE(252); END_STATE(); - case 246: + case 256: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 247: + case 257: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 248: + case 258: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(243); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(253); END_STATE(); - case 249: + case 259: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(31) - if (lookahead == '-') ADVANCE(251); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(250); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(249); - if (lookahead != 0) ADVANCE(255); + if (lookahead == '\n') SKIP(35) + if (lookahead == '-') ADVANCE(261); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(259); + if (lookahead != 0) ADVANCE(265); END_STATE(); - case 250: + case 260: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '!') ADVANCE(253); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '!') ADVANCE(263); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(265); END_STATE(); - case 251: + case 261: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '-') ADVANCE(254); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '-') ADVANCE(264); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(265); END_STATE(); - case 252: + case 262: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '-') ADVANCE(241); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(265); END_STATE(); - case 253: + case 263: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '-') ADVANCE(252); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(265); END_STATE(); - case 254: + case 264: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '>') ADVANCE(241); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '>') ADVANCE(251); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(265); END_STATE(); - case 255: + case 265: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(42); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(265); END_STATE(); - case 256: + case 266: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(60); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(269); + if (lookahead == '\\') ADVANCE(64); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(266); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(279); END_STATE(); - case 257: + case 267: ACCEPT_TOKEN(sym_number); END_STATE(); - case 258: + case 268: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(266); - if (lookahead == '0') ADVANCE(263); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '0') ADVANCE(273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(72); + lookahead == 'b') ADVANCE(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(71); + lookahead == 'e') ADVANCE(75); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(73); + lookahead == 'o') ADVANCE(77); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(81); - if (lookahead == '_') ADVANCE(76); - if (lookahead == 'n') ADVANCE(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + lookahead == 'x') ADVANCE(85); + if (lookahead == '_') ADVANCE(80); + if (lookahead == 'n') ADVANCE(267); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 259: + case 269: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(266); + if (lookahead == '.') ADVANCE(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(71); - if (lookahead == '_') ADVANCE(74); - if (lookahead == 'n') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + lookahead == 'e') ADVANCE(75); + if (lookahead == '_') ADVANCE(78); + if (lookahead == 'n') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 260: + case 270: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(72); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == '_') ADVANCE(76); + if (lookahead == 'n') ADVANCE(267); if (lookahead == '0' || - lookahead == '1') ADVANCE(260); + lookahead == '1') ADVANCE(270); END_STATE(); - case 261: + case 271: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(73); - if (lookahead == 'n') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(261); + if (lookahead == '_') ADVANCE(77); + if (lookahead == 'n') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(271); END_STATE(); - case 262: + case 272: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(81); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == '_') ADVANCE(85); + if (lookahead == 'n') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); END_STATE(); - case 263: + case 273: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(76); - if (lookahead == 'n') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + if (lookahead == '_') ADVANCE(80); + if (lookahead == 'n') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); - case 264: + case 274: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (lookahead == '_') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); - case 265: + case 275: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(71); - if (lookahead == '_') ADVANCE(75); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + lookahead == 'e') ADVANCE(75); + if (lookahead == '_') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 266: + case 276: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + lookahead == 'e') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 267: + case 277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(147); - if (lookahead == '\\') ADVANCE(60); + if (lookahead == '-') ADVANCE(145); + if (lookahead == '\\') ADVANCE(64); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(277); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(279); END_STATE(); - case 268: + case 278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '{') ADVANCE(247); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(269); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '{') ADVANCE(257); + if (!sym_identifier_character_set_4(lookahead)) ADVANCE(279); END_STATE(); - case 269: + case 279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(60); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(269); + if (lookahead == '\\') ADVANCE(64); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(279); END_STATE(); - case 270: + case 280: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(59); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(270); + if (lookahead == '\\') ADVANCE(63); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 271: + case 281: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 272: + case 282: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 273: + case 283: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '.') ADVANCE(152); END_STATE(); - case 274: + case 284: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '.') ADVANCE(152); - if (lookahead == '?') ADVANCE(208); + if (lookahead == '?') ADVANCE(218); END_STATE(); - case 275: + case 285: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '.') ADVANCE(152); - if (lookahead == '?') ADVANCE(207); + if (lookahead == '?') ADVANCE(217); END_STATE(); - case 276: + case 286: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 277: + case 287: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 278: + case 288: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 279: + case 289: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -11710,4399 +11827,4399 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 99}, - [2] = {.lex_state = 4, .external_lex_state = 2}, - [3] = {.lex_state = 4, .external_lex_state = 2}, - [4] = {.lex_state = 99}, - [5] = {.lex_state = 99}, - [6] = {.lex_state = 99}, - [7] = {.lex_state = 99}, - [8] = {.lex_state = 99}, - [9] = {.lex_state = 99}, - [10] = {.lex_state = 99}, - [11] = {.lex_state = 99}, - [12] = {.lex_state = 99}, - [13] = {.lex_state = 99}, - [14] = {.lex_state = 99}, - [15] = {.lex_state = 99}, - [16] = {.lex_state = 99}, - [17] = {.lex_state = 99}, - [18] = {.lex_state = 99}, - [19] = {.lex_state = 99}, - [20] = {.lex_state = 99}, - [21] = {.lex_state = 99}, - [22] = {.lex_state = 99}, - [23] = {.lex_state = 99}, - [24] = {.lex_state = 99}, - [25] = {.lex_state = 99}, - [26] = {.lex_state = 99}, - [27] = {.lex_state = 99}, - [28] = {.lex_state = 99}, - [29] = {.lex_state = 99}, - [30] = {.lex_state = 99}, - [31] = {.lex_state = 99}, - [32] = {.lex_state = 99}, - [33] = {.lex_state = 99}, - [34] = {.lex_state = 99}, - [35] = {.lex_state = 99}, - [36] = {.lex_state = 99}, - [37] = {.lex_state = 99}, - [38] = {.lex_state = 99}, - [39] = {.lex_state = 99}, - [40] = {.lex_state = 99}, - [41] = {.lex_state = 99}, - [42] = {.lex_state = 99}, - [43] = {.lex_state = 99}, - [44] = {.lex_state = 99}, - [45] = {.lex_state = 99}, - [46] = {.lex_state = 99}, - [47] = {.lex_state = 99}, - [48] = {.lex_state = 99}, - [49] = {.lex_state = 99}, - [50] = {.lex_state = 5, .external_lex_state = 2}, - [51] = {.lex_state = 15}, - [52] = {.lex_state = 15}, - [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.lex_state = 15}, - [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 5, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 15}, - [61] = {.lex_state = 15}, - [62] = {.lex_state = 15}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 15}, - [65] = {.lex_state = 15}, - [66] = {.lex_state = 15}, - [67] = {.lex_state = 15}, - [68] = {.lex_state = 15}, - [69] = {.lex_state = 15}, - [70] = {.lex_state = 15}, - [71] = {.lex_state = 15}, - [72] = {.lex_state = 15}, - [73] = {.lex_state = 15}, - [74] = {.lex_state = 15}, - [75] = {.lex_state = 15}, - [76] = {.lex_state = 15}, - [77] = {.lex_state = 15}, - [78] = {.lex_state = 15}, - [79] = {.lex_state = 15}, - [80] = {.lex_state = 15}, - [81] = {.lex_state = 15}, - [82] = {.lex_state = 15}, - [83] = {.lex_state = 15}, - [84] = {.lex_state = 15}, - [85] = {.lex_state = 15}, - [86] = {.lex_state = 15}, - [87] = {.lex_state = 15}, - [88] = {.lex_state = 15}, - [89] = {.lex_state = 98, .external_lex_state = 2}, - [90] = {.lex_state = 98, .external_lex_state = 3}, - [91] = {.lex_state = 98, .external_lex_state = 3}, - [92] = {.lex_state = 98, .external_lex_state = 2}, - [93] = {.lex_state = 98, .external_lex_state = 2}, - [94] = {.lex_state = 98, .external_lex_state = 3}, - [95] = {.lex_state = 98, .external_lex_state = 2}, - [96] = {.lex_state = 98, .external_lex_state = 2}, - [97] = {.lex_state = 99}, - [98] = {.lex_state = 99}, - [99] = {.lex_state = 99}, - [100] = {.lex_state = 99}, - [101] = {.lex_state = 99}, - [102] = {.lex_state = 99}, - [103] = {.lex_state = 3, .external_lex_state = 2}, - [104] = {.lex_state = 3, .external_lex_state = 3}, - [105] = {.lex_state = 3, .external_lex_state = 3}, - [106] = {.lex_state = 3, .external_lex_state = 2}, - [107] = {.lex_state = 3, .external_lex_state = 2}, - [108] = {.lex_state = 3, .external_lex_state = 2}, - [109] = {.lex_state = 3, .external_lex_state = 2}, - [110] = {.lex_state = 3, .external_lex_state = 3}, - [111] = {.lex_state = 3, .external_lex_state = 2}, - [112] = {.lex_state = 3, .external_lex_state = 2}, - [113] = {.lex_state = 3, .external_lex_state = 2}, - [114] = {.lex_state = 3, .external_lex_state = 2}, - [115] = {.lex_state = 3, .external_lex_state = 2}, - [116] = {.lex_state = 99}, - [117] = {.lex_state = 99}, - [118] = {.lex_state = 99}, - [119] = {.lex_state = 99}, - [120] = {.lex_state = 99}, - [121] = {.lex_state = 99}, - [122] = {.lex_state = 99}, - [123] = {.lex_state = 99}, - [124] = {.lex_state = 99}, - [125] = {.lex_state = 99}, - [126] = {.lex_state = 99}, - [127] = {.lex_state = 99}, - [128] = {.lex_state = 99}, - [129] = {.lex_state = 99}, - [130] = {.lex_state = 99}, - [131] = {.lex_state = 99}, - [132] = {.lex_state = 99}, - [133] = {.lex_state = 99}, - [134] = {.lex_state = 99}, - [135] = {.lex_state = 99}, - [136] = {.lex_state = 99}, - [137] = {.lex_state = 99}, - [138] = {.lex_state = 99}, - [139] = {.lex_state = 98, .external_lex_state = 3}, - [140] = {.lex_state = 98, .external_lex_state = 3}, - [141] = {.lex_state = 98, .external_lex_state = 3}, - [142] = {.lex_state = 99, .external_lex_state = 4}, - [143] = {.lex_state = 99}, - [144] = {.lex_state = 98, .external_lex_state = 3}, - [145] = {.lex_state = 98, .external_lex_state = 3}, - [146] = {.lex_state = 98, .external_lex_state = 3}, - [147] = {.lex_state = 98, .external_lex_state = 3}, - [148] = {.lex_state = 98, .external_lex_state = 3}, - [149] = {.lex_state = 98, .external_lex_state = 3}, - [150] = {.lex_state = 99}, - [151] = {.lex_state = 99}, - [152] = {.lex_state = 98, .external_lex_state = 3}, - [153] = {.lex_state = 98, .external_lex_state = 3}, - [154] = {.lex_state = 98, .external_lex_state = 3}, - [155] = {.lex_state = 98, .external_lex_state = 3}, - [156] = {.lex_state = 98, .external_lex_state = 3}, - [157] = {.lex_state = 98, .external_lex_state = 3}, - [158] = {.lex_state = 98, .external_lex_state = 3}, - [159] = {.lex_state = 99}, - [160] = {.lex_state = 98, .external_lex_state = 3}, - [161] = {.lex_state = 98, .external_lex_state = 3}, - [162] = {.lex_state = 99}, - [163] = {.lex_state = 98, .external_lex_state = 3}, - [164] = {.lex_state = 99}, - [165] = {.lex_state = 99}, - [166] = {.lex_state = 99}, - [167] = {.lex_state = 98, .external_lex_state = 3}, - [168] = {.lex_state = 98, .external_lex_state = 3}, - [169] = {.lex_state = 98, .external_lex_state = 3}, - [170] = {.lex_state = 98, .external_lex_state = 3}, - [171] = {.lex_state = 98, .external_lex_state = 3}, - [172] = {.lex_state = 98, .external_lex_state = 3}, - [173] = {.lex_state = 98, .external_lex_state = 3}, - [174] = {.lex_state = 98, .external_lex_state = 3}, - [175] = {.lex_state = 99}, - [176] = {.lex_state = 99}, - [177] = {.lex_state = 99}, - [178] = {.lex_state = 99}, - [179] = {.lex_state = 99}, - [180] = {.lex_state = 99}, - [181] = {.lex_state = 99}, - [182] = {.lex_state = 99}, - [183] = {.lex_state = 99}, - [184] = {.lex_state = 99}, - [185] = {.lex_state = 99}, - [186] = {.lex_state = 99}, - [187] = {.lex_state = 99}, - [188] = {.lex_state = 99}, - [189] = {.lex_state = 99}, - [190] = {.lex_state = 99}, - [191] = {.lex_state = 99}, - [192] = {.lex_state = 99}, - [193] = {.lex_state = 99}, - [194] = {.lex_state = 99}, - [195] = {.lex_state = 99}, - [196] = {.lex_state = 99}, - [197] = {.lex_state = 99}, - [198] = {.lex_state = 99}, - [199] = {.lex_state = 99}, - [200] = {.lex_state = 5, .external_lex_state = 2}, - [201] = {.lex_state = 99}, - [202] = {.lex_state = 99}, - [203] = {.lex_state = 99}, - [204] = {.lex_state = 5, .external_lex_state = 2}, - [205] = {.lex_state = 99}, - [206] = {.lex_state = 99}, - [207] = {.lex_state = 99}, - [208] = {.lex_state = 99}, - [209] = {.lex_state = 99}, - [210] = {.lex_state = 99}, - [211] = {.lex_state = 99}, - [212] = {.lex_state = 5, .external_lex_state = 2}, - [213] = {.lex_state = 5, .external_lex_state = 2}, - [214] = {.lex_state = 99}, - [215] = {.lex_state = 99}, - [216] = {.lex_state = 99}, - [217] = {.lex_state = 99, .external_lex_state = 4}, - [218] = {.lex_state = 99}, - [219] = {.lex_state = 99}, - [220] = {.lex_state = 99}, - [221] = {.lex_state = 99}, - [222] = {.lex_state = 99}, - [223] = {.lex_state = 99}, - [224] = {.lex_state = 99}, - [225] = {.lex_state = 99}, - [226] = {.lex_state = 99}, - [227] = {.lex_state = 99}, - [228] = {.lex_state = 99}, - [229] = {.lex_state = 99}, - [230] = {.lex_state = 99}, - [231] = {.lex_state = 99}, - [232] = {.lex_state = 99}, - [233] = {.lex_state = 99}, - [234] = {.lex_state = 99}, - [235] = {.lex_state = 99}, - [236] = {.lex_state = 99}, - [237] = {.lex_state = 99}, - [238] = {.lex_state = 99}, - [239] = {.lex_state = 99}, - [240] = {.lex_state = 99}, - [241] = {.lex_state = 99}, - [242] = {.lex_state = 99}, - [243] = {.lex_state = 99}, - [244] = {.lex_state = 99}, - [245] = {.lex_state = 99}, - [246] = {.lex_state = 99}, - [247] = {.lex_state = 99}, - [248] = {.lex_state = 99}, - [249] = {.lex_state = 99}, - [250] = {.lex_state = 99}, - [251] = {.lex_state = 99}, - [252] = {.lex_state = 99}, - [253] = {.lex_state = 99}, - [254] = {.lex_state = 99}, - [255] = {.lex_state = 99}, - [256] = {.lex_state = 99}, - [257] = {.lex_state = 99}, - [258] = {.lex_state = 99}, - [259] = {.lex_state = 99}, - [260] = {.lex_state = 99}, - [261] = {.lex_state = 99}, - [262] = {.lex_state = 99}, - [263] = {.lex_state = 99}, - [264] = {.lex_state = 99}, - [265] = {.lex_state = 99}, - [266] = {.lex_state = 99}, - [267] = {.lex_state = 99}, - [268] = {.lex_state = 99}, - [269] = {.lex_state = 99}, - [270] = {.lex_state = 99}, - [271] = {.lex_state = 99}, - [272] = {.lex_state = 99}, - [273] = {.lex_state = 99}, - [274] = {.lex_state = 99}, - [275] = {.lex_state = 99}, - [276] = {.lex_state = 99}, - [277] = {.lex_state = 99}, - [278] = {.lex_state = 99}, - [279] = {.lex_state = 99}, - [280] = {.lex_state = 99}, - [281] = {.lex_state = 99}, - [282] = {.lex_state = 99}, - [283] = {.lex_state = 99}, - [284] = {.lex_state = 99}, - [285] = {.lex_state = 99}, - [286] = {.lex_state = 99}, - [287] = {.lex_state = 99}, - [288] = {.lex_state = 99}, - [289] = {.lex_state = 99}, - [290] = {.lex_state = 99}, - [291] = {.lex_state = 99}, - [292] = {.lex_state = 99}, - [293] = {.lex_state = 99}, - [294] = {.lex_state = 99}, - [295] = {.lex_state = 99}, - [296] = {.lex_state = 99}, - [297] = {.lex_state = 99}, - [298] = {.lex_state = 99}, - [299] = {.lex_state = 99}, - [300] = {.lex_state = 99}, - [301] = {.lex_state = 99}, - [302] = {.lex_state = 99}, - [303] = {.lex_state = 99}, - [304] = {.lex_state = 99}, - [305] = {.lex_state = 99}, - [306] = {.lex_state = 99}, - [307] = {.lex_state = 99}, - [308] = {.lex_state = 99}, - [309] = {.lex_state = 99}, - [310] = {.lex_state = 99}, - [311] = {.lex_state = 99}, - [312] = {.lex_state = 99}, - [313] = {.lex_state = 99}, - [314] = {.lex_state = 99}, - [315] = {.lex_state = 99}, - [316] = {.lex_state = 99}, - [317] = {.lex_state = 99}, - [318] = {.lex_state = 99}, - [319] = {.lex_state = 99}, - [320] = {.lex_state = 99}, - [321] = {.lex_state = 99}, - [322] = {.lex_state = 99}, - [323] = {.lex_state = 99}, - [324] = {.lex_state = 99}, - [325] = {.lex_state = 99}, - [326] = {.lex_state = 99}, - [327] = {.lex_state = 99}, - [328] = {.lex_state = 99}, - [329] = {.lex_state = 99}, - [330] = {.lex_state = 99}, - [331] = {.lex_state = 99}, - [332] = {.lex_state = 99}, - [333] = {.lex_state = 99}, - [334] = {.lex_state = 99}, - [335] = {.lex_state = 99}, - [336] = {.lex_state = 99}, - [337] = {.lex_state = 6, .external_lex_state = 3}, - [338] = {.lex_state = 99}, - [339] = {.lex_state = 99}, - [340] = {.lex_state = 99}, - [341] = {.lex_state = 99}, - [342] = {.lex_state = 99}, - [343] = {.lex_state = 99}, - [344] = {.lex_state = 99}, - [345] = {.lex_state = 99}, - [346] = {.lex_state = 99}, - [347] = {.lex_state = 99}, - [348] = {.lex_state = 99}, - [349] = {.lex_state = 99}, - [350] = {.lex_state = 99}, - [351] = {.lex_state = 99}, - [352] = {.lex_state = 99}, - [353] = {.lex_state = 99}, - [354] = {.lex_state = 99}, - [355] = {.lex_state = 99}, - [356] = {.lex_state = 99}, - [357] = {.lex_state = 6, .external_lex_state = 3}, - [358] = {.lex_state = 99}, - [359] = {.lex_state = 99}, - [360] = {.lex_state = 99}, - [361] = {.lex_state = 99}, - [362] = {.lex_state = 99}, - [363] = {.lex_state = 6, .external_lex_state = 3}, - [364] = {.lex_state = 99}, - [365] = {.lex_state = 99}, - [366] = {.lex_state = 99}, - [367] = {.lex_state = 99}, - [368] = {.lex_state = 99}, - [369] = {.lex_state = 99}, - [370] = {.lex_state = 99}, - [371] = {.lex_state = 99}, - [372] = {.lex_state = 99}, - [373] = {.lex_state = 99}, - [374] = {.lex_state = 99}, - [375] = {.lex_state = 99}, - [376] = {.lex_state = 99}, - [377] = {.lex_state = 99}, - [378] = {.lex_state = 99}, - [379] = {.lex_state = 99}, - [380] = {.lex_state = 99}, - [381] = {.lex_state = 99}, - [382] = {.lex_state = 99}, - [383] = {.lex_state = 99}, - [384] = {.lex_state = 99}, - [385] = {.lex_state = 99}, - [386] = {.lex_state = 99}, - [387] = {.lex_state = 99}, - [388] = {.lex_state = 99}, - [389] = {.lex_state = 99}, - [390] = {.lex_state = 99}, - [391] = {.lex_state = 99}, - [392] = {.lex_state = 99}, - [393] = {.lex_state = 99}, - [394] = {.lex_state = 99}, - [395] = {.lex_state = 99}, - [396] = {.lex_state = 99}, - [397] = {.lex_state = 99}, - [398] = {.lex_state = 99}, - [399] = {.lex_state = 99}, - [400] = {.lex_state = 99}, - [401] = {.lex_state = 99}, - [402] = {.lex_state = 99}, - [403] = {.lex_state = 99}, - [404] = {.lex_state = 99}, - [405] = {.lex_state = 99}, - [406] = {.lex_state = 99}, - [407] = {.lex_state = 99}, - [408] = {.lex_state = 99}, - [409] = {.lex_state = 99}, - [410] = {.lex_state = 99}, - [411] = {.lex_state = 99}, - [412] = {.lex_state = 99}, - [413] = {.lex_state = 99}, - [414] = {.lex_state = 99}, - [415] = {.lex_state = 99}, - [416] = {.lex_state = 99}, - [417] = {.lex_state = 99}, - [418] = {.lex_state = 99}, - [419] = {.lex_state = 99}, - [420] = {.lex_state = 99}, - [421] = {.lex_state = 99}, - [422] = {.lex_state = 99}, - [423] = {.lex_state = 99}, - [424] = {.lex_state = 99}, - [425] = {.lex_state = 99}, - [426] = {.lex_state = 99}, - [427] = {.lex_state = 99}, - [428] = {.lex_state = 99}, - [429] = {.lex_state = 99}, - [430] = {.lex_state = 99}, - [431] = {.lex_state = 99}, - [432] = {.lex_state = 99}, - [433] = {.lex_state = 99}, - [434] = {.lex_state = 99}, - [435] = {.lex_state = 99}, - [436] = {.lex_state = 99}, - [437] = {.lex_state = 99}, - [438] = {.lex_state = 99}, - [439] = {.lex_state = 99}, - [440] = {.lex_state = 99}, - [441] = {.lex_state = 99}, - [442] = {.lex_state = 99}, - [443] = {.lex_state = 99}, - [444] = {.lex_state = 99}, - [445] = {.lex_state = 99}, - [446] = {.lex_state = 99}, - [447] = {.lex_state = 99}, - [448] = {.lex_state = 99}, - [449] = {.lex_state = 99}, - [450] = {.lex_state = 99}, - [451] = {.lex_state = 99}, - [452] = {.lex_state = 99}, - [453] = {.lex_state = 99}, - [454] = {.lex_state = 99}, - [455] = {.lex_state = 99}, - [456] = {.lex_state = 99}, - [457] = {.lex_state = 99}, - [458] = {.lex_state = 99}, - [459] = {.lex_state = 99}, - [460] = {.lex_state = 99}, - [461] = {.lex_state = 99}, - [462] = {.lex_state = 99}, - [463] = {.lex_state = 99}, - [464] = {.lex_state = 99}, - [465] = {.lex_state = 99}, - [466] = {.lex_state = 99}, - [467] = {.lex_state = 99}, - [468] = {.lex_state = 99}, - [469] = {.lex_state = 99}, - [470] = {.lex_state = 99}, - [471] = {.lex_state = 99}, - [472] = {.lex_state = 99}, - [473] = {.lex_state = 99}, - [474] = {.lex_state = 99}, - [475] = {.lex_state = 99}, - [476] = {.lex_state = 99}, - [477] = {.lex_state = 99}, - [478] = {.lex_state = 99}, - [479] = {.lex_state = 99}, - [480] = {.lex_state = 99}, - [481] = {.lex_state = 99}, - [482] = {.lex_state = 99}, - [483] = {.lex_state = 99}, - [484] = {.lex_state = 99}, - [485] = {.lex_state = 99}, - [486] = {.lex_state = 99}, - [487] = {.lex_state = 99}, - [488] = {.lex_state = 99}, - [489] = {.lex_state = 99}, - [490] = {.lex_state = 99}, - [491] = {.lex_state = 99}, - [492] = {.lex_state = 99}, - [493] = {.lex_state = 99}, - [494] = {.lex_state = 99}, - [495] = {.lex_state = 99}, - [496] = {.lex_state = 99}, - [497] = {.lex_state = 99}, - [498] = {.lex_state = 99}, - [499] = {.lex_state = 99}, - [500] = {.lex_state = 99}, - [501] = {.lex_state = 99}, - [502] = {.lex_state = 99}, - [503] = {.lex_state = 99}, - [504] = {.lex_state = 99}, - [505] = {.lex_state = 99}, - [506] = {.lex_state = 99}, - [507] = {.lex_state = 99}, - [508] = {.lex_state = 99}, - [509] = {.lex_state = 99}, - [510] = {.lex_state = 99}, - [511] = {.lex_state = 99}, - [512] = {.lex_state = 99}, - [513] = {.lex_state = 99}, - [514] = {.lex_state = 99}, - [515] = {.lex_state = 99}, - [516] = {.lex_state = 99}, - [517] = {.lex_state = 3, .external_lex_state = 3}, - [518] = {.lex_state = 3, .external_lex_state = 3}, - [519] = {.lex_state = 3, .external_lex_state = 3}, + [1] = {.lex_state = 103}, + [2] = {.lex_state = 7, .external_lex_state = 2}, + [3] = {.lex_state = 7, .external_lex_state = 2}, + [4] = {.lex_state = 103}, + [5] = {.lex_state = 103}, + [6] = {.lex_state = 103}, + [7] = {.lex_state = 103}, + [8] = {.lex_state = 103}, + [9] = {.lex_state = 103}, + [10] = {.lex_state = 103}, + [11] = {.lex_state = 103}, + [12] = {.lex_state = 103}, + [13] = {.lex_state = 103}, + [14] = {.lex_state = 103}, + [15] = {.lex_state = 103}, + [16] = {.lex_state = 103}, + [17] = {.lex_state = 103}, + [18] = {.lex_state = 103}, + [19] = {.lex_state = 103}, + [20] = {.lex_state = 103}, + [21] = {.lex_state = 103}, + [22] = {.lex_state = 103}, + [23] = {.lex_state = 103}, + [24] = {.lex_state = 103}, + [25] = {.lex_state = 103}, + [26] = {.lex_state = 103}, + [27] = {.lex_state = 103}, + [28] = {.lex_state = 103}, + [29] = {.lex_state = 103}, + [30] = {.lex_state = 103}, + [31] = {.lex_state = 103}, + [32] = {.lex_state = 103}, + [33] = {.lex_state = 103}, + [34] = {.lex_state = 103}, + [35] = {.lex_state = 103}, + [36] = {.lex_state = 103}, + [37] = {.lex_state = 103}, + [38] = {.lex_state = 103}, + [39] = {.lex_state = 103}, + [40] = {.lex_state = 103}, + [41] = {.lex_state = 103}, + [42] = {.lex_state = 103}, + [43] = {.lex_state = 103}, + [44] = {.lex_state = 103}, + [45] = {.lex_state = 103}, + [46] = {.lex_state = 103}, + [47] = {.lex_state = 103}, + [48] = {.lex_state = 103}, + [49] = {.lex_state = 103}, + [50] = {.lex_state = 18}, + [51] = {.lex_state = 8, .external_lex_state = 2}, + [52] = {.lex_state = 8, .external_lex_state = 2}, + [53] = {.lex_state = 18}, + [54] = {.lex_state = 8, .external_lex_state = 2}, + [55] = {.lex_state = 18}, + [56] = {.lex_state = 18}, + [57] = {.lex_state = 18}, + [58] = {.lex_state = 8, .external_lex_state = 2}, + [59] = {.lex_state = 18}, + [60] = {.lex_state = 8, .external_lex_state = 2}, + [61] = {.lex_state = 8, .external_lex_state = 2}, + [62] = {.lex_state = 18}, + [63] = {.lex_state = 18}, + [64] = {.lex_state = 18}, + [65] = {.lex_state = 8, .external_lex_state = 2}, + [66] = {.lex_state = 8, .external_lex_state = 2}, + [67] = {.lex_state = 18}, + [68] = {.lex_state = 18}, + [69] = {.lex_state = 18}, + [70] = {.lex_state = 18}, + [71] = {.lex_state = 18}, + [72] = {.lex_state = 18}, + [73] = {.lex_state = 18}, + [74] = {.lex_state = 18}, + [75] = {.lex_state = 18}, + [76] = {.lex_state = 18}, + [77] = {.lex_state = 18}, + [78] = {.lex_state = 18}, + [79] = {.lex_state = 18}, + [80] = {.lex_state = 18}, + [81] = {.lex_state = 18}, + [82] = {.lex_state = 18}, + [83] = {.lex_state = 18}, + [84] = {.lex_state = 18}, + [85] = {.lex_state = 18}, + [86] = {.lex_state = 18}, + [87] = {.lex_state = 18}, + [88] = {.lex_state = 18}, + [89] = {.lex_state = 102, .external_lex_state = 2}, + [90] = {.lex_state = 102, .external_lex_state = 3}, + [91] = {.lex_state = 102, .external_lex_state = 3}, + [92] = {.lex_state = 102, .external_lex_state = 2}, + [93] = {.lex_state = 102, .external_lex_state = 2}, + [94] = {.lex_state = 102, .external_lex_state = 3}, + [95] = {.lex_state = 102, .external_lex_state = 2}, + [96] = {.lex_state = 102, .external_lex_state = 2}, + [97] = {.lex_state = 103}, + [98] = {.lex_state = 103}, + [99] = {.lex_state = 103}, + [100] = {.lex_state = 103}, + [101] = {.lex_state = 103}, + [102] = {.lex_state = 103}, + [103] = {.lex_state = 6, .external_lex_state = 2}, + [104] = {.lex_state = 6, .external_lex_state = 3}, + [105] = {.lex_state = 6, .external_lex_state = 3}, + [106] = {.lex_state = 6, .external_lex_state = 2}, + [107] = {.lex_state = 6, .external_lex_state = 2}, + [108] = {.lex_state = 6, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 3}, + [110] = {.lex_state = 6, .external_lex_state = 2}, + [111] = {.lex_state = 6, .external_lex_state = 2}, + [112] = {.lex_state = 6, .external_lex_state = 2}, + [113] = {.lex_state = 6, .external_lex_state = 2}, + [114] = {.lex_state = 6, .external_lex_state = 2}, + [115] = {.lex_state = 6, .external_lex_state = 2}, + [116] = {.lex_state = 103}, + [117] = {.lex_state = 103}, + [118] = {.lex_state = 103}, + [119] = {.lex_state = 103}, + [120] = {.lex_state = 103}, + [121] = {.lex_state = 103}, + [122] = {.lex_state = 103}, + [123] = {.lex_state = 103}, + [124] = {.lex_state = 103}, + [125] = {.lex_state = 103}, + [126] = {.lex_state = 103}, + [127] = {.lex_state = 102, .external_lex_state = 3}, + [128] = {.lex_state = 103}, + [129] = {.lex_state = 103}, + [130] = {.lex_state = 103}, + [131] = {.lex_state = 103}, + [132] = {.lex_state = 103}, + [133] = {.lex_state = 103}, + [134] = {.lex_state = 103}, + [135] = {.lex_state = 103}, + [136] = {.lex_state = 103}, + [137] = {.lex_state = 102, .external_lex_state = 3}, + [138] = {.lex_state = 103}, + [139] = {.lex_state = 103}, + [140] = {.lex_state = 102, .external_lex_state = 3}, + [141] = {.lex_state = 102, .external_lex_state = 3}, + [142] = {.lex_state = 103}, + [143] = {.lex_state = 103}, + [144] = {.lex_state = 102, .external_lex_state = 3}, + [145] = {.lex_state = 102, .external_lex_state = 3}, + [146] = {.lex_state = 102, .external_lex_state = 3}, + [147] = {.lex_state = 102, .external_lex_state = 3}, + [148] = {.lex_state = 102, .external_lex_state = 3}, + [149] = {.lex_state = 102, .external_lex_state = 3}, + [150] = {.lex_state = 102, .external_lex_state = 3}, + [151] = {.lex_state = 102, .external_lex_state = 3}, + [152] = {.lex_state = 102, .external_lex_state = 3}, + [153] = {.lex_state = 102, .external_lex_state = 3}, + [154] = {.lex_state = 102, .external_lex_state = 3}, + [155] = {.lex_state = 102, .external_lex_state = 3}, + [156] = {.lex_state = 102, .external_lex_state = 3}, + [157] = {.lex_state = 102, .external_lex_state = 3}, + [158] = {.lex_state = 103, .external_lex_state = 4}, + [159] = {.lex_state = 102, .external_lex_state = 3}, + [160] = {.lex_state = 102, .external_lex_state = 3}, + [161] = {.lex_state = 102, .external_lex_state = 3}, + [162] = {.lex_state = 102, .external_lex_state = 3}, + [163] = {.lex_state = 102, .external_lex_state = 3}, + [164] = {.lex_state = 102, .external_lex_state = 3}, + [165] = {.lex_state = 102, .external_lex_state = 3}, + [166] = {.lex_state = 102, .external_lex_state = 3}, + [167] = {.lex_state = 102, .external_lex_state = 3}, + [168] = {.lex_state = 102, .external_lex_state = 3}, + [169] = {.lex_state = 102, .external_lex_state = 3}, + [170] = {.lex_state = 103}, + [171] = {.lex_state = 103}, + [172] = {.lex_state = 103}, + [173] = {.lex_state = 103}, + [174] = {.lex_state = 103}, + [175] = {.lex_state = 103}, + [176] = {.lex_state = 103}, + [177] = {.lex_state = 103}, + [178] = {.lex_state = 103}, + [179] = {.lex_state = 103}, + [180] = {.lex_state = 103}, + [181] = {.lex_state = 103}, + [182] = {.lex_state = 103}, + [183] = {.lex_state = 103}, + [184] = {.lex_state = 103}, + [185] = {.lex_state = 103}, + [186] = {.lex_state = 103}, + [187] = {.lex_state = 103}, + [188] = {.lex_state = 103}, + [189] = {.lex_state = 103}, + [190] = {.lex_state = 103}, + [191] = {.lex_state = 103}, + [192] = {.lex_state = 103}, + [193] = {.lex_state = 103}, + [194] = {.lex_state = 103}, + [195] = {.lex_state = 103}, + [196] = {.lex_state = 103}, + [197] = {.lex_state = 103}, + [198] = {.lex_state = 8, .external_lex_state = 2}, + [199] = {.lex_state = 103}, + [200] = {.lex_state = 8, .external_lex_state = 2}, + [201] = {.lex_state = 8, .external_lex_state = 2}, + [202] = {.lex_state = 8, .external_lex_state = 2}, + [203] = {.lex_state = 103}, + [204] = {.lex_state = 103}, + [205] = {.lex_state = 103}, + [206] = {.lex_state = 103}, + [207] = {.lex_state = 103}, + [208] = {.lex_state = 103}, + [209] = {.lex_state = 103}, + [210] = {.lex_state = 103}, + [211] = {.lex_state = 103}, + [212] = {.lex_state = 103}, + [213] = {.lex_state = 103}, + [214] = {.lex_state = 103}, + [215] = {.lex_state = 103, .external_lex_state = 4}, + [216] = {.lex_state = 103}, + [217] = {.lex_state = 103}, + [218] = {.lex_state = 103}, + [219] = {.lex_state = 103}, + [220] = {.lex_state = 103}, + [221] = {.lex_state = 103}, + [222] = {.lex_state = 103}, + [223] = {.lex_state = 103}, + [224] = {.lex_state = 103}, + [225] = {.lex_state = 103}, + [226] = {.lex_state = 103}, + [227] = {.lex_state = 103}, + [228] = {.lex_state = 103}, + [229] = {.lex_state = 103}, + [230] = {.lex_state = 103}, + [231] = {.lex_state = 103}, + [232] = {.lex_state = 103}, + [233] = {.lex_state = 103}, + [234] = {.lex_state = 103}, + [235] = {.lex_state = 103}, + [236] = {.lex_state = 103}, + [237] = {.lex_state = 103}, + [238] = {.lex_state = 103}, + [239] = {.lex_state = 103}, + [240] = {.lex_state = 103}, + [241] = {.lex_state = 103}, + [242] = {.lex_state = 103}, + [243] = {.lex_state = 103}, + [244] = {.lex_state = 9, .external_lex_state = 3}, + [245] = {.lex_state = 103}, + [246] = {.lex_state = 103}, + [247] = {.lex_state = 103}, + [248] = {.lex_state = 103}, + [249] = {.lex_state = 103}, + [250] = {.lex_state = 103}, + [251] = {.lex_state = 103}, + [252] = {.lex_state = 103}, + [253] = {.lex_state = 103}, + [254] = {.lex_state = 103}, + [255] = {.lex_state = 103}, + [256] = {.lex_state = 103}, + [257] = {.lex_state = 103}, + [258] = {.lex_state = 9, .external_lex_state = 3}, + [259] = {.lex_state = 103}, + [260] = {.lex_state = 103}, + [261] = {.lex_state = 103}, + [262] = {.lex_state = 103}, + [263] = {.lex_state = 103}, + [264] = {.lex_state = 103}, + [265] = {.lex_state = 103}, + [266] = {.lex_state = 103}, + [267] = {.lex_state = 103}, + [268] = {.lex_state = 103}, + [269] = {.lex_state = 103}, + [270] = {.lex_state = 103}, + [271] = {.lex_state = 103}, + [272] = {.lex_state = 103}, + [273] = {.lex_state = 103}, + [274] = {.lex_state = 103}, + [275] = {.lex_state = 103}, + [276] = {.lex_state = 103}, + [277] = {.lex_state = 103}, + [278] = {.lex_state = 103}, + [279] = {.lex_state = 103}, + [280] = {.lex_state = 103}, + [281] = {.lex_state = 103}, + [282] = {.lex_state = 103}, + [283] = {.lex_state = 103}, + [284] = {.lex_state = 103}, + [285] = {.lex_state = 103}, + [286] = {.lex_state = 103}, + [287] = {.lex_state = 103}, + [288] = {.lex_state = 103}, + [289] = {.lex_state = 103}, + [290] = {.lex_state = 103}, + [291] = {.lex_state = 103}, + [292] = {.lex_state = 9, .external_lex_state = 3}, + [293] = {.lex_state = 103}, + [294] = {.lex_state = 103}, + [295] = {.lex_state = 103}, + [296] = {.lex_state = 103}, + [297] = {.lex_state = 103}, + [298] = {.lex_state = 103}, + [299] = {.lex_state = 103}, + [300] = {.lex_state = 103}, + [301] = {.lex_state = 103}, + [302] = {.lex_state = 103}, + [303] = {.lex_state = 103}, + [304] = {.lex_state = 103}, + [305] = {.lex_state = 103}, + [306] = {.lex_state = 103}, + [307] = {.lex_state = 103}, + [308] = {.lex_state = 103}, + [309] = {.lex_state = 103}, + [310] = {.lex_state = 103}, + [311] = {.lex_state = 103}, + [312] = {.lex_state = 103}, + [313] = {.lex_state = 103}, + [314] = {.lex_state = 103}, + [315] = {.lex_state = 103}, + [316] = {.lex_state = 103}, + [317] = {.lex_state = 103}, + [318] = {.lex_state = 103}, + [319] = {.lex_state = 103}, + [320] = {.lex_state = 103}, + [321] = {.lex_state = 103}, + [322] = {.lex_state = 103}, + [323] = {.lex_state = 103}, + [324] = {.lex_state = 103}, + [325] = {.lex_state = 103}, + [326] = {.lex_state = 103}, + [327] = {.lex_state = 103}, + [328] = {.lex_state = 103}, + [329] = {.lex_state = 103}, + [330] = {.lex_state = 103}, + [331] = {.lex_state = 103}, + [332] = {.lex_state = 103}, + [333] = {.lex_state = 103}, + [334] = {.lex_state = 103}, + [335] = {.lex_state = 103}, + [336] = {.lex_state = 103}, + [337] = {.lex_state = 103}, + [338] = {.lex_state = 103}, + [339] = {.lex_state = 103}, + [340] = {.lex_state = 103}, + [341] = {.lex_state = 103}, + [342] = {.lex_state = 103}, + [343] = {.lex_state = 103}, + [344] = {.lex_state = 103}, + [345] = {.lex_state = 103}, + [346] = {.lex_state = 103}, + [347] = {.lex_state = 103}, + [348] = {.lex_state = 103}, + [349] = {.lex_state = 103}, + [350] = {.lex_state = 103}, + [351] = {.lex_state = 103}, + [352] = {.lex_state = 103}, + [353] = {.lex_state = 103}, + [354] = {.lex_state = 103}, + [355] = {.lex_state = 103}, + [356] = {.lex_state = 103}, + [357] = {.lex_state = 103}, + [358] = {.lex_state = 103}, + [359] = {.lex_state = 103}, + [360] = {.lex_state = 103}, + [361] = {.lex_state = 103}, + [362] = {.lex_state = 103}, + [363] = {.lex_state = 103}, + [364] = {.lex_state = 103}, + [365] = {.lex_state = 103}, + [366] = {.lex_state = 103}, + [367] = {.lex_state = 103}, + [368] = {.lex_state = 103}, + [369] = {.lex_state = 103}, + [370] = {.lex_state = 103}, + [371] = {.lex_state = 103}, + [372] = {.lex_state = 103}, + [373] = {.lex_state = 103}, + [374] = {.lex_state = 103}, + [375] = {.lex_state = 103}, + [376] = {.lex_state = 103}, + [377] = {.lex_state = 103}, + [378] = {.lex_state = 103}, + [379] = {.lex_state = 103}, + [380] = {.lex_state = 103}, + [381] = {.lex_state = 103}, + [382] = {.lex_state = 103}, + [383] = {.lex_state = 103}, + [384] = {.lex_state = 103}, + [385] = {.lex_state = 103}, + [386] = {.lex_state = 103}, + [387] = {.lex_state = 103}, + [388] = {.lex_state = 103}, + [389] = {.lex_state = 103}, + [390] = {.lex_state = 103}, + [391] = {.lex_state = 103}, + [392] = {.lex_state = 103}, + [393] = {.lex_state = 103}, + [394] = {.lex_state = 103}, + [395] = {.lex_state = 103}, + [396] = {.lex_state = 103}, + [397] = {.lex_state = 103}, + [398] = {.lex_state = 103}, + [399] = {.lex_state = 103}, + [400] = {.lex_state = 103}, + [401] = {.lex_state = 103}, + [402] = {.lex_state = 103}, + [403] = {.lex_state = 103}, + [404] = {.lex_state = 103}, + [405] = {.lex_state = 103}, + [406] = {.lex_state = 103}, + [407] = {.lex_state = 103}, + [408] = {.lex_state = 103}, + [409] = {.lex_state = 103}, + [410] = {.lex_state = 103}, + [411] = {.lex_state = 103}, + [412] = {.lex_state = 103}, + [413] = {.lex_state = 103}, + [414] = {.lex_state = 103}, + [415] = {.lex_state = 103}, + [416] = {.lex_state = 103}, + [417] = {.lex_state = 103}, + [418] = {.lex_state = 103}, + [419] = {.lex_state = 103}, + [420] = {.lex_state = 103}, + [421] = {.lex_state = 103}, + [422] = {.lex_state = 103}, + [423] = {.lex_state = 103}, + [424] = {.lex_state = 103}, + [425] = {.lex_state = 103}, + [426] = {.lex_state = 103}, + [427] = {.lex_state = 103}, + [428] = {.lex_state = 103}, + [429] = {.lex_state = 103}, + [430] = {.lex_state = 103}, + [431] = {.lex_state = 103}, + [432] = {.lex_state = 103}, + [433] = {.lex_state = 103}, + [434] = {.lex_state = 103}, + [435] = {.lex_state = 103}, + [436] = {.lex_state = 103}, + [437] = {.lex_state = 103}, + [438] = {.lex_state = 103}, + [439] = {.lex_state = 103}, + [440] = {.lex_state = 103}, + [441] = {.lex_state = 103}, + [442] = {.lex_state = 103}, + [443] = {.lex_state = 103}, + [444] = {.lex_state = 103}, + [445] = {.lex_state = 103}, + [446] = {.lex_state = 103}, + [447] = {.lex_state = 103}, + [448] = {.lex_state = 103}, + [449] = {.lex_state = 103}, + [450] = {.lex_state = 103}, + [451] = {.lex_state = 103}, + [452] = {.lex_state = 103}, + [453] = {.lex_state = 103}, + [454] = {.lex_state = 103}, + [455] = {.lex_state = 103}, + [456] = {.lex_state = 103}, + [457] = {.lex_state = 103}, + [458] = {.lex_state = 103}, + [459] = {.lex_state = 103}, + [460] = {.lex_state = 103}, + [461] = {.lex_state = 103}, + [462] = {.lex_state = 103}, + [463] = {.lex_state = 103}, + [464] = {.lex_state = 103}, + [465] = {.lex_state = 103}, + [466] = {.lex_state = 103}, + [467] = {.lex_state = 103}, + [468] = {.lex_state = 103}, + [469] = {.lex_state = 103}, + [470] = {.lex_state = 103}, + [471] = {.lex_state = 103}, + [472] = {.lex_state = 103}, + [473] = {.lex_state = 103}, + [474] = {.lex_state = 103}, + [475] = {.lex_state = 103}, + [476] = {.lex_state = 103}, + [477] = {.lex_state = 103}, + [478] = {.lex_state = 103}, + [479] = {.lex_state = 103}, + [480] = {.lex_state = 103}, + [481] = {.lex_state = 103}, + [482] = {.lex_state = 103}, + [483] = {.lex_state = 103}, + [484] = {.lex_state = 103}, + [485] = {.lex_state = 103}, + [486] = {.lex_state = 103}, + [487] = {.lex_state = 103}, + [488] = {.lex_state = 103}, + [489] = {.lex_state = 103}, + [490] = {.lex_state = 103}, + [491] = {.lex_state = 103}, + [492] = {.lex_state = 103}, + [493] = {.lex_state = 103}, + [494] = {.lex_state = 103}, + [495] = {.lex_state = 103}, + [496] = {.lex_state = 103}, + [497] = {.lex_state = 103}, + [498] = {.lex_state = 103}, + [499] = {.lex_state = 103}, + [500] = {.lex_state = 103}, + [501] = {.lex_state = 103}, + [502] = {.lex_state = 103}, + [503] = {.lex_state = 103}, + [504] = {.lex_state = 103}, + [505] = {.lex_state = 103}, + [506] = {.lex_state = 103}, + [507] = {.lex_state = 103}, + [508] = {.lex_state = 103}, + [509] = {.lex_state = 103}, + [510] = {.lex_state = 103}, + [511] = {.lex_state = 103}, + [512] = {.lex_state = 103}, + [513] = {.lex_state = 103}, + [514] = {.lex_state = 103}, + [515] = {.lex_state = 103}, + [516] = {.lex_state = 103}, + [517] = {.lex_state = 103}, + [518] = {.lex_state = 103}, + [519] = {.lex_state = 6, .external_lex_state = 3}, [520] = {.lex_state = 6, .external_lex_state = 3}, [521] = {.lex_state = 6, .external_lex_state = 3}, - [522] = {.lex_state = 3, .external_lex_state = 3}, - [523] = {.lex_state = 3, .external_lex_state = 3}, - [524] = {.lex_state = 3, .external_lex_state = 3}, - [525] = {.lex_state = 3, .external_lex_state = 3}, - [526] = {.lex_state = 3, .external_lex_state = 3}, - [527] = {.lex_state = 3, .external_lex_state = 3}, - [528] = {.lex_state = 3, .external_lex_state = 3}, - [529] = {.lex_state = 3, .external_lex_state = 3}, - [530] = {.lex_state = 3, .external_lex_state = 3}, - [531] = {.lex_state = 3, .external_lex_state = 3}, - [532] = {.lex_state = 3, .external_lex_state = 3}, - [533] = {.lex_state = 3, .external_lex_state = 3}, - [534] = {.lex_state = 99}, - [535] = {.lex_state = 3, .external_lex_state = 3}, - [536] = {.lex_state = 99}, - [537] = {.lex_state = 3, .external_lex_state = 3}, - [538] = {.lex_state = 3, .external_lex_state = 3}, - [539] = {.lex_state = 3, .external_lex_state = 3}, - [540] = {.lex_state = 99}, - [541] = {.lex_state = 99}, - [542] = {.lex_state = 99}, - [543] = {.lex_state = 99}, - [544] = {.lex_state = 99}, - [545] = {.lex_state = 3, .external_lex_state = 3}, - [546] = {.lex_state = 3, .external_lex_state = 3}, - [547] = {.lex_state = 3, .external_lex_state = 3}, - [548] = {.lex_state = 3, .external_lex_state = 3}, - [549] = {.lex_state = 3, .external_lex_state = 3}, - [550] = {.lex_state = 3, .external_lex_state = 3}, - [551] = {.lex_state = 3, .external_lex_state = 2}, - [552] = {.lex_state = 3, .external_lex_state = 2}, - [553] = {.lex_state = 3, .external_lex_state = 2}, - [554] = {.lex_state = 3, .external_lex_state = 2}, - [555] = {.lex_state = 3, .external_lex_state = 2}, - [556] = {.lex_state = 3, .external_lex_state = 3}, - [557] = {.lex_state = 3, .external_lex_state = 3}, - [558] = {.lex_state = 3, .external_lex_state = 3}, - [559] = {.lex_state = 3, .external_lex_state = 3}, - [560] = {.lex_state = 3, .external_lex_state = 3}, - [561] = {.lex_state = 3, .external_lex_state = 3}, - [562] = {.lex_state = 3, .external_lex_state = 2}, - [563] = {.lex_state = 3, .external_lex_state = 3}, - [564] = {.lex_state = 6, .external_lex_state = 2}, - [565] = {.lex_state = 3, .external_lex_state = 2}, - [566] = {.lex_state = 99}, - [567] = {.lex_state = 3, .external_lex_state = 2}, - [568] = {.lex_state = 99, .external_lex_state = 4}, - [569] = {.lex_state = 6, .external_lex_state = 2}, - [570] = {.lex_state = 99, .external_lex_state = 4}, - [571] = {.lex_state = 3, .external_lex_state = 2}, - [572] = {.lex_state = 99, .external_lex_state = 4}, - [573] = {.lex_state = 99, .external_lex_state = 4}, - [574] = {.lex_state = 99, .external_lex_state = 4}, - [575] = {.lex_state = 99}, - [576] = {.lex_state = 99}, - [577] = {.lex_state = 3, .external_lex_state = 3}, - [578] = {.lex_state = 99, .external_lex_state = 4}, - [579] = {.lex_state = 3, .external_lex_state = 2}, - [580] = {.lex_state = 3, .external_lex_state = 3}, - [581] = {.lex_state = 99, .external_lex_state = 4}, - [582] = {.lex_state = 3, .external_lex_state = 3}, - [583] = {.lex_state = 3, .external_lex_state = 2}, - [584] = {.lex_state = 3, .external_lex_state = 3}, - [585] = {.lex_state = 99, .external_lex_state = 4}, - [586] = {.lex_state = 3, .external_lex_state = 2}, - [587] = {.lex_state = 3, .external_lex_state = 3}, - [588] = {.lex_state = 99}, - [589] = {.lex_state = 3, .external_lex_state = 2}, - [590] = {.lex_state = 3, .external_lex_state = 2}, - [591] = {.lex_state = 3, .external_lex_state = 2}, - [592] = {.lex_state = 99}, - [593] = {.lex_state = 3, .external_lex_state = 2}, - [594] = {.lex_state = 99, .external_lex_state = 4}, - [595] = {.lex_state = 99, .external_lex_state = 4}, - [596] = {.lex_state = 99, .external_lex_state = 4}, - [597] = {.lex_state = 99, .external_lex_state = 4}, - [598] = {.lex_state = 99}, - [599] = {.lex_state = 99}, - [600] = {.lex_state = 99, .external_lex_state = 4}, - [601] = {.lex_state = 99, .external_lex_state = 4}, - [602] = {.lex_state = 99, .external_lex_state = 4}, - [603] = {.lex_state = 99, .external_lex_state = 4}, - [604] = {.lex_state = 99, .external_lex_state = 4}, - [605] = {.lex_state = 99}, - [606] = {.lex_state = 99}, - [607] = {.lex_state = 99, .external_lex_state = 4}, - [608] = {.lex_state = 99}, - [609] = {.lex_state = 99}, - [610] = {.lex_state = 99}, - [611] = {.lex_state = 99, .external_lex_state = 4}, - [612] = {.lex_state = 99, .external_lex_state = 4}, - [613] = {.lex_state = 99}, - [614] = {.lex_state = 3, .external_lex_state = 2}, - [615] = {.lex_state = 99}, - [616] = {.lex_state = 99}, - [617] = {.lex_state = 99}, - [618] = {.lex_state = 99}, - [619] = {.lex_state = 99}, - [620] = {.lex_state = 99}, - [621] = {.lex_state = 99}, - [622] = {.lex_state = 99}, - [623] = {.lex_state = 99}, - [624] = {.lex_state = 99}, - [625] = {.lex_state = 99}, - [626] = {.lex_state = 99}, - [627] = {.lex_state = 99}, - [628] = {.lex_state = 99}, - [629] = {.lex_state = 99}, - [630] = {.lex_state = 99}, - [631] = {.lex_state = 99}, - [632] = {.lex_state = 99}, - [633] = {.lex_state = 99}, - [634] = {.lex_state = 99}, - [635] = {.lex_state = 99}, - [636] = {.lex_state = 99}, - [637] = {.lex_state = 99}, - [638] = {.lex_state = 99}, - [639] = {.lex_state = 99}, - [640] = {.lex_state = 99}, - [641] = {.lex_state = 99}, - [642] = {.lex_state = 99}, - [643] = {.lex_state = 99}, - [644] = {.lex_state = 99}, - [645] = {.lex_state = 99}, - [646] = {.lex_state = 99}, - [647] = {.lex_state = 99}, - [648] = {.lex_state = 99}, - [649] = {.lex_state = 99}, - [650] = {.lex_state = 99}, - [651] = {.lex_state = 99}, - [652] = {.lex_state = 99}, - [653] = {.lex_state = 99}, - [654] = {.lex_state = 99}, - [655] = {.lex_state = 99}, - [656] = {.lex_state = 99}, - [657] = {.lex_state = 99}, - [658] = {.lex_state = 99}, - [659] = {.lex_state = 99}, - [660] = {.lex_state = 99}, - [661] = {.lex_state = 99}, - [662] = {.lex_state = 99}, - [663] = {.lex_state = 99}, - [664] = {.lex_state = 99}, - [665] = {.lex_state = 99}, - [666] = {.lex_state = 99}, - [667] = {.lex_state = 99}, - [668] = {.lex_state = 99}, - [669] = {.lex_state = 99}, - [670] = {.lex_state = 99}, - [671] = {.lex_state = 99}, - [672] = {.lex_state = 99}, - [673] = {.lex_state = 99}, - [674] = {.lex_state = 99}, - [675] = {.lex_state = 99}, - [676] = {.lex_state = 99}, - [677] = {.lex_state = 99}, - [678] = {.lex_state = 99}, - [679] = {.lex_state = 99}, - [680] = {.lex_state = 99}, - [681] = {.lex_state = 99}, - [682] = {.lex_state = 99}, - [683] = {.lex_state = 99}, - [684] = {.lex_state = 99}, - [685] = {.lex_state = 99}, - [686] = {.lex_state = 99}, - [687] = {.lex_state = 99}, - [688] = {.lex_state = 99}, - [689] = {.lex_state = 99}, - [690] = {.lex_state = 99}, - [691] = {.lex_state = 99}, - [692] = {.lex_state = 99}, - [693] = {.lex_state = 99}, - [694] = {.lex_state = 99}, - [695] = {.lex_state = 99}, - [696] = {.lex_state = 99}, - [697] = {.lex_state = 99}, - [698] = {.lex_state = 99}, - [699] = {.lex_state = 99}, - [700] = {.lex_state = 99}, - [701] = {.lex_state = 99}, - [702] = {.lex_state = 99}, - [703] = {.lex_state = 99}, - [704] = {.lex_state = 99}, - [705] = {.lex_state = 99}, - [706] = {.lex_state = 99}, - [707] = {.lex_state = 99}, - [708] = {.lex_state = 99}, - [709] = {.lex_state = 99}, - [710] = {.lex_state = 99}, - [711] = {.lex_state = 99}, - [712] = {.lex_state = 99}, - [713] = {.lex_state = 99}, - [714] = {.lex_state = 99}, - [715] = {.lex_state = 99}, - [716] = {.lex_state = 99}, - [717] = {.lex_state = 99}, - [718] = {.lex_state = 99}, - [719] = {.lex_state = 99}, - [720] = {.lex_state = 99}, - [721] = {.lex_state = 99}, - [722] = {.lex_state = 99}, - [723] = {.lex_state = 99}, - [724] = {.lex_state = 99}, - [725] = {.lex_state = 99}, - [726] = {.lex_state = 99}, - [727] = {.lex_state = 99}, - [728] = {.lex_state = 99}, - [729] = {.lex_state = 99}, - [730] = {.lex_state = 99}, - [731] = {.lex_state = 99}, - [732] = {.lex_state = 99}, - [733] = {.lex_state = 99}, - [734] = {.lex_state = 99}, - [735] = {.lex_state = 99}, - [736] = {.lex_state = 99}, - [737] = {.lex_state = 99}, - [738] = {.lex_state = 99}, - [739] = {.lex_state = 99}, - [740] = {.lex_state = 99}, - [741] = {.lex_state = 99}, - [742] = {.lex_state = 99}, - [743] = {.lex_state = 99}, - [744] = {.lex_state = 99}, - [745] = {.lex_state = 99}, - [746] = {.lex_state = 99}, - [747] = {.lex_state = 99}, - [748] = {.lex_state = 99}, - [749] = {.lex_state = 99}, - [750] = {.lex_state = 99}, - [751] = {.lex_state = 99}, - [752] = {.lex_state = 99}, - [753] = {.lex_state = 99}, - [754] = {.lex_state = 99}, - [755] = {.lex_state = 99}, - [756] = {.lex_state = 99}, - [757] = {.lex_state = 99}, - [758] = {.lex_state = 99}, - [759] = {.lex_state = 99}, - [760] = {.lex_state = 99}, - [761] = {.lex_state = 13}, - [762] = {.lex_state = 13}, - [763] = {.lex_state = 13}, - [764] = {.lex_state = 13}, - [765] = {.lex_state = 13}, - [766] = {.lex_state = 13}, - [767] = {.lex_state = 13}, - [768] = {.lex_state = 13}, - [769] = {.lex_state = 13}, - [770] = {.lex_state = 13}, - [771] = {.lex_state = 13}, - [772] = {.lex_state = 13}, - [773] = {.lex_state = 13}, - [774] = {.lex_state = 13}, - [775] = {.lex_state = 13}, - [776] = {.lex_state = 13}, - [777] = {.lex_state = 99}, - [778] = {.lex_state = 99}, - [779] = {.lex_state = 99}, - [780] = {.lex_state = 99}, - [781] = {.lex_state = 99}, - [782] = {.lex_state = 99}, - [783] = {.lex_state = 99}, - [784] = {.lex_state = 99}, - [785] = {.lex_state = 99}, - [786] = {.lex_state = 99}, - [787] = {.lex_state = 99}, - [788] = {.lex_state = 99}, - [789] = {.lex_state = 99}, - [790] = {.lex_state = 16}, - [791] = {.lex_state = 16}, - [792] = {.lex_state = 16}, - [793] = {.lex_state = 3, .external_lex_state = 3}, - [794] = {.lex_state = 3, .external_lex_state = 3}, - [795] = {.lex_state = 3, .external_lex_state = 3}, - [796] = {.lex_state = 3, .external_lex_state = 3}, - [797] = {.lex_state = 3, .external_lex_state = 3}, - [798] = {.lex_state = 3, .external_lex_state = 3}, - [799] = {.lex_state = 13}, - [800] = {.lex_state = 13}, - [801] = {.lex_state = 13}, - [802] = {.lex_state = 13}, - [803] = {.lex_state = 13}, - [804] = {.lex_state = 17}, - [805] = {.lex_state = 13}, - [806] = {.lex_state = 13}, - [807] = {.lex_state = 13}, - [808] = {.lex_state = 13}, - [809] = {.lex_state = 13}, - [810] = {.lex_state = 13}, - [811] = {.lex_state = 13}, - [812] = {.lex_state = 13}, - [813] = {.lex_state = 13}, - [814] = {.lex_state = 13}, - [815] = {.lex_state = 12}, - [816] = {.lex_state = 13}, - [817] = {.lex_state = 13}, - [818] = {.lex_state = 13}, - [819] = {.lex_state = 12}, - [820] = {.lex_state = 12}, - [821] = {.lex_state = 12}, - [822] = {.lex_state = 3, .external_lex_state = 2}, - [823] = {.lex_state = 12}, - [824] = {.lex_state = 13}, - [825] = {.lex_state = 3, .external_lex_state = 2}, - [826] = {.lex_state = 12}, - [827] = {.lex_state = 13}, - [828] = {.lex_state = 13}, - [829] = {.lex_state = 12}, - [830] = {.lex_state = 13}, - [831] = {.lex_state = 13}, - [832] = {.lex_state = 13}, - [833] = {.lex_state = 12}, - [834] = {.lex_state = 13}, - [835] = {.lex_state = 12}, - [836] = {.lex_state = 13}, - [837] = {.lex_state = 13}, - [838] = {.lex_state = 3, .external_lex_state = 2}, - [839] = {.lex_state = 13}, - [840] = {.lex_state = 12}, - [841] = {.lex_state = 13}, - [842] = {.lex_state = 12}, - [843] = {.lex_state = 13}, - [844] = {.lex_state = 13}, - [845] = {.lex_state = 13}, - [846] = {.lex_state = 12}, - [847] = {.lex_state = 13}, - [848] = {.lex_state = 13}, - [849] = {.lex_state = 13}, - [850] = {.lex_state = 13}, - [851] = {.lex_state = 13}, - [852] = {.lex_state = 13}, - [853] = {.lex_state = 13}, - [854] = {.lex_state = 13}, - [855] = {.lex_state = 13}, - [856] = {.lex_state = 13}, - [857] = {.lex_state = 13}, - [858] = {.lex_state = 13}, - [859] = {.lex_state = 13}, - [860] = {.lex_state = 13}, - [861] = {.lex_state = 13}, - [862] = {.lex_state = 13}, - [863] = {.lex_state = 13}, - [864] = {.lex_state = 13}, - [865] = {.lex_state = 13}, - [866] = {.lex_state = 13}, - [867] = {.lex_state = 13}, - [868] = {.lex_state = 13}, - [869] = {.lex_state = 13}, - [870] = {.lex_state = 13}, - [871] = {.lex_state = 13}, - [872] = {.lex_state = 13}, - [873] = {.lex_state = 13}, - [874] = {.lex_state = 13}, - [875] = {.lex_state = 13}, - [876] = {.lex_state = 13}, - [877] = {.lex_state = 13}, - [878] = {.lex_state = 13}, - [879] = {.lex_state = 13}, - [880] = {.lex_state = 13}, - [881] = {.lex_state = 13}, - [882] = {.lex_state = 13}, - [883] = {.lex_state = 13}, - [884] = {.lex_state = 13}, - [885] = {.lex_state = 13}, - [886] = {.lex_state = 13}, - [887] = {.lex_state = 13}, - [888] = {.lex_state = 13}, - [889] = {.lex_state = 13}, - [890] = {.lex_state = 13}, - [891] = {.lex_state = 13}, - [892] = {.lex_state = 13}, - [893] = {.lex_state = 13}, - [894] = {.lex_state = 13}, - [895] = {.lex_state = 13}, - [896] = {.lex_state = 13}, - [897] = {.lex_state = 13}, - [898] = {.lex_state = 13}, - [899] = {.lex_state = 13}, - [900] = {.lex_state = 13}, - [901] = {.lex_state = 13}, - [902] = {.lex_state = 13}, - [903] = {.lex_state = 13}, - [904] = {.lex_state = 13}, - [905] = {.lex_state = 13}, - [906] = {.lex_state = 13}, - [907] = {.lex_state = 13}, - [908] = {.lex_state = 13}, - [909] = {.lex_state = 13}, - [910] = {.lex_state = 13}, - [911] = {.lex_state = 13}, - [912] = {.lex_state = 13}, - [913] = {.lex_state = 13}, - [914] = {.lex_state = 13}, - [915] = {.lex_state = 13}, - [916] = {.lex_state = 13}, - [917] = {.lex_state = 13}, - [918] = {.lex_state = 13}, - [919] = {.lex_state = 13}, - [920] = {.lex_state = 13}, - [921] = {.lex_state = 13}, - [922] = {.lex_state = 13}, - [923] = {.lex_state = 13}, - [924] = {.lex_state = 13}, - [925] = {.lex_state = 13}, - [926] = {.lex_state = 13}, - [927] = {.lex_state = 3, .external_lex_state = 2}, - [928] = {.lex_state = 13}, - [929] = {.lex_state = 13}, - [930] = {.lex_state = 13}, - [931] = {.lex_state = 13}, - [932] = {.lex_state = 13}, - [933] = {.lex_state = 13}, - [934] = {.lex_state = 13}, - [935] = {.lex_state = 13}, - [936] = {.lex_state = 13}, - [937] = {.lex_state = 13}, - [938] = {.lex_state = 13}, - [939] = {.lex_state = 13}, - [940] = {.lex_state = 13}, - [941] = {.lex_state = 13}, - [942] = {.lex_state = 13}, - [943] = {.lex_state = 13}, - [944] = {.lex_state = 13}, - [945] = {.lex_state = 13}, - [946] = {.lex_state = 13}, - [947] = {.lex_state = 13}, - [948] = {.lex_state = 13}, - [949] = {.lex_state = 13}, - [950] = {.lex_state = 13}, - [951] = {.lex_state = 13}, - [952] = {.lex_state = 13}, - [953] = {.lex_state = 13}, - [954] = {.lex_state = 13}, - [955] = {.lex_state = 13}, - [956] = {.lex_state = 13}, - [957] = {.lex_state = 3, .external_lex_state = 2}, - [958] = {.lex_state = 13}, - [959] = {.lex_state = 13}, - [960] = {.lex_state = 13}, - [961] = {.lex_state = 13}, - [962] = {.lex_state = 13}, - [963] = {.lex_state = 13}, - [964] = {.lex_state = 13}, - [965] = {.lex_state = 13}, - [966] = {.lex_state = 13}, - [967] = {.lex_state = 13}, - [968] = {.lex_state = 13}, - [969] = {.lex_state = 13}, - [970] = {.lex_state = 13}, - [971] = {.lex_state = 13}, - [972] = {.lex_state = 13}, - [973] = {.lex_state = 13}, - [974] = {.lex_state = 13}, - [975] = {.lex_state = 13}, - [976] = {.lex_state = 13}, - [977] = {.lex_state = 13}, - [978] = {.lex_state = 13}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 13}, - [981] = {.lex_state = 3, .external_lex_state = 3}, - [982] = {.lex_state = 3, .external_lex_state = 2}, - [983] = {.lex_state = 3, .external_lex_state = 3}, - [984] = {.lex_state = 3, .external_lex_state = 3}, - [985] = {.lex_state = 3, .external_lex_state = 3}, - [986] = {.lex_state = 3, .external_lex_state = 3}, - [987] = {.lex_state = 3, .external_lex_state = 3}, - [988] = {.lex_state = 3, .external_lex_state = 3}, - [989] = {.lex_state = 3, .external_lex_state = 3}, - [990] = {.lex_state = 3, .external_lex_state = 3}, - [991] = {.lex_state = 3, .external_lex_state = 3}, - [992] = {.lex_state = 3, .external_lex_state = 3}, - [993] = {.lex_state = 6, .external_lex_state = 2}, - [994] = {.lex_state = 3, .external_lex_state = 2}, - [995] = {.lex_state = 3, .external_lex_state = 3}, - [996] = {.lex_state = 3, .external_lex_state = 2}, - [997] = {.lex_state = 6, .external_lex_state = 2}, - [998] = {.lex_state = 3, .external_lex_state = 2}, + [522] = {.lex_state = 9, .external_lex_state = 3}, + [523] = {.lex_state = 9, .external_lex_state = 3}, + [524] = {.lex_state = 6, .external_lex_state = 3}, + [525] = {.lex_state = 6, .external_lex_state = 3}, + [526] = {.lex_state = 6, .external_lex_state = 3}, + [527] = {.lex_state = 6, .external_lex_state = 3}, + [528] = {.lex_state = 6, .external_lex_state = 3}, + [529] = {.lex_state = 6, .external_lex_state = 3}, + [530] = {.lex_state = 6, .external_lex_state = 3}, + [531] = {.lex_state = 6, .external_lex_state = 3}, + [532] = {.lex_state = 6, .external_lex_state = 3}, + [533] = {.lex_state = 103}, + [534] = {.lex_state = 103}, + [535] = {.lex_state = 6, .external_lex_state = 3}, + [536] = {.lex_state = 6, .external_lex_state = 3}, + [537] = {.lex_state = 6, .external_lex_state = 3}, + [538] = {.lex_state = 6, .external_lex_state = 3}, + [539] = {.lex_state = 6, .external_lex_state = 3}, + [540] = {.lex_state = 6, .external_lex_state = 3}, + [541] = {.lex_state = 6, .external_lex_state = 3}, + [542] = {.lex_state = 103}, + [543] = {.lex_state = 103}, + [544] = {.lex_state = 103}, + [545] = {.lex_state = 103}, + [546] = {.lex_state = 103}, + [547] = {.lex_state = 6, .external_lex_state = 3}, + [548] = {.lex_state = 6, .external_lex_state = 3}, + [549] = {.lex_state = 6, .external_lex_state = 3}, + [550] = {.lex_state = 6, .external_lex_state = 3}, + [551] = {.lex_state = 6, .external_lex_state = 3}, + [552] = {.lex_state = 6, .external_lex_state = 3}, + [553] = {.lex_state = 6, .external_lex_state = 2}, + [554] = {.lex_state = 6, .external_lex_state = 2}, + [555] = {.lex_state = 6, .external_lex_state = 2}, + [556] = {.lex_state = 6, .external_lex_state = 2}, + [557] = {.lex_state = 6, .external_lex_state = 2}, + [558] = {.lex_state = 6, .external_lex_state = 3}, + [559] = {.lex_state = 6, .external_lex_state = 3}, + [560] = {.lex_state = 6, .external_lex_state = 3}, + [561] = {.lex_state = 6, .external_lex_state = 3}, + [562] = {.lex_state = 6, .external_lex_state = 3}, + [563] = {.lex_state = 6, .external_lex_state = 2}, + [564] = {.lex_state = 6, .external_lex_state = 3}, + [565] = {.lex_state = 6, .external_lex_state = 3}, + [566] = {.lex_state = 6, .external_lex_state = 2}, + [567] = {.lex_state = 103}, + [568] = {.lex_state = 6, .external_lex_state = 2}, + [569] = {.lex_state = 103, .external_lex_state = 4}, + [570] = {.lex_state = 103, .external_lex_state = 4}, + [571] = {.lex_state = 9, .external_lex_state = 2}, + [572] = {.lex_state = 9, .external_lex_state = 2}, + [573] = {.lex_state = 6, .external_lex_state = 2}, + [574] = {.lex_state = 103, .external_lex_state = 4}, + [575] = {.lex_state = 6, .external_lex_state = 2}, + [576] = {.lex_state = 103, .external_lex_state = 4}, + [577] = {.lex_state = 103, .external_lex_state = 4}, + [578] = {.lex_state = 103, .external_lex_state = 4}, + [579] = {.lex_state = 6, .external_lex_state = 3}, + [580] = {.lex_state = 6, .external_lex_state = 2}, + [581] = {.lex_state = 6, .external_lex_state = 3}, + [582] = {.lex_state = 103}, + [583] = {.lex_state = 103}, + [584] = {.lex_state = 6, .external_lex_state = 3}, + [585] = {.lex_state = 6, .external_lex_state = 2}, + [586] = {.lex_state = 103, .external_lex_state = 4}, + [587] = {.lex_state = 6, .external_lex_state = 3}, + [588] = {.lex_state = 103, .external_lex_state = 4}, + [589] = {.lex_state = 6, .external_lex_state = 3}, + [590] = {.lex_state = 103}, + [591] = {.lex_state = 103}, + [592] = {.lex_state = 6, .external_lex_state = 2}, + [593] = {.lex_state = 6, .external_lex_state = 2}, + [594] = {.lex_state = 6, .external_lex_state = 2}, + [595] = {.lex_state = 103}, + [596] = {.lex_state = 6, .external_lex_state = 2}, + [597] = {.lex_state = 103, .external_lex_state = 4}, + [598] = {.lex_state = 103, .external_lex_state = 4}, + [599] = {.lex_state = 103, .external_lex_state = 4}, + [600] = {.lex_state = 103}, + [601] = {.lex_state = 103, .external_lex_state = 4}, + [602] = {.lex_state = 103}, + [603] = {.lex_state = 103, .external_lex_state = 4}, + [604] = {.lex_state = 103}, + [605] = {.lex_state = 103, .external_lex_state = 4}, + [606] = {.lex_state = 6, .external_lex_state = 2}, + [607] = {.lex_state = 103, .external_lex_state = 4}, + [608] = {.lex_state = 103}, + [609] = {.lex_state = 103, .external_lex_state = 4}, + [610] = {.lex_state = 103}, + [611] = {.lex_state = 103, .external_lex_state = 4}, + [612] = {.lex_state = 103, .external_lex_state = 4}, + [613] = {.lex_state = 103}, + [614] = {.lex_state = 103, .external_lex_state = 4}, + [615] = {.lex_state = 103}, + [616] = {.lex_state = 103}, + [617] = {.lex_state = 103, .external_lex_state = 4}, + [618] = {.lex_state = 103}, + [619] = {.lex_state = 103}, + [620] = {.lex_state = 103}, + [621] = {.lex_state = 103}, + [622] = {.lex_state = 103}, + [623] = {.lex_state = 103}, + [624] = {.lex_state = 103}, + [625] = {.lex_state = 103}, + [626] = {.lex_state = 103}, + [627] = {.lex_state = 103}, + [628] = {.lex_state = 103}, + [629] = {.lex_state = 103}, + [630] = {.lex_state = 103}, + [631] = {.lex_state = 103}, + [632] = {.lex_state = 103}, + [633] = {.lex_state = 103}, + [634] = {.lex_state = 103}, + [635] = {.lex_state = 103}, + [636] = {.lex_state = 103}, + [637] = {.lex_state = 103}, + [638] = {.lex_state = 103}, + [639] = {.lex_state = 103}, + [640] = {.lex_state = 103}, + [641] = {.lex_state = 103}, + [642] = {.lex_state = 103}, + [643] = {.lex_state = 103}, + [644] = {.lex_state = 103}, + [645] = {.lex_state = 103}, + [646] = {.lex_state = 103}, + [647] = {.lex_state = 103}, + [648] = {.lex_state = 103}, + [649] = {.lex_state = 103}, + [650] = {.lex_state = 103}, + [651] = {.lex_state = 103}, + [652] = {.lex_state = 103}, + [653] = {.lex_state = 103}, + [654] = {.lex_state = 103}, + [655] = {.lex_state = 103}, + [656] = {.lex_state = 103}, + [657] = {.lex_state = 103}, + [658] = {.lex_state = 103}, + [659] = {.lex_state = 103}, + [660] = {.lex_state = 103}, + [661] = {.lex_state = 103}, + [662] = {.lex_state = 103}, + [663] = {.lex_state = 103}, + [664] = {.lex_state = 103}, + [665] = {.lex_state = 103}, + [666] = {.lex_state = 103}, + [667] = {.lex_state = 103}, + [668] = {.lex_state = 103}, + [669] = {.lex_state = 103}, + [670] = {.lex_state = 103}, + [671] = {.lex_state = 103}, + [672] = {.lex_state = 103}, + [673] = {.lex_state = 103}, + [674] = {.lex_state = 103}, + [675] = {.lex_state = 103}, + [676] = {.lex_state = 103}, + [677] = {.lex_state = 103}, + [678] = {.lex_state = 103}, + [679] = {.lex_state = 103}, + [680] = {.lex_state = 103}, + [681] = {.lex_state = 103}, + [682] = {.lex_state = 103}, + [683] = {.lex_state = 103}, + [684] = {.lex_state = 103}, + [685] = {.lex_state = 103}, + [686] = {.lex_state = 103}, + [687] = {.lex_state = 103}, + [688] = {.lex_state = 103}, + [689] = {.lex_state = 103}, + [690] = {.lex_state = 103}, + [691] = {.lex_state = 103}, + [692] = {.lex_state = 103}, + [693] = {.lex_state = 103}, + [694] = {.lex_state = 103}, + [695] = {.lex_state = 103}, + [696] = {.lex_state = 103}, + [697] = {.lex_state = 103}, + [698] = {.lex_state = 103}, + [699] = {.lex_state = 103}, + [700] = {.lex_state = 103}, + [701] = {.lex_state = 103}, + [702] = {.lex_state = 103}, + [703] = {.lex_state = 103}, + [704] = {.lex_state = 103}, + [705] = {.lex_state = 103}, + [706] = {.lex_state = 103}, + [707] = {.lex_state = 103}, + [708] = {.lex_state = 103}, + [709] = {.lex_state = 103}, + [710] = {.lex_state = 103}, + [711] = {.lex_state = 103}, + [712] = {.lex_state = 103}, + [713] = {.lex_state = 103}, + [714] = {.lex_state = 103}, + [715] = {.lex_state = 103}, + [716] = {.lex_state = 103}, + [717] = {.lex_state = 103}, + [718] = {.lex_state = 103}, + [719] = {.lex_state = 103}, + [720] = {.lex_state = 103}, + [721] = {.lex_state = 103}, + [722] = {.lex_state = 103}, + [723] = {.lex_state = 103}, + [724] = {.lex_state = 103}, + [725] = {.lex_state = 103}, + [726] = {.lex_state = 103}, + [727] = {.lex_state = 103}, + [728] = {.lex_state = 103}, + [729] = {.lex_state = 103}, + [730] = {.lex_state = 103}, + [731] = {.lex_state = 103}, + [732] = {.lex_state = 103}, + [733] = {.lex_state = 103}, + [734] = {.lex_state = 103}, + [735] = {.lex_state = 103}, + [736] = {.lex_state = 103}, + [737] = {.lex_state = 103}, + [738] = {.lex_state = 103}, + [739] = {.lex_state = 103}, + [740] = {.lex_state = 103}, + [741] = {.lex_state = 103}, + [742] = {.lex_state = 103}, + [743] = {.lex_state = 103}, + [744] = {.lex_state = 103}, + [745] = {.lex_state = 103}, + [746] = {.lex_state = 103}, + [747] = {.lex_state = 103}, + [748] = {.lex_state = 103}, + [749] = {.lex_state = 103}, + [750] = {.lex_state = 103}, + [751] = {.lex_state = 103}, + [752] = {.lex_state = 103}, + [753] = {.lex_state = 103}, + [754] = {.lex_state = 103}, + [755] = {.lex_state = 103}, + [756] = {.lex_state = 103}, + [757] = {.lex_state = 103}, + [758] = {.lex_state = 103}, + [759] = {.lex_state = 103}, + [760] = {.lex_state = 103}, + [761] = {.lex_state = 103}, + [762] = {.lex_state = 103}, + [763] = {.lex_state = 103}, + [764] = {.lex_state = 103}, + [765] = {.lex_state = 16}, + [766] = {.lex_state = 16}, + [767] = {.lex_state = 16}, + [768] = {.lex_state = 16}, + [769] = {.lex_state = 16}, + [770] = {.lex_state = 16}, + [771] = {.lex_state = 16}, + [772] = {.lex_state = 16}, + [773] = {.lex_state = 16}, + [774] = {.lex_state = 16}, + [775] = {.lex_state = 16}, + [776] = {.lex_state = 16}, + [777] = {.lex_state = 16}, + [778] = {.lex_state = 16}, + [779] = {.lex_state = 16}, + [780] = {.lex_state = 16}, + [781] = {.lex_state = 103}, + [782] = {.lex_state = 103}, + [783] = {.lex_state = 103}, + [784] = {.lex_state = 103}, + [785] = {.lex_state = 103}, + [786] = {.lex_state = 103}, + [787] = {.lex_state = 103}, + [788] = {.lex_state = 103}, + [789] = {.lex_state = 103}, + [790] = {.lex_state = 103}, + [791] = {.lex_state = 103}, + [792] = {.lex_state = 103}, + [793] = {.lex_state = 103}, + [794] = {.lex_state = 19}, + [795] = {.lex_state = 19}, + [796] = {.lex_state = 19}, + [797] = {.lex_state = 6, .external_lex_state = 3}, + [798] = {.lex_state = 6, .external_lex_state = 3}, + [799] = {.lex_state = 6, .external_lex_state = 3}, + [800] = {.lex_state = 6, .external_lex_state = 3}, + [801] = {.lex_state = 6, .external_lex_state = 3}, + [802] = {.lex_state = 6, .external_lex_state = 3}, + [803] = {.lex_state = 16}, + [804] = {.lex_state = 16}, + [805] = {.lex_state = 16}, + [806] = {.lex_state = 16}, + [807] = {.lex_state = 15}, + [808] = {.lex_state = 16}, + [809] = {.lex_state = 16}, + [810] = {.lex_state = 15}, + [811] = {.lex_state = 15}, + [812] = {.lex_state = 6, .external_lex_state = 2}, + [813] = {.lex_state = 16}, + [814] = {.lex_state = 16}, + [815] = {.lex_state = 16}, + [816] = {.lex_state = 16}, + [817] = {.lex_state = 16}, + [818] = {.lex_state = 16}, + [819] = {.lex_state = 16}, + [820] = {.lex_state = 16}, + [821] = {.lex_state = 16}, + [822] = {.lex_state = 16}, + [823] = {.lex_state = 20}, + [824] = {.lex_state = 15}, + [825] = {.lex_state = 15}, + [826] = {.lex_state = 16}, + [827] = {.lex_state = 15}, + [828] = {.lex_state = 16}, + [829] = {.lex_state = 15}, + [830] = {.lex_state = 16}, + [831] = {.lex_state = 16}, + [832] = {.lex_state = 16}, + [833] = {.lex_state = 16}, + [834] = {.lex_state = 16}, + [835] = {.lex_state = 16}, + [836] = {.lex_state = 15}, + [837] = {.lex_state = 16}, + [838] = {.lex_state = 15}, + [839] = {.lex_state = 16}, + [840] = {.lex_state = 16}, + [841] = {.lex_state = 16}, + [842] = {.lex_state = 15}, + [843] = {.lex_state = 16}, + [844] = {.lex_state = 16}, + [845] = {.lex_state = 15}, + [846] = {.lex_state = 16}, + [847] = {.lex_state = 16}, + [848] = {.lex_state = 15}, + [849] = {.lex_state = 6, .external_lex_state = 2}, + [850] = {.lex_state = 16}, + [851] = {.lex_state = 6, .external_lex_state = 2}, + [852] = {.lex_state = 16}, + [853] = {.lex_state = 16}, + [854] = {.lex_state = 16}, + [855] = {.lex_state = 16}, + [856] = {.lex_state = 16}, + [857] = {.lex_state = 16}, + [858] = {.lex_state = 16}, + [859] = {.lex_state = 16}, + [860] = {.lex_state = 16}, + [861] = {.lex_state = 16}, + [862] = {.lex_state = 16}, + [863] = {.lex_state = 16}, + [864] = {.lex_state = 16}, + [865] = {.lex_state = 16}, + [866] = {.lex_state = 16}, + [867] = {.lex_state = 16}, + [868] = {.lex_state = 16}, + [869] = {.lex_state = 16}, + [870] = {.lex_state = 16}, + [871] = {.lex_state = 16}, + [872] = {.lex_state = 16}, + [873] = {.lex_state = 16}, + [874] = {.lex_state = 16}, + [875] = {.lex_state = 16}, + [876] = {.lex_state = 16}, + [877] = {.lex_state = 16}, + [878] = {.lex_state = 16}, + [879] = {.lex_state = 16}, + [880] = {.lex_state = 6, .external_lex_state = 2}, + [881] = {.lex_state = 16}, + [882] = {.lex_state = 16}, + [883] = {.lex_state = 16}, + [884] = {.lex_state = 16}, + [885] = {.lex_state = 16}, + [886] = {.lex_state = 16}, + [887] = {.lex_state = 16}, + [888] = {.lex_state = 16}, + [889] = {.lex_state = 16}, + [890] = {.lex_state = 16}, + [891] = {.lex_state = 16}, + [892] = {.lex_state = 16}, + [893] = {.lex_state = 16}, + [894] = {.lex_state = 16}, + [895] = {.lex_state = 16}, + [896] = {.lex_state = 16}, + [897] = {.lex_state = 16}, + [898] = {.lex_state = 16}, + [899] = {.lex_state = 16}, + [900] = {.lex_state = 16}, + [901] = {.lex_state = 16}, + [902] = {.lex_state = 16}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 16}, + [905] = {.lex_state = 16}, + [906] = {.lex_state = 16}, + [907] = {.lex_state = 16}, + [908] = {.lex_state = 16}, + [909] = {.lex_state = 16}, + [910] = {.lex_state = 16}, + [911] = {.lex_state = 16}, + [912] = {.lex_state = 16}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 16}, + [915] = {.lex_state = 16}, + [916] = {.lex_state = 16}, + [917] = {.lex_state = 16}, + [918] = {.lex_state = 16}, + [919] = {.lex_state = 16}, + [920] = {.lex_state = 16}, + [921] = {.lex_state = 16}, + [922] = {.lex_state = 16}, + [923] = {.lex_state = 16}, + [924] = {.lex_state = 16}, + [925] = {.lex_state = 16}, + [926] = {.lex_state = 16}, + [927] = {.lex_state = 16}, + [928] = {.lex_state = 16}, + [929] = {.lex_state = 16}, + [930] = {.lex_state = 16}, + [931] = {.lex_state = 16}, + [932] = {.lex_state = 16}, + [933] = {.lex_state = 16}, + [934] = {.lex_state = 6, .external_lex_state = 2}, + [935] = {.lex_state = 16}, + [936] = {.lex_state = 16}, + [937] = {.lex_state = 16}, + [938] = {.lex_state = 16}, + [939] = {.lex_state = 16}, + [940] = {.lex_state = 16}, + [941] = {.lex_state = 16}, + [942] = {.lex_state = 16}, + [943] = {.lex_state = 16}, + [944] = {.lex_state = 16}, + [945] = {.lex_state = 16}, + [946] = {.lex_state = 16}, + [947] = {.lex_state = 16}, + [948] = {.lex_state = 16}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 16}, + [951] = {.lex_state = 16}, + [952] = {.lex_state = 16}, + [953] = {.lex_state = 16}, + [954] = {.lex_state = 16}, + [955] = {.lex_state = 16}, + [956] = {.lex_state = 16}, + [957] = {.lex_state = 16}, + [958] = {.lex_state = 16}, + [959] = {.lex_state = 16}, + [960] = {.lex_state = 16}, + [961] = {.lex_state = 16}, + [962] = {.lex_state = 16}, + [963] = {.lex_state = 16}, + [964] = {.lex_state = 16}, + [965] = {.lex_state = 16}, + [966] = {.lex_state = 16}, + [967] = {.lex_state = 16}, + [968] = {.lex_state = 16}, + [969] = {.lex_state = 16}, + [970] = {.lex_state = 16}, + [971] = {.lex_state = 16}, + [972] = {.lex_state = 16}, + [973] = {.lex_state = 16}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 16}, + [976] = {.lex_state = 16}, + [977] = {.lex_state = 16}, + [978] = {.lex_state = 16}, + [979] = {.lex_state = 16}, + [980] = {.lex_state = 16}, + [981] = {.lex_state = 16}, + [982] = {.lex_state = 16}, + [983] = {.lex_state = 16}, + [984] = {.lex_state = 16}, + [985] = {.lex_state = 6, .external_lex_state = 3}, + [986] = {.lex_state = 6, .external_lex_state = 3}, + [987] = {.lex_state = 6, .external_lex_state = 3}, + [988] = {.lex_state = 6, .external_lex_state = 2}, + [989] = {.lex_state = 6, .external_lex_state = 3}, + [990] = {.lex_state = 6, .external_lex_state = 3}, + [991] = {.lex_state = 6, .external_lex_state = 3}, + [992] = {.lex_state = 6, .external_lex_state = 3}, + [993] = {.lex_state = 6, .external_lex_state = 3}, + [994] = {.lex_state = 6, .external_lex_state = 3}, + [995] = {.lex_state = 6, .external_lex_state = 3}, + [996] = {.lex_state = 6, .external_lex_state = 2}, + [997] = {.lex_state = 9, .external_lex_state = 2}, + [998] = {.lex_state = 6, .external_lex_state = 3}, [999] = {.lex_state = 6, .external_lex_state = 2}, - [1000] = {.lex_state = 12}, - [1001] = {.lex_state = 6, .external_lex_state = 2}, - [1002] = {.lex_state = 3, .external_lex_state = 2}, - [1003] = {.lex_state = 3, .external_lex_state = 3}, + [1000] = {.lex_state = 9, .external_lex_state = 2}, + [1001] = {.lex_state = 6, .external_lex_state = 3}, + [1002] = {.lex_state = 6, .external_lex_state = 2}, + [1003] = {.lex_state = 9, .external_lex_state = 2}, [1004] = {.lex_state = 6, .external_lex_state = 2}, - [1005] = {.lex_state = 3, .external_lex_state = 3}, - [1006] = {.lex_state = 6, .external_lex_state = 2}, - [1007] = {.lex_state = 3, .external_lex_state = 2}, + [1005] = {.lex_state = 9, .external_lex_state = 2}, + [1006] = {.lex_state = 9, .external_lex_state = 2}, + [1007] = {.lex_state = 6, .external_lex_state = 3}, [1008] = {.lex_state = 6, .external_lex_state = 2}, - [1009] = {.lex_state = 3, .external_lex_state = 3}, - [1010] = {.lex_state = 3, .external_lex_state = 3}, - [1011] = {.lex_state = 3, .external_lex_state = 3}, - [1012] = {.lex_state = 3, .external_lex_state = 3}, - [1013] = {.lex_state = 3, .external_lex_state = 3}, - [1014] = {.lex_state = 3, .external_lex_state = 3}, + [1009] = {.lex_state = 6, .external_lex_state = 3}, + [1010] = {.lex_state = 9, .external_lex_state = 2}, + [1011] = {.lex_state = 9, .external_lex_state = 2}, + [1012] = {.lex_state = 6, .external_lex_state = 3}, + [1013] = {.lex_state = 6, .external_lex_state = 3}, + [1014] = {.lex_state = 6, .external_lex_state = 3}, [1015] = {.lex_state = 6, .external_lex_state = 2}, - [1016] = {.lex_state = 3, .external_lex_state = 3}, - [1017] = {.lex_state = 12}, - [1018] = {.lex_state = 3, .external_lex_state = 2}, - [1019] = {.lex_state = 6, .external_lex_state = 2}, - [1020] = {.lex_state = 3, .external_lex_state = 3}, - [1021] = {.lex_state = 3, .external_lex_state = 3}, - [1022] = {.lex_state = 3, .external_lex_state = 2}, - [1023] = {.lex_state = 3, .external_lex_state = 2}, - [1024] = {.lex_state = 3, .external_lex_state = 2}, - [1025] = {.lex_state = 6, .external_lex_state = 2}, - [1026] = {.lex_state = 3, .external_lex_state = 2}, - [1027] = {.lex_state = 3, .external_lex_state = 2}, - [1028] = {.lex_state = 3, .external_lex_state = 2}, - [1029] = {.lex_state = 3, .external_lex_state = 3}, - [1030] = {.lex_state = 3, .external_lex_state = 2}, + [1016] = {.lex_state = 15}, + [1017] = {.lex_state = 6, .external_lex_state = 3}, + [1018] = {.lex_state = 6, .external_lex_state = 3}, + [1019] = {.lex_state = 9, .external_lex_state = 2}, + [1020] = {.lex_state = 9, .external_lex_state = 2}, + [1021] = {.lex_state = 6, .external_lex_state = 3}, + [1022] = {.lex_state = 15}, + [1023] = {.lex_state = 6, .external_lex_state = 3}, + [1024] = {.lex_state = 6, .external_lex_state = 3}, + [1025] = {.lex_state = 6, .external_lex_state = 3}, + [1026] = {.lex_state = 6, .external_lex_state = 2}, + [1027] = {.lex_state = 6, .external_lex_state = 2}, + [1028] = {.lex_state = 6, .external_lex_state = 2}, + [1029] = {.lex_state = 6, .external_lex_state = 2}, + [1030] = {.lex_state = 6, .external_lex_state = 2}, [1031] = {.lex_state = 6, .external_lex_state = 2}, - [1032] = {.lex_state = 3, .external_lex_state = 3}, - [1033] = {.lex_state = 6, .external_lex_state = 2}, - [1034] = {.lex_state = 3, .external_lex_state = 2}, - [1035] = {.lex_state = 3, .external_lex_state = 2}, - [1036] = {.lex_state = 3, .external_lex_state = 2}, - [1037] = {.lex_state = 3, .external_lex_state = 2}, - [1038] = {.lex_state = 3, .external_lex_state = 2}, - [1039] = {.lex_state = 3, .external_lex_state = 2}, - [1040] = {.lex_state = 3, .external_lex_state = 2}, - [1041] = {.lex_state = 3, .external_lex_state = 3}, - [1042] = {.lex_state = 3, .external_lex_state = 3}, - [1043] = {.lex_state = 3, .external_lex_state = 2}, - [1044] = {.lex_state = 3, .external_lex_state = 3}, - [1045] = {.lex_state = 3, .external_lex_state = 2}, - [1046] = {.lex_state = 3, .external_lex_state = 2}, - [1047] = {.lex_state = 3, .external_lex_state = 2}, - [1048] = {.lex_state = 3, .external_lex_state = 3}, - [1049] = {.lex_state = 3, .external_lex_state = 2}, - [1050] = {.lex_state = 3, .external_lex_state = 3}, - [1051] = {.lex_state = 3, .external_lex_state = 2}, - [1052] = {.lex_state = 3, .external_lex_state = 2}, - [1053] = {.lex_state = 3, .external_lex_state = 3}, - [1054] = {.lex_state = 3, .external_lex_state = 2}, - [1055] = {.lex_state = 3, .external_lex_state = 2}, - [1056] = {.lex_state = 3, .external_lex_state = 2}, - [1057] = {.lex_state = 3, .external_lex_state = 3}, - [1058] = {.lex_state = 3, .external_lex_state = 2}, - [1059] = {.lex_state = 3, .external_lex_state = 2}, - [1060] = {.lex_state = 3, .external_lex_state = 2}, - [1061] = {.lex_state = 3, .external_lex_state = 2}, + [1032] = {.lex_state = 9, .external_lex_state = 2}, + [1033] = {.lex_state = 9, .external_lex_state = 2}, + [1034] = {.lex_state = 6, .external_lex_state = 2}, + [1035] = {.lex_state = 9, .external_lex_state = 2}, + [1036] = {.lex_state = 6, .external_lex_state = 3}, + [1037] = {.lex_state = 6, .external_lex_state = 3}, + [1038] = {.lex_state = 6, .external_lex_state = 3}, + [1039] = {.lex_state = 6, .external_lex_state = 2}, + [1040] = {.lex_state = 6, .external_lex_state = 2}, + [1041] = {.lex_state = 6, .external_lex_state = 2}, + [1042] = {.lex_state = 6, .external_lex_state = 2}, + [1043] = {.lex_state = 6, .external_lex_state = 2}, + [1044] = {.lex_state = 6, .external_lex_state = 2}, + [1045] = {.lex_state = 6, .external_lex_state = 2}, + [1046] = {.lex_state = 6, .external_lex_state = 2}, + [1047] = {.lex_state = 6, .external_lex_state = 2}, + [1048] = {.lex_state = 6, .external_lex_state = 2}, + [1049] = {.lex_state = 6, .external_lex_state = 2}, + [1050] = {.lex_state = 6, .external_lex_state = 3}, + [1051] = {.lex_state = 6, .external_lex_state = 2}, + [1052] = {.lex_state = 6, .external_lex_state = 3}, + [1053] = {.lex_state = 6, .external_lex_state = 2}, + [1054] = {.lex_state = 6, .external_lex_state = 3}, + [1055] = {.lex_state = 6, .external_lex_state = 3}, + [1056] = {.lex_state = 6, .external_lex_state = 2}, + [1057] = {.lex_state = 6, .external_lex_state = 2}, + [1058] = {.lex_state = 6, .external_lex_state = 2}, + [1059] = {.lex_state = 6, .external_lex_state = 3}, + [1060] = {.lex_state = 6, .external_lex_state = 2}, + [1061] = {.lex_state = 6, .external_lex_state = 2}, [1062] = {.lex_state = 6, .external_lex_state = 2}, - [1063] = {.lex_state = 3, .external_lex_state = 2}, - [1064] = {.lex_state = 3, .external_lex_state = 3}, - [1065] = {.lex_state = 3, .external_lex_state = 2}, - [1066] = {.lex_state = 3, .external_lex_state = 2}, - [1067] = {.lex_state = 3, .external_lex_state = 2}, - [1068] = {.lex_state = 3, .external_lex_state = 3}, - [1069] = {.lex_state = 3, .external_lex_state = 3}, - [1070] = {.lex_state = 3, .external_lex_state = 2}, - [1071] = {.lex_state = 3, .external_lex_state = 3}, + [1063] = {.lex_state = 6, .external_lex_state = 2}, + [1064] = {.lex_state = 6, .external_lex_state = 2}, + [1065] = {.lex_state = 6, .external_lex_state = 3}, + [1066] = {.lex_state = 6, .external_lex_state = 3}, + [1067] = {.lex_state = 6, .external_lex_state = 3}, + [1068] = {.lex_state = 9, .external_lex_state = 2}, + [1069] = {.lex_state = 9, .external_lex_state = 2}, + [1070] = {.lex_state = 6, .external_lex_state = 2}, + [1071] = {.lex_state = 6, .external_lex_state = 2}, [1072] = {.lex_state = 6, .external_lex_state = 2}, - [1073] = {.lex_state = 3, .external_lex_state = 3}, - [1074] = {.lex_state = 3, .external_lex_state = 3}, - [1075] = {.lex_state = 3, .external_lex_state = 2}, - [1076] = {.lex_state = 6, .external_lex_state = 2}, - [1077] = {.lex_state = 3, .external_lex_state = 3}, - [1078] = {.lex_state = 3, .external_lex_state = 3}, - [1079] = {.lex_state = 3, .external_lex_state = 2}, - [1080] = {.lex_state = 3, .external_lex_state = 3}, - [1081] = {.lex_state = 3, .external_lex_state = 3}, - [1082] = {.lex_state = 3, .external_lex_state = 3}, - [1083] = {.lex_state = 3, .external_lex_state = 2}, - [1084] = {.lex_state = 3, .external_lex_state = 3}, - [1085] = {.lex_state = 3, .external_lex_state = 2}, - [1086] = {.lex_state = 3, .external_lex_state = 3}, - [1087] = {.lex_state = 3, .external_lex_state = 2}, - [1088] = {.lex_state = 3, .external_lex_state = 3}, - [1089] = {.lex_state = 3, .external_lex_state = 3}, - [1090] = {.lex_state = 3, .external_lex_state = 3}, - [1091] = {.lex_state = 3, .external_lex_state = 3}, - [1092] = {.lex_state = 3, .external_lex_state = 3}, - [1093] = {.lex_state = 3, .external_lex_state = 3}, - [1094] = {.lex_state = 3, .external_lex_state = 3}, - [1095] = {.lex_state = 3, .external_lex_state = 2}, - [1096] = {.lex_state = 3, .external_lex_state = 3}, - [1097] = {.lex_state = 3, .external_lex_state = 3}, - [1098] = {.lex_state = 3, .external_lex_state = 2}, - [1099] = {.lex_state = 3, .external_lex_state = 3}, - [1100] = {.lex_state = 3, .external_lex_state = 2}, - [1101] = {.lex_state = 3, .external_lex_state = 3}, - [1102] = {.lex_state = 3, .external_lex_state = 3}, - [1103] = {.lex_state = 3, .external_lex_state = 3}, - [1104] = {.lex_state = 3, .external_lex_state = 3}, - [1105] = {.lex_state = 3, .external_lex_state = 3}, - [1106] = {.lex_state = 3, .external_lex_state = 2}, - [1107] = {.lex_state = 3, .external_lex_state = 3}, - [1108] = {.lex_state = 3, .external_lex_state = 2}, - [1109] = {.lex_state = 3, .external_lex_state = 2}, - [1110] = {.lex_state = 3, .external_lex_state = 2}, - [1111] = {.lex_state = 3, .external_lex_state = 2}, - [1112] = {.lex_state = 3, .external_lex_state = 2}, - [1113] = {.lex_state = 99}, - [1114] = {.lex_state = 3, .external_lex_state = 2}, - [1115] = {.lex_state = 3, .external_lex_state = 3}, - [1116] = {.lex_state = 3, .external_lex_state = 2}, - [1117] = {.lex_state = 3, .external_lex_state = 2}, - [1118] = {.lex_state = 3, .external_lex_state = 2}, - [1119] = {.lex_state = 3, .external_lex_state = 3}, - [1120] = {.lex_state = 3, .external_lex_state = 2}, - [1121] = {.lex_state = 3, .external_lex_state = 2}, - [1122] = {.lex_state = 3, .external_lex_state = 2}, - [1123] = {.lex_state = 3, .external_lex_state = 3}, - [1124] = {.lex_state = 3, .external_lex_state = 3}, - [1125] = {.lex_state = 3, .external_lex_state = 2}, + [1073] = {.lex_state = 6, .external_lex_state = 3}, + [1074] = {.lex_state = 6, .external_lex_state = 2}, + [1075] = {.lex_state = 6, .external_lex_state = 2}, + [1076] = {.lex_state = 6, .external_lex_state = 3}, + [1077] = {.lex_state = 6, .external_lex_state = 2}, + [1078] = {.lex_state = 6, .external_lex_state = 3}, + [1079] = {.lex_state = 6, .external_lex_state = 2}, + [1080] = {.lex_state = 6, .external_lex_state = 3}, + [1081] = {.lex_state = 6, .external_lex_state = 3}, + [1082] = {.lex_state = 6, .external_lex_state = 3}, + [1083] = {.lex_state = 6, .external_lex_state = 3}, + [1084] = {.lex_state = 6, .external_lex_state = 3}, + [1085] = {.lex_state = 6, .external_lex_state = 3}, + [1086] = {.lex_state = 6, .external_lex_state = 3}, + [1087] = {.lex_state = 6, .external_lex_state = 2}, + [1088] = {.lex_state = 6, .external_lex_state = 3}, + [1089] = {.lex_state = 6, .external_lex_state = 3}, + [1090] = {.lex_state = 6, .external_lex_state = 2}, + [1091] = {.lex_state = 9, .external_lex_state = 2}, + [1092] = {.lex_state = 6, .external_lex_state = 2}, + [1093] = {.lex_state = 6, .external_lex_state = 3}, + [1094] = {.lex_state = 6, .external_lex_state = 3}, + [1095] = {.lex_state = 6, .external_lex_state = 3}, + [1096] = {.lex_state = 6, .external_lex_state = 2}, + [1097] = {.lex_state = 6, .external_lex_state = 3}, + [1098] = {.lex_state = 6, .external_lex_state = 3}, + [1099] = {.lex_state = 6, .external_lex_state = 3}, + [1100] = {.lex_state = 6, .external_lex_state = 3}, + [1101] = {.lex_state = 6, .external_lex_state = 2}, + [1102] = {.lex_state = 6, .external_lex_state = 2}, + [1103] = {.lex_state = 6, .external_lex_state = 3}, + [1104] = {.lex_state = 6, .external_lex_state = 3}, + [1105] = {.lex_state = 6, .external_lex_state = 3}, + [1106] = {.lex_state = 6, .external_lex_state = 3}, + [1107] = {.lex_state = 6, .external_lex_state = 3}, + [1108] = {.lex_state = 6, .external_lex_state = 3}, + [1109] = {.lex_state = 6, .external_lex_state = 3}, + [1110] = {.lex_state = 6, .external_lex_state = 2}, + [1111] = {.lex_state = 6, .external_lex_state = 3}, + [1112] = {.lex_state = 103}, + [1113] = {.lex_state = 6, .external_lex_state = 2}, + [1114] = {.lex_state = 6, .external_lex_state = 2}, + [1115] = {.lex_state = 6, .external_lex_state = 2}, + [1116] = {.lex_state = 6, .external_lex_state = 2}, + [1117] = {.lex_state = 6, .external_lex_state = 2}, + [1118] = {.lex_state = 6, .external_lex_state = 3}, + [1119] = {.lex_state = 6, .external_lex_state = 3}, + [1120] = {.lex_state = 6, .external_lex_state = 3}, + [1121] = {.lex_state = 6, .external_lex_state = 2}, + [1122] = {.lex_state = 9, .external_lex_state = 2}, + [1123] = {.lex_state = 9, .external_lex_state = 2}, + [1124] = {.lex_state = 6, .external_lex_state = 2}, + [1125] = {.lex_state = 6, .external_lex_state = 3}, [1126] = {.lex_state = 6, .external_lex_state = 2}, - [1127] = {.lex_state = 99}, - [1128] = {.lex_state = 6, .external_lex_state = 2}, + [1127] = {.lex_state = 103}, + [1128] = {.lex_state = 6, .external_lex_state = 3}, [1129] = {.lex_state = 6, .external_lex_state = 2}, [1130] = {.lex_state = 6, .external_lex_state = 2}, - [1131] = {.lex_state = 3, .external_lex_state = 3}, - [1132] = {.lex_state = 3, .external_lex_state = 2}, - [1133] = {.lex_state = 99}, - [1134] = {.lex_state = 3, .external_lex_state = 2}, - [1135] = {.lex_state = 3, .external_lex_state = 3}, - [1136] = {.lex_state = 3, .external_lex_state = 2}, - [1137] = {.lex_state = 3, .external_lex_state = 2}, - [1138] = {.lex_state = 3, .external_lex_state = 2}, - [1139] = {.lex_state = 99}, + [1131] = {.lex_state = 9, .external_lex_state = 2}, + [1132] = {.lex_state = 9, .external_lex_state = 2}, + [1133] = {.lex_state = 6, .external_lex_state = 2}, + [1134] = {.lex_state = 6, .external_lex_state = 2}, + [1135] = {.lex_state = 6, .external_lex_state = 2}, + [1136] = {.lex_state = 6, .external_lex_state = 2}, + [1137] = {.lex_state = 6, .external_lex_state = 2}, + [1138] = {.lex_state = 6, .external_lex_state = 3}, + [1139] = {.lex_state = 6, .external_lex_state = 2}, [1140] = {.lex_state = 6, .external_lex_state = 2}, - [1141] = {.lex_state = 3, .external_lex_state = 2}, - [1142] = {.lex_state = 3, .external_lex_state = 3}, - [1143] = {.lex_state = 3, .external_lex_state = 3}, - [1144] = {.lex_state = 3, .external_lex_state = 2}, - [1145] = {.lex_state = 3, .external_lex_state = 3}, - [1146] = {.lex_state = 3, .external_lex_state = 2}, - [1147] = {.lex_state = 3, .external_lex_state = 2}, - [1148] = {.lex_state = 3, .external_lex_state = 2}, - [1149] = {.lex_state = 3, .external_lex_state = 2}, - [1150] = {.lex_state = 99}, - [1151] = {.lex_state = 3, .external_lex_state = 2}, - [1152] = {.lex_state = 3, .external_lex_state = 3}, - [1153] = {.lex_state = 3, .external_lex_state = 2}, - [1154] = {.lex_state = 3, .external_lex_state = 2}, - [1155] = {.lex_state = 3, .external_lex_state = 2}, - [1156] = {.lex_state = 3, .external_lex_state = 2}, - [1157] = {.lex_state = 99}, - [1158] = {.lex_state = 99}, - [1159] = {.lex_state = 3, .external_lex_state = 2}, - [1160] = {.lex_state = 3, .external_lex_state = 2}, - [1161] = {.lex_state = 3, .external_lex_state = 2}, - [1162] = {.lex_state = 3, .external_lex_state = 2}, - [1163] = {.lex_state = 3, .external_lex_state = 2}, - [1164] = {.lex_state = 13}, - [1165] = {.lex_state = 13}, - [1166] = {.lex_state = 13}, - [1167] = {.lex_state = 13}, - [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 13}, - [1170] = {.lex_state = 7, .external_lex_state = 3}, - [1171] = {.lex_state = 13}, - [1172] = {.lex_state = 13}, - [1173] = {.lex_state = 13}, - [1174] = {.lex_state = 12, .external_lex_state = 4}, - [1175] = {.lex_state = 13}, - [1176] = {.lex_state = 13}, - [1177] = {.lex_state = 13}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 12, .external_lex_state = 4}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 12, .external_lex_state = 4}, - [1182] = {.lex_state = 13}, - [1183] = {.lex_state = 13}, - [1184] = {.lex_state = 13}, - [1185] = {.lex_state = 12, .external_lex_state = 4}, - [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 13}, - [1188] = {.lex_state = 13}, - [1189] = {.lex_state = 12, .external_lex_state = 4}, - [1190] = {.lex_state = 13}, - [1191] = {.lex_state = 13}, - [1192] = {.lex_state = 13}, - [1193] = {.lex_state = 13}, - [1194] = {.lex_state = 12, .external_lex_state = 4}, - [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 12, .external_lex_state = 4}, - [1197] = {.lex_state = 13}, - [1198] = {.lex_state = 13}, - [1199] = {.lex_state = 7, .external_lex_state = 3}, - [1200] = {.lex_state = 13}, - [1201] = {.lex_state = 7, .external_lex_state = 3}, - [1202] = {.lex_state = 13}, - [1203] = {.lex_state = 13}, - [1204] = {.lex_state = 13}, - [1205] = {.lex_state = 7, .external_lex_state = 2}, - [1206] = {.lex_state = 7, .external_lex_state = 2}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, - [1208] = {.lex_state = 7, .external_lex_state = 2}, - [1209] = {.lex_state = 99}, - [1210] = {.lex_state = 7, .external_lex_state = 2}, - [1211] = {.lex_state = 99}, - [1212] = {.lex_state = 99}, - [1213] = {.lex_state = 99}, - [1214] = {.lex_state = 99}, - [1215] = {.lex_state = 7, .external_lex_state = 3}, - [1216] = {.lex_state = 99}, - [1217] = {.lex_state = 7, .external_lex_state = 2}, - [1218] = {.lex_state = 7, .external_lex_state = 2}, - [1219] = {.lex_state = 7, .external_lex_state = 2}, - [1220] = {.lex_state = 7, .external_lex_state = 2}, - [1221] = {.lex_state = 7, .external_lex_state = 2}, - [1222] = {.lex_state = 99}, - [1223] = {.lex_state = 7, .external_lex_state = 2}, - [1224] = {.lex_state = 7, .external_lex_state = 2}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, - [1226] = {.lex_state = 7, .external_lex_state = 2}, - [1227] = {.lex_state = 7, .external_lex_state = 2}, - [1228] = {.lex_state = 7, .external_lex_state = 2}, - [1229] = {.lex_state = 7, .external_lex_state = 2}, - [1230] = {.lex_state = 7, .external_lex_state = 3}, - [1231] = {.lex_state = 7, .external_lex_state = 2}, - [1232] = {.lex_state = 7, .external_lex_state = 2}, - [1233] = {.lex_state = 7, .external_lex_state = 2}, - [1234] = {.lex_state = 7, .external_lex_state = 2}, - [1235] = {.lex_state = 7, .external_lex_state = 2}, - [1236] = {.lex_state = 7, .external_lex_state = 2}, - [1237] = {.lex_state = 7, .external_lex_state = 2}, - [1238] = {.lex_state = 7, .external_lex_state = 2}, - [1239] = {.lex_state = 7, .external_lex_state = 2}, - [1240] = {.lex_state = 7, .external_lex_state = 2}, - [1241] = {.lex_state = 7, .external_lex_state = 2}, - [1242] = {.lex_state = 7, .external_lex_state = 2}, - [1243] = {.lex_state = 7, .external_lex_state = 2}, - [1244] = {.lex_state = 7, .external_lex_state = 3}, - [1245] = {.lex_state = 7, .external_lex_state = 2}, - [1246] = {.lex_state = 7, .external_lex_state = 2}, - [1247] = {.lex_state = 7, .external_lex_state = 2}, - [1248] = {.lex_state = 7, .external_lex_state = 2}, - [1249] = {.lex_state = 7, .external_lex_state = 2}, - [1250] = {.lex_state = 7, .external_lex_state = 2}, - [1251] = {.lex_state = 7, .external_lex_state = 2}, - [1252] = {.lex_state = 7, .external_lex_state = 2}, - [1253] = {.lex_state = 7, .external_lex_state = 2}, - [1254] = {.lex_state = 7, .external_lex_state = 2}, - [1255] = {.lex_state = 7, .external_lex_state = 2}, - [1256] = {.lex_state = 7, .external_lex_state = 2}, - [1257] = {.lex_state = 7, .external_lex_state = 2}, - [1258] = {.lex_state = 7, .external_lex_state = 2}, - [1259] = {.lex_state = 7, .external_lex_state = 2}, - [1260] = {.lex_state = 7, .external_lex_state = 2}, - [1261] = {.lex_state = 7, .external_lex_state = 2}, - [1262] = {.lex_state = 7, .external_lex_state = 2}, - [1263] = {.lex_state = 7, .external_lex_state = 2}, - [1264] = {.lex_state = 7, .external_lex_state = 2}, - [1265] = {.lex_state = 7, .external_lex_state = 2}, - [1266] = {.lex_state = 7, .external_lex_state = 2}, - [1267] = {.lex_state = 7, .external_lex_state = 2}, - [1268] = {.lex_state = 7, .external_lex_state = 2}, - [1269] = {.lex_state = 7, .external_lex_state = 2}, - [1270] = {.lex_state = 7, .external_lex_state = 3}, - [1271] = {.lex_state = 7, .external_lex_state = 2}, - [1272] = {.lex_state = 7, .external_lex_state = 2}, - [1273] = {.lex_state = 7, .external_lex_state = 2}, - [1274] = {.lex_state = 7, .external_lex_state = 2}, - [1275] = {.lex_state = 7, .external_lex_state = 2}, - [1276] = {.lex_state = 7, .external_lex_state = 2}, - [1277] = {.lex_state = 7, .external_lex_state = 2}, - [1278] = {.lex_state = 7, .external_lex_state = 2}, - [1279] = {.lex_state = 7, .external_lex_state = 2}, - [1280] = {.lex_state = 7, .external_lex_state = 2}, - [1281] = {.lex_state = 7, .external_lex_state = 2}, - [1282] = {.lex_state = 7, .external_lex_state = 2}, - [1283] = {.lex_state = 7, .external_lex_state = 2}, - [1284] = {.lex_state = 7, .external_lex_state = 2}, - [1285] = {.lex_state = 7, .external_lex_state = 2}, - [1286] = {.lex_state = 7, .external_lex_state = 2}, - [1287] = {.lex_state = 7, .external_lex_state = 2}, - [1288] = {.lex_state = 7, .external_lex_state = 2}, - [1289] = {.lex_state = 7, .external_lex_state = 2}, - [1290] = {.lex_state = 7, .external_lex_state = 2}, - [1291] = {.lex_state = 7, .external_lex_state = 2}, - [1292] = {.lex_state = 7, .external_lex_state = 2}, - [1293] = {.lex_state = 7, .external_lex_state = 2}, - [1294] = {.lex_state = 7, .external_lex_state = 2}, - [1295] = {.lex_state = 7, .external_lex_state = 2}, - [1296] = {.lex_state = 7, .external_lex_state = 2}, - [1297] = {.lex_state = 7, .external_lex_state = 2}, - [1298] = {.lex_state = 7, .external_lex_state = 2}, - [1299] = {.lex_state = 7, .external_lex_state = 2}, - [1300] = {.lex_state = 7, .external_lex_state = 2}, - [1301] = {.lex_state = 7, .external_lex_state = 2}, - [1302] = {.lex_state = 7, .external_lex_state = 2}, - [1303] = {.lex_state = 7, .external_lex_state = 2}, - [1304] = {.lex_state = 7, .external_lex_state = 2}, - [1305] = {.lex_state = 7, .external_lex_state = 2}, - [1306] = {.lex_state = 7, .external_lex_state = 2}, - [1307] = {.lex_state = 7, .external_lex_state = 2}, - [1308] = {.lex_state = 7, .external_lex_state = 2}, - [1309] = {.lex_state = 7, .external_lex_state = 2}, - [1310] = {.lex_state = 7, .external_lex_state = 2}, - [1311] = {.lex_state = 7, .external_lex_state = 2}, - [1312] = {.lex_state = 7, .external_lex_state = 2}, - [1313] = {.lex_state = 7, .external_lex_state = 2}, - [1314] = {.lex_state = 7, .external_lex_state = 2}, - [1315] = {.lex_state = 7, .external_lex_state = 2}, - [1316] = {.lex_state = 7, .external_lex_state = 2}, - [1317] = {.lex_state = 7, .external_lex_state = 2}, - [1318] = {.lex_state = 7, .external_lex_state = 2}, - [1319] = {.lex_state = 7, .external_lex_state = 2}, - [1320] = {.lex_state = 7, .external_lex_state = 2}, - [1321] = {.lex_state = 7, .external_lex_state = 2}, - [1322] = {.lex_state = 7, .external_lex_state = 2}, - [1323] = {.lex_state = 7, .external_lex_state = 2}, - [1324] = {.lex_state = 7, .external_lex_state = 2}, - [1325] = {.lex_state = 7, .external_lex_state = 2}, - [1326] = {.lex_state = 7, .external_lex_state = 2}, - [1327] = {.lex_state = 7, .external_lex_state = 2}, - [1328] = {.lex_state = 7, .external_lex_state = 2}, - [1329] = {.lex_state = 7, .external_lex_state = 2}, - [1330] = {.lex_state = 7, .external_lex_state = 2}, - [1331] = {.lex_state = 7, .external_lex_state = 2}, - [1332] = {.lex_state = 7, .external_lex_state = 2}, - [1333] = {.lex_state = 7, .external_lex_state = 2}, - [1334] = {.lex_state = 7, .external_lex_state = 2}, - [1335] = {.lex_state = 7, .external_lex_state = 2}, - [1336] = {.lex_state = 7, .external_lex_state = 2}, - [1337] = {.lex_state = 7, .external_lex_state = 2}, - [1338] = {.lex_state = 7, .external_lex_state = 2}, - [1339] = {.lex_state = 7, .external_lex_state = 2}, - [1340] = {.lex_state = 7, .external_lex_state = 2}, - [1341] = {.lex_state = 7, .external_lex_state = 2}, - [1342] = {.lex_state = 7, .external_lex_state = 2}, - [1343] = {.lex_state = 7, .external_lex_state = 2}, - [1344] = {.lex_state = 7, .external_lex_state = 2}, - [1345] = {.lex_state = 7, .external_lex_state = 2}, - [1346] = {.lex_state = 7, .external_lex_state = 2}, - [1347] = {.lex_state = 7, .external_lex_state = 2}, - [1348] = {.lex_state = 7, .external_lex_state = 2}, - [1349] = {.lex_state = 7, .external_lex_state = 2}, - [1350] = {.lex_state = 7, .external_lex_state = 2}, - [1351] = {.lex_state = 7, .external_lex_state = 2}, - [1352] = {.lex_state = 7, .external_lex_state = 2}, - [1353] = {.lex_state = 7, .external_lex_state = 2}, - [1354] = {.lex_state = 7, .external_lex_state = 2}, - [1355] = {.lex_state = 7, .external_lex_state = 2}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 7, .external_lex_state = 2}, - [1358] = {.lex_state = 7, .external_lex_state = 2}, - [1359] = {.lex_state = 7, .external_lex_state = 2}, - [1360] = {.lex_state = 7, .external_lex_state = 2}, - [1361] = {.lex_state = 7, .external_lex_state = 2}, - [1362] = {.lex_state = 7, .external_lex_state = 2}, - [1363] = {.lex_state = 7, .external_lex_state = 2}, - [1364] = {.lex_state = 7, .external_lex_state = 2}, - [1365] = {.lex_state = 7, .external_lex_state = 2}, - [1366] = {.lex_state = 7, .external_lex_state = 2}, - [1367] = {.lex_state = 7, .external_lex_state = 2}, - [1368] = {.lex_state = 7, .external_lex_state = 2}, - [1369] = {.lex_state = 7, .external_lex_state = 3}, - [1370] = {.lex_state = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 7, .external_lex_state = 2}, - [1372] = {.lex_state = 7, .external_lex_state = 2}, - [1373] = {.lex_state = 7, .external_lex_state = 3}, - [1374] = {.lex_state = 7, .external_lex_state = 2}, - [1375] = {.lex_state = 7, .external_lex_state = 2}, - [1376] = {.lex_state = 7, .external_lex_state = 2}, - [1377] = {.lex_state = 7, .external_lex_state = 3}, - [1378] = {.lex_state = 7, .external_lex_state = 2}, - [1379] = {.lex_state = 7, .external_lex_state = 2}, - [1380] = {.lex_state = 7, .external_lex_state = 2}, - [1381] = {.lex_state = 7, .external_lex_state = 2}, - [1382] = {.lex_state = 7, .external_lex_state = 2}, - [1383] = {.lex_state = 7, .external_lex_state = 2}, - [1384] = {.lex_state = 7, .external_lex_state = 2}, - [1385] = {.lex_state = 7, .external_lex_state = 2}, - [1386] = {.lex_state = 7, .external_lex_state = 2}, - [1387] = {.lex_state = 7, .external_lex_state = 2}, - [1388] = {.lex_state = 7, .external_lex_state = 2}, - [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 7, .external_lex_state = 2}, - [1391] = {.lex_state = 7, .external_lex_state = 2}, - [1392] = {.lex_state = 7, .external_lex_state = 2}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, - [1394] = {.lex_state = 7, .external_lex_state = 3}, - [1395] = {.lex_state = 7, .external_lex_state = 3}, - [1396] = {.lex_state = 7, .external_lex_state = 3}, - [1397] = {.lex_state = 7, .external_lex_state = 3}, - [1398] = {.lex_state = 7, .external_lex_state = 3}, - [1399] = {.lex_state = 7, .external_lex_state = 3}, - [1400] = {.lex_state = 7, .external_lex_state = 3}, - [1401] = {.lex_state = 7, .external_lex_state = 2}, - [1402] = {.lex_state = 7, .external_lex_state = 3}, - [1403] = {.lex_state = 7, .external_lex_state = 2}, - [1404] = {.lex_state = 7, .external_lex_state = 3}, - [1405] = {.lex_state = 7, .external_lex_state = 2}, - [1406] = {.lex_state = 7, .external_lex_state = 2}, - [1407] = {.lex_state = 7, .external_lex_state = 3}, - [1408] = {.lex_state = 7, .external_lex_state = 2}, - [1409] = {.lex_state = 7, .external_lex_state = 2}, - [1410] = {.lex_state = 7, .external_lex_state = 2}, - [1411] = {.lex_state = 7, .external_lex_state = 2}, - [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 7, .external_lex_state = 2}, - [1414] = {.lex_state = 7, .external_lex_state = 2}, - [1415] = {.lex_state = 7, .external_lex_state = 3}, - [1416] = {.lex_state = 7, .external_lex_state = 2}, - [1417] = {.lex_state = 7, .external_lex_state = 2}, - [1418] = {.lex_state = 7, .external_lex_state = 2}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 7, .external_lex_state = 3}, - [1421] = {.lex_state = 7, .external_lex_state = 3}, - [1422] = {.lex_state = 7, .external_lex_state = 2}, - [1423] = {.lex_state = 7, .external_lex_state = 2}, - [1424] = {.lex_state = 7, .external_lex_state = 2}, - [1425] = {.lex_state = 7, .external_lex_state = 2}, - [1426] = {.lex_state = 7, .external_lex_state = 2}, - [1427] = {.lex_state = 7, .external_lex_state = 2}, - [1428] = {.lex_state = 7, .external_lex_state = 2}, - [1429] = {.lex_state = 7, .external_lex_state = 3}, - [1430] = {.lex_state = 7, .external_lex_state = 3}, - [1431] = {.lex_state = 7, .external_lex_state = 2}, - [1432] = {.lex_state = 7, .external_lex_state = 2}, - [1433] = {.lex_state = 7, .external_lex_state = 2}, - [1434] = {.lex_state = 7, .external_lex_state = 2}, - [1435] = {.lex_state = 7, .external_lex_state = 2}, - [1436] = {.lex_state = 7, .external_lex_state = 2}, - [1437] = {.lex_state = 7, .external_lex_state = 2}, - [1438] = {.lex_state = 7, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 2}, - [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 7, .external_lex_state = 3}, - [1444] = {.lex_state = 7, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 7, .external_lex_state = 3}, - [1447] = {.lex_state = 7, .external_lex_state = 3}, - [1448] = {.lex_state = 7, .external_lex_state = 2}, - [1449] = {.lex_state = 7, .external_lex_state = 2}, - [1450] = {.lex_state = 7, .external_lex_state = 3}, - [1451] = {.lex_state = 7, .external_lex_state = 2}, - [1452] = {.lex_state = 7, .external_lex_state = 3}, - [1453] = {.lex_state = 7, .external_lex_state = 3}, - [1454] = {.lex_state = 7, .external_lex_state = 2}, - [1455] = {.lex_state = 7, .external_lex_state = 2}, - [1456] = {.lex_state = 7, .external_lex_state = 2}, - [1457] = {.lex_state = 7, .external_lex_state = 2}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 2}, - [1460] = {.lex_state = 7, .external_lex_state = 2}, - [1461] = {.lex_state = 7, .external_lex_state = 3}, - [1462] = {.lex_state = 7, .external_lex_state = 3}, - [1463] = {.lex_state = 7, .external_lex_state = 2}, - [1464] = {.lex_state = 7, .external_lex_state = 3}, - [1465] = {.lex_state = 7, .external_lex_state = 2}, - [1466] = {.lex_state = 7, .external_lex_state = 2}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, - [1468] = {.lex_state = 7, .external_lex_state = 3}, - [1469] = {.lex_state = 7, .external_lex_state = 3}, - [1470] = {.lex_state = 7, .external_lex_state = 2}, - [1471] = {.lex_state = 7, .external_lex_state = 2}, - [1472] = {.lex_state = 7, .external_lex_state = 2}, - [1473] = {.lex_state = 7, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 2}, - [1477] = {.lex_state = 7, .external_lex_state = 2}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 7, .external_lex_state = 3}, - [1483] = {.lex_state = 99}, - [1484] = {.lex_state = 7, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 2}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 7, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 2}, - [1493] = {.lex_state = 7, .external_lex_state = 2}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 7, .external_lex_state = 2}, - [1496] = {.lex_state = 7, .external_lex_state = 2}, - [1497] = {.lex_state = 7, .external_lex_state = 2}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 2}, - [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 2}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 2}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 7, .external_lex_state = 2}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 2}, - [1516] = {.lex_state = 7, .external_lex_state = 2}, - [1517] = {.lex_state = 7, .external_lex_state = 2}, - [1518] = {.lex_state = 7, .external_lex_state = 2}, - [1519] = {.lex_state = 13}, - [1520] = {.lex_state = 13}, - [1521] = {.lex_state = 7, .external_lex_state = 2}, - [1522] = {.lex_state = 7, .external_lex_state = 2}, - [1523] = {.lex_state = 7, .external_lex_state = 2}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 2}, - [1528] = {.lex_state = 7, .external_lex_state = 2}, - [1529] = {.lex_state = 7, .external_lex_state = 2}, - [1530] = {.lex_state = 7, .external_lex_state = 2}, - [1531] = {.lex_state = 7, .external_lex_state = 2}, - [1532] = {.lex_state = 13}, - [1533] = {.lex_state = 7, .external_lex_state = 2}, - [1534] = {.lex_state = 7, .external_lex_state = 2}, - [1535] = {.lex_state = 7, .external_lex_state = 2}, - [1536] = {.lex_state = 7, .external_lex_state = 2}, - [1537] = {.lex_state = 7, .external_lex_state = 2}, - [1538] = {.lex_state = 7, .external_lex_state = 2}, - [1539] = {.lex_state = 7, .external_lex_state = 2}, - [1540] = {.lex_state = 7, .external_lex_state = 2}, - [1541] = {.lex_state = 7, .external_lex_state = 2}, - [1542] = {.lex_state = 7, .external_lex_state = 2}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 2}, - [1545] = {.lex_state = 7, .external_lex_state = 2}, - [1546] = {.lex_state = 7, .external_lex_state = 2}, - [1547] = {.lex_state = 7, .external_lex_state = 2}, - [1548] = {.lex_state = 7, .external_lex_state = 2}, - [1549] = {.lex_state = 7, .external_lex_state = 2}, - [1550] = {.lex_state = 7, .external_lex_state = 2}, - [1551] = {.lex_state = 7, .external_lex_state = 2}, - [1552] = {.lex_state = 13}, - [1553] = {.lex_state = 7, .external_lex_state = 2}, - [1554] = {.lex_state = 7, .external_lex_state = 2}, - [1555] = {.lex_state = 7, .external_lex_state = 2}, - [1556] = {.lex_state = 7, .external_lex_state = 2}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 2}, - [1559] = {.lex_state = 7, .external_lex_state = 2}, - [1560] = {.lex_state = 7, .external_lex_state = 2}, - [1561] = {.lex_state = 7, .external_lex_state = 2}, - [1562] = {.lex_state = 7, .external_lex_state = 2}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 2}, - [1565] = {.lex_state = 7, .external_lex_state = 2}, - [1566] = {.lex_state = 7, .external_lex_state = 2}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 2}, - [1569] = {.lex_state = 7, .external_lex_state = 2}, - [1570] = {.lex_state = 7, .external_lex_state = 2}, - [1571] = {.lex_state = 7, .external_lex_state = 2}, - [1572] = {.lex_state = 7, .external_lex_state = 2}, - [1573] = {.lex_state = 7, .external_lex_state = 2}, - [1574] = {.lex_state = 7, .external_lex_state = 2}, - [1575] = {.lex_state = 7, .external_lex_state = 2}, - [1576] = {.lex_state = 7, .external_lex_state = 2}, - [1577] = {.lex_state = 7, .external_lex_state = 2}, - [1578] = {.lex_state = 13}, - [1579] = {.lex_state = 7, .external_lex_state = 2}, - [1580] = {.lex_state = 13}, - [1581] = {.lex_state = 7, .external_lex_state = 2}, - [1582] = {.lex_state = 7, .external_lex_state = 2}, - [1583] = {.lex_state = 7, .external_lex_state = 2}, - [1584] = {.lex_state = 7, .external_lex_state = 2}, - [1585] = {.lex_state = 13}, - [1586] = {.lex_state = 7, .external_lex_state = 2}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 2}, - [1589] = {.lex_state = 13}, - [1590] = {.lex_state = 7, .external_lex_state = 2}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 2}, - [1594] = {.lex_state = 7, .external_lex_state = 2}, - [1595] = {.lex_state = 7, .external_lex_state = 2}, - [1596] = {.lex_state = 7, .external_lex_state = 2}, - [1597] = {.lex_state = 7, .external_lex_state = 2}, - [1598] = {.lex_state = 7, .external_lex_state = 2}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 2}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 13}, - [1606] = {.lex_state = 7, .external_lex_state = 2}, - [1607] = {.lex_state = 7, .external_lex_state = 2}, - [1608] = {.lex_state = 7, .external_lex_state = 2}, - [1609] = {.lex_state = 7, .external_lex_state = 2}, - [1610] = {.lex_state = 7, .external_lex_state = 2}, - [1611] = {.lex_state = 7, .external_lex_state = 2}, - [1612] = {.lex_state = 7, .external_lex_state = 2}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 13}, - [1615] = {.lex_state = 13}, - [1616] = {.lex_state = 7, .external_lex_state = 2}, - [1617] = {.lex_state = 7, .external_lex_state = 2}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 2}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 13, .external_lex_state = 4}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 2}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 13, .external_lex_state = 4}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 2}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 2}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 13, .external_lex_state = 4}, - [1647] = {.lex_state = 13, .external_lex_state = 4}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 2}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 2}, - [1667] = {.lex_state = 7, .external_lex_state = 2}, - [1668] = {.lex_state = 7, .external_lex_state = 2}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 2}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 2}, - [1697] = {.lex_state = 7, .external_lex_state = 2}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 2}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 2}, - [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 2}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 2}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 2}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 2}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 3}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 3}, - [1731] = {.lex_state = 7, .external_lex_state = 3}, - [1732] = {.lex_state = 7, .external_lex_state = 3}, - [1733] = {.lex_state = 7, .external_lex_state = 3}, - [1734] = {.lex_state = 7, .external_lex_state = 3}, - [1735] = {.lex_state = 7, .external_lex_state = 3}, - [1736] = {.lex_state = 7, .external_lex_state = 3}, - [1737] = {.lex_state = 7, .external_lex_state = 3}, - [1738] = {.lex_state = 8, .external_lex_state = 2}, - [1739] = {.lex_state = 7, .external_lex_state = 2}, - [1740] = {.lex_state = 7, .external_lex_state = 3}, - [1741] = {.lex_state = 7, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 7, .external_lex_state = 2}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 7, .external_lex_state = 2}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 2}, - [1750] = {.lex_state = 7, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 3}, - [1753] = {.lex_state = 7, .external_lex_state = 3}, - [1754] = {.lex_state = 7, .external_lex_state = 2}, - [1755] = {.lex_state = 7, .external_lex_state = 2}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 2}, - [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 2}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 2}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 7, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 7, .external_lex_state = 3}, - [1770] = {.lex_state = 7, .external_lex_state = 3}, - [1771] = {.lex_state = 7, .external_lex_state = 3}, - [1772] = {.lex_state = 7, .external_lex_state = 3}, - [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 7, .external_lex_state = 3}, - [1775] = {.lex_state = 7, .external_lex_state = 3}, - [1776] = {.lex_state = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 7, .external_lex_state = 2}, - [1779] = {.lex_state = 13, .external_lex_state = 4}, - [1780] = {.lex_state = 7, .external_lex_state = 2}, - [1781] = {.lex_state = 7, .external_lex_state = 2}, - [1782] = {.lex_state = 7, .external_lex_state = 3}, - [1783] = {.lex_state = 7, .external_lex_state = 3}, - [1784] = {.lex_state = 7, .external_lex_state = 2}, - [1785] = {.lex_state = 7, .external_lex_state = 3}, - [1786] = {.lex_state = 7, .external_lex_state = 2}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 7, .external_lex_state = 2}, - [1789] = {.lex_state = 7, .external_lex_state = 2}, - [1790] = {.lex_state = 7, .external_lex_state = 3}, - [1791] = {.lex_state = 7, .external_lex_state = 3}, - [1792] = {.lex_state = 7, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 2}, - [1794] = {.lex_state = 7, .external_lex_state = 3}, - [1795] = {.lex_state = 7, .external_lex_state = 2}, - [1796] = {.lex_state = 7, .external_lex_state = 2}, - [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 7, .external_lex_state = 2}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 7, .external_lex_state = 3}, - [1803] = {.lex_state = 7, .external_lex_state = 2}, - [1804] = {.lex_state = 13, .external_lex_state = 4}, - [1805] = {.lex_state = 7, .external_lex_state = 2}, - [1806] = {.lex_state = 7, .external_lex_state = 2}, - [1807] = {.lex_state = 7, .external_lex_state = 2}, - [1808] = {.lex_state = 7, .external_lex_state = 2}, - [1809] = {.lex_state = 8, .external_lex_state = 3}, - [1810] = {.lex_state = 7, .external_lex_state = 3}, - [1811] = {.lex_state = 7, .external_lex_state = 2}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 7, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 2}, - [1815] = {.lex_state = 7, .external_lex_state = 2}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 3}, - [1819] = {.lex_state = 13, .external_lex_state = 4}, - [1820] = {.lex_state = 7, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 2}, - [1822] = {.lex_state = 13, .external_lex_state = 4}, - [1823] = {.lex_state = 7, .external_lex_state = 2}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, - [1825] = {.lex_state = 7, .external_lex_state = 2}, - [1826] = {.lex_state = 7, .external_lex_state = 2}, - [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 2}, - [1829] = {.lex_state = 7, .external_lex_state = 3}, - [1830] = {.lex_state = 7, .external_lex_state = 3}, - [1831] = {.lex_state = 7, .external_lex_state = 3}, - [1832] = {.lex_state = 7, .external_lex_state = 3}, - [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 7, .external_lex_state = 2}, - [1835] = {.lex_state = 7, .external_lex_state = 3}, - [1836] = {.lex_state = 7, .external_lex_state = 3}, - [1837] = {.lex_state = 7, .external_lex_state = 3}, - [1838] = {.lex_state = 7, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, - [1841] = {.lex_state = 7, .external_lex_state = 3}, - [1842] = {.lex_state = 7, .external_lex_state = 3}, - [1843] = {.lex_state = 7, .external_lex_state = 2}, - [1844] = {.lex_state = 7, .external_lex_state = 3}, - [1845] = {.lex_state = 7, .external_lex_state = 3}, - [1846] = {.lex_state = 7, .external_lex_state = 3}, - [1847] = {.lex_state = 7, .external_lex_state = 3}, - [1848] = {.lex_state = 7, .external_lex_state = 2}, - [1849] = {.lex_state = 7, .external_lex_state = 2}, - [1850] = {.lex_state = 7, .external_lex_state = 3}, - [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 7, .external_lex_state = 3}, - [1853] = {.lex_state = 7, .external_lex_state = 3}, - [1854] = {.lex_state = 7, .external_lex_state = 3}, - [1855] = {.lex_state = 7, .external_lex_state = 2}, - [1856] = {.lex_state = 7, .external_lex_state = 2}, - [1857] = {.lex_state = 7, .external_lex_state = 3}, - [1858] = {.lex_state = 7, .external_lex_state = 3}, - [1859] = {.lex_state = 7, .external_lex_state = 3}, - [1860] = {.lex_state = 7, .external_lex_state = 3}, - [1861] = {.lex_state = 7, .external_lex_state = 3}, - [1862] = {.lex_state = 13, .external_lex_state = 4}, - [1863] = {.lex_state = 7, .external_lex_state = 3}, - [1864] = {.lex_state = 7, .external_lex_state = 3}, - [1865] = {.lex_state = 13, .external_lex_state = 4}, - [1866] = {.lex_state = 7, .external_lex_state = 2}, - [1867] = {.lex_state = 7, .external_lex_state = 3}, - [1868] = {.lex_state = 7, .external_lex_state = 2}, - [1869] = {.lex_state = 7, .external_lex_state = 2}, - [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 7, .external_lex_state = 3}, - [1872] = {.lex_state = 7, .external_lex_state = 2}, - [1873] = {.lex_state = 7, .external_lex_state = 2}, - [1874] = {.lex_state = 7, .external_lex_state = 3}, - [1875] = {.lex_state = 7, .external_lex_state = 3}, - [1876] = {.lex_state = 7, .external_lex_state = 3}, - [1877] = {.lex_state = 7, .external_lex_state = 2}, - [1878] = {.lex_state = 7, .external_lex_state = 3}, - [1879] = {.lex_state = 7, .external_lex_state = 3}, - [1880] = {.lex_state = 7, .external_lex_state = 3}, - [1881] = {.lex_state = 7, .external_lex_state = 2}, - [1882] = {.lex_state = 7, .external_lex_state = 3}, - [1883] = {.lex_state = 7, .external_lex_state = 3}, - [1884] = {.lex_state = 7, .external_lex_state = 2}, - [1885] = {.lex_state = 7, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 8, .external_lex_state = 3}, - [1888] = {.lex_state = 7, .external_lex_state = 3}, - [1889] = {.lex_state = 7, .external_lex_state = 2}, - [1890] = {.lex_state = 7, .external_lex_state = 3}, - [1891] = {.lex_state = 7, .external_lex_state = 3}, - [1892] = {.lex_state = 7, .external_lex_state = 3}, - [1893] = {.lex_state = 7, .external_lex_state = 3}, - [1894] = {.lex_state = 12, .external_lex_state = 4}, - [1895] = {.lex_state = 7, .external_lex_state = 2}, - [1896] = {.lex_state = 13, .external_lex_state = 4}, - [1897] = {.lex_state = 13, .external_lex_state = 4}, - [1898] = {.lex_state = 7, .external_lex_state = 2}, - [1899] = {.lex_state = 7, .external_lex_state = 2}, - [1900] = {.lex_state = 7, .external_lex_state = 2}, - [1901] = {.lex_state = 7, .external_lex_state = 2}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 7, .external_lex_state = 3}, - [1904] = {.lex_state = 7, .external_lex_state = 3}, - [1905] = {.lex_state = 7, .external_lex_state = 3}, - [1906] = {.lex_state = 13, .external_lex_state = 4}, - [1907] = {.lex_state = 7, .external_lex_state = 3}, - [1908] = {.lex_state = 7, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 2}, - [1910] = {.lex_state = 13, .external_lex_state = 4}, - [1911] = {.lex_state = 7, .external_lex_state = 3}, - [1912] = {.lex_state = 7, .external_lex_state = 2}, - [1913] = {.lex_state = 7, .external_lex_state = 3}, - [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 13, .external_lex_state = 4}, - [1916] = {.lex_state = 7, .external_lex_state = 2}, - [1917] = {.lex_state = 7, .external_lex_state = 3}, - [1918] = {.lex_state = 7, .external_lex_state = 3}, - [1919] = {.lex_state = 7, .external_lex_state = 2}, - [1920] = {.lex_state = 7, .external_lex_state = 3}, - [1921] = {.lex_state = 7, .external_lex_state = 3}, - [1922] = {.lex_state = 7, .external_lex_state = 3}, - [1923] = {.lex_state = 7, .external_lex_state = 3}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 2}, - [1926] = {.lex_state = 7, .external_lex_state = 3}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 7, .external_lex_state = 3}, - [1929] = {.lex_state = 7, .external_lex_state = 3}, - [1930] = {.lex_state = 7, .external_lex_state = 3}, - [1931] = {.lex_state = 7, .external_lex_state = 2}, - [1932] = {.lex_state = 7, .external_lex_state = 3}, - [1933] = {.lex_state = 7, .external_lex_state = 2}, - [1934] = {.lex_state = 7, .external_lex_state = 2}, - [1935] = {.lex_state = 7, .external_lex_state = 2}, - [1936] = {.lex_state = 7, .external_lex_state = 2}, - [1937] = {.lex_state = 7, .external_lex_state = 3}, - [1938] = {.lex_state = 7, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 3}, - [1940] = {.lex_state = 7, .external_lex_state = 2}, - [1941] = {.lex_state = 7, .external_lex_state = 2}, - [1942] = {.lex_state = 7, .external_lex_state = 2}, - [1943] = {.lex_state = 7, .external_lex_state = 3}, - [1944] = {.lex_state = 7, .external_lex_state = 3}, - [1945] = {.lex_state = 7, .external_lex_state = 2}, - [1946] = {.lex_state = 7, .external_lex_state = 2}, - [1947] = {.lex_state = 7, .external_lex_state = 3}, - [1948] = {.lex_state = 7, .external_lex_state = 2}, - [1949] = {.lex_state = 7, .external_lex_state = 3}, - [1950] = {.lex_state = 7, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 2}, - [1952] = {.lex_state = 7, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 2}, - [1954] = {.lex_state = 7, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 7, .external_lex_state = 2}, - [1957] = {.lex_state = 7, .external_lex_state = 2}, - [1958] = {.lex_state = 7, .external_lex_state = 2}, - [1959] = {.lex_state = 7, .external_lex_state = 3}, - [1960] = {.lex_state = 7, .external_lex_state = 3}, - [1961] = {.lex_state = 7, .external_lex_state = 3}, - [1962] = {.lex_state = 7, .external_lex_state = 2}, - [1963] = {.lex_state = 7, .external_lex_state = 2}, - [1964] = {.lex_state = 7, .external_lex_state = 3}, - [1965] = {.lex_state = 7, .external_lex_state = 3}, - [1966] = {.lex_state = 7, .external_lex_state = 3}, - [1967] = {.lex_state = 7, .external_lex_state = 2}, - [1968] = {.lex_state = 7, .external_lex_state = 3}, - [1969] = {.lex_state = 7, .external_lex_state = 3}, - [1970] = {.lex_state = 7, .external_lex_state = 2}, - [1971] = {.lex_state = 7, .external_lex_state = 3}, - [1972] = {.lex_state = 7, .external_lex_state = 2}, - [1973] = {.lex_state = 7, .external_lex_state = 2}, - [1974] = {.lex_state = 7, .external_lex_state = 2}, - [1975] = {.lex_state = 7, .external_lex_state = 2}, - [1976] = {.lex_state = 7, .external_lex_state = 3}, - [1977] = {.lex_state = 7, .external_lex_state = 3}, - [1978] = {.lex_state = 7, .external_lex_state = 2}, - [1979] = {.lex_state = 7, .external_lex_state = 2}, - [1980] = {.lex_state = 7, .external_lex_state = 3}, - [1981] = {.lex_state = 7, .external_lex_state = 2}, - [1982] = {.lex_state = 7, .external_lex_state = 2}, - [1983] = {.lex_state = 13, .external_lex_state = 4}, - [1984] = {.lex_state = 7, .external_lex_state = 2}, - [1985] = {.lex_state = 7, .external_lex_state = 2}, - [1986] = {.lex_state = 7, .external_lex_state = 2}, - [1987] = {.lex_state = 7, .external_lex_state = 2}, - [1988] = {.lex_state = 7, .external_lex_state = 2}, - [1989] = {.lex_state = 7, .external_lex_state = 2}, - [1990] = {.lex_state = 7, .external_lex_state = 2}, - [1991] = {.lex_state = 13, .external_lex_state = 4}, - [1992] = {.lex_state = 7, .external_lex_state = 3}, - [1993] = {.lex_state = 13, .external_lex_state = 4}, - [1994] = {.lex_state = 7, .external_lex_state = 2}, - [1995] = {.lex_state = 7, .external_lex_state = 2}, - [1996] = {.lex_state = 7, .external_lex_state = 3}, - [1997] = {.lex_state = 7, .external_lex_state = 2}, - [1998] = {.lex_state = 7, .external_lex_state = 2}, - [1999] = {.lex_state = 13, .external_lex_state = 4}, - [2000] = {.lex_state = 7, .external_lex_state = 2}, - [2001] = {.lex_state = 8, .external_lex_state = 2}, - [2002] = {.lex_state = 7, .external_lex_state = 2}, - [2003] = {.lex_state = 7, .external_lex_state = 2}, - [2004] = {.lex_state = 7, .external_lex_state = 2}, - [2005] = {.lex_state = 7, .external_lex_state = 2}, - [2006] = {.lex_state = 7, .external_lex_state = 2}, - [2007] = {.lex_state = 7, .external_lex_state = 2}, - [2008] = {.lex_state = 7, .external_lex_state = 2}, - [2009] = {.lex_state = 7, .external_lex_state = 2}, - [2010] = {.lex_state = 7, .external_lex_state = 2}, - [2011] = {.lex_state = 13, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 2}, - [2013] = {.lex_state = 13, .external_lex_state = 4}, - [2014] = {.lex_state = 7, .external_lex_state = 2}, - [2015] = {.lex_state = 7, .external_lex_state = 2}, - [2016] = {.lex_state = 7, .external_lex_state = 2}, - [2017] = {.lex_state = 7, .external_lex_state = 2}, - [2018] = {.lex_state = 7, .external_lex_state = 2}, - [2019] = {.lex_state = 7, .external_lex_state = 2}, - [2020] = {.lex_state = 13, .external_lex_state = 4}, - [2021] = {.lex_state = 7, .external_lex_state = 2}, - [2022] = {.lex_state = 7, .external_lex_state = 2}, - [2023] = {.lex_state = 7, .external_lex_state = 2}, - [2024] = {.lex_state = 7, .external_lex_state = 2}, - [2025] = {.lex_state = 7, .external_lex_state = 2}, - [2026] = {.lex_state = 7, .external_lex_state = 2}, - [2027] = {.lex_state = 7, .external_lex_state = 2}, - [2028] = {.lex_state = 7, .external_lex_state = 2}, - [2029] = {.lex_state = 7, .external_lex_state = 2}, - [2030] = {.lex_state = 13}, - [2031] = {.lex_state = 13}, - [2032] = {.lex_state = 7, .external_lex_state = 2}, - [2033] = {.lex_state = 13, .external_lex_state = 4}, - [2034] = {.lex_state = 7, .external_lex_state = 3}, - [2035] = {.lex_state = 7, .external_lex_state = 2}, - [2036] = {.lex_state = 13, .external_lex_state = 4}, - [2037] = {.lex_state = 13}, - [2038] = {.lex_state = 13, .external_lex_state = 4}, - [2039] = {.lex_state = 99}, - [2040] = {.lex_state = 7, .external_lex_state = 2}, - [2041] = {.lex_state = 7, .external_lex_state = 2}, - [2042] = {.lex_state = 13, .external_lex_state = 4}, - [2043] = {.lex_state = 13}, - [2044] = {.lex_state = 7, .external_lex_state = 3}, - [2045] = {.lex_state = 7, .external_lex_state = 2}, - [2046] = {.lex_state = 99}, - [2047] = {.lex_state = 7, .external_lex_state = 2}, - [2048] = {.lex_state = 13, .external_lex_state = 4}, - [2049] = {.lex_state = 7, .external_lex_state = 2}, - [2050] = {.lex_state = 7, .external_lex_state = 2}, - [2051] = {.lex_state = 13, .external_lex_state = 4}, - [2052] = {.lex_state = 7, .external_lex_state = 2}, - [2053] = {.lex_state = 7, .external_lex_state = 2}, - [2054] = {.lex_state = 7, .external_lex_state = 2}, - [2055] = {.lex_state = 13, .external_lex_state = 4}, - [2056] = {.lex_state = 13}, - [2057] = {.lex_state = 13, .external_lex_state = 4}, - [2058] = {.lex_state = 7, .external_lex_state = 2}, - [2059] = {.lex_state = 7, .external_lex_state = 2}, - [2060] = {.lex_state = 7, .external_lex_state = 2}, - [2061] = {.lex_state = 7, .external_lex_state = 3}, - [2062] = {.lex_state = 13}, - [2063] = {.lex_state = 7, .external_lex_state = 2}, - [2064] = {.lex_state = 7, .external_lex_state = 2}, - [2065] = {.lex_state = 7, .external_lex_state = 2}, - [2066] = {.lex_state = 13}, - [2067] = {.lex_state = 13, .external_lex_state = 4}, - [2068] = {.lex_state = 13, .external_lex_state = 4}, - [2069] = {.lex_state = 13}, - [2070] = {.lex_state = 13}, - [2071] = {.lex_state = 13, .external_lex_state = 4}, - [2072] = {.lex_state = 13, .external_lex_state = 4}, - [2073] = {.lex_state = 13, .external_lex_state = 4}, - [2074] = {.lex_state = 13, .external_lex_state = 4}, - [2075] = {.lex_state = 13, .external_lex_state = 4}, - [2076] = {.lex_state = 8, .external_lex_state = 2}, - [2077] = {.lex_state = 13, .external_lex_state = 4}, - [2078] = {.lex_state = 13, .external_lex_state = 4}, - [2079] = {.lex_state = 7, .external_lex_state = 2}, - [2080] = {.lex_state = 13}, - [2081] = {.lex_state = 13, .external_lex_state = 4}, - [2082] = {.lex_state = 13, .external_lex_state = 4}, - [2083] = {.lex_state = 13}, - [2084] = {.lex_state = 13, .external_lex_state = 4}, - [2085] = {.lex_state = 13, .external_lex_state = 4}, - [2086] = {.lex_state = 13, .external_lex_state = 4}, - [2087] = {.lex_state = 13, .external_lex_state = 4}, - [2088] = {.lex_state = 13, .external_lex_state = 4}, - [2089] = {.lex_state = 7, .external_lex_state = 2}, - [2090] = {.lex_state = 13, .external_lex_state = 4}, - [2091] = {.lex_state = 13}, - [2092] = {.lex_state = 13}, - [2093] = {.lex_state = 13, .external_lex_state = 4}, - [2094] = {.lex_state = 99}, - [2095] = {.lex_state = 13, .external_lex_state = 4}, - [2096] = {.lex_state = 13}, - [2097] = {.lex_state = 7, .external_lex_state = 2}, - [2098] = {.lex_state = 13}, - [2099] = {.lex_state = 13}, - [2100] = {.lex_state = 13}, - [2101] = {.lex_state = 7, .external_lex_state = 2}, - [2102] = {.lex_state = 13, .external_lex_state = 4}, - [2103] = {.lex_state = 13}, - [2104] = {.lex_state = 13, .external_lex_state = 4}, - [2105] = {.lex_state = 13, .external_lex_state = 4}, - [2106] = {.lex_state = 13, .external_lex_state = 4}, - [2107] = {.lex_state = 13, .external_lex_state = 4}, - [2108] = {.lex_state = 7, .external_lex_state = 2}, - [2109] = {.lex_state = 13}, - [2110] = {.lex_state = 13, .external_lex_state = 4}, - [2111] = {.lex_state = 13, .external_lex_state = 4}, - [2112] = {.lex_state = 13}, - [2113] = {.lex_state = 13}, - [2114] = {.lex_state = 13, .external_lex_state = 4}, - [2115] = {.lex_state = 13, .external_lex_state = 4}, - [2116] = {.lex_state = 13, .external_lex_state = 4}, - [2117] = {.lex_state = 13, .external_lex_state = 4}, - [2118] = {.lex_state = 13, .external_lex_state = 4}, - [2119] = {.lex_state = 13, .external_lex_state = 4}, - [2120] = {.lex_state = 13, .external_lex_state = 4}, - [2121] = {.lex_state = 13, .external_lex_state = 4}, - [2122] = {.lex_state = 13, .external_lex_state = 4}, - [2123] = {.lex_state = 13, .external_lex_state = 4}, - [2124] = {.lex_state = 13}, - [2125] = {.lex_state = 13, .external_lex_state = 4}, - [2126] = {.lex_state = 13, .external_lex_state = 4}, - [2127] = {.lex_state = 13}, - [2128] = {.lex_state = 13, .external_lex_state = 4}, - [2129] = {.lex_state = 13, .external_lex_state = 4}, - [2130] = {.lex_state = 13, .external_lex_state = 4}, - [2131] = {.lex_state = 13, .external_lex_state = 4}, - [2132] = {.lex_state = 13, .external_lex_state = 4}, - [2133] = {.lex_state = 13, .external_lex_state = 4}, - [2134] = {.lex_state = 13, .external_lex_state = 4}, - [2135] = {.lex_state = 13}, - [2136] = {.lex_state = 13, .external_lex_state = 4}, - [2137] = {.lex_state = 13}, - [2138] = {.lex_state = 13, .external_lex_state = 4}, - [2139] = {.lex_state = 13, .external_lex_state = 4}, - [2140] = {.lex_state = 13, .external_lex_state = 4}, - [2141] = {.lex_state = 13, .external_lex_state = 4}, - [2142] = {.lex_state = 13}, - [2143] = {.lex_state = 13, .external_lex_state = 4}, - [2144] = {.lex_state = 99}, - [2145] = {.lex_state = 13}, - [2146] = {.lex_state = 13, .external_lex_state = 4}, - [2147] = {.lex_state = 13, .external_lex_state = 4}, - [2148] = {.lex_state = 13}, - [2149] = {.lex_state = 13}, - [2150] = {.lex_state = 13, .external_lex_state = 4}, - [2151] = {.lex_state = 13, .external_lex_state = 4}, - [2152] = {.lex_state = 13}, - [2153] = {.lex_state = 99, .external_lex_state = 4}, - [2154] = {.lex_state = 99, .external_lex_state = 4}, - [2155] = {.lex_state = 13}, - [2156] = {.lex_state = 99, .external_lex_state = 4}, - [2157] = {.lex_state = 13, .external_lex_state = 4}, - [2158] = {.lex_state = 13, .external_lex_state = 4}, - [2159] = {.lex_state = 99, .external_lex_state = 4}, - [2160] = {.lex_state = 13}, - [2161] = {.lex_state = 13}, - [2162] = {.lex_state = 13}, - [2163] = {.lex_state = 99, .external_lex_state = 4}, - [2164] = {.lex_state = 13}, - [2165] = {.lex_state = 13}, - [2166] = {.lex_state = 13}, - [2167] = {.lex_state = 13}, - [2168] = {.lex_state = 13}, - [2169] = {.lex_state = 13}, - [2170] = {.lex_state = 13}, - [2171] = {.lex_state = 13}, - [2172] = {.lex_state = 13}, - [2173] = {.lex_state = 13}, - [2174] = {.lex_state = 13}, - [2175] = {.lex_state = 13}, - [2176] = {.lex_state = 13}, - [2177] = {.lex_state = 13}, - [2178] = {.lex_state = 99, .external_lex_state = 4}, - [2179] = {.lex_state = 13}, - [2180] = {.lex_state = 13}, - [2181] = {.lex_state = 99}, - [2182] = {.lex_state = 13}, - [2183] = {.lex_state = 99}, - [2184] = {.lex_state = 13}, - [2185] = {.lex_state = 99}, - [2186] = {.lex_state = 99}, - [2187] = {.lex_state = 13}, - [2188] = {.lex_state = 99}, - [2189] = {.lex_state = 13}, - [2190] = {.lex_state = 13, .external_lex_state = 4}, - [2191] = {.lex_state = 13, .external_lex_state = 4}, - [2192] = {.lex_state = 13}, - [2193] = {.lex_state = 13, .external_lex_state = 4}, - [2194] = {.lex_state = 13, .external_lex_state = 4}, - [2195] = {.lex_state = 13, .external_lex_state = 4}, - [2196] = {.lex_state = 13, .external_lex_state = 4}, - [2197] = {.lex_state = 13, .external_lex_state = 4}, - [2198] = {.lex_state = 13, .external_lex_state = 4}, - [2199] = {.lex_state = 13}, - [2200] = {.lex_state = 13}, - [2201] = {.lex_state = 13, .external_lex_state = 4}, - [2202] = {.lex_state = 13}, - [2203] = {.lex_state = 13}, - [2204] = {.lex_state = 13, .external_lex_state = 4}, - [2205] = {.lex_state = 13}, - [2206] = {.lex_state = 13, .external_lex_state = 4}, - [2207] = {.lex_state = 13, .external_lex_state = 4}, - [2208] = {.lex_state = 13, .external_lex_state = 4}, - [2209] = {.lex_state = 13, .external_lex_state = 4}, - [2210] = {.lex_state = 13}, - [2211] = {.lex_state = 13}, - [2212] = {.lex_state = 13, .external_lex_state = 4}, - [2213] = {.lex_state = 13, .external_lex_state = 4}, - [2214] = {.lex_state = 13, .external_lex_state = 4}, - [2215] = {.lex_state = 13, .external_lex_state = 4}, - [2216] = {.lex_state = 13, .external_lex_state = 4}, - [2217] = {.lex_state = 13}, - [2218] = {.lex_state = 13, .external_lex_state = 4}, - [2219] = {.lex_state = 13}, - [2220] = {.lex_state = 13}, - [2221] = {.lex_state = 13, .external_lex_state = 4}, - [2222] = {.lex_state = 13, .external_lex_state = 4}, - [2223] = {.lex_state = 13, .external_lex_state = 4}, - [2224] = {.lex_state = 13, .external_lex_state = 4}, - [2225] = {.lex_state = 13, .external_lex_state = 4}, - [2226] = {.lex_state = 13, .external_lex_state = 4}, - [2227] = {.lex_state = 13, .external_lex_state = 4}, - [2228] = {.lex_state = 13}, - [2229] = {.lex_state = 13}, - [2230] = {.lex_state = 13}, - [2231] = {.lex_state = 13}, - [2232] = {.lex_state = 13}, - [2233] = {.lex_state = 13}, - [2234] = {.lex_state = 13}, - [2235] = {.lex_state = 13}, - [2236] = {.lex_state = 13}, - [2237] = {.lex_state = 13}, - [2238] = {.lex_state = 13}, - [2239] = {.lex_state = 13, .external_lex_state = 4}, - [2240] = {.lex_state = 13}, - [2241] = {.lex_state = 13}, - [2242] = {.lex_state = 13}, - [2243] = {.lex_state = 13}, - [2244] = {.lex_state = 13}, - [2245] = {.lex_state = 13}, - [2246] = {.lex_state = 13}, - [2247] = {.lex_state = 13, .external_lex_state = 4}, - [2248] = {.lex_state = 13}, - [2249] = {.lex_state = 13}, - [2250] = {.lex_state = 99}, - [2251] = {.lex_state = 99}, - [2252] = {.lex_state = 13}, - [2253] = {.lex_state = 99}, - [2254] = {.lex_state = 99}, - [2255] = {.lex_state = 13}, - [2256] = {.lex_state = 99}, - [2257] = {.lex_state = 99}, - [2258] = {.lex_state = 99}, - [2259] = {.lex_state = 13}, - [2260] = {.lex_state = 13}, - [2261] = {.lex_state = 13}, - [2262] = {.lex_state = 99}, - [2263] = {.lex_state = 13}, - [2264] = {.lex_state = 13}, - [2265] = {.lex_state = 13}, - [2266] = {.lex_state = 99}, - [2267] = {.lex_state = 99}, - [2268] = {.lex_state = 99}, - [2269] = {.lex_state = 99}, - [2270] = {.lex_state = 99}, - [2271] = {.lex_state = 13}, - [2272] = {.lex_state = 99}, - [2273] = {.lex_state = 99}, - [2274] = {.lex_state = 99}, - [2275] = {.lex_state = 99}, - [2276] = {.lex_state = 99}, - [2277] = {.lex_state = 99}, - [2278] = {.lex_state = 99}, - [2279] = {.lex_state = 99}, - [2280] = {.lex_state = 99}, - [2281] = {.lex_state = 13}, - [2282] = {.lex_state = 99}, - [2283] = {.lex_state = 99}, - [2284] = {.lex_state = 99}, - [2285] = {.lex_state = 99}, - [2286] = {.lex_state = 99}, - [2287] = {.lex_state = 99}, - [2288] = {.lex_state = 99}, - [2289] = {.lex_state = 99}, - [2290] = {.lex_state = 99}, - [2291] = {.lex_state = 99}, - [2292] = {.lex_state = 99}, - [2293] = {.lex_state = 99}, - [2294] = {.lex_state = 99}, - [2295] = {.lex_state = 99}, - [2296] = {.lex_state = 99}, - [2297] = {.lex_state = 99}, - [2298] = {.lex_state = 99}, - [2299] = {.lex_state = 99}, - [2300] = {.lex_state = 99}, - [2301] = {.lex_state = 99}, - [2302] = {.lex_state = 99}, - [2303] = {.lex_state = 99}, - [2304] = {.lex_state = 99}, - [2305] = {.lex_state = 99}, - [2306] = {.lex_state = 99}, - [2307] = {.lex_state = 99}, - [2308] = {.lex_state = 99}, - [2309] = {.lex_state = 99}, - [2310] = {.lex_state = 99}, - [2311] = {.lex_state = 99}, - [2312] = {.lex_state = 99}, - [2313] = {.lex_state = 99}, - [2314] = {.lex_state = 99}, - [2315] = {.lex_state = 99}, - [2316] = {.lex_state = 99}, - [2317] = {.lex_state = 99}, - [2318] = {.lex_state = 99}, - [2319] = {.lex_state = 99}, - [2320] = {.lex_state = 99}, - [2321] = {.lex_state = 99}, - [2322] = {.lex_state = 99}, - [2323] = {.lex_state = 16}, - [2324] = {.lex_state = 16}, - [2325] = {.lex_state = 16}, - [2326] = {.lex_state = 16}, - [2327] = {.lex_state = 16}, - [2328] = {.lex_state = 16}, - [2329] = {.lex_state = 16}, - [2330] = {.lex_state = 16}, - [2331] = {.lex_state = 16}, - [2332] = {.lex_state = 16}, - [2333] = {.lex_state = 16}, - [2334] = {.lex_state = 16}, - [2335] = {.lex_state = 16}, - [2336] = {.lex_state = 16}, - [2337] = {.lex_state = 16}, - [2338] = {.lex_state = 16}, - [2339] = {.lex_state = 12}, - [2340] = {.lex_state = 16}, - [2341] = {.lex_state = 99}, - [2342] = {.lex_state = 99}, - [2343] = {.lex_state = 16}, - [2344] = {.lex_state = 99}, - [2345] = {.lex_state = 16}, - [2346] = {.lex_state = 21}, - [2347] = {.lex_state = 12}, - [2348] = {.lex_state = 16}, - [2349] = {.lex_state = 16}, - [2350] = {.lex_state = 16}, - [2351] = {.lex_state = 16}, - [2352] = {.lex_state = 16}, - [2353] = {.lex_state = 16}, - [2354] = {.lex_state = 16}, - [2355] = {.lex_state = 16}, - [2356] = {.lex_state = 16}, - [2357] = {.lex_state = 16}, - [2358] = {.lex_state = 16}, - [2359] = {.lex_state = 16}, - [2360] = {.lex_state = 16}, - [2361] = {.lex_state = 16}, - [2362] = {.lex_state = 16}, - [2363] = {.lex_state = 16}, - [2364] = {.lex_state = 16}, - [2365] = {.lex_state = 16}, - [2366] = {.lex_state = 21}, - [2367] = {.lex_state = 16}, - [2368] = {.lex_state = 16}, - [2369] = {.lex_state = 12}, - [2370] = {.lex_state = 16}, - [2371] = {.lex_state = 12}, - [2372] = {.lex_state = 16}, - [2373] = {.lex_state = 12, .external_lex_state = 4}, - [2374] = {.lex_state = 12, .external_lex_state = 4}, - [2375] = {.lex_state = 99}, - [2376] = {.lex_state = 99}, - [2377] = {.lex_state = 4}, - [2378] = {.lex_state = 99}, - [2379] = {.lex_state = 4}, - [2380] = {.lex_state = 99}, - [2381] = {.lex_state = 99}, - [2382] = {.lex_state = 99}, - [2383] = {.lex_state = 99}, - [2384] = {.lex_state = 99}, - [2385] = {.lex_state = 99}, - [2386] = {.lex_state = 99}, - [2387] = {.lex_state = 99}, - [2388] = {.lex_state = 4}, - [2389] = {.lex_state = 4}, - [2390] = {.lex_state = 4}, - [2391] = {.lex_state = 99}, - [2392] = {.lex_state = 99}, - [2393] = {.lex_state = 99}, - [2394] = {.lex_state = 99}, - [2395] = {.lex_state = 99}, - [2396] = {.lex_state = 99}, - [2397] = {.lex_state = 99}, - [2398] = {.lex_state = 99}, - [2399] = {.lex_state = 99}, - [2400] = {.lex_state = 4}, - [2401] = {.lex_state = 99}, - [2402] = {.lex_state = 99}, - [2403] = {.lex_state = 12, .external_lex_state = 4}, - [2404] = {.lex_state = 99}, - [2405] = {.lex_state = 99}, - [2406] = {.lex_state = 99}, - [2407] = {.lex_state = 99}, - [2408] = {.lex_state = 16, .external_lex_state = 4}, - [2409] = {.lex_state = 16, .external_lex_state = 4}, - [2410] = {.lex_state = 16, .external_lex_state = 4}, - [2411] = {.lex_state = 99}, - [2412] = {.lex_state = 99}, - [2413] = {.lex_state = 99}, - [2414] = {.lex_state = 99}, - [2415] = {.lex_state = 99}, - [2416] = {.lex_state = 4}, - [2417] = {.lex_state = 99}, - [2418] = {.lex_state = 4}, - [2419] = {.lex_state = 16, .external_lex_state = 4}, - [2420] = {.lex_state = 16, .external_lex_state = 4}, - [2421] = {.lex_state = 16, .external_lex_state = 4}, - [2422] = {.lex_state = 16, .external_lex_state = 4}, - [2423] = {.lex_state = 16, .external_lex_state = 4}, - [2424] = {.lex_state = 16, .external_lex_state = 4}, - [2425] = {.lex_state = 16, .external_lex_state = 4}, - [2426] = {.lex_state = 99}, - [2427] = {.lex_state = 99}, - [2428] = {.lex_state = 99}, - [2429] = {.lex_state = 99}, - [2430] = {.lex_state = 16, .external_lex_state = 4}, - [2431] = {.lex_state = 16, .external_lex_state = 4}, - [2432] = {.lex_state = 99}, - [2433] = {.lex_state = 13, .external_lex_state = 4}, - [2434] = {.lex_state = 16, .external_lex_state = 4}, - [2435] = {.lex_state = 99}, - [2436] = {.lex_state = 99}, - [2437] = {.lex_state = 13, .external_lex_state = 4}, - [2438] = {.lex_state = 99}, - [2439] = {.lex_state = 13, .external_lex_state = 4}, - [2440] = {.lex_state = 99}, - [2441] = {.lex_state = 99}, - [2442] = {.lex_state = 16, .external_lex_state = 4}, - [2443] = {.lex_state = 16, .external_lex_state = 4}, + [1141] = {.lex_state = 6, .external_lex_state = 2}, + [1142] = {.lex_state = 6, .external_lex_state = 3}, + [1143] = {.lex_state = 6, .external_lex_state = 2}, + [1144] = {.lex_state = 9, .external_lex_state = 2}, + [1145] = {.lex_state = 6, .external_lex_state = 2}, + [1146] = {.lex_state = 6, .external_lex_state = 3}, + [1147] = {.lex_state = 6, .external_lex_state = 3}, + [1148] = {.lex_state = 103}, + [1149] = {.lex_state = 6, .external_lex_state = 2}, + [1150] = {.lex_state = 103}, + [1151] = {.lex_state = 6, .external_lex_state = 2}, + [1152] = {.lex_state = 103}, + [1153] = {.lex_state = 6, .external_lex_state = 2}, + [1154] = {.lex_state = 6, .external_lex_state = 2}, + [1155] = {.lex_state = 6, .external_lex_state = 2}, + [1156] = {.lex_state = 6, .external_lex_state = 3}, + [1157] = {.lex_state = 6, .external_lex_state = 2}, + [1158] = {.lex_state = 6, .external_lex_state = 2}, + [1159] = {.lex_state = 6, .external_lex_state = 2}, + [1160] = {.lex_state = 6, .external_lex_state = 2}, + [1161] = {.lex_state = 103}, + [1162] = {.lex_state = 103}, + [1163] = {.lex_state = 6, .external_lex_state = 2}, + [1164] = {.lex_state = 6, .external_lex_state = 2}, + [1165] = {.lex_state = 6, .external_lex_state = 2}, + [1166] = {.lex_state = 6, .external_lex_state = 2}, + [1167] = {.lex_state = 6, .external_lex_state = 2}, + [1168] = {.lex_state = 16}, + [1169] = {.lex_state = 16}, + [1170] = {.lex_state = 16}, + [1171] = {.lex_state = 16}, + [1172] = {.lex_state = 16}, + [1173] = {.lex_state = 16}, + [1174] = {.lex_state = 10, .external_lex_state = 3}, + [1175] = {.lex_state = 16}, + [1176] = {.lex_state = 15, .external_lex_state = 4}, + [1177] = {.lex_state = 16}, + [1178] = {.lex_state = 16}, + [1179] = {.lex_state = 15, .external_lex_state = 4}, + [1180] = {.lex_state = 15, .external_lex_state = 4}, + [1181] = {.lex_state = 16}, + [1182] = {.lex_state = 16}, + [1183] = {.lex_state = 16}, + [1184] = {.lex_state = 16}, + [1185] = {.lex_state = 15, .external_lex_state = 4}, + [1186] = {.lex_state = 16}, + [1187] = {.lex_state = 16}, + [1188] = {.lex_state = 16}, + [1189] = {.lex_state = 16}, + [1190] = {.lex_state = 16}, + [1191] = {.lex_state = 16}, + [1192] = {.lex_state = 16}, + [1193] = {.lex_state = 16}, + [1194] = {.lex_state = 16}, + [1195] = {.lex_state = 16}, + [1196] = {.lex_state = 16}, + [1197] = {.lex_state = 15, .external_lex_state = 4}, + [1198] = {.lex_state = 16}, + [1199] = {.lex_state = 15, .external_lex_state = 4}, + [1200] = {.lex_state = 10, .external_lex_state = 3}, + [1201] = {.lex_state = 16}, + [1202] = {.lex_state = 16}, + [1203] = {.lex_state = 15, .external_lex_state = 4}, + [1204] = {.lex_state = 16}, + [1205] = {.lex_state = 16}, + [1206] = {.lex_state = 16}, + [1207] = {.lex_state = 10, .external_lex_state = 3}, + [1208] = {.lex_state = 16}, + [1209] = {.lex_state = 10, .external_lex_state = 2}, + [1210] = {.lex_state = 10, .external_lex_state = 2}, + [1211] = {.lex_state = 10, .external_lex_state = 2}, + [1212] = {.lex_state = 103}, + [1213] = {.lex_state = 10, .external_lex_state = 2}, + [1214] = {.lex_state = 10, .external_lex_state = 2}, + [1215] = {.lex_state = 10, .external_lex_state = 3}, + [1216] = {.lex_state = 10, .external_lex_state = 2}, + [1217] = {.lex_state = 10, .external_lex_state = 2}, + [1218] = {.lex_state = 10, .external_lex_state = 2}, + [1219] = {.lex_state = 103}, + [1220] = {.lex_state = 103}, + [1221] = {.lex_state = 10, .external_lex_state = 2}, + [1222] = {.lex_state = 103}, + [1223] = {.lex_state = 10, .external_lex_state = 3}, + [1224] = {.lex_state = 103}, + [1225] = {.lex_state = 10, .external_lex_state = 3}, + [1226] = {.lex_state = 10, .external_lex_state = 2}, + [1227] = {.lex_state = 10, .external_lex_state = 3}, + [1228] = {.lex_state = 10, .external_lex_state = 2}, + [1229] = {.lex_state = 10, .external_lex_state = 2}, + [1230] = {.lex_state = 103}, + [1231] = {.lex_state = 103}, + [1232] = {.lex_state = 10, .external_lex_state = 2}, + [1233] = {.lex_state = 10, .external_lex_state = 2}, + [1234] = {.lex_state = 10, .external_lex_state = 2}, + [1235] = {.lex_state = 10, .external_lex_state = 2}, + [1236] = {.lex_state = 10, .external_lex_state = 2}, + [1237] = {.lex_state = 10, .external_lex_state = 2}, + [1238] = {.lex_state = 10, .external_lex_state = 2}, + [1239] = {.lex_state = 10, .external_lex_state = 2}, + [1240] = {.lex_state = 10, .external_lex_state = 2}, + [1241] = {.lex_state = 10, .external_lex_state = 2}, + [1242] = {.lex_state = 10, .external_lex_state = 2}, + [1243] = {.lex_state = 10, .external_lex_state = 2}, + [1244] = {.lex_state = 10, .external_lex_state = 2}, + [1245] = {.lex_state = 10, .external_lex_state = 2}, + [1246] = {.lex_state = 10, .external_lex_state = 2}, + [1247] = {.lex_state = 10, .external_lex_state = 2}, + [1248] = {.lex_state = 10, .external_lex_state = 2}, + [1249] = {.lex_state = 10, .external_lex_state = 2}, + [1250] = {.lex_state = 10, .external_lex_state = 2}, + [1251] = {.lex_state = 10, .external_lex_state = 2}, + [1252] = {.lex_state = 10, .external_lex_state = 2}, + [1253] = {.lex_state = 10, .external_lex_state = 2}, + [1254] = {.lex_state = 10, .external_lex_state = 2}, + [1255] = {.lex_state = 10, .external_lex_state = 2}, + [1256] = {.lex_state = 10, .external_lex_state = 2}, + [1257] = {.lex_state = 10, .external_lex_state = 2}, + [1258] = {.lex_state = 10, .external_lex_state = 2}, + [1259] = {.lex_state = 10, .external_lex_state = 2}, + [1260] = {.lex_state = 10, .external_lex_state = 2}, + [1261] = {.lex_state = 10, .external_lex_state = 2}, + [1262] = {.lex_state = 10, .external_lex_state = 2}, + [1263] = {.lex_state = 10, .external_lex_state = 2}, + [1264] = {.lex_state = 10, .external_lex_state = 2}, + [1265] = {.lex_state = 10, .external_lex_state = 2}, + [1266] = {.lex_state = 10, .external_lex_state = 2}, + [1267] = {.lex_state = 10, .external_lex_state = 2}, + [1268] = {.lex_state = 10, .external_lex_state = 2}, + [1269] = {.lex_state = 10, .external_lex_state = 2}, + [1270] = {.lex_state = 10, .external_lex_state = 2}, + [1271] = {.lex_state = 10, .external_lex_state = 2}, + [1272] = {.lex_state = 10, .external_lex_state = 2}, + [1273] = {.lex_state = 10, .external_lex_state = 2}, + [1274] = {.lex_state = 10, .external_lex_state = 3}, + [1275] = {.lex_state = 10, .external_lex_state = 2}, + [1276] = {.lex_state = 10, .external_lex_state = 2}, + [1277] = {.lex_state = 10, .external_lex_state = 2}, + [1278] = {.lex_state = 10, .external_lex_state = 2}, + [1279] = {.lex_state = 10, .external_lex_state = 2}, + [1280] = {.lex_state = 10, .external_lex_state = 2}, + [1281] = {.lex_state = 10, .external_lex_state = 2}, + [1282] = {.lex_state = 10, .external_lex_state = 2}, + [1283] = {.lex_state = 10, .external_lex_state = 2}, + [1284] = {.lex_state = 10, .external_lex_state = 2}, + [1285] = {.lex_state = 10, .external_lex_state = 2}, + [1286] = {.lex_state = 10, .external_lex_state = 2}, + [1287] = {.lex_state = 10, .external_lex_state = 2}, + [1288] = {.lex_state = 10, .external_lex_state = 2}, + [1289] = {.lex_state = 10, .external_lex_state = 2}, + [1290] = {.lex_state = 10, .external_lex_state = 2}, + [1291] = {.lex_state = 10, .external_lex_state = 2}, + [1292] = {.lex_state = 10, .external_lex_state = 2}, + [1293] = {.lex_state = 10, .external_lex_state = 2}, + [1294] = {.lex_state = 10, .external_lex_state = 2}, + [1295] = {.lex_state = 10, .external_lex_state = 2}, + [1296] = {.lex_state = 10, .external_lex_state = 2}, + [1297] = {.lex_state = 10, .external_lex_state = 2}, + [1298] = {.lex_state = 10, .external_lex_state = 2}, + [1299] = {.lex_state = 10, .external_lex_state = 2}, + [1300] = {.lex_state = 10, .external_lex_state = 2}, + [1301] = {.lex_state = 10, .external_lex_state = 2}, + [1302] = {.lex_state = 10, .external_lex_state = 2}, + [1303] = {.lex_state = 10, .external_lex_state = 2}, + [1304] = {.lex_state = 10, .external_lex_state = 2}, + [1305] = {.lex_state = 10, .external_lex_state = 2}, + [1306] = {.lex_state = 10, .external_lex_state = 2}, + [1307] = {.lex_state = 10, .external_lex_state = 2}, + [1308] = {.lex_state = 10, .external_lex_state = 2}, + [1309] = {.lex_state = 10, .external_lex_state = 2}, + [1310] = {.lex_state = 10, .external_lex_state = 2}, + [1311] = {.lex_state = 10, .external_lex_state = 2}, + [1312] = {.lex_state = 10, .external_lex_state = 2}, + [1313] = {.lex_state = 10, .external_lex_state = 2}, + [1314] = {.lex_state = 10, .external_lex_state = 2}, + [1315] = {.lex_state = 10, .external_lex_state = 2}, + [1316] = {.lex_state = 10, .external_lex_state = 2}, + [1317] = {.lex_state = 10, .external_lex_state = 2}, + [1318] = {.lex_state = 10, .external_lex_state = 2}, + [1319] = {.lex_state = 10, .external_lex_state = 2}, + [1320] = {.lex_state = 10, .external_lex_state = 2}, + [1321] = {.lex_state = 10, .external_lex_state = 2}, + [1322] = {.lex_state = 10, .external_lex_state = 2}, + [1323] = {.lex_state = 10, .external_lex_state = 2}, + [1324] = {.lex_state = 10, .external_lex_state = 2}, + [1325] = {.lex_state = 10, .external_lex_state = 2}, + [1326] = {.lex_state = 10, .external_lex_state = 2}, + [1327] = {.lex_state = 10, .external_lex_state = 2}, + [1328] = {.lex_state = 10, .external_lex_state = 3}, + [1329] = {.lex_state = 10, .external_lex_state = 2}, + [1330] = {.lex_state = 10, .external_lex_state = 2}, + [1331] = {.lex_state = 10, .external_lex_state = 2}, + [1332] = {.lex_state = 10, .external_lex_state = 2}, + [1333] = {.lex_state = 10, .external_lex_state = 2}, + [1334] = {.lex_state = 10, .external_lex_state = 2}, + [1335] = {.lex_state = 10, .external_lex_state = 2}, + [1336] = {.lex_state = 10, .external_lex_state = 2}, + [1337] = {.lex_state = 10, .external_lex_state = 2}, + [1338] = {.lex_state = 10, .external_lex_state = 2}, + [1339] = {.lex_state = 10, .external_lex_state = 2}, + [1340] = {.lex_state = 10, .external_lex_state = 2}, + [1341] = {.lex_state = 10, .external_lex_state = 2}, + [1342] = {.lex_state = 10, .external_lex_state = 2}, + [1343] = {.lex_state = 10, .external_lex_state = 2}, + [1344] = {.lex_state = 10, .external_lex_state = 2}, + [1345] = {.lex_state = 10, .external_lex_state = 2}, + [1346] = {.lex_state = 10, .external_lex_state = 2}, + [1347] = {.lex_state = 10, .external_lex_state = 2}, + [1348] = {.lex_state = 10, .external_lex_state = 2}, + [1349] = {.lex_state = 10, .external_lex_state = 2}, + [1350] = {.lex_state = 10, .external_lex_state = 2}, + [1351] = {.lex_state = 10, .external_lex_state = 2}, + [1352] = {.lex_state = 10, .external_lex_state = 2}, + [1353] = {.lex_state = 10, .external_lex_state = 2}, + [1354] = {.lex_state = 10, .external_lex_state = 2}, + [1355] = {.lex_state = 10, .external_lex_state = 2}, + [1356] = {.lex_state = 10, .external_lex_state = 2}, + [1357] = {.lex_state = 10, .external_lex_state = 2}, + [1358] = {.lex_state = 10, .external_lex_state = 2}, + [1359] = {.lex_state = 10, .external_lex_state = 3}, + [1360] = {.lex_state = 10, .external_lex_state = 2}, + [1361] = {.lex_state = 10, .external_lex_state = 2}, + [1362] = {.lex_state = 10, .external_lex_state = 2}, + [1363] = {.lex_state = 10, .external_lex_state = 3}, + [1364] = {.lex_state = 10, .external_lex_state = 2}, + [1365] = {.lex_state = 10, .external_lex_state = 2}, + [1366] = {.lex_state = 10, .external_lex_state = 2}, + [1367] = {.lex_state = 10, .external_lex_state = 3}, + [1368] = {.lex_state = 10, .external_lex_state = 2}, + [1369] = {.lex_state = 10, .external_lex_state = 2}, + [1370] = {.lex_state = 10, .external_lex_state = 2}, + [1371] = {.lex_state = 10, .external_lex_state = 3}, + [1372] = {.lex_state = 10, .external_lex_state = 2}, + [1373] = {.lex_state = 10, .external_lex_state = 2}, + [1374] = {.lex_state = 10, .external_lex_state = 3}, + [1375] = {.lex_state = 10, .external_lex_state = 2}, + [1376] = {.lex_state = 10, .external_lex_state = 3}, + [1377] = {.lex_state = 10, .external_lex_state = 3}, + [1378] = {.lex_state = 10, .external_lex_state = 2}, + [1379] = {.lex_state = 10, .external_lex_state = 2}, + [1380] = {.lex_state = 10, .external_lex_state = 2}, + [1381] = {.lex_state = 10, .external_lex_state = 2}, + [1382] = {.lex_state = 10, .external_lex_state = 3}, + [1383] = {.lex_state = 10, .external_lex_state = 2}, + [1384] = {.lex_state = 10, .external_lex_state = 2}, + [1385] = {.lex_state = 10, .external_lex_state = 2}, + [1386] = {.lex_state = 10, .external_lex_state = 2}, + [1387] = {.lex_state = 10, .external_lex_state = 2}, + [1388] = {.lex_state = 10, .external_lex_state = 2}, + [1389] = {.lex_state = 10, .external_lex_state = 2}, + [1390] = {.lex_state = 10, .external_lex_state = 2}, + [1391] = {.lex_state = 10, .external_lex_state = 3}, + [1392] = {.lex_state = 10, .external_lex_state = 2}, + [1393] = {.lex_state = 10, .external_lex_state = 2}, + [1394] = {.lex_state = 10, .external_lex_state = 2}, + [1395] = {.lex_state = 10, .external_lex_state = 2}, + [1396] = {.lex_state = 10, .external_lex_state = 3}, + [1397] = {.lex_state = 10, .external_lex_state = 2}, + [1398] = {.lex_state = 10, .external_lex_state = 3}, + [1399] = {.lex_state = 10, .external_lex_state = 2}, + [1400] = {.lex_state = 10, .external_lex_state = 2}, + [1401] = {.lex_state = 10, .external_lex_state = 2}, + [1402] = {.lex_state = 10, .external_lex_state = 3}, + [1403] = {.lex_state = 10, .external_lex_state = 2}, + [1404] = {.lex_state = 10, .external_lex_state = 2}, + [1405] = {.lex_state = 10, .external_lex_state = 2}, + [1406] = {.lex_state = 10, .external_lex_state = 2}, + [1407] = {.lex_state = 10, .external_lex_state = 2}, + [1408] = {.lex_state = 10, .external_lex_state = 2}, + [1409] = {.lex_state = 10, .external_lex_state = 3}, + [1410] = {.lex_state = 10, .external_lex_state = 2}, + [1411] = {.lex_state = 10, .external_lex_state = 3}, + [1412] = {.lex_state = 10, .external_lex_state = 2}, + [1413] = {.lex_state = 10, .external_lex_state = 3}, + [1414] = {.lex_state = 10, .external_lex_state = 3}, + [1415] = {.lex_state = 10, .external_lex_state = 3}, + [1416] = {.lex_state = 10, .external_lex_state = 2}, + [1417] = {.lex_state = 10, .external_lex_state = 3}, + [1418] = {.lex_state = 10, .external_lex_state = 2}, + [1419] = {.lex_state = 10, .external_lex_state = 2}, + [1420] = {.lex_state = 10, .external_lex_state = 3}, + [1421] = {.lex_state = 10, .external_lex_state = 2}, + [1422] = {.lex_state = 10, .external_lex_state = 2}, + [1423] = {.lex_state = 10, .external_lex_state = 3}, + [1424] = {.lex_state = 10, .external_lex_state = 3}, + [1425] = {.lex_state = 10, .external_lex_state = 2}, + [1426] = {.lex_state = 10, .external_lex_state = 3}, + [1427] = {.lex_state = 10, .external_lex_state = 2}, + [1428] = {.lex_state = 10, .external_lex_state = 2}, + [1429] = {.lex_state = 10, .external_lex_state = 3}, + [1430] = {.lex_state = 10, .external_lex_state = 2}, + [1431] = {.lex_state = 10, .external_lex_state = 2}, + [1432] = {.lex_state = 10, .external_lex_state = 2}, + [1433] = {.lex_state = 10, .external_lex_state = 3}, + [1434] = {.lex_state = 10, .external_lex_state = 2}, + [1435] = {.lex_state = 10, .external_lex_state = 2}, + [1436] = {.lex_state = 10, .external_lex_state = 3}, + [1437] = {.lex_state = 10, .external_lex_state = 3}, + [1438] = {.lex_state = 10, .external_lex_state = 3}, + [1439] = {.lex_state = 10, .external_lex_state = 2}, + [1440] = {.lex_state = 10, .external_lex_state = 3}, + [1441] = {.lex_state = 10, .external_lex_state = 3}, + [1442] = {.lex_state = 10, .external_lex_state = 3}, + [1443] = {.lex_state = 10, .external_lex_state = 3}, + [1444] = {.lex_state = 10, .external_lex_state = 2}, + [1445] = {.lex_state = 10, .external_lex_state = 2}, + [1446] = {.lex_state = 10, .external_lex_state = 3}, + [1447] = {.lex_state = 10, .external_lex_state = 3}, + [1448] = {.lex_state = 10, .external_lex_state = 3}, + [1449] = {.lex_state = 10, .external_lex_state = 3}, + [1450] = {.lex_state = 10, .external_lex_state = 3}, + [1451] = {.lex_state = 10, .external_lex_state = 3}, + [1452] = {.lex_state = 10, .external_lex_state = 2}, + [1453] = {.lex_state = 10, .external_lex_state = 2}, + [1454] = {.lex_state = 10, .external_lex_state = 2}, + [1455] = {.lex_state = 10, .external_lex_state = 3}, + [1456] = {.lex_state = 10, .external_lex_state = 2}, + [1457] = {.lex_state = 10, .external_lex_state = 3}, + [1458] = {.lex_state = 10, .external_lex_state = 2}, + [1459] = {.lex_state = 10, .external_lex_state = 3}, + [1460] = {.lex_state = 10, .external_lex_state = 2}, + [1461] = {.lex_state = 10, .external_lex_state = 3}, + [1462] = {.lex_state = 10, .external_lex_state = 3}, + [1463] = {.lex_state = 10, .external_lex_state = 2}, + [1464] = {.lex_state = 10, .external_lex_state = 2}, + [1465] = {.lex_state = 10, .external_lex_state = 3}, + [1466] = {.lex_state = 10, .external_lex_state = 3}, + [1467] = {.lex_state = 10, .external_lex_state = 3}, + [1468] = {.lex_state = 10, .external_lex_state = 2}, + [1469] = {.lex_state = 10, .external_lex_state = 2}, + [1470] = {.lex_state = 103}, + [1471] = {.lex_state = 10, .external_lex_state = 2}, + [1472] = {.lex_state = 10, .external_lex_state = 3}, + [1473] = {.lex_state = 10, .external_lex_state = 2}, + [1474] = {.lex_state = 10, .external_lex_state = 3}, + [1475] = {.lex_state = 10, .external_lex_state = 2}, + [1476] = {.lex_state = 10, .external_lex_state = 3}, + [1477] = {.lex_state = 10, .external_lex_state = 3}, + [1478] = {.lex_state = 10, .external_lex_state = 3}, + [1479] = {.lex_state = 10, .external_lex_state = 3}, + [1480] = {.lex_state = 10, .external_lex_state = 3}, + [1481] = {.lex_state = 10, .external_lex_state = 3}, + [1482] = {.lex_state = 10, .external_lex_state = 3}, + [1483] = {.lex_state = 10, .external_lex_state = 3}, + [1484] = {.lex_state = 10, .external_lex_state = 3}, + [1485] = {.lex_state = 10, .external_lex_state = 3}, + [1486] = {.lex_state = 10, .external_lex_state = 3}, + [1487] = {.lex_state = 10, .external_lex_state = 2}, + [1488] = {.lex_state = 10, .external_lex_state = 3}, + [1489] = {.lex_state = 10, .external_lex_state = 3}, + [1490] = {.lex_state = 10, .external_lex_state = 2}, + [1491] = {.lex_state = 10, .external_lex_state = 2}, + [1492] = {.lex_state = 10, .external_lex_state = 2}, + [1493] = {.lex_state = 10, .external_lex_state = 2}, + [1494] = {.lex_state = 10, .external_lex_state = 2}, + [1495] = {.lex_state = 10, .external_lex_state = 2}, + [1496] = {.lex_state = 10, .external_lex_state = 2}, + [1497] = {.lex_state = 10, .external_lex_state = 2}, + [1498] = {.lex_state = 10, .external_lex_state = 2}, + [1499] = {.lex_state = 10, .external_lex_state = 2}, + [1500] = {.lex_state = 10, .external_lex_state = 2}, + [1501] = {.lex_state = 10, .external_lex_state = 3}, + [1502] = {.lex_state = 10, .external_lex_state = 3}, + [1503] = {.lex_state = 10, .external_lex_state = 3}, + [1504] = {.lex_state = 10, .external_lex_state = 2}, + [1505] = {.lex_state = 10, .external_lex_state = 2}, + [1506] = {.lex_state = 10, .external_lex_state = 2}, + [1507] = {.lex_state = 10, .external_lex_state = 2}, + [1508] = {.lex_state = 10, .external_lex_state = 3}, + [1509] = {.lex_state = 10, .external_lex_state = 2}, + [1510] = {.lex_state = 10, .external_lex_state = 2}, + [1511] = {.lex_state = 10, .external_lex_state = 3}, + [1512] = {.lex_state = 10, .external_lex_state = 2}, + [1513] = {.lex_state = 10, .external_lex_state = 3}, + [1514] = {.lex_state = 10, .external_lex_state = 3}, + [1515] = {.lex_state = 10, .external_lex_state = 2}, + [1516] = {.lex_state = 10, .external_lex_state = 2}, + [1517] = {.lex_state = 10, .external_lex_state = 3}, + [1518] = {.lex_state = 10, .external_lex_state = 3}, + [1519] = {.lex_state = 10, .external_lex_state = 3}, + [1520] = {.lex_state = 10, .external_lex_state = 3}, + [1521] = {.lex_state = 10, .external_lex_state = 3}, + [1522] = {.lex_state = 10, .external_lex_state = 2}, + [1523] = {.lex_state = 10, .external_lex_state = 2}, + [1524] = {.lex_state = 10, .external_lex_state = 2}, + [1525] = {.lex_state = 10, .external_lex_state = 2}, + [1526] = {.lex_state = 10, .external_lex_state = 2}, + [1527] = {.lex_state = 10, .external_lex_state = 2}, + [1528] = {.lex_state = 10, .external_lex_state = 2}, + [1529] = {.lex_state = 10, .external_lex_state = 2}, + [1530] = {.lex_state = 10, .external_lex_state = 2}, + [1531] = {.lex_state = 10, .external_lex_state = 2}, + [1532] = {.lex_state = 10, .external_lex_state = 2}, + [1533] = {.lex_state = 10, .external_lex_state = 2}, + [1534] = {.lex_state = 10, .external_lex_state = 2}, + [1535] = {.lex_state = 10, .external_lex_state = 2}, + [1536] = {.lex_state = 10, .external_lex_state = 2}, + [1537] = {.lex_state = 10, .external_lex_state = 2}, + [1538] = {.lex_state = 10, .external_lex_state = 2}, + [1539] = {.lex_state = 16}, + [1540] = {.lex_state = 10, .external_lex_state = 2}, + [1541] = {.lex_state = 10, .external_lex_state = 2}, + [1542] = {.lex_state = 10, .external_lex_state = 2}, + [1543] = {.lex_state = 16}, + [1544] = {.lex_state = 10, .external_lex_state = 3}, + [1545] = {.lex_state = 10, .external_lex_state = 3}, + [1546] = {.lex_state = 10, .external_lex_state = 3}, + [1547] = {.lex_state = 10, .external_lex_state = 2}, + [1548] = {.lex_state = 10, .external_lex_state = 2}, + [1549] = {.lex_state = 10, .external_lex_state = 2}, + [1550] = {.lex_state = 16}, + [1551] = {.lex_state = 10, .external_lex_state = 2}, + [1552] = {.lex_state = 10, .external_lex_state = 2}, + [1553] = {.lex_state = 10, .external_lex_state = 2}, + [1554] = {.lex_state = 10, .external_lex_state = 2}, + [1555] = {.lex_state = 10, .external_lex_state = 2}, + [1556] = {.lex_state = 10, .external_lex_state = 2}, + [1557] = {.lex_state = 10, .external_lex_state = 2}, + [1558] = {.lex_state = 10, .external_lex_state = 2}, + [1559] = {.lex_state = 10, .external_lex_state = 2}, + [1560] = {.lex_state = 10, .external_lex_state = 2}, + [1561] = {.lex_state = 10, .external_lex_state = 2}, + [1562] = {.lex_state = 10, .external_lex_state = 2}, + [1563] = {.lex_state = 16}, + [1564] = {.lex_state = 10, .external_lex_state = 2}, + [1565] = {.lex_state = 16}, + [1566] = {.lex_state = 16}, + [1567] = {.lex_state = 10, .external_lex_state = 2}, + [1568] = {.lex_state = 10, .external_lex_state = 2}, + [1569] = {.lex_state = 16}, + [1570] = {.lex_state = 10, .external_lex_state = 2}, + [1571] = {.lex_state = 10, .external_lex_state = 2}, + [1572] = {.lex_state = 10, .external_lex_state = 2}, + [1573] = {.lex_state = 10, .external_lex_state = 2}, + [1574] = {.lex_state = 10, .external_lex_state = 3}, + [1575] = {.lex_state = 10, .external_lex_state = 2}, + [1576] = {.lex_state = 10, .external_lex_state = 2}, + [1577] = {.lex_state = 10, .external_lex_state = 2}, + [1578] = {.lex_state = 10, .external_lex_state = 2}, + [1579] = {.lex_state = 10, .external_lex_state = 2}, + [1580] = {.lex_state = 10, .external_lex_state = 2}, + [1581] = {.lex_state = 10, .external_lex_state = 2}, + [1582] = {.lex_state = 10, .external_lex_state = 3}, + [1583] = {.lex_state = 10, .external_lex_state = 3}, + [1584] = {.lex_state = 10, .external_lex_state = 2}, + [1585] = {.lex_state = 10, .external_lex_state = 2}, + [1586] = {.lex_state = 10, .external_lex_state = 3}, + [1587] = {.lex_state = 10, .external_lex_state = 2}, + [1588] = {.lex_state = 10, .external_lex_state = 3}, + [1589] = {.lex_state = 10, .external_lex_state = 3}, + [1590] = {.lex_state = 10, .external_lex_state = 2}, + [1591] = {.lex_state = 10, .external_lex_state = 3}, + [1592] = {.lex_state = 16}, + [1593] = {.lex_state = 10, .external_lex_state = 2}, + [1594] = {.lex_state = 10, .external_lex_state = 2}, + [1595] = {.lex_state = 10, .external_lex_state = 2}, + [1596] = {.lex_state = 10, .external_lex_state = 2}, + [1597] = {.lex_state = 10, .external_lex_state = 2}, + [1598] = {.lex_state = 10, .external_lex_state = 3}, + [1599] = {.lex_state = 10, .external_lex_state = 2}, + [1600] = {.lex_state = 10, .external_lex_state = 3}, + [1601] = {.lex_state = 10, .external_lex_state = 3}, + [1602] = {.lex_state = 10, .external_lex_state = 2}, + [1603] = {.lex_state = 10, .external_lex_state = 2}, + [1604] = {.lex_state = 10, .external_lex_state = 2}, + [1605] = {.lex_state = 10, .external_lex_state = 2}, + [1606] = {.lex_state = 10, .external_lex_state = 2}, + [1607] = {.lex_state = 16}, + [1608] = {.lex_state = 10, .external_lex_state = 2}, + [1609] = {.lex_state = 10, .external_lex_state = 2}, + [1610] = {.lex_state = 10, .external_lex_state = 2}, + [1611] = {.lex_state = 10, .external_lex_state = 3}, + [1612] = {.lex_state = 10, .external_lex_state = 2}, + [1613] = {.lex_state = 10, .external_lex_state = 3}, + [1614] = {.lex_state = 10, .external_lex_state = 3}, + [1615] = {.lex_state = 10, .external_lex_state = 2}, + [1616] = {.lex_state = 16}, + [1617] = {.lex_state = 10, .external_lex_state = 3}, + [1618] = {.lex_state = 10, .external_lex_state = 2}, + [1619] = {.lex_state = 10, .external_lex_state = 3}, + [1620] = {.lex_state = 10, .external_lex_state = 2}, + [1621] = {.lex_state = 10, .external_lex_state = 2}, + [1622] = {.lex_state = 10, .external_lex_state = 2}, + [1623] = {.lex_state = 10, .external_lex_state = 2}, + [1624] = {.lex_state = 10, .external_lex_state = 3}, + [1625] = {.lex_state = 10, .external_lex_state = 2}, + [1626] = {.lex_state = 16}, + [1627] = {.lex_state = 10, .external_lex_state = 2}, + [1628] = {.lex_state = 10, .external_lex_state = 2}, + [1629] = {.lex_state = 10, .external_lex_state = 2}, + [1630] = {.lex_state = 10, .external_lex_state = 3}, + [1631] = {.lex_state = 10, .external_lex_state = 3}, + [1632] = {.lex_state = 10, .external_lex_state = 3}, + [1633] = {.lex_state = 10, .external_lex_state = 3}, + [1634] = {.lex_state = 10, .external_lex_state = 3}, + [1635] = {.lex_state = 10, .external_lex_state = 3}, + [1636] = {.lex_state = 10, .external_lex_state = 3}, + [1637] = {.lex_state = 10, .external_lex_state = 3}, + [1638] = {.lex_state = 10, .external_lex_state = 3}, + [1639] = {.lex_state = 10, .external_lex_state = 3}, + [1640] = {.lex_state = 10, .external_lex_state = 3}, + [1641] = {.lex_state = 10, .external_lex_state = 3}, + [1642] = {.lex_state = 10, .external_lex_state = 3}, + [1643] = {.lex_state = 10, .external_lex_state = 3}, + [1644] = {.lex_state = 10, .external_lex_state = 3}, + [1645] = {.lex_state = 10, .external_lex_state = 3}, + [1646] = {.lex_state = 10, .external_lex_state = 3}, + [1647] = {.lex_state = 10, .external_lex_state = 3}, + [1648] = {.lex_state = 10, .external_lex_state = 3}, + [1649] = {.lex_state = 10, .external_lex_state = 3}, + [1650] = {.lex_state = 10, .external_lex_state = 3}, + [1651] = {.lex_state = 11, .external_lex_state = 2}, + [1652] = {.lex_state = 10, .external_lex_state = 3}, + [1653] = {.lex_state = 10, .external_lex_state = 3}, + [1654] = {.lex_state = 10, .external_lex_state = 3}, + [1655] = {.lex_state = 10, .external_lex_state = 3}, + [1656] = {.lex_state = 10, .external_lex_state = 3}, + [1657] = {.lex_state = 10, .external_lex_state = 3}, + [1658] = {.lex_state = 10, .external_lex_state = 3}, + [1659] = {.lex_state = 10, .external_lex_state = 3}, + [1660] = {.lex_state = 10, .external_lex_state = 3}, + [1661] = {.lex_state = 10, .external_lex_state = 3}, + [1662] = {.lex_state = 10, .external_lex_state = 3}, + [1663] = {.lex_state = 10, .external_lex_state = 3}, + [1664] = {.lex_state = 10, .external_lex_state = 3}, + [1665] = {.lex_state = 10, .external_lex_state = 2}, + [1666] = {.lex_state = 10, .external_lex_state = 3}, + [1667] = {.lex_state = 10, .external_lex_state = 3}, + [1668] = {.lex_state = 10, .external_lex_state = 3}, + [1669] = {.lex_state = 10, .external_lex_state = 3}, + [1670] = {.lex_state = 10, .external_lex_state = 3}, + [1671] = {.lex_state = 10, .external_lex_state = 3}, + [1672] = {.lex_state = 10, .external_lex_state = 3}, + [1673] = {.lex_state = 10, .external_lex_state = 3}, + [1674] = {.lex_state = 10, .external_lex_state = 3}, + [1675] = {.lex_state = 10, .external_lex_state = 3}, + [1676] = {.lex_state = 10, .external_lex_state = 3}, + [1677] = {.lex_state = 10, .external_lex_state = 3}, + [1678] = {.lex_state = 16, .external_lex_state = 4}, + [1679] = {.lex_state = 10, .external_lex_state = 3}, + [1680] = {.lex_state = 10, .external_lex_state = 2}, + [1681] = {.lex_state = 10, .external_lex_state = 3}, + [1682] = {.lex_state = 10, .external_lex_state = 3}, + [1683] = {.lex_state = 10, .external_lex_state = 3}, + [1684] = {.lex_state = 10, .external_lex_state = 2}, + [1685] = {.lex_state = 10, .external_lex_state = 3}, + [1686] = {.lex_state = 10, .external_lex_state = 3}, + [1687] = {.lex_state = 10, .external_lex_state = 2}, + [1688] = {.lex_state = 10, .external_lex_state = 3}, + [1689] = {.lex_state = 10, .external_lex_state = 3}, + [1690] = {.lex_state = 10, .external_lex_state = 3}, + [1691] = {.lex_state = 10, .external_lex_state = 3}, + [1692] = {.lex_state = 10, .external_lex_state = 3}, + [1693] = {.lex_state = 10, .external_lex_state = 3}, + [1694] = {.lex_state = 10, .external_lex_state = 3}, + [1695] = {.lex_state = 10, .external_lex_state = 3}, + [1696] = {.lex_state = 10, .external_lex_state = 2}, + [1697] = {.lex_state = 10, .external_lex_state = 2}, + [1698] = {.lex_state = 10, .external_lex_state = 2}, + [1699] = {.lex_state = 10, .external_lex_state = 2}, + [1700] = {.lex_state = 16, .external_lex_state = 4}, + [1701] = {.lex_state = 10, .external_lex_state = 2}, + [1702] = {.lex_state = 10, .external_lex_state = 2}, + [1703] = {.lex_state = 10, .external_lex_state = 2}, + [1704] = {.lex_state = 10, .external_lex_state = 2}, + [1705] = {.lex_state = 10, .external_lex_state = 3}, + [1706] = {.lex_state = 10, .external_lex_state = 2}, + [1707] = {.lex_state = 10, .external_lex_state = 3}, + [1708] = {.lex_state = 10, .external_lex_state = 3}, + [1709] = {.lex_state = 10, .external_lex_state = 3}, + [1710] = {.lex_state = 10, .external_lex_state = 3}, + [1711] = {.lex_state = 10, .external_lex_state = 3}, + [1712] = {.lex_state = 10, .external_lex_state = 3}, + [1713] = {.lex_state = 10, .external_lex_state = 3}, + [1714] = {.lex_state = 10, .external_lex_state = 2}, + [1715] = {.lex_state = 10, .external_lex_state = 2}, + [1716] = {.lex_state = 10, .external_lex_state = 2}, + [1717] = {.lex_state = 10, .external_lex_state = 3}, + [1718] = {.lex_state = 10, .external_lex_state = 2}, + [1719] = {.lex_state = 10, .external_lex_state = 2}, + [1720] = {.lex_state = 10, .external_lex_state = 3}, + [1721] = {.lex_state = 10, .external_lex_state = 2}, + [1722] = {.lex_state = 10, .external_lex_state = 2}, + [1723] = {.lex_state = 10, .external_lex_state = 3}, + [1724] = {.lex_state = 10, .external_lex_state = 3}, + [1725] = {.lex_state = 10, .external_lex_state = 3}, + [1726] = {.lex_state = 10, .external_lex_state = 3}, + [1727] = {.lex_state = 10, .external_lex_state = 3}, + [1728] = {.lex_state = 10, .external_lex_state = 3}, + [1729] = {.lex_state = 10, .external_lex_state = 3}, + [1730] = {.lex_state = 10, .external_lex_state = 3}, + [1731] = {.lex_state = 10, .external_lex_state = 3}, + [1732] = {.lex_state = 16, .external_lex_state = 4}, + [1733] = {.lex_state = 10, .external_lex_state = 3}, + [1734] = {.lex_state = 10, .external_lex_state = 3}, + [1735] = {.lex_state = 10, .external_lex_state = 3}, + [1736] = {.lex_state = 10, .external_lex_state = 3}, + [1737] = {.lex_state = 10, .external_lex_state = 2}, + [1738] = {.lex_state = 10, .external_lex_state = 3}, + [1739] = {.lex_state = 10, .external_lex_state = 3}, + [1740] = {.lex_state = 10, .external_lex_state = 3}, + [1741] = {.lex_state = 10, .external_lex_state = 3}, + [1742] = {.lex_state = 10, .external_lex_state = 3}, + [1743] = {.lex_state = 10, .external_lex_state = 3}, + [1744] = {.lex_state = 10, .external_lex_state = 3}, + [1745] = {.lex_state = 10, .external_lex_state = 3}, + [1746] = {.lex_state = 10, .external_lex_state = 3}, + [1747] = {.lex_state = 10, .external_lex_state = 2}, + [1748] = {.lex_state = 10, .external_lex_state = 2}, + [1749] = {.lex_state = 10, .external_lex_state = 2}, + [1750] = {.lex_state = 10, .external_lex_state = 3}, + [1751] = {.lex_state = 10, .external_lex_state = 2}, + [1752] = {.lex_state = 10, .external_lex_state = 2}, + [1753] = {.lex_state = 10, .external_lex_state = 2}, + [1754] = {.lex_state = 10, .external_lex_state = 3}, + [1755] = {.lex_state = 10, .external_lex_state = 2}, + [1756] = {.lex_state = 10, .external_lex_state = 3}, + [1757] = {.lex_state = 10, .external_lex_state = 3}, + [1758] = {.lex_state = 10, .external_lex_state = 3}, + [1759] = {.lex_state = 10, .external_lex_state = 3}, + [1760] = {.lex_state = 10, .external_lex_state = 3}, + [1761] = {.lex_state = 10, .external_lex_state = 3}, + [1762] = {.lex_state = 10, .external_lex_state = 3}, + [1763] = {.lex_state = 10, .external_lex_state = 3}, + [1764] = {.lex_state = 10, .external_lex_state = 3}, + [1765] = {.lex_state = 10, .external_lex_state = 3}, + [1766] = {.lex_state = 10, .external_lex_state = 3}, + [1767] = {.lex_state = 10, .external_lex_state = 3}, + [1768] = {.lex_state = 10, .external_lex_state = 2}, + [1769] = {.lex_state = 10, .external_lex_state = 3}, + [1770] = {.lex_state = 10, .external_lex_state = 2}, + [1771] = {.lex_state = 10, .external_lex_state = 2}, + [1772] = {.lex_state = 10, .external_lex_state = 3}, + [1773] = {.lex_state = 10, .external_lex_state = 3}, + [1774] = {.lex_state = 10, .external_lex_state = 3}, + [1775] = {.lex_state = 10, .external_lex_state = 3}, + [1776] = {.lex_state = 10, .external_lex_state = 3}, + [1777] = {.lex_state = 10, .external_lex_state = 3}, + [1778] = {.lex_state = 16, .external_lex_state = 4}, + [1779] = {.lex_state = 10, .external_lex_state = 3}, + [1780] = {.lex_state = 10, .external_lex_state = 3}, + [1781] = {.lex_state = 10, .external_lex_state = 3}, + [1782] = {.lex_state = 10, .external_lex_state = 3}, + [1783] = {.lex_state = 10, .external_lex_state = 2}, + [1784] = {.lex_state = 10, .external_lex_state = 3}, + [1785] = {.lex_state = 10, .external_lex_state = 3}, + [1786] = {.lex_state = 10, .external_lex_state = 2}, + [1787] = {.lex_state = 10, .external_lex_state = 2}, + [1788] = {.lex_state = 16, .external_lex_state = 4}, + [1789] = {.lex_state = 10, .external_lex_state = 3}, + [1790] = {.lex_state = 10, .external_lex_state = 3}, + [1791] = {.lex_state = 10, .external_lex_state = 3}, + [1792] = {.lex_state = 10, .external_lex_state = 2}, + [1793] = {.lex_state = 10, .external_lex_state = 3}, + [1794] = {.lex_state = 10, .external_lex_state = 3}, + [1795] = {.lex_state = 10, .external_lex_state = 3}, + [1796] = {.lex_state = 10, .external_lex_state = 3}, + [1797] = {.lex_state = 10, .external_lex_state = 2}, + [1798] = {.lex_state = 10, .external_lex_state = 3}, + [1799] = {.lex_state = 10, .external_lex_state = 3}, + [1800] = {.lex_state = 10, .external_lex_state = 3}, + [1801] = {.lex_state = 10, .external_lex_state = 3}, + [1802] = {.lex_state = 10, .external_lex_state = 3}, + [1803] = {.lex_state = 10, .external_lex_state = 3}, + [1804] = {.lex_state = 10, .external_lex_state = 3}, + [1805] = {.lex_state = 10, .external_lex_state = 3}, + [1806] = {.lex_state = 10, .external_lex_state = 3}, + [1807] = {.lex_state = 10, .external_lex_state = 3}, + [1808] = {.lex_state = 10, .external_lex_state = 3}, + [1809] = {.lex_state = 10, .external_lex_state = 3}, + [1810] = {.lex_state = 10, .external_lex_state = 3}, + [1811] = {.lex_state = 10, .external_lex_state = 3}, + [1812] = {.lex_state = 10, .external_lex_state = 3}, + [1813] = {.lex_state = 10, .external_lex_state = 2}, + [1814] = {.lex_state = 10, .external_lex_state = 3}, + [1815] = {.lex_state = 10, .external_lex_state = 2}, + [1816] = {.lex_state = 10, .external_lex_state = 2}, + [1817] = {.lex_state = 10, .external_lex_state = 2}, + [1818] = {.lex_state = 10, .external_lex_state = 3}, + [1819] = {.lex_state = 10, .external_lex_state = 2}, + [1820] = {.lex_state = 10, .external_lex_state = 2}, + [1821] = {.lex_state = 10, .external_lex_state = 2}, + [1822] = {.lex_state = 10, .external_lex_state = 3}, + [1823] = {.lex_state = 10, .external_lex_state = 3}, + [1824] = {.lex_state = 10, .external_lex_state = 3}, + [1825] = {.lex_state = 10, .external_lex_state = 3}, + [1826] = {.lex_state = 10, .external_lex_state = 2}, + [1827] = {.lex_state = 10, .external_lex_state = 2}, + [1828] = {.lex_state = 10, .external_lex_state = 3}, + [1829] = {.lex_state = 10, .external_lex_state = 3}, + [1830] = {.lex_state = 10, .external_lex_state = 3}, + [1831] = {.lex_state = 10, .external_lex_state = 3}, + [1832] = {.lex_state = 10, .external_lex_state = 3}, + [1833] = {.lex_state = 10, .external_lex_state = 3}, + [1834] = {.lex_state = 10, .external_lex_state = 3}, + [1835] = {.lex_state = 10, .external_lex_state = 3}, + [1836] = {.lex_state = 10, .external_lex_state = 3}, + [1837] = {.lex_state = 10, .external_lex_state = 3}, + [1838] = {.lex_state = 10, .external_lex_state = 3}, + [1839] = {.lex_state = 10, .external_lex_state = 3}, + [1840] = {.lex_state = 10, .external_lex_state = 3}, + [1841] = {.lex_state = 10, .external_lex_state = 3}, + [1842] = {.lex_state = 10, .external_lex_state = 3}, + [1843] = {.lex_state = 10, .external_lex_state = 3}, + [1844] = {.lex_state = 10, .external_lex_state = 3}, + [1845] = {.lex_state = 10, .external_lex_state = 2}, + [1846] = {.lex_state = 10, .external_lex_state = 3}, + [1847] = {.lex_state = 10, .external_lex_state = 2}, + [1848] = {.lex_state = 10, .external_lex_state = 2}, + [1849] = {.lex_state = 10, .external_lex_state = 3}, + [1850] = {.lex_state = 10, .external_lex_state = 3}, + [1851] = {.lex_state = 10, .external_lex_state = 3}, + [1852] = {.lex_state = 16, .external_lex_state = 4}, + [1853] = {.lex_state = 16, .external_lex_state = 4}, + [1854] = {.lex_state = 10, .external_lex_state = 3}, + [1855] = {.lex_state = 10, .external_lex_state = 2}, + [1856] = {.lex_state = 10, .external_lex_state = 3}, + [1857] = {.lex_state = 10, .external_lex_state = 3}, + [1858] = {.lex_state = 11, .external_lex_state = 3}, + [1859] = {.lex_state = 10, .external_lex_state = 3}, + [1860] = {.lex_state = 10, .external_lex_state = 3}, + [1861] = {.lex_state = 10, .external_lex_state = 3}, + [1862] = {.lex_state = 10, .external_lex_state = 2}, + [1863] = {.lex_state = 10, .external_lex_state = 3}, + [1864] = {.lex_state = 10, .external_lex_state = 3}, + [1865] = {.lex_state = 10, .external_lex_state = 3}, + [1866] = {.lex_state = 10, .external_lex_state = 3}, + [1867] = {.lex_state = 10, .external_lex_state = 3}, + [1868] = {.lex_state = 10, .external_lex_state = 2}, + [1869] = {.lex_state = 10, .external_lex_state = 2}, + [1870] = {.lex_state = 10, .external_lex_state = 3}, + [1871] = {.lex_state = 10, .external_lex_state = 2}, + [1872] = {.lex_state = 10, .external_lex_state = 3}, + [1873] = {.lex_state = 10, .external_lex_state = 2}, + [1874] = {.lex_state = 10, .external_lex_state = 2}, + [1875] = {.lex_state = 10, .external_lex_state = 2}, + [1876] = {.lex_state = 10, .external_lex_state = 2}, + [1877] = {.lex_state = 10, .external_lex_state = 2}, + [1878] = {.lex_state = 10, .external_lex_state = 3}, + [1879] = {.lex_state = 10, .external_lex_state = 2}, + [1880] = {.lex_state = 10, .external_lex_state = 3}, + [1881] = {.lex_state = 10, .external_lex_state = 3}, + [1882] = {.lex_state = 10, .external_lex_state = 2}, + [1883] = {.lex_state = 10, .external_lex_state = 3}, + [1884] = {.lex_state = 10, .external_lex_state = 3}, + [1885] = {.lex_state = 10, .external_lex_state = 3}, + [1886] = {.lex_state = 10, .external_lex_state = 3}, + [1887] = {.lex_state = 10, .external_lex_state = 3}, + [1888] = {.lex_state = 10, .external_lex_state = 3}, + [1889] = {.lex_state = 10, .external_lex_state = 2}, + [1890] = {.lex_state = 10, .external_lex_state = 2}, + [1891] = {.lex_state = 10, .external_lex_state = 3}, + [1892] = {.lex_state = 10, .external_lex_state = 3}, + [1893] = {.lex_state = 10, .external_lex_state = 2}, + [1894] = {.lex_state = 10, .external_lex_state = 2}, + [1895] = {.lex_state = 10, .external_lex_state = 2}, + [1896] = {.lex_state = 10, .external_lex_state = 2}, + [1897] = {.lex_state = 16, .external_lex_state = 4}, + [1898] = {.lex_state = 10, .external_lex_state = 2}, + [1899] = {.lex_state = 16, .external_lex_state = 4}, + [1900] = {.lex_state = 10, .external_lex_state = 2}, + [1901] = {.lex_state = 10, .external_lex_state = 3}, + [1902] = {.lex_state = 10, .external_lex_state = 2}, + [1903] = {.lex_state = 10, .external_lex_state = 3}, + [1904] = {.lex_state = 10, .external_lex_state = 3}, + [1905] = {.lex_state = 10, .external_lex_state = 3}, + [1906] = {.lex_state = 10, .external_lex_state = 2}, + [1907] = {.lex_state = 10, .external_lex_state = 2}, + [1908] = {.lex_state = 10, .external_lex_state = 3}, + [1909] = {.lex_state = 10, .external_lex_state = 2}, + [1910] = {.lex_state = 10, .external_lex_state = 2}, + [1911] = {.lex_state = 10, .external_lex_state = 3}, + [1912] = {.lex_state = 10, .external_lex_state = 3}, + [1913] = {.lex_state = 10, .external_lex_state = 3}, + [1914] = {.lex_state = 10, .external_lex_state = 2}, + [1915] = {.lex_state = 10, .external_lex_state = 2}, + [1916] = {.lex_state = 10, .external_lex_state = 3}, + [1917] = {.lex_state = 11, .external_lex_state = 3}, + [1918] = {.lex_state = 10, .external_lex_state = 3}, + [1919] = {.lex_state = 10, .external_lex_state = 3}, + [1920] = {.lex_state = 10, .external_lex_state = 3}, + [1921] = {.lex_state = 10, .external_lex_state = 3}, + [1922] = {.lex_state = 10, .external_lex_state = 3}, + [1923] = {.lex_state = 10, .external_lex_state = 3}, + [1924] = {.lex_state = 10, .external_lex_state = 3}, + [1925] = {.lex_state = 10, .external_lex_state = 2}, + [1926] = {.lex_state = 10, .external_lex_state = 3}, + [1927] = {.lex_state = 10, .external_lex_state = 2}, + [1928] = {.lex_state = 10, .external_lex_state = 3}, + [1929] = {.lex_state = 10, .external_lex_state = 2}, + [1930] = {.lex_state = 10, .external_lex_state = 2}, + [1931] = {.lex_state = 10, .external_lex_state = 2}, + [1932] = {.lex_state = 10, .external_lex_state = 3}, + [1933] = {.lex_state = 10, .external_lex_state = 3}, + [1934] = {.lex_state = 15, .external_lex_state = 4}, + [1935] = {.lex_state = 10, .external_lex_state = 2}, + [1936] = {.lex_state = 10, .external_lex_state = 3}, + [1937] = {.lex_state = 10, .external_lex_state = 2}, + [1938] = {.lex_state = 10, .external_lex_state = 3}, + [1939] = {.lex_state = 10, .external_lex_state = 2}, + [1940] = {.lex_state = 10, .external_lex_state = 3}, + [1941] = {.lex_state = 10, .external_lex_state = 2}, + [1942] = {.lex_state = 10, .external_lex_state = 3}, + [1943] = {.lex_state = 10, .external_lex_state = 3}, + [1944] = {.lex_state = 10, .external_lex_state = 2}, + [1945] = {.lex_state = 16, .external_lex_state = 4}, + [1946] = {.lex_state = 10, .external_lex_state = 3}, + [1947] = {.lex_state = 10, .external_lex_state = 3}, + [1948] = {.lex_state = 10, .external_lex_state = 3}, + [1949] = {.lex_state = 10, .external_lex_state = 3}, + [1950] = {.lex_state = 10, .external_lex_state = 3}, + [1951] = {.lex_state = 10, .external_lex_state = 3}, + [1952] = {.lex_state = 16, .external_lex_state = 4}, + [1953] = {.lex_state = 10, .external_lex_state = 3}, + [1954] = {.lex_state = 10, .external_lex_state = 3}, + [1955] = {.lex_state = 10, .external_lex_state = 3}, + [1956] = {.lex_state = 10, .external_lex_state = 3}, + [1957] = {.lex_state = 10, .external_lex_state = 3}, + [1958] = {.lex_state = 10, .external_lex_state = 3}, + [1959] = {.lex_state = 10, .external_lex_state = 2}, + [1960] = {.lex_state = 10, .external_lex_state = 2}, + [1961] = {.lex_state = 10, .external_lex_state = 2}, + [1962] = {.lex_state = 10, .external_lex_state = 2}, + [1963] = {.lex_state = 10, .external_lex_state = 3}, + [1964] = {.lex_state = 10, .external_lex_state = 2}, + [1965] = {.lex_state = 10, .external_lex_state = 3}, + [1966] = {.lex_state = 10, .external_lex_state = 3}, + [1967] = {.lex_state = 10, .external_lex_state = 3}, + [1968] = {.lex_state = 16, .external_lex_state = 4}, + [1969] = {.lex_state = 10, .external_lex_state = 2}, + [1970] = {.lex_state = 16, .external_lex_state = 4}, + [1971] = {.lex_state = 10, .external_lex_state = 2}, + [1972] = {.lex_state = 10, .external_lex_state = 3}, + [1973] = {.lex_state = 10, .external_lex_state = 3}, + [1974] = {.lex_state = 16, .external_lex_state = 4}, + [1975] = {.lex_state = 16, .external_lex_state = 4}, + [1976] = {.lex_state = 10, .external_lex_state = 2}, + [1977] = {.lex_state = 10, .external_lex_state = 2}, + [1978] = {.lex_state = 10, .external_lex_state = 3}, + [1979] = {.lex_state = 10, .external_lex_state = 3}, + [1980] = {.lex_state = 10, .external_lex_state = 3}, + [1981] = {.lex_state = 10, .external_lex_state = 2}, + [1982] = {.lex_state = 10, .external_lex_state = 3}, + [1983] = {.lex_state = 10, .external_lex_state = 2}, + [1984] = {.lex_state = 10, .external_lex_state = 2}, + [1985] = {.lex_state = 10, .external_lex_state = 3}, + [1986] = {.lex_state = 10, .external_lex_state = 3}, + [1987] = {.lex_state = 10, .external_lex_state = 3}, + [1988] = {.lex_state = 10, .external_lex_state = 2}, + [1989] = {.lex_state = 10, .external_lex_state = 3}, + [1990] = {.lex_state = 10, .external_lex_state = 2}, + [1991] = {.lex_state = 10, .external_lex_state = 2}, + [1992] = {.lex_state = 10, .external_lex_state = 2}, + [1993] = {.lex_state = 11, .external_lex_state = 2}, + [1994] = {.lex_state = 10, .external_lex_state = 2}, + [1995] = {.lex_state = 16, .external_lex_state = 4}, + [1996] = {.lex_state = 10, .external_lex_state = 2}, + [1997] = {.lex_state = 10, .external_lex_state = 2}, + [1998] = {.lex_state = 16, .external_lex_state = 4}, + [1999] = {.lex_state = 10, .external_lex_state = 2}, + [2000] = {.lex_state = 10, .external_lex_state = 2}, + [2001] = {.lex_state = 10, .external_lex_state = 2}, + [2002] = {.lex_state = 16, .external_lex_state = 4}, + [2003] = {.lex_state = 10, .external_lex_state = 2}, + [2004] = {.lex_state = 10, .external_lex_state = 2}, + [2005] = {.lex_state = 10, .external_lex_state = 2}, + [2006] = {.lex_state = 10, .external_lex_state = 3}, + [2007] = {.lex_state = 16, .external_lex_state = 4}, + [2008] = {.lex_state = 10, .external_lex_state = 2}, + [2009] = {.lex_state = 10, .external_lex_state = 2}, + [2010] = {.lex_state = 10, .external_lex_state = 2}, + [2011] = {.lex_state = 10, .external_lex_state = 2}, + [2012] = {.lex_state = 10, .external_lex_state = 2}, + [2013] = {.lex_state = 10, .external_lex_state = 2}, + [2014] = {.lex_state = 10, .external_lex_state = 2}, + [2015] = {.lex_state = 16, .external_lex_state = 4}, + [2016] = {.lex_state = 10, .external_lex_state = 2}, + [2017] = {.lex_state = 10, .external_lex_state = 2}, + [2018] = {.lex_state = 10, .external_lex_state = 2}, + [2019] = {.lex_state = 10, .external_lex_state = 2}, + [2020] = {.lex_state = 10, .external_lex_state = 2}, + [2021] = {.lex_state = 10, .external_lex_state = 2}, + [2022] = {.lex_state = 10, .external_lex_state = 2}, + [2023] = {.lex_state = 10, .external_lex_state = 2}, + [2024] = {.lex_state = 10, .external_lex_state = 2}, + [2025] = {.lex_state = 10, .external_lex_state = 2}, + [2026] = {.lex_state = 10, .external_lex_state = 2}, + [2027] = {.lex_state = 10, .external_lex_state = 3}, + [2028] = {.lex_state = 16, .external_lex_state = 4}, + [2029] = {.lex_state = 10, .external_lex_state = 2}, + [2030] = {.lex_state = 10, .external_lex_state = 2}, + [2031] = {.lex_state = 16, .external_lex_state = 4}, + [2032] = {.lex_state = 10, .external_lex_state = 2}, + [2033] = {.lex_state = 10, .external_lex_state = 2}, + [2034] = {.lex_state = 10, .external_lex_state = 2}, + [2035] = {.lex_state = 10, .external_lex_state = 2}, + [2036] = {.lex_state = 10, .external_lex_state = 2}, + [2037] = {.lex_state = 10, .external_lex_state = 2}, + [2038] = {.lex_state = 10, .external_lex_state = 2}, + [2039] = {.lex_state = 10, .external_lex_state = 3}, + [2040] = {.lex_state = 10, .external_lex_state = 2}, + [2041] = {.lex_state = 103}, + [2042] = {.lex_state = 10, .external_lex_state = 3}, + [2043] = {.lex_state = 10, .external_lex_state = 2}, + [2044] = {.lex_state = 103}, + [2045] = {.lex_state = 10, .external_lex_state = 2}, + [2046] = {.lex_state = 16, .external_lex_state = 4}, + [2047] = {.lex_state = 16}, + [2048] = {.lex_state = 10, .external_lex_state = 3}, + [2049] = {.lex_state = 16, .external_lex_state = 4}, + [2050] = {.lex_state = 16, .external_lex_state = 4}, + [2051] = {.lex_state = 16}, + [2052] = {.lex_state = 10, .external_lex_state = 2}, + [2053] = {.lex_state = 10, .external_lex_state = 2}, + [2054] = {.lex_state = 10, .external_lex_state = 2}, + [2055] = {.lex_state = 10, .external_lex_state = 2}, + [2056] = {.lex_state = 16}, + [2057] = {.lex_state = 16, .external_lex_state = 4}, + [2058] = {.lex_state = 10, .external_lex_state = 3}, + [2059] = {.lex_state = 10, .external_lex_state = 2}, + [2060] = {.lex_state = 16, .external_lex_state = 4}, + [2061] = {.lex_state = 16, .external_lex_state = 4}, + [2062] = {.lex_state = 16}, + [2063] = {.lex_state = 10, .external_lex_state = 2}, + [2064] = {.lex_state = 10, .external_lex_state = 2}, + [2065] = {.lex_state = 10, .external_lex_state = 2}, + [2066] = {.lex_state = 16, .external_lex_state = 4}, + [2067] = {.lex_state = 16}, + [2068] = {.lex_state = 10, .external_lex_state = 2}, + [2069] = {.lex_state = 10, .external_lex_state = 2}, + [2070] = {.lex_state = 10, .external_lex_state = 2}, + [2071] = {.lex_state = 10, .external_lex_state = 2}, + [2072] = {.lex_state = 16, .external_lex_state = 4}, + [2073] = {.lex_state = 10, .external_lex_state = 2}, + [2074] = {.lex_state = 16}, + [2075] = {.lex_state = 10, .external_lex_state = 2}, + [2076] = {.lex_state = 10, .external_lex_state = 2}, + [2077] = {.lex_state = 16}, + [2078] = {.lex_state = 10, .external_lex_state = 2}, + [2079] = {.lex_state = 16, .external_lex_state = 4}, + [2080] = {.lex_state = 16}, + [2081] = {.lex_state = 16, .external_lex_state = 4}, + [2082] = {.lex_state = 10, .external_lex_state = 2}, + [2083] = {.lex_state = 103}, + [2084] = {.lex_state = 16}, + [2085] = {.lex_state = 16, .external_lex_state = 4}, + [2086] = {.lex_state = 16, .external_lex_state = 4}, + [2087] = {.lex_state = 16, .external_lex_state = 4}, + [2088] = {.lex_state = 10, .external_lex_state = 2}, + [2089] = {.lex_state = 16, .external_lex_state = 4}, + [2090] = {.lex_state = 16, .external_lex_state = 4}, + [2091] = {.lex_state = 16, .external_lex_state = 4}, + [2092] = {.lex_state = 16}, + [2093] = {.lex_state = 16}, + [2094] = {.lex_state = 16}, + [2095] = {.lex_state = 16, .external_lex_state = 4}, + [2096] = {.lex_state = 16, .external_lex_state = 4}, + [2097] = {.lex_state = 16, .external_lex_state = 4}, + [2098] = {.lex_state = 10, .external_lex_state = 2}, + [2099] = {.lex_state = 16, .external_lex_state = 4}, + [2100] = {.lex_state = 16, .external_lex_state = 4}, + [2101] = {.lex_state = 16, .external_lex_state = 4}, + [2102] = {.lex_state = 16, .external_lex_state = 4}, + [2103] = {.lex_state = 16, .external_lex_state = 4}, + [2104] = {.lex_state = 10, .external_lex_state = 2}, + [2105] = {.lex_state = 16}, + [2106] = {.lex_state = 16, .external_lex_state = 4}, + [2107] = {.lex_state = 16}, + [2108] = {.lex_state = 16, .external_lex_state = 4}, + [2109] = {.lex_state = 16}, + [2110] = {.lex_state = 16, .external_lex_state = 4}, + [2111] = {.lex_state = 10, .external_lex_state = 2}, + [2112] = {.lex_state = 16}, + [2113] = {.lex_state = 16, .external_lex_state = 4}, + [2114] = {.lex_state = 16, .external_lex_state = 4}, + [2115] = {.lex_state = 16, .external_lex_state = 4}, + [2116] = {.lex_state = 16, .external_lex_state = 4}, + [2117] = {.lex_state = 16, .external_lex_state = 4}, + [2118] = {.lex_state = 16}, + [2119] = {.lex_state = 16, .external_lex_state = 4}, + [2120] = {.lex_state = 16}, + [2121] = {.lex_state = 16}, + [2122] = {.lex_state = 16, .external_lex_state = 4}, + [2123] = {.lex_state = 16, .external_lex_state = 4}, + [2124] = {.lex_state = 16, .external_lex_state = 4}, + [2125] = {.lex_state = 11, .external_lex_state = 2}, + [2126] = {.lex_state = 16, .external_lex_state = 4}, + [2127] = {.lex_state = 16, .external_lex_state = 4}, + [2128] = {.lex_state = 16, .external_lex_state = 4}, + [2129] = {.lex_state = 16, .external_lex_state = 4}, + [2130] = {.lex_state = 16}, + [2131] = {.lex_state = 16, .external_lex_state = 4}, + [2132] = {.lex_state = 16}, + [2133] = {.lex_state = 16, .external_lex_state = 4}, + [2134] = {.lex_state = 16, .external_lex_state = 4}, + [2135] = {.lex_state = 16, .external_lex_state = 4}, + [2136] = {.lex_state = 16, .external_lex_state = 4}, + [2137] = {.lex_state = 16, .external_lex_state = 4}, + [2138] = {.lex_state = 16}, + [2139] = {.lex_state = 16}, + [2140] = {.lex_state = 16, .external_lex_state = 4}, + [2141] = {.lex_state = 16, .external_lex_state = 4}, + [2142] = {.lex_state = 16, .external_lex_state = 4}, + [2143] = {.lex_state = 16, .external_lex_state = 4}, + [2144] = {.lex_state = 16, .external_lex_state = 4}, + [2145] = {.lex_state = 16, .external_lex_state = 4}, + [2146] = {.lex_state = 16}, + [2147] = {.lex_state = 16, .external_lex_state = 4}, + [2148] = {.lex_state = 16}, + [2149] = {.lex_state = 16, .external_lex_state = 4}, + [2150] = {.lex_state = 16}, + [2151] = {.lex_state = 16}, + [2152] = {.lex_state = 16, .external_lex_state = 4}, + [2153] = {.lex_state = 16, .external_lex_state = 4}, + [2154] = {.lex_state = 16}, + [2155] = {.lex_state = 16, .external_lex_state = 4}, + [2156] = {.lex_state = 16, .external_lex_state = 4}, + [2157] = {.lex_state = 16, .external_lex_state = 4}, + [2158] = {.lex_state = 16}, + [2159] = {.lex_state = 16, .external_lex_state = 4}, + [2160] = {.lex_state = 16, .external_lex_state = 4}, + [2161] = {.lex_state = 16, .external_lex_state = 4}, + [2162] = {.lex_state = 16, .external_lex_state = 4}, + [2163] = {.lex_state = 103}, + [2164] = {.lex_state = 103, .external_lex_state = 4}, + [2165] = {.lex_state = 16}, + [2166] = {.lex_state = 16, .external_lex_state = 4}, + [2167] = {.lex_state = 16, .external_lex_state = 4}, + [2168] = {.lex_state = 16}, + [2169] = {.lex_state = 16}, + [2170] = {.lex_state = 103, .external_lex_state = 4}, + [2171] = {.lex_state = 103, .external_lex_state = 4}, + [2172] = {.lex_state = 103, .external_lex_state = 4}, + [2173] = {.lex_state = 16}, + [2174] = {.lex_state = 103, .external_lex_state = 4}, + [2175] = {.lex_state = 16}, + [2176] = {.lex_state = 16}, + [2177] = {.lex_state = 16}, + [2178] = {.lex_state = 16}, + [2179] = {.lex_state = 16}, + [2180] = {.lex_state = 16}, + [2181] = {.lex_state = 16}, + [2182] = {.lex_state = 16}, + [2183] = {.lex_state = 16}, + [2184] = {.lex_state = 16}, + [2185] = {.lex_state = 16}, + [2186] = {.lex_state = 16}, + [2187] = {.lex_state = 16}, + [2188] = {.lex_state = 103, .external_lex_state = 4}, + [2189] = {.lex_state = 16}, + [2190] = {.lex_state = 16}, + [2191] = {.lex_state = 16}, + [2192] = {.lex_state = 16}, + [2193] = {.lex_state = 16}, + [2194] = {.lex_state = 16}, + [2195] = {.lex_state = 103}, + [2196] = {.lex_state = 103}, + [2197] = {.lex_state = 103}, + [2198] = {.lex_state = 16}, + [2199] = {.lex_state = 16}, + [2200] = {.lex_state = 103}, + [2201] = {.lex_state = 103}, + [2202] = {.lex_state = 16, .external_lex_state = 4}, + [2203] = {.lex_state = 16, .external_lex_state = 4}, + [2204] = {.lex_state = 16}, + [2205] = {.lex_state = 16, .external_lex_state = 4}, + [2206] = {.lex_state = 16}, + [2207] = {.lex_state = 16, .external_lex_state = 4}, + [2208] = {.lex_state = 16, .external_lex_state = 4}, + [2209] = {.lex_state = 16}, + [2210] = {.lex_state = 16, .external_lex_state = 4}, + [2211] = {.lex_state = 16, .external_lex_state = 4}, + [2212] = {.lex_state = 16, .external_lex_state = 4}, + [2213] = {.lex_state = 16, .external_lex_state = 4}, + [2214] = {.lex_state = 16, .external_lex_state = 4}, + [2215] = {.lex_state = 16, .external_lex_state = 4}, + [2216] = {.lex_state = 16, .external_lex_state = 4}, + [2217] = {.lex_state = 16, .external_lex_state = 4}, + [2218] = {.lex_state = 16, .external_lex_state = 4}, + [2219] = {.lex_state = 16}, + [2220] = {.lex_state = 16, .external_lex_state = 4}, + [2221] = {.lex_state = 16, .external_lex_state = 4}, + [2222] = {.lex_state = 16, .external_lex_state = 4}, + [2223] = {.lex_state = 16}, + [2224] = {.lex_state = 16, .external_lex_state = 4}, + [2225] = {.lex_state = 16}, + [2226] = {.lex_state = 16, .external_lex_state = 4}, + [2227] = {.lex_state = 16}, + [2228] = {.lex_state = 16, .external_lex_state = 4}, + [2229] = {.lex_state = 16, .external_lex_state = 4}, + [2230] = {.lex_state = 16}, + [2231] = {.lex_state = 16}, + [2232] = {.lex_state = 16, .external_lex_state = 4}, + [2233] = {.lex_state = 16, .external_lex_state = 4}, + [2234] = {.lex_state = 16, .external_lex_state = 4}, + [2235] = {.lex_state = 16, .external_lex_state = 4}, + [2236] = {.lex_state = 16, .external_lex_state = 4}, + [2237] = {.lex_state = 16, .external_lex_state = 4}, + [2238] = {.lex_state = 16}, + [2239] = {.lex_state = 16}, + [2240] = {.lex_state = 16}, + [2241] = {.lex_state = 16}, + [2242] = {.lex_state = 16}, + [2243] = {.lex_state = 16}, + [2244] = {.lex_state = 16}, + [2245] = {.lex_state = 16}, + [2246] = {.lex_state = 16}, + [2247] = {.lex_state = 103}, + [2248] = {.lex_state = 16}, + [2249] = {.lex_state = 16}, + [2250] = {.lex_state = 16}, + [2251] = {.lex_state = 16, .external_lex_state = 4}, + [2252] = {.lex_state = 16, .external_lex_state = 4}, + [2253] = {.lex_state = 16}, + [2254] = {.lex_state = 16}, + [2255] = {.lex_state = 16}, + [2256] = {.lex_state = 16}, + [2257] = {.lex_state = 16}, + [2258] = {.lex_state = 16}, + [2259] = {.lex_state = 16}, + [2260] = {.lex_state = 16}, + [2261] = {.lex_state = 16}, + [2262] = {.lex_state = 16}, + [2263] = {.lex_state = 16}, + [2264] = {.lex_state = 16}, + [2265] = {.lex_state = 103}, + [2266] = {.lex_state = 103}, + [2267] = {.lex_state = 16}, + [2268] = {.lex_state = 103}, + [2269] = {.lex_state = 16}, + [2270] = {.lex_state = 16}, + [2271] = {.lex_state = 103}, + [2272] = {.lex_state = 103}, + [2273] = {.lex_state = 16}, + [2274] = {.lex_state = 16}, + [2275] = {.lex_state = 103}, + [2276] = {.lex_state = 103}, + [2277] = {.lex_state = 16}, + [2278] = {.lex_state = 16}, + [2279] = {.lex_state = 103}, + [2280] = {.lex_state = 103}, + [2281] = {.lex_state = 103}, + [2282] = {.lex_state = 103}, + [2283] = {.lex_state = 103}, + [2284] = {.lex_state = 103}, + [2285] = {.lex_state = 103}, + [2286] = {.lex_state = 103}, + [2287] = {.lex_state = 103}, + [2288] = {.lex_state = 103}, + [2289] = {.lex_state = 103}, + [2290] = {.lex_state = 103}, + [2291] = {.lex_state = 103}, + [2292] = {.lex_state = 103}, + [2293] = {.lex_state = 103}, + [2294] = {.lex_state = 103}, + [2295] = {.lex_state = 103}, + [2296] = {.lex_state = 103}, + [2297] = {.lex_state = 16}, + [2298] = {.lex_state = 103}, + [2299] = {.lex_state = 103}, + [2300] = {.lex_state = 103}, + [2301] = {.lex_state = 103}, + [2302] = {.lex_state = 103}, + [2303] = {.lex_state = 103}, + [2304] = {.lex_state = 103}, + [2305] = {.lex_state = 103}, + [2306] = {.lex_state = 103}, + [2307] = {.lex_state = 103}, + [2308] = {.lex_state = 103}, + [2309] = {.lex_state = 103}, + [2310] = {.lex_state = 103}, + [2311] = {.lex_state = 103}, + [2312] = {.lex_state = 103}, + [2313] = {.lex_state = 103}, + [2314] = {.lex_state = 103}, + [2315] = {.lex_state = 103}, + [2316] = {.lex_state = 103}, + [2317] = {.lex_state = 103}, + [2318] = {.lex_state = 103}, + [2319] = {.lex_state = 103}, + [2320] = {.lex_state = 103}, + [2321] = {.lex_state = 103}, + [2322] = {.lex_state = 103}, + [2323] = {.lex_state = 103}, + [2324] = {.lex_state = 103}, + [2325] = {.lex_state = 103}, + [2326] = {.lex_state = 103}, + [2327] = {.lex_state = 103}, + [2328] = {.lex_state = 103}, + [2329] = {.lex_state = 103}, + [2330] = {.lex_state = 103}, + [2331] = {.lex_state = 103}, + [2332] = {.lex_state = 103}, + [2333] = {.lex_state = 103}, + [2334] = {.lex_state = 103}, + [2335] = {.lex_state = 19}, + [2336] = {.lex_state = 19}, + [2337] = {.lex_state = 19}, + [2338] = {.lex_state = 19}, + [2339] = {.lex_state = 19}, + [2340] = {.lex_state = 19}, + [2341] = {.lex_state = 15}, + [2342] = {.lex_state = 19}, + [2343] = {.lex_state = 19}, + [2344] = {.lex_state = 19}, + [2345] = {.lex_state = 19}, + [2346] = {.lex_state = 19}, + [2347] = {.lex_state = 19}, + [2348] = {.lex_state = 19}, + [2349] = {.lex_state = 19}, + [2350] = {.lex_state = 19}, + [2351] = {.lex_state = 19}, + [2352] = {.lex_state = 24}, + [2353] = {.lex_state = 19}, + [2354] = {.lex_state = 19}, + [2355] = {.lex_state = 19}, + [2356] = {.lex_state = 19}, + [2357] = {.lex_state = 19}, + [2358] = {.lex_state = 19}, + [2359] = {.lex_state = 15}, + [2360] = {.lex_state = 19}, + [2361] = {.lex_state = 19}, + [2362] = {.lex_state = 19}, + [2363] = {.lex_state = 19}, + [2364] = {.lex_state = 19}, + [2365] = {.lex_state = 103}, + [2366] = {.lex_state = 19}, + [2367] = {.lex_state = 19}, + [2368] = {.lex_state = 19}, + [2369] = {.lex_state = 19}, + [2370] = {.lex_state = 19}, + [2371] = {.lex_state = 19}, + [2372] = {.lex_state = 103}, + [2373] = {.lex_state = 19}, + [2374] = {.lex_state = 19}, + [2375] = {.lex_state = 19}, + [2376] = {.lex_state = 24}, + [2377] = {.lex_state = 19}, + [2378] = {.lex_state = 103}, + [2379] = {.lex_state = 15}, + [2380] = {.lex_state = 15}, + [2381] = {.lex_state = 19}, + [2382] = {.lex_state = 15}, + [2383] = {.lex_state = 19}, + [2384] = {.lex_state = 19}, + [2385] = {.lex_state = 19}, + [2386] = {.lex_state = 15, .external_lex_state = 4}, + [2387] = {.lex_state = 103}, + [2388] = {.lex_state = 15, .external_lex_state = 4}, + [2389] = {.lex_state = 103}, + [2390] = {.lex_state = 103}, + [2391] = {.lex_state = 7}, + [2392] = {.lex_state = 103}, + [2393] = {.lex_state = 7}, + [2394] = {.lex_state = 103}, + [2395] = {.lex_state = 103}, + [2396] = {.lex_state = 103}, + [2397] = {.lex_state = 103}, + [2398] = {.lex_state = 7}, + [2399] = {.lex_state = 103}, + [2400] = {.lex_state = 103}, + [2401] = {.lex_state = 103}, + [2402] = {.lex_state = 7}, + [2403] = {.lex_state = 7}, + [2404] = {.lex_state = 7}, + [2405] = {.lex_state = 103}, + [2406] = {.lex_state = 103}, + [2407] = {.lex_state = 103}, + [2408] = {.lex_state = 7}, + [2409] = {.lex_state = 103}, + [2410] = {.lex_state = 103}, + [2411] = {.lex_state = 103}, + [2412] = {.lex_state = 103}, + [2413] = {.lex_state = 103}, + [2414] = {.lex_state = 19, .external_lex_state = 4}, + [2415] = {.lex_state = 19, .external_lex_state = 4}, + [2416] = {.lex_state = 19, .external_lex_state = 4}, + [2417] = {.lex_state = 103}, + [2418] = {.lex_state = 103}, + [2419] = {.lex_state = 103}, + [2420] = {.lex_state = 7}, + [2421] = {.lex_state = 103}, + [2422] = {.lex_state = 103}, + [2423] = {.lex_state = 15, .external_lex_state = 4}, + [2424] = {.lex_state = 103}, + [2425] = {.lex_state = 103}, + [2426] = {.lex_state = 103}, + [2427] = {.lex_state = 103}, + [2428] = {.lex_state = 103}, + [2429] = {.lex_state = 103}, + [2430] = {.lex_state = 103}, + [2431] = {.lex_state = 103}, + [2432] = {.lex_state = 19, .external_lex_state = 4}, + [2433] = {.lex_state = 103}, + [2434] = {.lex_state = 103}, + [2435] = {.lex_state = 103}, + [2436] = {.lex_state = 103}, + [2437] = {.lex_state = 24}, + [2438] = {.lex_state = 103}, + [2439] = {.lex_state = 103}, + [2440] = {.lex_state = 103}, + [2441] = {.lex_state = 103}, + [2442] = {.lex_state = 103}, + [2443] = {.lex_state = 103}, [2444] = {.lex_state = 16, .external_lex_state = 4}, - [2445] = {.lex_state = 13, .external_lex_state = 4}, - [2446] = {.lex_state = 99}, - [2447] = {.lex_state = 99}, - [2448] = {.lex_state = 99}, - [2449] = {.lex_state = 16, .external_lex_state = 4}, - [2450] = {.lex_state = 99}, - [2451] = {.lex_state = 16, .external_lex_state = 4}, - [2452] = {.lex_state = 21}, - [2453] = {.lex_state = 16, .external_lex_state = 4}, - [2454] = {.lex_state = 99}, - [2455] = {.lex_state = 99}, - [2456] = {.lex_state = 16, .external_lex_state = 4}, - [2457] = {.lex_state = 99}, - [2458] = {.lex_state = 16, .external_lex_state = 4}, - [2459] = {.lex_state = 16, .external_lex_state = 4}, - [2460] = {.lex_state = 16, .external_lex_state = 4}, - [2461] = {.lex_state = 99}, - [2462] = {.lex_state = 13, .external_lex_state = 4}, + [2445] = {.lex_state = 19, .external_lex_state = 4}, + [2446] = {.lex_state = 103}, + [2447] = {.lex_state = 103}, + [2448] = {.lex_state = 19, .external_lex_state = 4}, + [2449] = {.lex_state = 103}, + [2450] = {.lex_state = 16, .external_lex_state = 4}, + [2451] = {.lex_state = 103}, + [2452] = {.lex_state = 103}, + [2453] = {.lex_state = 103}, + [2454] = {.lex_state = 19, .external_lex_state = 4}, + [2455] = {.lex_state = 19, .external_lex_state = 4}, + [2456] = {.lex_state = 19, .external_lex_state = 4}, + [2457] = {.lex_state = 103}, + [2458] = {.lex_state = 103}, + [2459] = {.lex_state = 19, .external_lex_state = 4}, + [2460] = {.lex_state = 19, .external_lex_state = 4}, + [2461] = {.lex_state = 19, .external_lex_state = 4}, + [2462] = {.lex_state = 19, .external_lex_state = 4}, [2463] = {.lex_state = 16, .external_lex_state = 4}, - [2464] = {.lex_state = 13, .external_lex_state = 4}, - [2465] = {.lex_state = 13, .external_lex_state = 4}, + [2464] = {.lex_state = 19, .external_lex_state = 4}, + [2465] = {.lex_state = 103}, [2466] = {.lex_state = 16, .external_lex_state = 4}, - [2467] = {.lex_state = 99}, - [2468] = {.lex_state = 99}, + [2467] = {.lex_state = 103}, + [2468] = {.lex_state = 19, .external_lex_state = 4}, [2469] = {.lex_state = 16, .external_lex_state = 4}, - [2470] = {.lex_state = 99}, - [2471] = {.lex_state = 99}, - [2472] = {.lex_state = 99}, - [2473] = {.lex_state = 12, .external_lex_state = 4}, - [2474] = {.lex_state = 99}, - [2475] = {.lex_state = 99}, - [2476] = {.lex_state = 99}, - [2477] = {.lex_state = 16, .external_lex_state = 4}, - [2478] = {.lex_state = 16, .external_lex_state = 4}, - [2479] = {.lex_state = 99}, - [2480] = {.lex_state = 99}, - [2481] = {.lex_state = 99}, - [2482] = {.lex_state = 16, .external_lex_state = 4}, - [2483] = {.lex_state = 16, .external_lex_state = 4}, - [2484] = {.lex_state = 16, .external_lex_state = 4}, - [2485] = {.lex_state = 16, .external_lex_state = 4}, - [2486] = {.lex_state = 16, .external_lex_state = 4}, - [2487] = {.lex_state = 16, .external_lex_state = 4}, - [2488] = {.lex_state = 16, .external_lex_state = 4}, - [2489] = {.lex_state = 16, .external_lex_state = 4}, - [2490] = {.lex_state = 16, .external_lex_state = 4}, - [2491] = {.lex_state = 13, .external_lex_state = 4}, - [2492] = {.lex_state = 99}, - [2493] = {.lex_state = 16, .external_lex_state = 5}, - [2494] = {.lex_state = 16, .external_lex_state = 5}, - [2495] = {.lex_state = 16, .external_lex_state = 5}, - [2496] = {.lex_state = 13, .external_lex_state = 4}, - [2497] = {.lex_state = 13, .external_lex_state = 4}, - [2498] = {.lex_state = 12, .external_lex_state = 4}, - [2499] = {.lex_state = 12, .external_lex_state = 4}, - [2500] = {.lex_state = 99}, - [2501] = {.lex_state = 16, .external_lex_state = 4}, - [2502] = {.lex_state = 16, .external_lex_state = 4}, - [2503] = {.lex_state = 21}, - [2504] = {.lex_state = 13, .external_lex_state = 4}, - [2505] = {.lex_state = 13, .external_lex_state = 4}, - [2506] = {.lex_state = 13, .external_lex_state = 4}, - [2507] = {.lex_state = 16, .external_lex_state = 4}, - [2508] = {.lex_state = 21}, - [2509] = {.lex_state = 99}, + [2470] = {.lex_state = 19, .external_lex_state = 4}, + [2471] = {.lex_state = 19, .external_lex_state = 4}, + [2472] = {.lex_state = 19, .external_lex_state = 4}, + [2473] = {.lex_state = 16, .external_lex_state = 4}, + [2474] = {.lex_state = 19, .external_lex_state = 4}, + [2475] = {.lex_state = 19, .external_lex_state = 4}, + [2476] = {.lex_state = 103}, + [2477] = {.lex_state = 103}, + [2478] = {.lex_state = 19, .external_lex_state = 4}, + [2479] = {.lex_state = 103}, + [2480] = {.lex_state = 19, .external_lex_state = 4}, + [2481] = {.lex_state = 19, .external_lex_state = 4}, + [2482] = {.lex_state = 19, .external_lex_state = 4}, + [2483] = {.lex_state = 19, .external_lex_state = 4}, + [2484] = {.lex_state = 19, .external_lex_state = 4}, + [2485] = {.lex_state = 19, .external_lex_state = 4}, + [2486] = {.lex_state = 19, .external_lex_state = 4}, + [2487] = {.lex_state = 19, .external_lex_state = 4}, + [2488] = {.lex_state = 19, .external_lex_state = 4}, + [2489] = {.lex_state = 19, .external_lex_state = 4}, + [2490] = {.lex_state = 19, .external_lex_state = 4}, + [2491] = {.lex_state = 19, .external_lex_state = 4}, + [2492] = {.lex_state = 19, .external_lex_state = 4}, + [2493] = {.lex_state = 103}, + [2494] = {.lex_state = 19, .external_lex_state = 4}, + [2495] = {.lex_state = 19, .external_lex_state = 4}, + [2496] = {.lex_state = 19, .external_lex_state = 4}, + [2497] = {.lex_state = 16, .external_lex_state = 4}, + [2498] = {.lex_state = 103}, + [2499] = {.lex_state = 103}, + [2500] = {.lex_state = 15, .external_lex_state = 4}, + [2501] = {.lex_state = 103}, + [2502] = {.lex_state = 103}, + [2503] = {.lex_state = 103}, + [2504] = {.lex_state = 19, .external_lex_state = 4}, + [2505] = {.lex_state = 15, .external_lex_state = 4}, + [2506] = {.lex_state = 24}, + [2507] = {.lex_state = 103}, + [2508] = {.lex_state = 24}, + [2509] = {.lex_state = 16, .external_lex_state = 4}, [2510] = {.lex_state = 16, .external_lex_state = 4}, - [2511] = {.lex_state = 13, .external_lex_state = 4}, - [2512] = {.lex_state = 13, .external_lex_state = 4}, + [2511] = {.lex_state = 16, .external_lex_state = 4}, + [2512] = {.lex_state = 16, .external_lex_state = 4}, [2513] = {.lex_state = 16, .external_lex_state = 4}, - [2514] = {.lex_state = 13, .external_lex_state = 4}, - [2515] = {.lex_state = 12, .external_lex_state = 5}, - [2516] = {.lex_state = 16, .external_lex_state = 4}, - [2517] = {.lex_state = 13, .external_lex_state = 4}, + [2514] = {.lex_state = 19, .external_lex_state = 4}, + [2515] = {.lex_state = 16, .external_lex_state = 4}, + [2516] = {.lex_state = 19, .external_lex_state = 5}, + [2517] = {.lex_state = 19, .external_lex_state = 5}, [2518] = {.lex_state = 16, .external_lex_state = 4}, - [2519] = {.lex_state = 13, .external_lex_state = 4}, - [2520] = {.lex_state = 16, .external_lex_state = 5}, - [2521] = {.lex_state = 13, .external_lex_state = 4}, - [2522] = {.lex_state = 13, .external_lex_state = 4}, - [2523] = {.lex_state = 13, .external_lex_state = 4}, - [2524] = {.lex_state = 13, .external_lex_state = 4}, - [2525] = {.lex_state = 99}, - [2526] = {.lex_state = 13}, - [2527] = {.lex_state = 16, .external_lex_state = 5}, - [2528] = {.lex_state = 12, .external_lex_state = 5}, - [2529] = {.lex_state = 13, .external_lex_state = 4}, - [2530] = {.lex_state = 13, .external_lex_state = 4}, - [2531] = {.lex_state = 21}, - [2532] = {.lex_state = 13, .external_lex_state = 4}, - [2533] = {.lex_state = 16, .external_lex_state = 5}, - [2534] = {.lex_state = 21}, - [2535] = {.lex_state = 16, .external_lex_state = 5}, - [2536] = {.lex_state = 16, .external_lex_state = 5}, - [2537] = {.lex_state = 16, .external_lex_state = 5}, - [2538] = {.lex_state = 16, .external_lex_state = 5}, - [2539] = {.lex_state = 13}, - [2540] = {.lex_state = 16, .external_lex_state = 5}, - [2541] = {.lex_state = 13, .external_lex_state = 4}, - [2542] = {.lex_state = 13, .external_lex_state = 4}, - [2543] = {.lex_state = 13, .external_lex_state = 4}, - [2544] = {.lex_state = 16, .external_lex_state = 5}, - [2545] = {.lex_state = 16, .external_lex_state = 5}, - [2546] = {.lex_state = 16, .external_lex_state = 5}, - [2547] = {.lex_state = 16, .external_lex_state = 5}, - [2548] = {.lex_state = 13, .external_lex_state = 4}, - [2549] = {.lex_state = 16, .external_lex_state = 5}, - [2550] = {.lex_state = 13, .external_lex_state = 4}, - [2551] = {.lex_state = 13, .external_lex_state = 4}, - [2552] = {.lex_state = 16, .external_lex_state = 5}, - [2553] = {.lex_state = 16, .external_lex_state = 5}, - [2554] = {.lex_state = 16, .external_lex_state = 5}, - [2555] = {.lex_state = 13}, - [2556] = {.lex_state = 13, .external_lex_state = 4}, - [2557] = {.lex_state = 13, .external_lex_state = 4}, - [2558] = {.lex_state = 13, .external_lex_state = 4}, - [2559] = {.lex_state = 13, .external_lex_state = 4}, - [2560] = {.lex_state = 16, .external_lex_state = 5}, - [2561] = {.lex_state = 13, .external_lex_state = 4}, - [2562] = {.lex_state = 16, .external_lex_state = 5}, - [2563] = {.lex_state = 99, .external_lex_state = 4}, - [2564] = {.lex_state = 21}, - [2565] = {.lex_state = 16, .external_lex_state = 5}, - [2566] = {.lex_state = 13, .external_lex_state = 4}, - [2567] = {.lex_state = 16, .external_lex_state = 5}, - [2568] = {.lex_state = 16, .external_lex_state = 5}, - [2569] = {.lex_state = 16, .external_lex_state = 5}, - [2570] = {.lex_state = 16, .external_lex_state = 5}, - [2571] = {.lex_state = 16, .external_lex_state = 5}, - [2572] = {.lex_state = 16, .external_lex_state = 5}, - [2573] = {.lex_state = 16, .external_lex_state = 5}, - [2574] = {.lex_state = 16, .external_lex_state = 5}, - [2575] = {.lex_state = 21}, - [2576] = {.lex_state = 13, .external_lex_state = 4}, - [2577] = {.lex_state = 16, .external_lex_state = 5}, - [2578] = {.lex_state = 16, .external_lex_state = 5}, - [2579] = {.lex_state = 16, .external_lex_state = 5}, - [2580] = {.lex_state = 16, .external_lex_state = 5}, - [2581] = {.lex_state = 16, .external_lex_state = 5}, - [2582] = {.lex_state = 99, .external_lex_state = 4}, - [2583] = {.lex_state = 99, .external_lex_state = 4}, - [2584] = {.lex_state = 13, .external_lex_state = 4}, - [2585] = {.lex_state = 16, .external_lex_state = 5}, - [2586] = {.lex_state = 16, .external_lex_state = 5}, - [2587] = {.lex_state = 99, .external_lex_state = 4}, - [2588] = {.lex_state = 99, .external_lex_state = 4}, - [2589] = {.lex_state = 99, .external_lex_state = 4}, - [2590] = {.lex_state = 99, .external_lex_state = 4}, - [2591] = {.lex_state = 99, .external_lex_state = 4}, - [2592] = {.lex_state = 13, .external_lex_state = 4}, - [2593] = {.lex_state = 99, .external_lex_state = 4}, - [2594] = {.lex_state = 99, .external_lex_state = 4}, - [2595] = {.lex_state = 99, .external_lex_state = 4}, - [2596] = {.lex_state = 99, .external_lex_state = 4}, - [2597] = {.lex_state = 12, .external_lex_state = 5}, - [2598] = {.lex_state = 99, .external_lex_state = 4}, - [2599] = {.lex_state = 99}, - [2600] = {.lex_state = 16, .external_lex_state = 5}, - [2601] = {.lex_state = 99, .external_lex_state = 4}, - [2602] = {.lex_state = 99, .external_lex_state = 4}, - [2603] = {.lex_state = 99, .external_lex_state = 4}, - [2604] = {.lex_state = 99, .external_lex_state = 4}, - [2605] = {.lex_state = 12, .external_lex_state = 5}, - [2606] = {.lex_state = 99, .external_lex_state = 4}, - [2607] = {.lex_state = 99, .external_lex_state = 4}, - [2608] = {.lex_state = 16, .external_lex_state = 5}, - [2609] = {.lex_state = 99, .external_lex_state = 4}, - [2610] = {.lex_state = 16, .external_lex_state = 5}, - [2611] = {.lex_state = 16, .external_lex_state = 5}, - [2612] = {.lex_state = 99, .external_lex_state = 4}, - [2613] = {.lex_state = 99, .external_lex_state = 4}, - [2614] = {.lex_state = 99, .external_lex_state = 4}, - [2615] = {.lex_state = 99, .external_lex_state = 4}, - [2616] = {.lex_state = 99, .external_lex_state = 4}, - [2617] = {.lex_state = 99, .external_lex_state = 4}, - [2618] = {.lex_state = 99, .external_lex_state = 4}, - [2619] = {.lex_state = 13, .external_lex_state = 4}, - [2620] = {.lex_state = 99, .external_lex_state = 4}, - [2621] = {.lex_state = 99, .external_lex_state = 4}, - [2622] = {.lex_state = 16, .external_lex_state = 5}, - [2623] = {.lex_state = 99, .external_lex_state = 4}, - [2624] = {.lex_state = 99, .external_lex_state = 4}, - [2625] = {.lex_state = 99, .external_lex_state = 4}, - [2626] = {.lex_state = 99, .external_lex_state = 4}, - [2627] = {.lex_state = 99, .external_lex_state = 4}, - [2628] = {.lex_state = 99, .external_lex_state = 4}, - [2629] = {.lex_state = 99, .external_lex_state = 4}, - [2630] = {.lex_state = 16, .external_lex_state = 5}, - [2631] = {.lex_state = 99, .external_lex_state = 4}, - [2632] = {.lex_state = 99, .external_lex_state = 4}, - [2633] = {.lex_state = 99, .external_lex_state = 4}, - [2634] = {.lex_state = 16, .external_lex_state = 5}, - [2635] = {.lex_state = 99, .external_lex_state = 4}, - [2636] = {.lex_state = 99, .external_lex_state = 4}, - [2637] = {.lex_state = 99, .external_lex_state = 4}, - [2638] = {.lex_state = 99, .external_lex_state = 4}, - [2639] = {.lex_state = 99, .external_lex_state = 4}, - [2640] = {.lex_state = 99, .external_lex_state = 4}, - [2641] = {.lex_state = 99, .external_lex_state = 4}, - [2642] = {.lex_state = 99, .external_lex_state = 4}, - [2643] = {.lex_state = 99, .external_lex_state = 4}, - [2644] = {.lex_state = 12}, - [2645] = {.lex_state = 27}, - [2646] = {.lex_state = 12}, - [2647] = {.lex_state = 99}, - [2648] = {.lex_state = 12}, - [2649] = {.lex_state = 21}, - [2650] = {.lex_state = 12}, - [2651] = {.lex_state = 27}, - [2652] = {.lex_state = 27}, - [2653] = {.lex_state = 99, .external_lex_state = 5}, - [2654] = {.lex_state = 27}, - [2655] = {.lex_state = 16}, - [2656] = {.lex_state = 99, .external_lex_state = 4}, - [2657] = {.lex_state = 16}, - [2658] = {.lex_state = 27}, - [2659] = {.lex_state = 21}, - [2660] = {.lex_state = 16}, - [2661] = {.lex_state = 12}, - [2662] = {.lex_state = 12}, - [2663] = {.lex_state = 27}, - [2664] = {.lex_state = 99, .external_lex_state = 4}, - [2665] = {.lex_state = 99}, - [2666] = {.lex_state = 99, .external_lex_state = 5}, - [2667] = {.lex_state = 27}, - [2668] = {.lex_state = 13, .external_lex_state = 4}, - [2669] = {.lex_state = 99, .external_lex_state = 4}, - [2670] = {.lex_state = 12}, - [2671] = {.lex_state = 99, .external_lex_state = 5}, - [2672] = {.lex_state = 99, .external_lex_state = 4}, - [2673] = {.lex_state = 12}, - [2674] = {.lex_state = 21}, - [2675] = {.lex_state = 12}, - [2676] = {.lex_state = 21}, - [2677] = {.lex_state = 12}, - [2678] = {.lex_state = 12}, - [2679] = {.lex_state = 12}, - [2680] = {.lex_state = 99, .external_lex_state = 4}, - [2681] = {.lex_state = 99}, - [2682] = {.lex_state = 99}, - [2683] = {.lex_state = 13}, - [2684] = {.lex_state = 27}, - [2685] = {.lex_state = 12}, - [2686] = {.lex_state = 27}, - [2687] = {.lex_state = 99, .external_lex_state = 5}, - [2688] = {.lex_state = 12}, - [2689] = {.lex_state = 99}, - [2690] = {.lex_state = 99}, - [2691] = {.lex_state = 99}, - [2692] = {.lex_state = 21}, - [2693] = {.lex_state = 12}, - [2694] = {.lex_state = 12}, - [2695] = {.lex_state = 21}, - [2696] = {.lex_state = 99, .external_lex_state = 5}, - [2697] = {.lex_state = 99, .external_lex_state = 5}, - [2698] = {.lex_state = 12}, - [2699] = {.lex_state = 99, .external_lex_state = 5}, - [2700] = {.lex_state = 99, .external_lex_state = 5}, - [2701] = {.lex_state = 12}, - [2702] = {.lex_state = 13}, - [2703] = {.lex_state = 21}, - [2704] = {.lex_state = 12}, - [2705] = {.lex_state = 27}, - [2706] = {.lex_state = 99, .external_lex_state = 5}, - [2707] = {.lex_state = 99}, - [2708] = {.lex_state = 12}, - [2709] = {.lex_state = 99, .external_lex_state = 4}, - [2710] = {.lex_state = 21}, - [2711] = {.lex_state = 21}, - [2712] = {.lex_state = 12}, - [2713] = {.lex_state = 99}, - [2714] = {.lex_state = 12}, - [2715] = {.lex_state = 99, .external_lex_state = 5}, - [2716] = {.lex_state = 99}, - [2717] = {.lex_state = 99, .external_lex_state = 5}, - [2718] = {.lex_state = 99, .external_lex_state = 4}, - [2719] = {.lex_state = 99, .external_lex_state = 5}, - [2720] = {.lex_state = 99, .external_lex_state = 5}, - [2721] = {.lex_state = 99, .external_lex_state = 5}, - [2722] = {.lex_state = 99, .external_lex_state = 4}, - [2723] = {.lex_state = 99, .external_lex_state = 5}, - [2724] = {.lex_state = 99, .external_lex_state = 5}, - [2725] = {.lex_state = 12}, - [2726] = {.lex_state = 99, .external_lex_state = 5}, - [2727] = {.lex_state = 99}, - [2728] = {.lex_state = 99, .external_lex_state = 5}, - [2729] = {.lex_state = 99, .external_lex_state = 5}, - [2730] = {.lex_state = 99, .external_lex_state = 5}, - [2731] = {.lex_state = 99, .external_lex_state = 4}, - [2732] = {.lex_state = 12}, - [2733] = {.lex_state = 99}, - [2734] = {.lex_state = 99, .external_lex_state = 4}, - [2735] = {.lex_state = 12}, - [2736] = {.lex_state = 27}, - [2737] = {.lex_state = 99}, - [2738] = {.lex_state = 13}, - [2739] = {.lex_state = 13}, - [2740] = {.lex_state = 21}, - [2741] = {.lex_state = 27}, - [2742] = {.lex_state = 27}, - [2743] = {.lex_state = 12}, - [2744] = {.lex_state = 99, .external_lex_state = 5}, - [2745] = {.lex_state = 12}, - [2746] = {.lex_state = 12}, - [2747] = {.lex_state = 12}, - [2748] = {.lex_state = 99, .external_lex_state = 5}, - [2749] = {.lex_state = 99, .external_lex_state = 5}, - [2750] = {.lex_state = 99, .external_lex_state = 5}, - [2751] = {.lex_state = 99, .external_lex_state = 5}, - [2752] = {.lex_state = 99, .external_lex_state = 5}, - [2753] = {.lex_state = 99, .external_lex_state = 5}, - [2754] = {.lex_state = 13}, - [2755] = {.lex_state = 99, .external_lex_state = 5}, - [2756] = {.lex_state = 99, .external_lex_state = 5}, - [2757] = {.lex_state = 99, .external_lex_state = 5}, - [2758] = {.lex_state = 99, .external_lex_state = 5}, - [2759] = {.lex_state = 27}, - [2760] = {.lex_state = 99, .external_lex_state = 5}, - [2761] = {.lex_state = 13}, - [2762] = {.lex_state = 99, .external_lex_state = 5}, - [2763] = {.lex_state = 27}, - [2764] = {.lex_state = 21}, - [2765] = {.lex_state = 21}, - [2766] = {.lex_state = 21}, - [2767] = {.lex_state = 27}, - [2768] = {.lex_state = 27}, - [2769] = {.lex_state = 99, .external_lex_state = 5}, - [2770] = {.lex_state = 99, .external_lex_state = 5}, - [2771] = {.lex_state = 21}, - [2772] = {.lex_state = 21}, - [2773] = {.lex_state = 12}, - [2774] = {.lex_state = 99, .external_lex_state = 5}, - [2775] = {.lex_state = 99, .external_lex_state = 5}, - [2776] = {.lex_state = 21}, - [2777] = {.lex_state = 99, .external_lex_state = 5}, - [2778] = {.lex_state = 21}, - [2779] = {.lex_state = 99, .external_lex_state = 5}, - [2780] = {.lex_state = 99, .external_lex_state = 5}, - [2781] = {.lex_state = 99, .external_lex_state = 5}, - [2782] = {.lex_state = 99, .external_lex_state = 5}, - [2783] = {.lex_state = 99, .external_lex_state = 5}, - [2784] = {.lex_state = 13}, - [2785] = {.lex_state = 12}, - [2786] = {.lex_state = 99, .external_lex_state = 5}, - [2787] = {.lex_state = 99, .external_lex_state = 4}, - [2788] = {.lex_state = 21}, - [2789] = {.lex_state = 99, .external_lex_state = 5}, - [2790] = {.lex_state = 21}, - [2791] = {.lex_state = 21}, - [2792] = {.lex_state = 21}, - [2793] = {.lex_state = 21}, - [2794] = {.lex_state = 21}, - [2795] = {.lex_state = 21}, - [2796] = {.lex_state = 21}, - [2797] = {.lex_state = 21}, - [2798] = {.lex_state = 99, .external_lex_state = 4}, - [2799] = {.lex_state = 21}, - [2800] = {.lex_state = 21}, - [2801] = {.lex_state = 21}, - [2802] = {.lex_state = 12}, - [2803] = {.lex_state = 21}, - [2804] = {.lex_state = 99, .external_lex_state = 5}, - [2805] = {.lex_state = 99, .external_lex_state = 5}, - [2806] = {.lex_state = 21}, - [2807] = {.lex_state = 21}, - [2808] = {.lex_state = 99, .external_lex_state = 5}, - [2809] = {.lex_state = 99, .external_lex_state = 5}, - [2810] = {.lex_state = 99, .external_lex_state = 5}, - [2811] = {.lex_state = 99, .external_lex_state = 5}, - [2812] = {.lex_state = 99, .external_lex_state = 5}, - [2813] = {.lex_state = 13}, - [2814] = {.lex_state = 21}, - [2815] = {.lex_state = 99}, - [2816] = {.lex_state = 19, .external_lex_state = 6}, - [2817] = {.lex_state = 19, .external_lex_state = 6}, - [2818] = {.lex_state = 19, .external_lex_state = 6}, - [2819] = {.lex_state = 16}, - [2820] = {.lex_state = 16}, - [2821] = {.lex_state = 99, .external_lex_state = 4}, - [2822] = {.lex_state = 16}, - [2823] = {.lex_state = 99}, - [2824] = {.lex_state = 99, .external_lex_state = 4}, - [2825] = {.lex_state = 19, .external_lex_state = 6}, - [2826] = {.lex_state = 19, .external_lex_state = 6}, - [2827] = {.lex_state = 99, .external_lex_state = 5}, - [2828] = {.lex_state = 19, .external_lex_state = 6}, - [2829] = {.lex_state = 19, .external_lex_state = 6}, - [2830] = {.lex_state = 99, .external_lex_state = 4}, - [2831] = {.lex_state = 99}, - [2832] = {.lex_state = 99}, - [2833] = {.lex_state = 99, .external_lex_state = 4}, - [2834] = {.lex_state = 19, .external_lex_state = 6}, - [2835] = {.lex_state = 99}, - [2836] = {.lex_state = 99, .external_lex_state = 4}, - [2837] = {.lex_state = 99}, - [2838] = {.lex_state = 99}, - [2839] = {.lex_state = 0, .external_lex_state = 4}, - [2840] = {.lex_state = 21}, - [2841] = {.lex_state = 99}, - [2842] = {.lex_state = 99, .external_lex_state = 4}, - [2843] = {.lex_state = 99, .external_lex_state = 4}, - [2844] = {.lex_state = 99}, - [2845] = {.lex_state = 99, .external_lex_state = 4}, - [2846] = {.lex_state = 21}, - [2847] = {.lex_state = 99}, - [2848] = {.lex_state = 0, .external_lex_state = 4}, - [2849] = {.lex_state = 99, .external_lex_state = 4}, - [2850] = {.lex_state = 13}, - [2851] = {.lex_state = 99, .external_lex_state = 4}, - [2852] = {.lex_state = 0, .external_lex_state = 4}, - [2853] = {.lex_state = 99}, - [2854] = {.lex_state = 99}, - [2855] = {.lex_state = 99}, - [2856] = {.lex_state = 99, .external_lex_state = 4}, + [2519] = {.lex_state = 15, .external_lex_state = 4}, + [2520] = {.lex_state = 15, .external_lex_state = 4}, + [2521] = {.lex_state = 16, .external_lex_state = 4}, + [2522] = {.lex_state = 19, .external_lex_state = 4}, + [2523] = {.lex_state = 19, .external_lex_state = 4}, + [2524] = {.lex_state = 19, .external_lex_state = 4}, + [2525] = {.lex_state = 19, .external_lex_state = 5}, + [2526] = {.lex_state = 103}, + [2527] = {.lex_state = 16, .external_lex_state = 4}, + [2528] = {.lex_state = 15, .external_lex_state = 5}, + [2529] = {.lex_state = 19, .external_lex_state = 4}, + [2530] = {.lex_state = 103}, + [2531] = {.lex_state = 16, .external_lex_state = 4}, + [2532] = {.lex_state = 19, .external_lex_state = 4}, + [2533] = {.lex_state = 16}, + [2534] = {.lex_state = 19, .external_lex_state = 5}, + [2535] = {.lex_state = 31}, + [2536] = {.lex_state = 16, .external_lex_state = 4}, + [2537] = {.lex_state = 19, .external_lex_state = 5}, + [2538] = {.lex_state = 19, .external_lex_state = 5}, + [2539] = {.lex_state = 24}, + [2540] = {.lex_state = 16, .external_lex_state = 4}, + [2541] = {.lex_state = 16, .external_lex_state = 4}, + [2542] = {.lex_state = 31}, + [2543] = {.lex_state = 19, .external_lex_state = 5}, + [2544] = {.lex_state = 16, .external_lex_state = 4}, + [2545] = {.lex_state = 16, .external_lex_state = 4}, + [2546] = {.lex_state = 16}, + [2547] = {.lex_state = 16}, + [2548] = {.lex_state = 24}, + [2549] = {.lex_state = 16, .external_lex_state = 4}, + [2550] = {.lex_state = 15, .external_lex_state = 5}, + [2551] = {.lex_state = 16, .external_lex_state = 4}, + [2552] = {.lex_state = 19, .external_lex_state = 5}, + [2553] = {.lex_state = 31}, + [2554] = {.lex_state = 31}, + [2555] = {.lex_state = 16, .external_lex_state = 4}, + [2556] = {.lex_state = 16, .external_lex_state = 4}, + [2557] = {.lex_state = 31}, + [2558] = {.lex_state = 19, .external_lex_state = 5}, + [2559] = {.lex_state = 16, .external_lex_state = 4}, + [2560] = {.lex_state = 16, .external_lex_state = 4}, + [2561] = {.lex_state = 31}, + [2562] = {.lex_state = 16, .external_lex_state = 4}, + [2563] = {.lex_state = 19, .external_lex_state = 5}, + [2564] = {.lex_state = 19, .external_lex_state = 5}, + [2565] = {.lex_state = 16, .external_lex_state = 4}, + [2566] = {.lex_state = 16, .external_lex_state = 4}, + [2567] = {.lex_state = 19, .external_lex_state = 5}, + [2568] = {.lex_state = 19, .external_lex_state = 5}, + [2569] = {.lex_state = 31}, + [2570] = {.lex_state = 16, .external_lex_state = 4}, + [2571] = {.lex_state = 19, .external_lex_state = 5}, + [2572] = {.lex_state = 31}, + [2573] = {.lex_state = 19, .external_lex_state = 5}, + [2574] = {.lex_state = 19, .external_lex_state = 5}, + [2575] = {.lex_state = 24}, + [2576] = {.lex_state = 19, .external_lex_state = 5}, + [2577] = {.lex_state = 19, .external_lex_state = 5}, + [2578] = {.lex_state = 19, .external_lex_state = 5}, + [2579] = {.lex_state = 16, .external_lex_state = 4}, + [2580] = {.lex_state = 19, .external_lex_state = 5}, + [2581] = {.lex_state = 24}, + [2582] = {.lex_state = 19, .external_lex_state = 5}, + [2583] = {.lex_state = 19, .external_lex_state = 5}, + [2584] = {.lex_state = 16, .external_lex_state = 4}, + [2585] = {.lex_state = 19, .external_lex_state = 5}, + [2586] = {.lex_state = 16, .external_lex_state = 4}, + [2587] = {.lex_state = 19, .external_lex_state = 5}, + [2588] = {.lex_state = 19, .external_lex_state = 5}, + [2589] = {.lex_state = 103, .external_lex_state = 4}, + [2590] = {.lex_state = 103, .external_lex_state = 4}, + [2591] = {.lex_state = 19, .external_lex_state = 5}, + [2592] = {.lex_state = 19, .external_lex_state = 5}, + [2593] = {.lex_state = 19, .external_lex_state = 5}, + [2594] = {.lex_state = 16, .external_lex_state = 4}, + [2595] = {.lex_state = 19, .external_lex_state = 5}, + [2596] = {.lex_state = 19, .external_lex_state = 5}, + [2597] = {.lex_state = 19, .external_lex_state = 5}, + [2598] = {.lex_state = 19, .external_lex_state = 5}, + [2599] = {.lex_state = 16, .external_lex_state = 4}, + [2600] = {.lex_state = 103}, + [2601] = {.lex_state = 103, .external_lex_state = 4}, + [2602] = {.lex_state = 19, .external_lex_state = 5}, + [2603] = {.lex_state = 19, .external_lex_state = 5}, + [2604] = {.lex_state = 19, .external_lex_state = 5}, + [2605] = {.lex_state = 16, .external_lex_state = 4}, + [2606] = {.lex_state = 16, .external_lex_state = 4}, + [2607] = {.lex_state = 19, .external_lex_state = 5}, + [2608] = {.lex_state = 19, .external_lex_state = 5}, + [2609] = {.lex_state = 103, .external_lex_state = 4}, + [2610] = {.lex_state = 103, .external_lex_state = 4}, + [2611] = {.lex_state = 103, .external_lex_state = 4}, + [2612] = {.lex_state = 103, .external_lex_state = 4}, + [2613] = {.lex_state = 103, .external_lex_state = 4}, + [2614] = {.lex_state = 15, .external_lex_state = 5}, + [2615] = {.lex_state = 103, .external_lex_state = 4}, + [2616] = {.lex_state = 103, .external_lex_state = 4}, + [2617] = {.lex_state = 103, .external_lex_state = 4}, + [2618] = {.lex_state = 103, .external_lex_state = 4}, + [2619] = {.lex_state = 103, .external_lex_state = 4}, + [2620] = {.lex_state = 19, .external_lex_state = 5}, + [2621] = {.lex_state = 103, .external_lex_state = 4}, + [2622] = {.lex_state = 103, .external_lex_state = 4}, + [2623] = {.lex_state = 103, .external_lex_state = 4}, + [2624] = {.lex_state = 103, .external_lex_state = 4}, + [2625] = {.lex_state = 103, .external_lex_state = 4}, + [2626] = {.lex_state = 103, .external_lex_state = 4}, + [2627] = {.lex_state = 103, .external_lex_state = 4}, + [2628] = {.lex_state = 103, .external_lex_state = 4}, + [2629] = {.lex_state = 103, .external_lex_state = 4}, + [2630] = {.lex_state = 103, .external_lex_state = 4}, + [2631] = {.lex_state = 103, .external_lex_state = 4}, + [2632] = {.lex_state = 103, .external_lex_state = 4}, + [2633] = {.lex_state = 15, .external_lex_state = 5}, + [2634] = {.lex_state = 19, .external_lex_state = 5}, + [2635] = {.lex_state = 103, .external_lex_state = 4}, + [2636] = {.lex_state = 16, .external_lex_state = 4}, + [2637] = {.lex_state = 19, .external_lex_state = 5}, + [2638] = {.lex_state = 19, .external_lex_state = 5}, + [2639] = {.lex_state = 103, .external_lex_state = 4}, + [2640] = {.lex_state = 16, .external_lex_state = 4}, + [2641] = {.lex_state = 103, .external_lex_state = 4}, + [2642] = {.lex_state = 103, .external_lex_state = 4}, + [2643] = {.lex_state = 103, .external_lex_state = 4}, + [2644] = {.lex_state = 19, .external_lex_state = 5}, + [2645] = {.lex_state = 103}, + [2646] = {.lex_state = 103, .external_lex_state = 4}, + [2647] = {.lex_state = 103, .external_lex_state = 4}, + [2648] = {.lex_state = 103, .external_lex_state = 4}, + [2649] = {.lex_state = 103, .external_lex_state = 4}, + [2650] = {.lex_state = 103, .external_lex_state = 4}, + [2651] = {.lex_state = 103, .external_lex_state = 4}, + [2652] = {.lex_state = 103, .external_lex_state = 4}, + [2653] = {.lex_state = 103, .external_lex_state = 4}, + [2654] = {.lex_state = 19, .external_lex_state = 5}, + [2655] = {.lex_state = 103, .external_lex_state = 4}, + [2656] = {.lex_state = 103, .external_lex_state = 4}, + [2657] = {.lex_state = 103, .external_lex_state = 4}, + [2658] = {.lex_state = 103, .external_lex_state = 4}, + [2659] = {.lex_state = 103, .external_lex_state = 4}, + [2660] = {.lex_state = 103, .external_lex_state = 4}, + [2661] = {.lex_state = 15, .external_lex_state = 5}, + [2662] = {.lex_state = 103, .external_lex_state = 4}, + [2663] = {.lex_state = 103, .external_lex_state = 4}, + [2664] = {.lex_state = 103, .external_lex_state = 4}, + [2665] = {.lex_state = 19, .external_lex_state = 5}, + [2666] = {.lex_state = 31}, + [2667] = {.lex_state = 103, .external_lex_state = 4}, + [2668] = {.lex_state = 15}, + [2669] = {.lex_state = 19}, + [2670] = {.lex_state = 103}, + [2671] = {.lex_state = 15}, + [2672] = {.lex_state = 103, .external_lex_state = 5}, + [2673] = {.lex_state = 19}, + [2674] = {.lex_state = 15}, + [2675] = {.lex_state = 103, .external_lex_state = 4}, + [2676] = {.lex_state = 15}, + [2677] = {.lex_state = 103, .external_lex_state = 5}, + [2678] = {.lex_state = 103, .external_lex_state = 5}, + [2679] = {.lex_state = 15}, + [2680] = {.lex_state = 19}, + [2681] = {.lex_state = 24}, + [2682] = {.lex_state = 103}, + [2683] = {.lex_state = 103}, + [2684] = {.lex_state = 103}, + [2685] = {.lex_state = 15}, + [2686] = {.lex_state = 103, .external_lex_state = 4}, + [2687] = {.lex_state = 24}, + [2688] = {.lex_state = 15}, + [2689] = {.lex_state = 24}, + [2690] = {.lex_state = 15}, + [2691] = {.lex_state = 15}, + [2692] = {.lex_state = 16, .external_lex_state = 4}, + [2693] = {.lex_state = 103, .external_lex_state = 4}, + [2694] = {.lex_state = 103, .external_lex_state = 4}, + [2695] = {.lex_state = 103, .external_lex_state = 4}, + [2696] = {.lex_state = 24}, + [2697] = {.lex_state = 15}, + [2698] = {.lex_state = 16}, + [2699] = {.lex_state = 15}, + [2700] = {.lex_state = 15}, + [2701] = {.lex_state = 16}, + [2702] = {.lex_state = 103, .external_lex_state = 4}, + [2703] = {.lex_state = 24}, + [2704] = {.lex_state = 24}, + [2705] = {.lex_state = 103, .external_lex_state = 4}, + [2706] = {.lex_state = 24}, + [2707] = {.lex_state = 16}, + [2708] = {.lex_state = 103}, + [2709] = {.lex_state = 103, .external_lex_state = 5}, + [2710] = {.lex_state = 15}, + [2711] = {.lex_state = 103, .external_lex_state = 5}, + [2712] = {.lex_state = 103, .external_lex_state = 5}, + [2713] = {.lex_state = 16}, + [2714] = {.lex_state = 16}, + [2715] = {.lex_state = 15}, + [2716] = {.lex_state = 15}, + [2717] = {.lex_state = 103}, + [2718] = {.lex_state = 103, .external_lex_state = 5}, + [2719] = {.lex_state = 24}, + [2720] = {.lex_state = 24}, + [2721] = {.lex_state = 24}, + [2722] = {.lex_state = 24}, + [2723] = {.lex_state = 103, .external_lex_state = 4}, + [2724] = {.lex_state = 103, .external_lex_state = 5}, + [2725] = {.lex_state = 24}, + [2726] = {.lex_state = 15}, + [2727] = {.lex_state = 24}, + [2728] = {.lex_state = 103, .external_lex_state = 5}, + [2729] = {.lex_state = 103, .external_lex_state = 4}, + [2730] = {.lex_state = 103, .external_lex_state = 5}, + [2731] = {.lex_state = 15}, + [2732] = {.lex_state = 24}, + [2733] = {.lex_state = 15}, + [2734] = {.lex_state = 103, .external_lex_state = 5}, + [2735] = {.lex_state = 103, .external_lex_state = 5}, + [2736] = {.lex_state = 103, .external_lex_state = 5}, + [2737] = {.lex_state = 103, .external_lex_state = 5}, + [2738] = {.lex_state = 103}, + [2739] = {.lex_state = 103, .external_lex_state = 5}, + [2740] = {.lex_state = 15}, + [2741] = {.lex_state = 15}, + [2742] = {.lex_state = 15}, + [2743] = {.lex_state = 24}, + [2744] = {.lex_state = 103}, + [2745] = {.lex_state = 15}, + [2746] = {.lex_state = 103, .external_lex_state = 4}, + [2747] = {.lex_state = 103, .external_lex_state = 5}, + [2748] = {.lex_state = 103, .external_lex_state = 5}, + [2749] = {.lex_state = 24}, + [2750] = {.lex_state = 103}, + [2751] = {.lex_state = 24}, + [2752] = {.lex_state = 24}, + [2753] = {.lex_state = 103, .external_lex_state = 5}, + [2754] = {.lex_state = 24}, + [2755] = {.lex_state = 103, .external_lex_state = 5}, + [2756] = {.lex_state = 103, .external_lex_state = 5}, + [2757] = {.lex_state = 15}, + [2758] = {.lex_state = 103, .external_lex_state = 5}, + [2759] = {.lex_state = 103, .external_lex_state = 5}, + [2760] = {.lex_state = 103, .external_lex_state = 5}, + [2761] = {.lex_state = 103, .external_lex_state = 5}, + [2762] = {.lex_state = 103, .external_lex_state = 5}, + [2763] = {.lex_state = 15}, + [2764] = {.lex_state = 103, .external_lex_state = 5}, + [2765] = {.lex_state = 103, .external_lex_state = 5}, + [2766] = {.lex_state = 103, .external_lex_state = 5}, + [2767] = {.lex_state = 103, .external_lex_state = 5}, + [2768] = {.lex_state = 24}, + [2769] = {.lex_state = 103}, + [2770] = {.lex_state = 103, .external_lex_state = 5}, + [2771] = {.lex_state = 24}, + [2772] = {.lex_state = 103, .external_lex_state = 5}, + [2773] = {.lex_state = 24}, + [2774] = {.lex_state = 15}, + [2775] = {.lex_state = 15}, + [2776] = {.lex_state = 15}, + [2777] = {.lex_state = 15}, + [2778] = {.lex_state = 103, .external_lex_state = 5}, + [2779] = {.lex_state = 103, .external_lex_state = 5}, + [2780] = {.lex_state = 16}, + [2781] = {.lex_state = 24}, + [2782] = {.lex_state = 24}, + [2783] = {.lex_state = 103, .external_lex_state = 5}, + [2784] = {.lex_state = 103, .external_lex_state = 5}, + [2785] = {.lex_state = 24}, + [2786] = {.lex_state = 103, .external_lex_state = 5}, + [2787] = {.lex_state = 103, .external_lex_state = 5}, + [2788] = {.lex_state = 103, .external_lex_state = 5}, + [2789] = {.lex_state = 103, .external_lex_state = 5}, + [2790] = {.lex_state = 103, .external_lex_state = 5}, + [2791] = {.lex_state = 103, .external_lex_state = 5}, + [2792] = {.lex_state = 103}, + [2793] = {.lex_state = 24}, + [2794] = {.lex_state = 103, .external_lex_state = 5}, + [2795] = {.lex_state = 15}, + [2796] = {.lex_state = 103, .external_lex_state = 4}, + [2797] = {.lex_state = 103, .external_lex_state = 5}, + [2798] = {.lex_state = 24}, + [2799] = {.lex_state = 15}, + [2800] = {.lex_state = 103, .external_lex_state = 5}, + [2801] = {.lex_state = 103}, + [2802] = {.lex_state = 16}, + [2803] = {.lex_state = 24}, + [2804] = {.lex_state = 16}, + [2805] = {.lex_state = 24}, + [2806] = {.lex_state = 24}, + [2807] = {.lex_state = 24}, + [2808] = {.lex_state = 24}, + [2809] = {.lex_state = 24}, + [2810] = {.lex_state = 15}, + [2811] = {.lex_state = 103}, + [2812] = {.lex_state = 103, .external_lex_state = 5}, + [2813] = {.lex_state = 103, .external_lex_state = 5}, + [2814] = {.lex_state = 103, .external_lex_state = 4}, + [2815] = {.lex_state = 103, .external_lex_state = 5}, + [2816] = {.lex_state = 103, .external_lex_state = 5}, + [2817] = {.lex_state = 103, .external_lex_state = 5}, + [2818] = {.lex_state = 103, .external_lex_state = 5}, + [2819] = {.lex_state = 103, .external_lex_state = 5}, + [2820] = {.lex_state = 103, .external_lex_state = 5}, + [2821] = {.lex_state = 15}, + [2822] = {.lex_state = 103, .external_lex_state = 5}, + [2823] = {.lex_state = 22, .external_lex_state = 6}, + [2824] = {.lex_state = 19}, + [2825] = {.lex_state = 103}, + [2826] = {.lex_state = 19}, + [2827] = {.lex_state = 19}, + [2828] = {.lex_state = 22, .external_lex_state = 6}, + [2829] = {.lex_state = 22, .external_lex_state = 6}, + [2830] = {.lex_state = 103, .external_lex_state = 4}, + [2831] = {.lex_state = 103, .external_lex_state = 4}, + [2832] = {.lex_state = 103, .external_lex_state = 4}, + [2833] = {.lex_state = 103}, + [2834] = {.lex_state = 22, .external_lex_state = 6}, + [2835] = {.lex_state = 22, .external_lex_state = 6}, + [2836] = {.lex_state = 22, .external_lex_state = 6}, + [2837] = {.lex_state = 22, .external_lex_state = 6}, + [2838] = {.lex_state = 103}, + [2839] = {.lex_state = 103, .external_lex_state = 4}, + [2840] = {.lex_state = 22, .external_lex_state = 6}, + [2841] = {.lex_state = 103, .external_lex_state = 4}, + [2842] = {.lex_state = 103}, + [2843] = {.lex_state = 103, .external_lex_state = 4}, + [2844] = {.lex_state = 103, .external_lex_state = 4}, + [2845] = {.lex_state = 0, .external_lex_state = 4}, + [2846] = {.lex_state = 103, .external_lex_state = 4}, + [2847] = {.lex_state = 103}, + [2848] = {.lex_state = 16}, + [2849] = {.lex_state = 103}, + [2850] = {.lex_state = 0, .external_lex_state = 4}, + [2851] = {.lex_state = 0, .external_lex_state = 4}, + [2852] = {.lex_state = 103}, + [2853] = {.lex_state = 24}, + [2854] = {.lex_state = 103}, + [2855] = {.lex_state = 103}, + [2856] = {.lex_state = 16}, [2857] = {.lex_state = 0, .external_lex_state = 4}, - [2858] = {.lex_state = 99, .external_lex_state = 4}, - [2859] = {.lex_state = 99}, - [2860] = {.lex_state = 99, .external_lex_state = 4}, - [2861] = {.lex_state = 99}, - [2862] = {.lex_state = 99, .external_lex_state = 4}, - [2863] = {.lex_state = 99}, - [2864] = {.lex_state = 99}, - [2865] = {.lex_state = 99}, - [2866] = {.lex_state = 99}, - [2867] = {.lex_state = 99}, - [2868] = {.lex_state = 99, .external_lex_state = 4}, - [2869] = {.lex_state = 99}, - [2870] = {.lex_state = 99, .external_lex_state = 4}, - [2871] = {.lex_state = 13}, - [2872] = {.lex_state = 99}, - [2873] = {.lex_state = 99}, - [2874] = {.lex_state = 99, .external_lex_state = 4}, - [2875] = {.lex_state = 13}, - [2876] = {.lex_state = 99}, - [2877] = {.lex_state = 13}, - [2878] = {.lex_state = 13}, - [2879] = {.lex_state = 99}, + [2858] = {.lex_state = 103}, + [2859] = {.lex_state = 0, .external_lex_state = 4}, + [2860] = {.lex_state = 16}, + [2861] = {.lex_state = 103}, + [2862] = {.lex_state = 24}, + [2863] = {.lex_state = 103}, + [2864] = {.lex_state = 20}, + [2865] = {.lex_state = 103}, + [2866] = {.lex_state = 103}, + [2867] = {.lex_state = 103}, + [2868] = {.lex_state = 103, .external_lex_state = 4}, + [2869] = {.lex_state = 103, .external_lex_state = 4}, + [2870] = {.lex_state = 103, .external_lex_state = 4}, + [2871] = {.lex_state = 16}, + [2872] = {.lex_state = 103}, + [2873] = {.lex_state = 103, .external_lex_state = 4}, + [2874] = {.lex_state = 0, .external_lex_state = 4}, + [2875] = {.lex_state = 103}, + [2876] = {.lex_state = 24}, + [2877] = {.lex_state = 0, .external_lex_state = 4}, + [2878] = {.lex_state = 16}, + [2879] = {.lex_state = 103}, [2880] = {.lex_state = 0, .external_lex_state = 4}, - [2881] = {.lex_state = 13}, - [2882] = {.lex_state = 13}, - [2883] = {.lex_state = 99}, - [2884] = {.lex_state = 99}, - [2885] = {.lex_state = 13}, - [2886] = {.lex_state = 99}, - [2887] = {.lex_state = 99}, - [2888] = {.lex_state = 13}, - [2889] = {.lex_state = 13}, - [2890] = {.lex_state = 99, .external_lex_state = 4}, - [2891] = {.lex_state = 99}, - [2892] = {.lex_state = 13}, - [2893] = {.lex_state = 99, .external_lex_state = 4}, - [2894] = {.lex_state = 99}, - [2895] = {.lex_state = 99, .external_lex_state = 4}, - [2896] = {.lex_state = 99, .external_lex_state = 4}, - [2897] = {.lex_state = 99, .external_lex_state = 4}, - [2898] = {.lex_state = 0, .external_lex_state = 4}, - [2899] = {.lex_state = 99}, - [2900] = {.lex_state = 0, .external_lex_state = 4}, - [2901] = {.lex_state = 0, .external_lex_state = 4}, - [2902] = {.lex_state = 99, .external_lex_state = 4}, - [2903] = {.lex_state = 99, .external_lex_state = 4}, - [2904] = {.lex_state = 99, .external_lex_state = 4}, - [2905] = {.lex_state = 99, .external_lex_state = 4}, - [2906] = {.lex_state = 99, .external_lex_state = 4}, - [2907] = {.lex_state = 99, .external_lex_state = 4}, - [2908] = {.lex_state = 99, .external_lex_state = 4}, - [2909] = {.lex_state = 99, .external_lex_state = 4}, - [2910] = {.lex_state = 99, .external_lex_state = 4}, - [2911] = {.lex_state = 13}, - [2912] = {.lex_state = 99}, - [2913] = {.lex_state = 99}, - [2914] = {.lex_state = 99, .external_lex_state = 4}, - [2915] = {.lex_state = 99, .external_lex_state = 4}, - [2916] = {.lex_state = 99}, - [2917] = {.lex_state = 99, .external_lex_state = 4}, - [2918] = {.lex_state = 99, .external_lex_state = 4}, - [2919] = {.lex_state = 99}, - [2920] = {.lex_state = 99, .external_lex_state = 4}, - [2921] = {.lex_state = 99, .external_lex_state = 4}, - [2922] = {.lex_state = 13}, - [2923] = {.lex_state = 13}, - [2924] = {.lex_state = 21}, - [2925] = {.lex_state = 13}, - [2926] = {.lex_state = 99}, - [2927] = {.lex_state = 99}, - [2928] = {.lex_state = 0, .external_lex_state = 4}, - [2929] = {.lex_state = 99}, - [2930] = {.lex_state = 0, .external_lex_state = 4}, - [2931] = {.lex_state = 13}, - [2932] = {.lex_state = 99}, - [2933] = {.lex_state = 13}, - [2934] = {.lex_state = 99}, - [2935] = {.lex_state = 99, .external_lex_state = 4}, - [2936] = {.lex_state = 99}, - [2937] = {.lex_state = 99, .external_lex_state = 4}, - [2938] = {.lex_state = 99}, - [2939] = {.lex_state = 21}, - [2940] = {.lex_state = 99}, - [2941] = {.lex_state = 99, .external_lex_state = 4}, - [2942] = {.lex_state = 99}, - [2943] = {.lex_state = 13}, - [2944] = {.lex_state = 0, .external_lex_state = 4}, - [2945] = {.lex_state = 99}, - [2946] = {.lex_state = 13}, - [2947] = {.lex_state = 99}, - [2948] = {.lex_state = 99, .external_lex_state = 4}, - [2949] = {.lex_state = 21}, - [2950] = {.lex_state = 0, .external_lex_state = 4}, - [2951] = {.lex_state = 13}, - [2952] = {.lex_state = 99}, - [2953] = {.lex_state = 99}, - [2954] = {.lex_state = 99}, - [2955] = {.lex_state = 99}, - [2956] = {.lex_state = 99}, - [2957] = {.lex_state = 99}, - [2958] = {.lex_state = 99}, - [2959] = {.lex_state = 17}, - [2960] = {.lex_state = 99}, - [2961] = {.lex_state = 99}, - [2962] = {.lex_state = 13}, - [2963] = {.lex_state = 99, .external_lex_state = 5}, - [2964] = {.lex_state = 99, .external_lex_state = 5}, - [2965] = {.lex_state = 17}, - [2966] = {.lex_state = 0, .external_lex_state = 4}, - [2967] = {.lex_state = 21}, - [2968] = {.lex_state = 99}, - [2969] = {.lex_state = 13}, - [2970] = {.lex_state = 21}, - [2971] = {.lex_state = 99, .external_lex_state = 5}, - [2972] = {.lex_state = 21}, - [2973] = {.lex_state = 99, .external_lex_state = 5}, - [2974] = {.lex_state = 13}, - [2975] = {.lex_state = 0, .external_lex_state = 4}, + [2881] = {.lex_state = 0, .external_lex_state = 4}, + [2882] = {.lex_state = 103, .external_lex_state = 4}, + [2883] = {.lex_state = 103}, + [2884] = {.lex_state = 103, .external_lex_state = 4}, + [2885] = {.lex_state = 103}, + [2886] = {.lex_state = 103}, + [2887] = {.lex_state = 16}, + [2888] = {.lex_state = 103}, + [2889] = {.lex_state = 103}, + [2890] = {.lex_state = 103}, + [2891] = {.lex_state = 103, .external_lex_state = 4}, + [2892] = {.lex_state = 103}, + [2893] = {.lex_state = 103}, + [2894] = {.lex_state = 0, .external_lex_state = 4}, + [2895] = {.lex_state = 103, .external_lex_state = 4}, + [2896] = {.lex_state = 24}, + [2897] = {.lex_state = 103, .external_lex_state = 4}, + [2898] = {.lex_state = 103}, + [2899] = {.lex_state = 103, .external_lex_state = 4}, + [2900] = {.lex_state = 103, .external_lex_state = 4}, + [2901] = {.lex_state = 103, .external_lex_state = 4}, + [2902] = {.lex_state = 103, .external_lex_state = 4}, + [2903] = {.lex_state = 103}, + [2904] = {.lex_state = 103, .external_lex_state = 4}, + [2905] = {.lex_state = 103}, + [2906] = {.lex_state = 103, .external_lex_state = 4}, + [2907] = {.lex_state = 103}, + [2908] = {.lex_state = 103, .external_lex_state = 4}, + [2909] = {.lex_state = 16}, + [2910] = {.lex_state = 103}, + [2911] = {.lex_state = 103, .external_lex_state = 4}, + [2912] = {.lex_state = 103}, + [2913] = {.lex_state = 103}, + [2914] = {.lex_state = 103}, + [2915] = {.lex_state = 103, .external_lex_state = 4}, + [2916] = {.lex_state = 103}, + [2917] = {.lex_state = 103, .external_lex_state = 4}, + [2918] = {.lex_state = 103, .external_lex_state = 4}, + [2919] = {.lex_state = 16}, + [2920] = {.lex_state = 103}, + [2921] = {.lex_state = 103}, + [2922] = {.lex_state = 103, .external_lex_state = 4}, + [2923] = {.lex_state = 16}, + [2924] = {.lex_state = 103}, + [2925] = {.lex_state = 103, .external_lex_state = 4}, + [2926] = {.lex_state = 103, .external_lex_state = 4}, + [2927] = {.lex_state = 103, .external_lex_state = 4}, + [2928] = {.lex_state = 103, .external_lex_state = 4}, + [2929] = {.lex_state = 103, .external_lex_state = 4}, + [2930] = {.lex_state = 103}, + [2931] = {.lex_state = 16}, + [2932] = {.lex_state = 24}, + [2933] = {.lex_state = 24}, + [2934] = {.lex_state = 103, .external_lex_state = 4}, + [2935] = {.lex_state = 16}, + [2936] = {.lex_state = 16}, + [2937] = {.lex_state = 103, .external_lex_state = 4}, + [2938] = {.lex_state = 16}, + [2939] = {.lex_state = 103, .external_lex_state = 4}, + [2940] = {.lex_state = 103, .external_lex_state = 4}, + [2941] = {.lex_state = 103, .external_lex_state = 4}, + [2942] = {.lex_state = 16}, + [2943] = {.lex_state = 16}, + [2944] = {.lex_state = 103}, + [2945] = {.lex_state = 103}, + [2946] = {.lex_state = 103, .external_lex_state = 4}, + [2947] = {.lex_state = 20}, + [2948] = {.lex_state = 103, .external_lex_state = 4}, + [2949] = {.lex_state = 16}, + [2950] = {.lex_state = 103}, + [2951] = {.lex_state = 103}, + [2952] = {.lex_state = 103}, + [2953] = {.lex_state = 103}, + [2954] = {.lex_state = 103}, + [2955] = {.lex_state = 0, .external_lex_state = 4}, + [2956] = {.lex_state = 103}, + [2957] = {.lex_state = 16}, + [2958] = {.lex_state = 16}, + [2959] = {.lex_state = 16}, + [2960] = {.lex_state = 103, .external_lex_state = 4}, + [2961] = {.lex_state = 103, .external_lex_state = 4}, + [2962] = {.lex_state = 16}, + [2963] = {.lex_state = 103}, + [2964] = {.lex_state = 103, .external_lex_state = 5}, + [2965] = {.lex_state = 0, .external_lex_state = 4}, + [2966] = {.lex_state = 103}, + [2967] = {.lex_state = 103, .external_lex_state = 5}, + [2968] = {.lex_state = 0, .external_lex_state = 4}, + [2969] = {.lex_state = 0, .external_lex_state = 4}, + [2970] = {.lex_state = 24}, + [2971] = {.lex_state = 16}, + [2972] = {.lex_state = 16}, + [2973] = {.lex_state = 103}, + [2974] = {.lex_state = 103, .external_lex_state = 5}, + [2975] = {.lex_state = 103, .external_lex_state = 5}, [2976] = {.lex_state = 0, .external_lex_state = 4}, - [2977] = {.lex_state = 0, .external_lex_state = 4}, + [2977] = {.lex_state = 103}, [2978] = {.lex_state = 0, .external_lex_state = 4}, - [2979] = {.lex_state = 99, .external_lex_state = 5}, - [2980] = {.lex_state = 19, .external_lex_state = 6}, - [2981] = {.lex_state = 13}, - [2982] = {.lex_state = 99, .external_lex_state = 5}, - [2983] = {.lex_state = 0, .external_lex_state = 4}, - [2984] = {.lex_state = 99, .external_lex_state = 5}, - [2985] = {.lex_state = 99, .external_lex_state = 5}, - [2986] = {.lex_state = 21}, - [2987] = {.lex_state = 99}, - [2988] = {.lex_state = 99}, - [2989] = {.lex_state = 17}, - [2990] = {.lex_state = 17}, - [2991] = {.lex_state = 13}, - [2992] = {.lex_state = 17}, - [2993] = {.lex_state = 99, .external_lex_state = 5}, - [2994] = {.lex_state = 13}, - [2995] = {.lex_state = 99}, - [2996] = {.lex_state = 17}, - [2997] = {.lex_state = 13}, - [2998] = {.lex_state = 13}, - [2999] = {.lex_state = 0}, - [3000] = {.lex_state = 21}, + [2979] = {.lex_state = 103}, + [2980] = {.lex_state = 0, .external_lex_state = 4}, + [2981] = {.lex_state = 16}, + [2982] = {.lex_state = 0, .external_lex_state = 4}, + [2983] = {.lex_state = 103, .external_lex_state = 5}, + [2984] = {.lex_state = 0, .external_lex_state = 4}, + [2985] = {.lex_state = 103}, + [2986] = {.lex_state = 0, .external_lex_state = 4}, + [2987] = {.lex_state = 0, .external_lex_state = 4}, + [2988] = {.lex_state = 16}, + [2989] = {.lex_state = 103}, + [2990] = {.lex_state = 0, .external_lex_state = 4}, + [2991] = {.lex_state = 103, .external_lex_state = 5}, + [2992] = {.lex_state = 0, .external_lex_state = 4}, + [2993] = {.lex_state = 0, .external_lex_state = 4}, + [2994] = {.lex_state = 0, .external_lex_state = 4}, + [2995] = {.lex_state = 16}, + [2996] = {.lex_state = 103}, + [2997] = {.lex_state = 103}, + [2998] = {.lex_state = 0, .external_lex_state = 4}, + [2999] = {.lex_state = 103}, + [3000] = {.lex_state = 0, .external_lex_state = 4}, [3001] = {.lex_state = 0, .external_lex_state = 4}, - [3002] = {.lex_state = 13}, - [3003] = {.lex_state = 13}, - [3004] = {.lex_state = 99, .external_lex_state = 5}, - [3005] = {.lex_state = 17}, - [3006] = {.lex_state = 99}, - [3007] = {.lex_state = 19, .external_lex_state = 6}, - [3008] = {.lex_state = 0, .external_lex_state = 4}, - [3009] = {.lex_state = 99, .external_lex_state = 5}, - [3010] = {.lex_state = 17}, - [3011] = {.lex_state = 13}, - [3012] = {.lex_state = 13}, - [3013] = {.lex_state = 21}, - [3014] = {.lex_state = 13}, - [3015] = {.lex_state = 13}, - [3016] = {.lex_state = 99}, - [3017] = {.lex_state = 99}, - [3018] = {.lex_state = 13}, - [3019] = {.lex_state = 99}, - [3020] = {.lex_state = 99}, - [3021] = {.lex_state = 99}, - [3022] = {.lex_state = 0, .external_lex_state = 4}, - [3023] = {.lex_state = 99, .external_lex_state = 5}, - [3024] = {.lex_state = 99}, - [3025] = {.lex_state = 99, .external_lex_state = 5}, - [3026] = {.lex_state = 99}, - [3027] = {.lex_state = 99, .external_lex_state = 5}, - [3028] = {.lex_state = 99, .external_lex_state = 4}, - [3029] = {.lex_state = 99, .external_lex_state = 5}, - [3030] = {.lex_state = 13}, - [3031] = {.lex_state = 99}, - [3032] = {.lex_state = 13}, - [3033] = {.lex_state = 0, .external_lex_state = 4}, - [3034] = {.lex_state = 13}, - [3035] = {.lex_state = 13}, - [3036] = {.lex_state = 0, .external_lex_state = 4}, - [3037] = {.lex_state = 99}, - [3038] = {.lex_state = 0, .external_lex_state = 4}, - [3039] = {.lex_state = 13}, - [3040] = {.lex_state = 17}, - [3041] = {.lex_state = 13}, - [3042] = {.lex_state = 99}, - [3043] = {.lex_state = 99, .external_lex_state = 5}, - [3044] = {.lex_state = 99, .external_lex_state = 5}, - [3045] = {.lex_state = 0, .external_lex_state = 4}, - [3046] = {.lex_state = 99}, - [3047] = {.lex_state = 99, .external_lex_state = 5}, - [3048] = {.lex_state = 17}, - [3049] = {.lex_state = 99}, - [3050] = {.lex_state = 21}, - [3051] = {.lex_state = 21}, - [3052] = {.lex_state = 0, .external_lex_state = 4}, - [3053] = {.lex_state = 13}, - [3054] = {.lex_state = 13}, - [3055] = {.lex_state = 99}, - [3056] = {.lex_state = 13}, - [3057] = {.lex_state = 17}, - [3058] = {.lex_state = 19, .external_lex_state = 6}, - [3059] = {.lex_state = 99}, - [3060] = {.lex_state = 13}, - [3061] = {.lex_state = 13}, - [3062] = {.lex_state = 99}, - [3063] = {.lex_state = 99}, - [3064] = {.lex_state = 99}, - [3065] = {.lex_state = 17}, - [3066] = {.lex_state = 13}, - [3067] = {.lex_state = 19, .external_lex_state = 6}, - [3068] = {.lex_state = 99}, - [3069] = {.lex_state = 99}, - [3070] = {.lex_state = 99}, - [3071] = {.lex_state = 99, .external_lex_state = 5}, - [3072] = {.lex_state = 13}, - [3073] = {.lex_state = 0, .external_lex_state = 4}, - [3074] = {.lex_state = 0, .external_lex_state = 4}, - [3075] = {.lex_state = 99, .external_lex_state = 5}, - [3076] = {.lex_state = 0, .external_lex_state = 4}, - [3077] = {.lex_state = 13}, - [3078] = {.lex_state = 13}, - [3079] = {.lex_state = 0, .external_lex_state = 4}, - [3080] = {.lex_state = 0, .external_lex_state = 4}, - [3081] = {.lex_state = 13}, - [3082] = {.lex_state = 13}, - [3083] = {.lex_state = 17}, - [3084] = {.lex_state = 99}, - [3085] = {.lex_state = 99, .external_lex_state = 4}, - [3086] = {.lex_state = 0, .external_lex_state = 4}, - [3087] = {.lex_state = 99}, + [3002] = {.lex_state = 16}, + [3003] = {.lex_state = 103, .external_lex_state = 5}, + [3004] = {.lex_state = 0, .external_lex_state = 4}, + [3005] = {.lex_state = 0, .external_lex_state = 4}, + [3006] = {.lex_state = 16}, + [3007] = {.lex_state = 103, .external_lex_state = 5}, + [3008] = {.lex_state = 103}, + [3009] = {.lex_state = 16}, + [3010] = {.lex_state = 22, .external_lex_state = 6}, + [3011] = {.lex_state = 16}, + [3012] = {.lex_state = 24}, + [3013] = {.lex_state = 103, .external_lex_state = 5}, + [3014] = {.lex_state = 16}, + [3015] = {.lex_state = 0, .external_lex_state = 4}, + [3016] = {.lex_state = 16}, + [3017] = {.lex_state = 103}, + [3018] = {.lex_state = 103, .external_lex_state = 5}, + [3019] = {.lex_state = 103}, + [3020] = {.lex_state = 22, .external_lex_state = 6}, + [3021] = {.lex_state = 24}, + [3022] = {.lex_state = 24}, + [3023] = {.lex_state = 22, .external_lex_state = 6}, + [3024] = {.lex_state = 103, .external_lex_state = 5}, + [3025] = {.lex_state = 24}, + [3026] = {.lex_state = 16}, + [3027] = {.lex_state = 103}, + [3028] = {.lex_state = 103, .external_lex_state = 5}, + [3029] = {.lex_state = 103}, + [3030] = {.lex_state = 16}, + [3031] = {.lex_state = 103, .external_lex_state = 4}, + [3032] = {.lex_state = 103, .external_lex_state = 5}, + [3033] = {.lex_state = 103}, + [3034] = {.lex_state = 103}, + [3035] = {.lex_state = 103, .external_lex_state = 5}, + [3036] = {.lex_state = 16}, + [3037] = {.lex_state = 16}, + [3038] = {.lex_state = 20}, + [3039] = {.lex_state = 103}, + [3040] = {.lex_state = 16}, + [3041] = {.lex_state = 103, .external_lex_state = 5}, + [3042] = {.lex_state = 103, .external_lex_state = 5}, + [3043] = {.lex_state = 103}, + [3044] = {.lex_state = 16}, + [3045] = {.lex_state = 103, .external_lex_state = 5}, + [3046] = {.lex_state = 24}, + [3047] = {.lex_state = 24}, + [3048] = {.lex_state = 24}, + [3049] = {.lex_state = 103, .external_lex_state = 5}, + [3050] = {.lex_state = 16}, + [3051] = {.lex_state = 103}, + [3052] = {.lex_state = 20}, + [3053] = {.lex_state = 103}, + [3054] = {.lex_state = 16}, + [3055] = {.lex_state = 16}, + [3056] = {.lex_state = 103}, + [3057] = {.lex_state = 0, .external_lex_state = 4}, + [3058] = {.lex_state = 103, .external_lex_state = 5}, + [3059] = {.lex_state = 103, .external_lex_state = 4}, + [3060] = {.lex_state = 16}, + [3061] = {.lex_state = 16}, + [3062] = {.lex_state = 103}, + [3063] = {.lex_state = 103}, + [3064] = {.lex_state = 103}, + [3065] = {.lex_state = 103}, + [3066] = {.lex_state = 103}, + [3067] = {.lex_state = 103}, + [3068] = {.lex_state = 16}, + [3069] = {.lex_state = 103, .external_lex_state = 4}, + [3070] = {.lex_state = 16}, + [3071] = {.lex_state = 0, .external_lex_state = 4}, + [3072] = {.lex_state = 16}, + [3073] = {.lex_state = 16}, + [3074] = {.lex_state = 103}, + [3075] = {.lex_state = 103}, + [3076] = {.lex_state = 103}, + [3077] = {.lex_state = 103}, + [3078] = {.lex_state = 103}, + [3079] = {.lex_state = 24}, + [3080] = {.lex_state = 24}, + [3081] = {.lex_state = 103, .external_lex_state = 5}, + [3082] = {.lex_state = 103, .external_lex_state = 5}, + [3083] = {.lex_state = 16}, + [3084] = {.lex_state = 103, .external_lex_state = 5}, + [3085] = {.lex_state = 103}, + [3086] = {.lex_state = 103}, + [3087] = {.lex_state = 16}, [3088] = {.lex_state = 0, .external_lex_state = 4}, - [3089] = {.lex_state = 99}, - [3090] = {.lex_state = 99}, - [3091] = {.lex_state = 99}, - [3092] = {.lex_state = 17}, - [3093] = {.lex_state = 13}, - [3094] = {.lex_state = 13}, - [3095] = {.lex_state = 0, .external_lex_state = 4}, - [3096] = {.lex_state = 99}, - [3097] = {.lex_state = 99}, - [3098] = {.lex_state = 99}, - [3099] = {.lex_state = 13}, - [3100] = {.lex_state = 13}, - [3101] = {.lex_state = 21}, - [3102] = {.lex_state = 99, .external_lex_state = 5}, - [3103] = {.lex_state = 0, .external_lex_state = 4}, - [3104] = {.lex_state = 13}, - [3105] = {.lex_state = 99, .external_lex_state = 4}, - [3106] = {.lex_state = 19, .external_lex_state = 6}, - [3107] = {.lex_state = 99, .external_lex_state = 4}, - [3108] = {.lex_state = 21}, - [3109] = {.lex_state = 21}, - [3110] = {.lex_state = 99, .external_lex_state = 5}, - [3111] = {.lex_state = 99}, - [3112] = {.lex_state = 99, .external_lex_state = 5}, - [3113] = {.lex_state = 13}, - [3114] = {.lex_state = 99, .external_lex_state = 5}, - [3115] = {.lex_state = 99, .external_lex_state = 5}, - [3116] = {.lex_state = 99, .external_lex_state = 5}, - [3117] = {.lex_state = 0, .external_lex_state = 4}, - [3118] = {.lex_state = 13}, - [3119] = {.lex_state = 99, .external_lex_state = 5}, - [3120] = {.lex_state = 99}, - [3121] = {.lex_state = 99, .external_lex_state = 4}, - [3122] = {.lex_state = 21}, + [3089] = {.lex_state = 0, .external_lex_state = 4}, + [3090] = {.lex_state = 16}, + [3091] = {.lex_state = 16}, + [3092] = {.lex_state = 103, .external_lex_state = 4}, + [3093] = {.lex_state = 103}, + [3094] = {.lex_state = 22, .external_lex_state = 6}, + [3095] = {.lex_state = 24}, + [3096] = {.lex_state = 16}, + [3097] = {.lex_state = 103, .external_lex_state = 5}, + [3098] = {.lex_state = 22, .external_lex_state = 6}, + [3099] = {.lex_state = 103}, + [3100] = {.lex_state = 103}, + [3101] = {.lex_state = 16}, + [3102] = {.lex_state = 103}, + [3103] = {.lex_state = 16}, + [3104] = {.lex_state = 16}, + [3105] = {.lex_state = 103}, + [3106] = {.lex_state = 103, .external_lex_state = 5}, + [3107] = {.lex_state = 103, .external_lex_state = 5}, + [3108] = {.lex_state = 103}, + [3109] = {.lex_state = 103, .external_lex_state = 5}, + [3110] = {.lex_state = 16}, + [3111] = {.lex_state = 16}, + [3112] = {.lex_state = 103}, + [3113] = {.lex_state = 103}, + [3114] = {.lex_state = 16}, + [3115] = {.lex_state = 103}, + [3116] = {.lex_state = 16}, + [3117] = {.lex_state = 0}, + [3118] = {.lex_state = 103, .external_lex_state = 5}, + [3119] = {.lex_state = 16}, + [3120] = {.lex_state = 0, .external_lex_state = 4}, + [3121] = {.lex_state = 0, .external_lex_state = 4}, + [3122] = {.lex_state = 0}, [3123] = {.lex_state = 0, .external_lex_state = 4}, [3124] = {.lex_state = 0, .external_lex_state = 4}, - [3125] = {.lex_state = 99, .external_lex_state = 5}, - [3126] = {.lex_state = 13}, - [3127] = {.lex_state = 0}, + [3125] = {.lex_state = 0, .external_lex_state = 4}, + [3126] = {.lex_state = 7}, + [3127] = {.lex_state = 0, .external_lex_state = 4}, [3128] = {.lex_state = 0, .external_lex_state = 4}, - [3129] = {.lex_state = 99}, - [3130] = {.lex_state = 0, .external_lex_state = 4}, - [3131] = {.lex_state = 99, .external_lex_state = 5}, + [3129] = {.lex_state = 0, .external_lex_state = 4}, + [3130] = {.lex_state = 16}, + [3131] = {.lex_state = 0, .external_lex_state = 4}, [3132] = {.lex_state = 0, .external_lex_state = 4}, - [3133] = {.lex_state = 99, .external_lex_state = 4}, + [3133] = {.lex_state = 16}, [3134] = {.lex_state = 0, .external_lex_state = 4}, - [3135] = {.lex_state = 0, .external_lex_state = 4}, + [3135] = {.lex_state = 103}, [3136] = {.lex_state = 0, .external_lex_state = 4}, - [3137] = {.lex_state = 0}, - [3138] = {.lex_state = 99, .external_lex_state = 5}, - [3139] = {.lex_state = 99}, + [3137] = {.lex_state = 0, .external_lex_state = 4}, + [3138] = {.lex_state = 0, .external_lex_state = 4}, + [3139] = {.lex_state = 16}, [3140] = {.lex_state = 0, .external_lex_state = 4}, - [3141] = {.lex_state = 0, .external_lex_state = 4}, - [3142] = {.lex_state = 0, .external_lex_state = 4}, + [3141] = {.lex_state = 0}, + [3142] = {.lex_state = 16}, [3143] = {.lex_state = 0, .external_lex_state = 4}, - [3144] = {.lex_state = 13}, - [3145] = {.lex_state = 99}, - [3146] = {.lex_state = 13}, - [3147] = {.lex_state = 99}, + [3144] = {.lex_state = 0, .external_lex_state = 4}, + [3145] = {.lex_state = 0}, + [3146] = {.lex_state = 24}, + [3147] = {.lex_state = 0, .external_lex_state = 4}, [3148] = {.lex_state = 0, .external_lex_state = 4}, [3149] = {.lex_state = 0, .external_lex_state = 4}, - [3150] = {.lex_state = 19, .external_lex_state = 6}, + [3150] = {.lex_state = 0, .external_lex_state = 4}, [3151] = {.lex_state = 0, .external_lex_state = 4}, - [3152] = {.lex_state = 99}, - [3153] = {.lex_state = 0}, + [3152] = {.lex_state = 0, .external_lex_state = 4}, + [3153] = {.lex_state = 0, .external_lex_state = 4}, [3154] = {.lex_state = 0, .external_lex_state = 4}, - [3155] = {.lex_state = 13}, + [3155] = {.lex_state = 24}, [3156] = {.lex_state = 0, .external_lex_state = 4}, - [3157] = {.lex_state = 21}, - [3158] = {.lex_state = 99, .external_lex_state = 5}, - [3159] = {.lex_state = 99}, - [3160] = {.lex_state = 13}, - [3161] = {.lex_state = 13}, - [3162] = {.lex_state = 0}, - [3163] = {.lex_state = 4}, - [3164] = {.lex_state = 0}, - [3165] = {.lex_state = 13}, - [3166] = {.lex_state = 13}, - [3167] = {.lex_state = 17}, - [3168] = {.lex_state = 0}, - [3169] = {.lex_state = 13}, + [3157] = {.lex_state = 0, .external_lex_state = 4}, + [3158] = {.lex_state = 103, .external_lex_state = 5}, + [3159] = {.lex_state = 0, .external_lex_state = 4}, + [3160] = {.lex_state = 103, .external_lex_state = 4}, + [3161] = {.lex_state = 103}, + [3162] = {.lex_state = 0, .external_lex_state = 4}, + [3163] = {.lex_state = 16}, + [3164] = {.lex_state = 103}, + [3165] = {.lex_state = 0, .external_lex_state = 4}, + [3166] = {.lex_state = 0, .external_lex_state = 4}, + [3167] = {.lex_state = 0, .external_lex_state = 4}, + [3168] = {.lex_state = 0, .external_lex_state = 4}, + [3169] = {.lex_state = 0, .external_lex_state = 4}, [3170] = {.lex_state = 0, .external_lex_state = 4}, - [3171] = {.lex_state = 0}, - [3172] = {.lex_state = 0, .external_lex_state = 4}, - [3173] = {.lex_state = 0, .external_lex_state = 4}, - [3174] = {.lex_state = 0, .external_lex_state = 4}, - [3175] = {.lex_state = 99, .external_lex_state = 5}, - [3176] = {.lex_state = 13}, - [3177] = {.lex_state = 13}, + [3171] = {.lex_state = 22, .external_lex_state = 6}, + [3172] = {.lex_state = 22, .external_lex_state = 6}, + [3173] = {.lex_state = 22, .external_lex_state = 6}, + [3174] = {.lex_state = 22, .external_lex_state = 6}, + [3175] = {.lex_state = 0, .external_lex_state = 4}, + [3176] = {.lex_state = 0, .external_lex_state = 4}, + [3177] = {.lex_state = 0, .external_lex_state = 4}, [3178] = {.lex_state = 0, .external_lex_state = 4}, - [3179] = {.lex_state = 0, .external_lex_state = 4}, - [3180] = {.lex_state = 99}, - [3181] = {.lex_state = 99}, + [3179] = {.lex_state = 16}, + [3180] = {.lex_state = 103, .external_lex_state = 5}, + [3181] = {.lex_state = 16}, [3182] = {.lex_state = 0, .external_lex_state = 4}, - [3183] = {.lex_state = 13}, - [3184] = {.lex_state = 99}, - [3185] = {.lex_state = 13}, - [3186] = {.lex_state = 0, .external_lex_state = 4}, - [3187] = {.lex_state = 99, .external_lex_state = 5}, - [3188] = {.lex_state = 0, .external_lex_state = 4}, - [3189] = {.lex_state = 13}, - [3190] = {.lex_state = 13}, - [3191] = {.lex_state = 99, .external_lex_state = 4}, - [3192] = {.lex_state = 99, .external_lex_state = 5}, - [3193] = {.lex_state = 0, .external_lex_state = 4}, - [3194] = {.lex_state = 99, .external_lex_state = 4}, - [3195] = {.lex_state = 4}, - [3196] = {.lex_state = 0, .external_lex_state = 4}, + [3183] = {.lex_state = 16}, + [3184] = {.lex_state = 103, .external_lex_state = 5}, + [3185] = {.lex_state = 0, .external_lex_state = 4}, + [3186] = {.lex_state = 31}, + [3187] = {.lex_state = 31}, + [3188] = {.lex_state = 103, .external_lex_state = 5}, + [3189] = {.lex_state = 0}, + [3190] = {.lex_state = 16}, + [3191] = {.lex_state = 24}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, + [3193] = {.lex_state = 0}, + [3194] = {.lex_state = 0, .external_lex_state = 4}, + [3195] = {.lex_state = 0, .external_lex_state = 4}, + [3196] = {.lex_state = 0}, [3197] = {.lex_state = 0, .external_lex_state = 4}, [3198] = {.lex_state = 0, .external_lex_state = 4}, - [3199] = {.lex_state = 0, .external_lex_state = 4}, - [3200] = {.lex_state = 13}, - [3201] = {.lex_state = 0, .external_lex_state = 4}, - [3202] = {.lex_state = 13}, + [3199] = {.lex_state = 103}, + [3200] = {.lex_state = 0, .external_lex_state = 4}, + [3201] = {.lex_state = 22, .external_lex_state = 6}, + [3202] = {.lex_state = 103}, [3203] = {.lex_state = 0, .external_lex_state = 4}, - [3204] = {.lex_state = 99, .external_lex_state = 5}, + [3204] = {.lex_state = 31}, [3205] = {.lex_state = 0, .external_lex_state = 4}, - [3206] = {.lex_state = 21}, - [3207] = {.lex_state = 13}, - [3208] = {.lex_state = 0, .external_lex_state = 4}, - [3209] = {.lex_state = 0}, - [3210] = {.lex_state = 13}, - [3211] = {.lex_state = 19, .external_lex_state = 6}, - [3212] = {.lex_state = 99}, - [3213] = {.lex_state = 0, .external_lex_state = 4}, - [3214] = {.lex_state = 0, .external_lex_state = 4}, - [3215] = {.lex_state = 13}, - [3216] = {.lex_state = 99, .external_lex_state = 5}, - [3217] = {.lex_state = 99, .external_lex_state = 4}, - [3218] = {.lex_state = 13}, - [3219] = {.lex_state = 13}, - [3220] = {.lex_state = 19, .external_lex_state = 6}, - [3221] = {.lex_state = 0, .external_lex_state = 4}, - [3222] = {.lex_state = 13}, - [3223] = {.lex_state = 0}, - [3224] = {.lex_state = 21}, - [3225] = {.lex_state = 0}, - [3226] = {.lex_state = 0, .external_lex_state = 4}, - [3227] = {.lex_state = 0, .external_lex_state = 4}, - [3228] = {.lex_state = 13}, - [3229] = {.lex_state = 13}, - [3230] = {.lex_state = 0, .external_lex_state = 4}, - [3231] = {.lex_state = 13}, - [3232] = {.lex_state = 0, .external_lex_state = 4}, + [3206] = {.lex_state = 0, .external_lex_state = 4}, + [3207] = {.lex_state = 7}, + [3208] = {.lex_state = 103, .external_lex_state = 5}, + [3209] = {.lex_state = 0, .external_lex_state = 4}, + [3210] = {.lex_state = 103}, + [3211] = {.lex_state = 31}, + [3212] = {.lex_state = 103, .external_lex_state = 4}, + [3213] = {.lex_state = 31}, + [3214] = {.lex_state = 103}, + [3215] = {.lex_state = 103}, + [3216] = {.lex_state = 31}, + [3217] = {.lex_state = 31}, + [3218] = {.lex_state = 16}, + [3219] = {.lex_state = 16}, + [3220] = {.lex_state = 31}, + [3221] = {.lex_state = 16}, + [3222] = {.lex_state = 0, .external_lex_state = 4}, + [3223] = {.lex_state = 16}, + [3224] = {.lex_state = 16}, + [3225] = {.lex_state = 103, .external_lex_state = 5}, + [3226] = {.lex_state = 103, .external_lex_state = 4}, + [3227] = {.lex_state = 16}, + [3228] = {.lex_state = 0, .external_lex_state = 4}, + [3229] = {.lex_state = 16}, + [3230] = {.lex_state = 16}, + [3231] = {.lex_state = 0, .external_lex_state = 4}, + [3232] = {.lex_state = 103}, [3233] = {.lex_state = 0, .external_lex_state = 4}, - [3234] = {.lex_state = 21}, - [3235] = {.lex_state = 0, .external_lex_state = 4}, + [3234] = {.lex_state = 16}, + [3235] = {.lex_state = 16}, [3236] = {.lex_state = 0, .external_lex_state = 4}, - [3237] = {.lex_state = 13}, - [3238] = {.lex_state = 13}, - [3239] = {.lex_state = 17}, - [3240] = {.lex_state = 0, .external_lex_state = 4}, - [3241] = {.lex_state = 13}, - [3242] = {.lex_state = 0, .external_lex_state = 4}, - [3243] = {.lex_state = 13}, - [3244] = {.lex_state = 0, .external_lex_state = 4}, + [3237] = {.lex_state = 0, .external_lex_state = 4}, + [3238] = {.lex_state = 31}, + [3239] = {.lex_state = 16}, + [3240] = {.lex_state = 0}, + [3241] = {.lex_state = 22, .external_lex_state = 6}, + [3242] = {.lex_state = 16}, + [3243] = {.lex_state = 0, .external_lex_state = 4}, + [3244] = {.lex_state = 0}, [3245] = {.lex_state = 0, .external_lex_state = 4}, - [3246] = {.lex_state = 0, .external_lex_state = 4}, + [3246] = {.lex_state = 0}, [3247] = {.lex_state = 0, .external_lex_state = 4}, - [3248] = {.lex_state = 0, .external_lex_state = 4}, + [3248] = {.lex_state = 16}, [3249] = {.lex_state = 0, .external_lex_state = 4}, - [3250] = {.lex_state = 13}, + [3250] = {.lex_state = 0, .external_lex_state = 4}, [3251] = {.lex_state = 0, .external_lex_state = 4}, [3252] = {.lex_state = 0, .external_lex_state = 4}, [3253] = {.lex_state = 0, .external_lex_state = 4}, - [3254] = {.lex_state = 21}, - [3255] = {.lex_state = 21}, - [3256] = {.lex_state = 0, .external_lex_state = 4}, - [3257] = {.lex_state = 99, .external_lex_state = 4}, - [3258] = {.lex_state = 0}, - [3259] = {.lex_state = 19, .external_lex_state = 6}, + [3254] = {.lex_state = 0, .external_lex_state = 4}, + [3255] = {.lex_state = 103}, + [3256] = {.lex_state = 16}, + [3257] = {.lex_state = 16}, + [3258] = {.lex_state = 24}, + [3259] = {.lex_state = 16}, [3260] = {.lex_state = 0, .external_lex_state = 4}, - [3261] = {.lex_state = 0, .external_lex_state = 4}, - [3262] = {.lex_state = 13}, - [3263] = {.lex_state = 19, .external_lex_state = 6}, - [3264] = {.lex_state = 21}, - [3265] = {.lex_state = 0, .external_lex_state = 4}, - [3266] = {.lex_state = 0, .external_lex_state = 4}, - [3267] = {.lex_state = 0, .external_lex_state = 4}, - [3268] = {.lex_state = 0, .external_lex_state = 4}, - [3269] = {.lex_state = 99}, - [3270] = {.lex_state = 99, .external_lex_state = 5}, - [3271] = {.lex_state = 0, .external_lex_state = 4}, - [3272] = {.lex_state = 99, .external_lex_state = 4}, - [3273] = {.lex_state = 99}, - [3274] = {.lex_state = 99}, - [3275] = {.lex_state = 99}, - [3276] = {.lex_state = 19, .external_lex_state = 6}, - [3277] = {.lex_state = 13}, - [3278] = {.lex_state = 99, .external_lex_state = 4}, - [3279] = {.lex_state = 13}, - [3280] = {.lex_state = 13}, - [3281] = {.lex_state = 99}, - [3282] = {.lex_state = 99}, - [3283] = {.lex_state = 13}, - [3284] = {.lex_state = 99}, - [3285] = {.lex_state = 13}, - [3286] = {.lex_state = 21}, + [3261] = {.lex_state = 16}, + [3262] = {.lex_state = 0, .external_lex_state = 4}, + [3263] = {.lex_state = 16}, + [3264] = {.lex_state = 0, .external_lex_state = 4}, + [3265] = {.lex_state = 22, .external_lex_state = 6}, + [3266] = {.lex_state = 24}, + [3267] = {.lex_state = 16}, + [3268] = {.lex_state = 103}, + [3269] = {.lex_state = 0, .external_lex_state = 4}, + [3270] = {.lex_state = 0, .external_lex_state = 4}, + [3271] = {.lex_state = 103}, + [3272] = {.lex_state = 103}, + [3273] = {.lex_state = 103}, + [3274] = {.lex_state = 0, .external_lex_state = 4}, + [3275] = {.lex_state = 103, .external_lex_state = 5}, + [3276] = {.lex_state = 103, .external_lex_state = 4}, + [3277] = {.lex_state = 0, .external_lex_state = 4}, + [3278] = {.lex_state = 0, .external_lex_state = 4}, + [3279] = {.lex_state = 103, .external_lex_state = 5}, + [3280] = {.lex_state = 0, .external_lex_state = 4}, + [3281] = {.lex_state = 16}, + [3282] = {.lex_state = 0}, + [3283] = {.lex_state = 0, .external_lex_state = 4}, + [3284] = {.lex_state = 0, .external_lex_state = 4}, + [3285] = {.lex_state = 0, .external_lex_state = 4}, + [3286] = {.lex_state = 0, .external_lex_state = 4}, [3287] = {.lex_state = 0, .external_lex_state = 4}, - [3288] = {.lex_state = 0, .external_lex_state = 4}, + [3288] = {.lex_state = 24}, [3289] = {.lex_state = 0, .external_lex_state = 4}, [3290] = {.lex_state = 0, .external_lex_state = 4}, - [3291] = {.lex_state = 0, .external_lex_state = 4}, + [3291] = {.lex_state = 103}, [3292] = {.lex_state = 0, .external_lex_state = 4}, - [3293] = {.lex_state = 0, .external_lex_state = 4}, - [3294] = {.lex_state = 21}, - [3295] = {.lex_state = 0, .external_lex_state = 4}, - [3296] = {.lex_state = 0, .external_lex_state = 4}, - [3297] = {.lex_state = 13}, + [3293] = {.lex_state = 103}, + [3294] = {.lex_state = 22, .external_lex_state = 6}, + [3295] = {.lex_state = 20}, + [3296] = {.lex_state = 16}, + [3297] = {.lex_state = 0, .external_lex_state = 4}, [3298] = {.lex_state = 0, .external_lex_state = 4}, - [3299] = {.lex_state = 0, .external_lex_state = 4}, - [3300] = {.lex_state = 0, .external_lex_state = 4}, - [3301] = {.lex_state = 99, .external_lex_state = 5}, - [3302] = {.lex_state = 0, .external_lex_state = 4}, - [3303] = {.lex_state = 99}, + [3299] = {.lex_state = 16}, + [3300] = {.lex_state = 103}, + [3301] = {.lex_state = 103}, + [3302] = {.lex_state = 16}, + [3303] = {.lex_state = 0, .external_lex_state = 4}, [3304] = {.lex_state = 0, .external_lex_state = 4}, - [3305] = {.lex_state = 0, .external_lex_state = 4}, + [3305] = {.lex_state = 16}, [3306] = {.lex_state = 0, .external_lex_state = 4}, - [3307] = {.lex_state = 0, .external_lex_state = 4}, - [3308] = {.lex_state = 0, .external_lex_state = 4}, - [3309] = {.lex_state = 0, .external_lex_state = 4}, + [3307] = {.lex_state = 103, .external_lex_state = 5}, + [3308] = {.lex_state = 16}, + [3309] = {.lex_state = 20}, [3310] = {.lex_state = 0, .external_lex_state = 4}, - [3311] = {.lex_state = 0, .external_lex_state = 4}, - [3312] = {.lex_state = 21}, - [3313] = {.lex_state = 21}, - [3314] = {.lex_state = 13}, + [3311] = {.lex_state = 103, .external_lex_state = 5}, + [3312] = {.lex_state = 24}, + [3313] = {.lex_state = 0, .external_lex_state = 4}, + [3314] = {.lex_state = 0, .external_lex_state = 4}, [3315] = {.lex_state = 0, .external_lex_state = 4}, - [3316] = {.lex_state = 21}, - [3317] = {.lex_state = 21}, + [3316] = {.lex_state = 31}, + [3317] = {.lex_state = 0, .external_lex_state = 4}, [3318] = {.lex_state = 0, .external_lex_state = 4}, - [3319] = {.lex_state = 21}, + [3319] = {.lex_state = 103}, [3320] = {.lex_state = 0, .external_lex_state = 4}, - [3321] = {.lex_state = 13}, - [3322] = {.lex_state = 21}, - [3323] = {.lex_state = 13}, - [3324] = {.lex_state = 99}, + [3321] = {.lex_state = 0, .external_lex_state = 4}, + [3322] = {.lex_state = 0, .external_lex_state = 4}, + [3323] = {.lex_state = 16}, + [3324] = {.lex_state = 16}, [3325] = {.lex_state = 0, .external_lex_state = 4}, - [3326] = {.lex_state = 0, .external_lex_state = 4}, - [3327] = {.lex_state = 99}, + [3326] = {.lex_state = 24}, + [3327] = {.lex_state = 0, .external_lex_state = 4}, [3328] = {.lex_state = 0, .external_lex_state = 4}, - [3329] = {.lex_state = 0, .external_lex_state = 4}, + [3329] = {.lex_state = 24}, [3330] = {.lex_state = 0, .external_lex_state = 4}, - [3331] = {.lex_state = 19, .external_lex_state = 6}, - [3332] = {.lex_state = 0, .external_lex_state = 4}, - [3333] = {.lex_state = 0, .external_lex_state = 4}, - [3334] = {.lex_state = 13}, - [3335] = {.lex_state = 99}, - [3336] = {.lex_state = 0, .external_lex_state = 4}, - [3337] = {.lex_state = 99}, - [3338] = {.lex_state = 0, .external_lex_state = 4}, - [3339] = {.lex_state = 0, .external_lex_state = 4}, - [3340] = {.lex_state = 13}, - [3341] = {.lex_state = 19, .external_lex_state = 6}, - [3342] = {.lex_state = 99}, - [3343] = {.lex_state = 99}, - [3344] = {.lex_state = 99, .external_lex_state = 5}, - [3345] = {.lex_state = 0, .external_lex_state = 4}, - [3346] = {.lex_state = 0, .external_lex_state = 4}, + [3331] = {.lex_state = 0, .external_lex_state = 4}, + [3332] = {.lex_state = 31}, + [3333] = {.lex_state = 16}, + [3334] = {.lex_state = 31}, + [3335] = {.lex_state = 31}, + [3336] = {.lex_state = 31}, + [3337] = {.lex_state = 24}, + [3338] = {.lex_state = 103}, + [3339] = {.lex_state = 0}, + [3340] = {.lex_state = 31}, + [3341] = {.lex_state = 0, .external_lex_state = 4}, + [3342] = {.lex_state = 0, .external_lex_state = 4}, + [3343] = {.lex_state = 103, .external_lex_state = 4}, + [3344] = {.lex_state = 0}, + [3345] = {.lex_state = 0}, + [3346] = {.lex_state = 103, .external_lex_state = 5}, [3347] = {.lex_state = 0, .external_lex_state = 4}, - [3348] = {.lex_state = 0}, - [3349] = {.lex_state = 0, .external_lex_state = 4}, - [3350] = {.lex_state = 99}, - [3351] = {.lex_state = 99}, - [3352] = {.lex_state = 0, .external_lex_state = 4}, + [3348] = {.lex_state = 31}, + [3349] = {.lex_state = 16}, + [3350] = {.lex_state = 0, .external_lex_state = 4}, + [3351] = {.lex_state = 0, .external_lex_state = 4}, + [3352] = {.lex_state = 103}, [3353] = {.lex_state = 0, .external_lex_state = 4}, [3354] = {.lex_state = 0, .external_lex_state = 4}, - [3355] = {.lex_state = 13}, + [3355] = {.lex_state = 0, .external_lex_state = 4}, [3356] = {.lex_state = 0, .external_lex_state = 4}, - [3357] = {.lex_state = 0, .external_lex_state = 4}, - [3358] = {.lex_state = 13}, - [3359] = {.lex_state = 21}, - [3360] = {.lex_state = 99}, + [3357] = {.lex_state = 20}, + [3358] = {.lex_state = 0, .external_lex_state = 4}, + [3359] = {.lex_state = 0, .external_lex_state = 4}, + [3360] = {.lex_state = 16}, [3361] = {.lex_state = 0, .external_lex_state = 4}, - [3362] = {.lex_state = 0, .external_lex_state = 4}, - [3363] = {.lex_state = 0, .external_lex_state = 4}, - [3364] = {.lex_state = 0, .external_lex_state = 4}, - [3365] = {.lex_state = 0, .external_lex_state = 4}, - [3366] = {.lex_state = 0}, - [3367] = {.lex_state = 0, .external_lex_state = 4}, + [3362] = {.lex_state = 31}, + [3363] = {.lex_state = 0}, + [3364] = {.lex_state = 31}, + [3365] = {.lex_state = 16}, + [3366] = {.lex_state = 31}, + [3367] = {.lex_state = 103}, [3368] = {.lex_state = 0, .external_lex_state = 4}, - [3369] = {.lex_state = 0, .external_lex_state = 4}, - [3370] = {.lex_state = 13}, - [3371] = {.lex_state = 0, .external_lex_state = 4}, - [3372] = {.lex_state = 13}, - [3373] = {.lex_state = 13}, - [3374] = {.lex_state = 13}, - [3375] = {.lex_state = 19, .external_lex_state = 6}, + [3369] = {.lex_state = 31}, + [3370] = {.lex_state = 16}, + [3371] = {.lex_state = 16}, + [3372] = {.lex_state = 24}, + [3373] = {.lex_state = 0, .external_lex_state = 4}, + [3374] = {.lex_state = 103, .external_lex_state = 5}, + [3375] = {.lex_state = 16}, [3376] = {.lex_state = 0, .external_lex_state = 4}, - [3377] = {.lex_state = 0, .external_lex_state = 4}, - [3378] = {.lex_state = 99, .external_lex_state = 5}, - [3379] = {.lex_state = 13}, - [3380] = {.lex_state = 21}, - [3381] = {.lex_state = 13}, - [3382] = {.lex_state = 0, .external_lex_state = 4}, - [3383] = {.lex_state = 0, .external_lex_state = 4}, + [3377] = {.lex_state = 24}, + [3378] = {.lex_state = 0, .external_lex_state = 4}, + [3379] = {.lex_state = 24}, + [3380] = {.lex_state = 24}, + [3381] = {.lex_state = 0, .external_lex_state = 4}, + [3382] = {.lex_state = 20}, + [3383] = {.lex_state = 22, .external_lex_state = 6}, [3384] = {.lex_state = 0, .external_lex_state = 4}, [3385] = {.lex_state = 0, .external_lex_state = 4}, - [3386] = {.lex_state = 13}, - [3387] = {.lex_state = 0, .external_lex_state = 4}, + [3386] = {.lex_state = 31}, + [3387] = {.lex_state = 103, .external_lex_state = 4}, [3388] = {.lex_state = 0, .external_lex_state = 4}, - [3389] = {.lex_state = 0, .external_lex_state = 4}, - [3390] = {.lex_state = 0, .external_lex_state = 4}, - [3391] = {.lex_state = 0, .external_lex_state = 4}, - [3392] = {.lex_state = 21}, + [3389] = {.lex_state = 16}, + [3390] = {.lex_state = 103}, + [3391] = {.lex_state = 103}, + [3392] = {.lex_state = 16}, [3393] = {.lex_state = 0, .external_lex_state = 4}, - [3394] = {.lex_state = 0, .external_lex_state = 4}, - [3395] = {.lex_state = 99}, - [3396] = {.lex_state = 13}, - [3397] = {.lex_state = 13}, - [3398] = {.lex_state = 0, .external_lex_state = 4}, + [3394] = {.lex_state = 103}, + [3395] = {.lex_state = 0, .external_lex_state = 4}, + [3396] = {.lex_state = 16}, + [3397] = {.lex_state = 16}, + [3398] = {.lex_state = 22, .external_lex_state = 6}, [3399] = {.lex_state = 0, .external_lex_state = 4}, - [3400] = {.lex_state = 19, .external_lex_state = 6}, - [3401] = {.lex_state = 13}, - [3402] = {.lex_state = 13}, - [3403] = {.lex_state = 19, .external_lex_state = 6}, + [3400] = {.lex_state = 16}, + [3401] = {.lex_state = 103, .external_lex_state = 5}, + [3402] = {.lex_state = 0, .external_lex_state = 4}, + [3403] = {.lex_state = 0, .external_lex_state = 4}, [3404] = {.lex_state = 0, .external_lex_state = 4}, - [3405] = {.lex_state = 0, .external_lex_state = 4}, - [3406] = {.lex_state = 99}, - [3407] = {.lex_state = 13}, - [3408] = {.lex_state = 99, .external_lex_state = 5}, - [3409] = {.lex_state = 0}, - [3410] = {.lex_state = 99}, - [3411] = {.lex_state = 0, .external_lex_state = 4}, - [3412] = {.lex_state = 99}, - [3413] = {.lex_state = 0, .external_lex_state = 4}, + [3405] = {.lex_state = 24}, + [3406] = {.lex_state = 31}, + [3407] = {.lex_state = 24}, + [3408] = {.lex_state = 16}, + [3409] = {.lex_state = 24}, + [3410] = {.lex_state = 0, .external_lex_state = 4}, + [3411] = {.lex_state = 103, .external_lex_state = 4}, + [3412] = {.lex_state = 103, .external_lex_state = 4}, + [3413] = {.lex_state = 31}, [3414] = {.lex_state = 0, .external_lex_state = 4}, - [3415] = {.lex_state = 0, .external_lex_state = 4}, - [3416] = {.lex_state = 0, .external_lex_state = 4}, - [3417] = {.lex_state = 0}, - [3418] = {.lex_state = 99}, + [3415] = {.lex_state = 16}, + [3416] = {.lex_state = 103}, + [3417] = {.lex_state = 24}, + [3418] = {.lex_state = 16}, [3419] = {.lex_state = 0, .external_lex_state = 4}, - [3420] = {.lex_state = 99}, - [3421] = {.lex_state = 0, .external_lex_state = 4}, - [3422] = {.lex_state = 99}, - [3423] = {.lex_state = 13}, - [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 17}, - [3426] = {.lex_state = 99}, - [3427] = {.lex_state = 13}, - [3428] = {.lex_state = 19, .external_lex_state = 6}, - [3429] = {.lex_state = 99}, - [3430] = {.lex_state = 13}, - [3431] = {.lex_state = 99}, - [3432] = {.lex_state = 99}, - [3433] = {.lex_state = 99}, - [3434] = {.lex_state = 99}, - [3435] = {.lex_state = 13}, - [3436] = {.lex_state = 13}, - [3437] = {.lex_state = 99}, - [3438] = {.lex_state = 13}, - [3439] = {.lex_state = 22}, - [3440] = {.lex_state = 18}, + [3420] = {.lex_state = 103}, + [3421] = {.lex_state = 16}, + [3422] = {.lex_state = 16}, + [3423] = {.lex_state = 103}, + [3424] = {.lex_state = 103}, + [3425] = {.lex_state = 24}, + [3426] = {.lex_state = 0, .external_lex_state = 4}, + [3427] = {.lex_state = 103}, + [3428] = {.lex_state = 16}, + [3429] = {.lex_state = 22, .external_lex_state = 6}, + [3430] = {.lex_state = 16}, + [3431] = {.lex_state = 0, .external_lex_state = 4}, + [3432] = {.lex_state = 24}, + [3433] = {.lex_state = 0, .external_lex_state = 4}, + [3434] = {.lex_state = 31}, + [3435] = {.lex_state = 103, .external_lex_state = 5}, + [3436] = {.lex_state = 16}, + [3437] = {.lex_state = 0, .external_lex_state = 4}, + [3438] = {.lex_state = 0, .external_lex_state = 4}, + [3439] = {.lex_state = 16}, + [3440] = {.lex_state = 103}, [3441] = {.lex_state = 0, .external_lex_state = 4}, [3442] = {.lex_state = 0, .external_lex_state = 4}, - [3443] = {.lex_state = 13}, - [3444] = {.lex_state = 99, .external_lex_state = 4}, - [3445] = {.lex_state = 99}, - [3446] = {.lex_state = 17}, - [3447] = {.lex_state = 99}, - [3448] = {.lex_state = 99}, - [3449] = {.lex_state = 0}, - [3450] = {.lex_state = 13}, - [3451] = {.lex_state = 99}, - [3452] = {.lex_state = 22}, - [3453] = {.lex_state = 18}, - [3454] = {.lex_state = 22}, - [3455] = {.lex_state = 18}, - [3456] = {.lex_state = 99}, - [3457] = {.lex_state = 99}, - [3458] = {.lex_state = 22}, - [3459] = {.lex_state = 13}, - [3460] = {.lex_state = 18}, - [3461] = {.lex_state = 17}, - [3462] = {.lex_state = 22}, - [3463] = {.lex_state = 18}, - [3464] = {.lex_state = 18}, - [3465] = {.lex_state = 22}, - [3466] = {.lex_state = 99}, - [3467] = {.lex_state = 99}, - [3468] = {.lex_state = 99}, - [3469] = {.lex_state = 0}, - [3470] = {.lex_state = 0}, - [3471] = {.lex_state = 18}, - [3472] = {.lex_state = 22}, - [3473] = {.lex_state = 99}, - [3474] = {.lex_state = 18}, - [3475] = {.lex_state = 13}, - [3476] = {.lex_state = 22}, - [3477] = {.lex_state = 22}, - [3478] = {.lex_state = 18}, - [3479] = {.lex_state = 22}, - [3480] = {.lex_state = 18}, - [3481] = {.lex_state = 22}, - [3482] = {.lex_state = 18}, + [3443] = {.lex_state = 16}, + [3444] = {.lex_state = 0, .external_lex_state = 4}, + [3445] = {.lex_state = 25}, + [3446] = {.lex_state = 103}, + [3447] = {.lex_state = 16}, + [3448] = {.lex_state = 103}, + [3449] = {.lex_state = 103}, + [3450] = {.lex_state = 2}, + [3451] = {.lex_state = 0}, + [3452] = {.lex_state = 103}, + [3453] = {.lex_state = 16}, + [3454] = {.lex_state = 25}, + [3455] = {.lex_state = 21}, + [3456] = {.lex_state = 103}, + [3457] = {.lex_state = 21}, + [3458] = {.lex_state = 103}, + [3459] = {.lex_state = 103}, + [3460] = {.lex_state = 25}, + [3461] = {.lex_state = 25}, + [3462] = {.lex_state = 0}, + [3463] = {.lex_state = 25}, + [3464] = {.lex_state = 0, .external_lex_state = 4}, + [3465] = {.lex_state = 103}, + [3466] = {.lex_state = 0}, + [3467] = {.lex_state = 25}, + [3468] = {.lex_state = 21}, + [3469] = {.lex_state = 16}, + [3470] = {.lex_state = 103}, + [3471] = {.lex_state = 103}, + [3472] = {.lex_state = 21}, + [3473] = {.lex_state = 103}, + [3474] = {.lex_state = 103}, + [3475] = {.lex_state = 0}, + [3476] = {.lex_state = 22, .external_lex_state = 6}, + [3477] = {.lex_state = 0}, + [3478] = {.lex_state = 25}, + [3479] = {.lex_state = 21}, + [3480] = {.lex_state = 25}, + [3481] = {.lex_state = 21}, + [3482] = {.lex_state = 103}, [3483] = {.lex_state = 0}, - [3484] = {.lex_state = 99}, - [3485] = {.lex_state = 18}, - [3486] = {.lex_state = 99}, - [3487] = {.lex_state = 13}, - [3488] = {.lex_state = 99}, - [3489] = {.lex_state = 17}, - [3490] = {.lex_state = 18}, - [3491] = {.lex_state = 22}, - [3492] = {.lex_state = 13}, - [3493] = {.lex_state = 22}, - [3494] = {.lex_state = 0}, - [3495] = {.lex_state = 99}, - [3496] = {.lex_state = 99}, - [3497] = {.lex_state = 13}, - [3498] = {.lex_state = 99}, - [3499] = {.lex_state = 13}, - [3500] = {.lex_state = 1}, - [3501] = {.lex_state = 13}, - [3502] = {.lex_state = 99}, - [3503] = {.lex_state = 0, .external_lex_state = 4}, + [3484] = {.lex_state = 25}, + [3485] = {.lex_state = 0}, + [3486] = {.lex_state = 0}, + [3487] = {.lex_state = 25}, + [3488] = {.lex_state = 103}, + [3489] = {.lex_state = 21}, + [3490] = {.lex_state = 21}, + [3491] = {.lex_state = 103}, + [3492] = {.lex_state = 0}, + [3493] = {.lex_state = 22, .external_lex_state = 6}, + [3494] = {.lex_state = 103}, + [3495] = {.lex_state = 25}, + [3496] = {.lex_state = 21}, + [3497] = {.lex_state = 103}, + [3498] = {.lex_state = 103, .external_lex_state = 4}, + [3499] = {.lex_state = 0, .external_lex_state = 4}, + [3500] = {.lex_state = 103}, + [3501] = {.lex_state = 103}, + [3502] = {.lex_state = 21}, + [3503] = {.lex_state = 25}, [3504] = {.lex_state = 0, .external_lex_state = 4}, - [3505] = {.lex_state = 0, .external_lex_state = 4}, - [3506] = {.lex_state = 13}, - [3507] = {.lex_state = 99}, - [3508] = {.lex_state = 99}, - [3509] = {.lex_state = 99}, - [3510] = {.lex_state = 99, .external_lex_state = 4}, - [3511] = {.lex_state = 99, .external_lex_state = 4}, - [3512] = {.lex_state = 99}, - [3513] = {.lex_state = 0, .external_lex_state = 4}, - [3514] = {.lex_state = 99, .external_lex_state = 4}, - [3515] = {.lex_state = 0, .external_lex_state = 4}, - [3516] = {.lex_state = 99}, - [3517] = {.lex_state = 22}, - [3518] = {.lex_state = 1}, - [3519] = {.lex_state = 19, .external_lex_state = 6}, - [3520] = {.lex_state = 99}, - [3521] = {.lex_state = 18}, - [3522] = {.lex_state = 0, .external_lex_state = 5}, - [3523] = {.lex_state = 22}, - [3524] = {.lex_state = 22}, - [3525] = {.lex_state = 18}, - [3526] = {.lex_state = 18}, - [3527] = {.lex_state = 99}, - [3528] = {.lex_state = 99}, - [3529] = {.lex_state = 99}, - [3530] = {.lex_state = 22}, - [3531] = {.lex_state = 1}, - [3532] = {.lex_state = 99}, - [3533] = {.lex_state = 99}, - [3534] = {.lex_state = 99}, - [3535] = {.lex_state = 0}, - [3536] = {.lex_state = 99}, - [3537] = {.lex_state = 99}, - [3538] = {.lex_state = 18}, - [3539] = {.lex_state = 1}, - [3540] = {.lex_state = 0}, - [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 0}, - [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 0}, - [3545] = {.lex_state = 0}, - [3546] = {.lex_state = 0}, - [3547] = {.lex_state = 99}, - [3548] = {.lex_state = 0}, - [3549] = {.lex_state = 27}, - [3550] = {.lex_state = 0, .external_lex_state = 4}, - [3551] = {.lex_state = 0}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 0}, - [3554] = {.lex_state = 0}, - [3555] = {.lex_state = 0}, - [3556] = {.lex_state = 0}, + [3505] = {.lex_state = 2}, + [3506] = {.lex_state = 0, .external_lex_state = 4}, + [3507] = {.lex_state = 21}, + [3508] = {.lex_state = 103}, + [3509] = {.lex_state = 25}, + [3510] = {.lex_state = 21}, + [3511] = {.lex_state = 21}, + [3512] = {.lex_state = 103, .external_lex_state = 4}, + [3513] = {.lex_state = 0}, + [3514] = {.lex_state = 16}, + [3515] = {.lex_state = 21}, + [3516] = {.lex_state = 25}, + [3517] = {.lex_state = 103, .external_lex_state = 4}, + [3518] = {.lex_state = 103}, + [3519] = {.lex_state = 103}, + [3520] = {.lex_state = 103}, + [3521] = {.lex_state = 103}, + [3522] = {.lex_state = 103}, + [3523] = {.lex_state = 16}, + [3524] = {.lex_state = 103}, + [3525] = {.lex_state = 0, .external_lex_state = 4}, + [3526] = {.lex_state = 0, .external_lex_state = 4}, + [3527] = {.lex_state = 0}, + [3528] = {.lex_state = 0}, + [3529] = {.lex_state = 0, .external_lex_state = 4}, + [3530] = {.lex_state = 103}, + [3531] = {.lex_state = 16}, + [3532] = {.lex_state = 16}, + [3533] = {.lex_state = 103}, + [3534] = {.lex_state = 16}, + [3535] = {.lex_state = 103}, + [3536] = {.lex_state = 103}, + [3537] = {.lex_state = 103}, + [3538] = {.lex_state = 0}, + [3539] = {.lex_state = 16}, + [3540] = {.lex_state = 16}, + [3541] = {.lex_state = 103}, + [3542] = {.lex_state = 25}, + [3543] = {.lex_state = 25}, + [3544] = {.lex_state = 103}, + [3545] = {.lex_state = 21}, + [3546] = {.lex_state = 103}, + [3547] = {.lex_state = 16}, + [3548] = {.lex_state = 103}, + [3549] = {.lex_state = 103}, + [3550] = {.lex_state = 16}, + [3551] = {.lex_state = 16}, + [3552] = {.lex_state = 16}, + [3553] = {.lex_state = 2}, + [3554] = {.lex_state = 103}, + [3555] = {.lex_state = 103}, + [3556] = {.lex_state = 0, .external_lex_state = 5}, [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 0}, - [3559] = {.lex_state = 99}, - [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 27}, - [3562] = {.lex_state = 0}, - [3563] = {.lex_state = 99}, - [3564] = {.lex_state = 99}, - [3565] = {.lex_state = 99}, - [3566] = {.lex_state = 0, .external_lex_state = 4}, - [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 0}, - [3569] = {.lex_state = 19, .external_lex_state = 6}, - [3570] = {.lex_state = 0}, - [3571] = {.lex_state = 99}, - [3572] = {.lex_state = 0, .external_lex_state = 4}, - [3573] = {.lex_state = 99}, - [3574] = {.lex_state = 99}, - [3575] = {.lex_state = 99}, + [3558] = {.lex_state = 103}, + [3559] = {.lex_state = 0}, + [3560] = {.lex_state = 16}, + [3561] = {.lex_state = 16}, + [3562] = {.lex_state = 21}, + [3563] = {.lex_state = 103}, + [3564] = {.lex_state = 0, .external_lex_state = 4}, + [3565] = {.lex_state = 103, .external_lex_state = 4}, + [3566] = {.lex_state = 103}, + [3567] = {.lex_state = 0, .external_lex_state = 4}, + [3568] = {.lex_state = 103}, + [3569] = {.lex_state = 2}, + [3570] = {.lex_state = 25}, + [3571] = {.lex_state = 21}, + [3572] = {.lex_state = 103}, + [3573] = {.lex_state = 0, .external_lex_state = 4}, + [3574] = {.lex_state = 0}, + [3575] = {.lex_state = 0, .external_lex_state = 4}, [3576] = {.lex_state = 0}, - [3577] = {.lex_state = 99}, - [3578] = {.lex_state = 99}, - [3579] = {.lex_state = 0}, - [3580] = {.lex_state = 99}, - [3581] = {.lex_state = 0, .external_lex_state = 4}, - [3582] = {.lex_state = 99}, - [3583] = {.lex_state = 99}, - [3584] = {.lex_state = 0}, + [3577] = {.lex_state = 0, .external_lex_state = 4}, + [3578] = {.lex_state = 103}, + [3579] = {.lex_state = 0, .external_lex_state = 4}, + [3580] = {.lex_state = 103}, + [3581] = {.lex_state = 103, .external_lex_state = 4}, + [3582] = {.lex_state = 103, .external_lex_state = 4}, + [3583] = {.lex_state = 103}, + [3584] = {.lex_state = 0, .external_lex_state = 4}, [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 0, .external_lex_state = 4}, - [3587] = {.lex_state = 99}, - [3588] = {.lex_state = 0}, - [3589] = {.lex_state = 99}, - [3590] = {.lex_state = 0, .external_lex_state = 4}, - [3591] = {.lex_state = 99, .external_lex_state = 4}, - [3592] = {.lex_state = 99}, - [3593] = {.lex_state = 0}, - [3594] = {.lex_state = 0, .external_lex_state = 4}, - [3595] = {.lex_state = 13}, - [3596] = {.lex_state = 0}, - [3597] = {.lex_state = 0, .external_lex_state = 4}, + [3586] = {.lex_state = 7}, + [3587] = {.lex_state = 0}, + [3588] = {.lex_state = 0, .external_lex_state = 4}, + [3589] = {.lex_state = 0}, + [3590] = {.lex_state = 103}, + [3591] = {.lex_state = 103}, + [3592] = {.lex_state = 0}, + [3593] = {.lex_state = 103}, + [3594] = {.lex_state = 0}, + [3595] = {.lex_state = 0}, + [3596] = {.lex_state = 16}, + [3597] = {.lex_state = 0}, [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 99}, - [3600] = {.lex_state = 0}, + [3599] = {.lex_state = 0}, + [3600] = {.lex_state = 0, .external_lex_state = 4}, [3601] = {.lex_state = 0}, [3602] = {.lex_state = 0}, - [3603] = {.lex_state = 0, .external_lex_state = 4}, - [3604] = {.lex_state = 0, .external_lex_state = 4}, + [3603] = {.lex_state = 0}, + [3604] = {.lex_state = 0}, [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 0}, + [3606] = {.lex_state = 7}, [3607] = {.lex_state = 0}, - [3608] = {.lex_state = 0, .external_lex_state = 4}, - [3609] = {.lex_state = 0, .external_lex_state = 4}, - [3610] = {.lex_state = 0, .external_lex_state = 4}, - [3611] = {.lex_state = 0}, + [3608] = {.lex_state = 103}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 0}, + [3611] = {.lex_state = 0, .external_lex_state = 4}, [3612] = {.lex_state = 0, .external_lex_state = 4}, [3613] = {.lex_state = 0, .external_lex_state = 4}, [3614] = {.lex_state = 0}, - [3615] = {.lex_state = 99}, - [3616] = {.lex_state = 0, .external_lex_state = 4}, - [3617] = {.lex_state = 99}, + [3615] = {.lex_state = 0}, + [3616] = {.lex_state = 0}, + [3617] = {.lex_state = 0}, [3618] = {.lex_state = 0}, - [3619] = {.lex_state = 0, .external_lex_state = 4}, - [3620] = {.lex_state = 99}, - [3621] = {.lex_state = 0}, - [3622] = {.lex_state = 27}, - [3623] = {.lex_state = 0, .external_lex_state = 4}, - [3624] = {.lex_state = 0, .external_lex_state = 4}, - [3625] = {.lex_state = 99}, - [3626] = {.lex_state = 27}, - [3627] = {.lex_state = 99}, - [3628] = {.lex_state = 4}, - [3629] = {.lex_state = 99}, - [3630] = {.lex_state = 27}, - [3631] = {.lex_state = 99}, - [3632] = {.lex_state = 27}, + [3619] = {.lex_state = 0}, + [3620] = {.lex_state = 103}, + [3621] = {.lex_state = 103}, + [3622] = {.lex_state = 103}, + [3623] = {.lex_state = 0}, + [3624] = {.lex_state = 103}, + [3625] = {.lex_state = 103}, + [3626] = {.lex_state = 103}, + [3627] = {.lex_state = 0}, + [3628] = {.lex_state = 0}, + [3629] = {.lex_state = 0}, + [3630] = {.lex_state = 103}, + [3631] = {.lex_state = 0}, + [3632] = {.lex_state = 0}, [3633] = {.lex_state = 0}, - [3634] = {.lex_state = 99}, - [3635] = {.lex_state = 0, .external_lex_state = 4}, - [3636] = {.lex_state = 0}, + [3634] = {.lex_state = 0}, + [3635] = {.lex_state = 0}, + [3636] = {.lex_state = 103, .external_lex_state = 4}, [3637] = {.lex_state = 0}, - [3638] = {.lex_state = 99}, - [3639] = {.lex_state = 0}, - [3640] = {.lex_state = 0}, + [3638] = {.lex_state = 0}, + [3639] = {.lex_state = 103}, + [3640] = {.lex_state = 103}, [3641] = {.lex_state = 0}, [3642] = {.lex_state = 0}, - [3643] = {.lex_state = 27}, + [3643] = {.lex_state = 0, .external_lex_state = 4}, [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 99}, - [3646] = {.lex_state = 27}, - [3647] = {.lex_state = 0}, + [3645] = {.lex_state = 0}, + [3646] = {.lex_state = 0}, + [3647] = {.lex_state = 103}, [3648] = {.lex_state = 0}, [3649] = {.lex_state = 0}, - [3650] = {.lex_state = 99}, - [3651] = {.lex_state = 99}, - [3652] = {.lex_state = 99}, - [3653] = {.lex_state = 99}, - [3654] = {.lex_state = 27}, - [3655] = {.lex_state = 99}, - [3656] = {.lex_state = 99}, - [3657] = {.lex_state = 0}, - [3658] = {.lex_state = 27}, - [3659] = {.lex_state = 0}, - [3660] = {.lex_state = 0, .external_lex_state = 4}, - [3661] = {.lex_state = 0, .external_lex_state = 4}, - [3662] = {.lex_state = 0, .external_lex_state = 4}, - [3663] = {.lex_state = 99}, - [3664] = {.lex_state = 0}, - [3665] = {.lex_state = 99, .external_lex_state = 4}, - [3666] = {.lex_state = 99}, - [3667] = {.lex_state = 99}, - [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 27}, - [3670] = {.lex_state = 0, .external_lex_state = 4}, - [3671] = {.lex_state = 0, .external_lex_state = 4}, - [3672] = {.lex_state = 0}, + [3650] = {.lex_state = 0}, + [3651] = {.lex_state = 7}, + [3652] = {.lex_state = 103}, + [3653] = {.lex_state = 0}, + [3654] = {.lex_state = 103}, + [3655] = {.lex_state = 0}, + [3656] = {.lex_state = 103}, + [3657] = {.lex_state = 103}, + [3658] = {.lex_state = 103}, + [3659] = {.lex_state = 103}, + [3660] = {.lex_state = 0}, + [3661] = {.lex_state = 103}, + [3662] = {.lex_state = 0}, + [3663] = {.lex_state = 0}, + [3664] = {.lex_state = 103}, + [3665] = {.lex_state = 0}, + [3666] = {.lex_state = 0}, + [3667] = {.lex_state = 103}, + [3668] = {.lex_state = 0, .external_lex_state = 4}, + [3669] = {.lex_state = 103}, + [3670] = {.lex_state = 16}, + [3671] = {.lex_state = 103}, + [3672] = {.lex_state = 0, .external_lex_state = 4}, [3673] = {.lex_state = 0}, - [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 99}, - [3676] = {.lex_state = 0}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 0}, - [3679] = {.lex_state = 0}, - [3680] = {.lex_state = 0, .external_lex_state = 4}, - [3681] = {.lex_state = 0, .external_lex_state = 4}, - [3682] = {.lex_state = 0, .external_lex_state = 4}, - [3683] = {.lex_state = 27}, - [3684] = {.lex_state = 99}, - [3685] = {.lex_state = 4}, + [3674] = {.lex_state = 103}, + [3675] = {.lex_state = 103}, + [3676] = {.lex_state = 0, .external_lex_state = 4}, + [3677] = {.lex_state = 0, .external_lex_state = 4}, + [3678] = {.lex_state = 0, .external_lex_state = 4}, + [3679] = {.lex_state = 0, .external_lex_state = 4}, + [3680] = {.lex_state = 0}, + [3681] = {.lex_state = 103}, + [3682] = {.lex_state = 0}, + [3683] = {.lex_state = 0, .external_lex_state = 4}, + [3684] = {.lex_state = 0, .external_lex_state = 4}, + [3685] = {.lex_state = 103}, [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 0, .external_lex_state = 4}, - [3688] = {.lex_state = 99}, + [3687] = {.lex_state = 0}, + [3688] = {.lex_state = 0}, [3689] = {.lex_state = 0}, [3690] = {.lex_state = 0}, - [3691] = {.lex_state = 0, .external_lex_state = 4}, - [3692] = {.lex_state = 13}, + [3691] = {.lex_state = 103}, + [3692] = {.lex_state = 0, .external_lex_state = 4}, [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0, .external_lex_state = 4}, + [3694] = {.lex_state = 103}, [3695] = {.lex_state = 0, .external_lex_state = 4}, - [3696] = {.lex_state = 0, .external_lex_state = 4}, - [3697] = {.lex_state = 27}, - [3698] = {.lex_state = 27}, - [3699] = {.lex_state = 0, .external_lex_state = 4}, - [3700] = {.lex_state = 27}, - [3701] = {.lex_state = 27}, - [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 99}, - [3704] = {.lex_state = 0}, - [3705] = {.lex_state = 27}, + [3696] = {.lex_state = 103}, + [3697] = {.lex_state = 0}, + [3698] = {.lex_state = 0}, + [3699] = {.lex_state = 0}, + [3700] = {.lex_state = 103}, + [3701] = {.lex_state = 0, .external_lex_state = 4}, + [3702] = {.lex_state = 103}, + [3703] = {.lex_state = 103}, + [3704] = {.lex_state = 0, .external_lex_state = 4}, + [3705] = {.lex_state = 0}, [3706] = {.lex_state = 0}, [3707] = {.lex_state = 0}, [3708] = {.lex_state = 0}, [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 99}, - [3712] = {.lex_state = 0}, - [3713] = {.lex_state = 0}, - [3714] = {.lex_state = 99}, - [3715] = {.lex_state = 99}, - [3716] = {.lex_state = 99, .external_lex_state = 4}, - [3717] = {.lex_state = 99}, + [3710] = {.lex_state = 2}, + [3711] = {.lex_state = 103}, + [3712] = {.lex_state = 103}, + [3713] = {.lex_state = 103, .external_lex_state = 4}, + [3714] = {.lex_state = 0}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 0, .external_lex_state = 4}, + [3717] = {.lex_state = 103}, [3718] = {.lex_state = 0}, - [3719] = {.lex_state = 0}, + [3719] = {.lex_state = 0, .external_lex_state = 4}, [3720] = {.lex_state = 0}, - [3721] = {.lex_state = 0, .external_lex_state = 4}, - [3722] = {.lex_state = 0, .external_lex_state = 4}, - [3723] = {.lex_state = 0, .external_lex_state = 4}, - [3724] = {.lex_state = 0}, - [3725] = {.lex_state = 0}, + [3721] = {.lex_state = 0}, + [3722] = {.lex_state = 103, .external_lex_state = 4}, + [3723] = {.lex_state = 103}, + [3724] = {.lex_state = 103}, + [3725] = {.lex_state = 103}, [3726] = {.lex_state = 0}, [3727] = {.lex_state = 0, .external_lex_state = 4}, - [3728] = {.lex_state = 99, .external_lex_state = 4}, - [3729] = {.lex_state = 99}, - [3730] = {.lex_state = 0, .external_lex_state = 4}, - [3731] = {.lex_state = 0, .external_lex_state = 4}, - [3732] = {.lex_state = 0}, + [3728] = {.lex_state = 0, .external_lex_state = 4}, + [3729] = {.lex_state = 0, .external_lex_state = 4}, + [3730] = {.lex_state = 0}, + [3731] = {.lex_state = 22, .external_lex_state = 6}, + [3732] = {.lex_state = 0, .external_lex_state = 4}, [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 0, .external_lex_state = 4}, - [3735] = {.lex_state = 0, .external_lex_state = 4}, - [3736] = {.lex_state = 99}, - [3737] = {.lex_state = 99}, - [3738] = {.lex_state = 0}, - [3739] = {.lex_state = 0, .external_lex_state = 4}, - [3740] = {.lex_state = 0, .external_lex_state = 4}, - [3741] = {.lex_state = 99}, - [3742] = {.lex_state = 99}, - [3743] = {.lex_state = 0, .external_lex_state = 4}, - [3744] = {.lex_state = 27}, + [3734] = {.lex_state = 0}, + [3735] = {.lex_state = 0}, + [3736] = {.lex_state = 0}, + [3737] = {.lex_state = 0}, + [3738] = {.lex_state = 0, .external_lex_state = 4}, + [3739] = {.lex_state = 103}, + [3740] = {.lex_state = 0}, + [3741] = {.lex_state = 0, .external_lex_state = 4}, + [3742] = {.lex_state = 0}, + [3743] = {.lex_state = 0}, + [3744] = {.lex_state = 103}, [3745] = {.lex_state = 0, .external_lex_state = 4}, - [3746] = {.lex_state = 0, .external_lex_state = 4}, - [3747] = {.lex_state = 0}, - [3748] = {.lex_state = 99}, - [3749] = {.lex_state = 0}, - [3750] = {.lex_state = 0}, - [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 99}, - [3753] = {.lex_state = 99}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 0}, + [3746] = {.lex_state = 103}, + [3747] = {.lex_state = 0, .external_lex_state = 4}, + [3748] = {.lex_state = 103}, + [3749] = {.lex_state = 0, .external_lex_state = 4}, + [3750] = {.lex_state = 0, .external_lex_state = 4}, + [3751] = {.lex_state = 0, .external_lex_state = 4}, + [3752] = {.lex_state = 0, .external_lex_state = 4}, + [3753] = {.lex_state = 0, .external_lex_state = 4}, + [3754] = {.lex_state = 103}, + [3755] = {.lex_state = 103}, [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 99, .external_lex_state = 4}, + [3757] = {.lex_state = 0}, [3758] = {.lex_state = 0}, - [3759] = {.lex_state = 99}, - [3760] = {.lex_state = 4}, - [3761] = {.lex_state = 27}, - [3762] = {.lex_state = 99, .external_lex_state = 4}, - [3763] = {.lex_state = 27}, - [3764] = {.lex_state = 99}, - [3765] = {.lex_state = 99}, - [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 99}, - [3768] = {.lex_state = 99}, - [3769] = {.lex_state = 99}, - [3770] = {.lex_state = 99}, + [3759] = {.lex_state = 0, .external_lex_state = 4}, + [3760] = {.lex_state = 103}, + [3761] = {.lex_state = 0, .external_lex_state = 4}, + [3762] = {.lex_state = 0, .external_lex_state = 4}, + [3763] = {.lex_state = 103}, + [3764] = {.lex_state = 0}, + [3765] = {.lex_state = 103}, + [3766] = {.lex_state = 0, .external_lex_state = 4}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 103, .external_lex_state = 4}, + [3769] = {.lex_state = 0}, + [3770] = {.lex_state = 0, .external_lex_state = 4}, [3771] = {.lex_state = 0, .external_lex_state = 4}, - [3772] = {.lex_state = 0}, - [3773] = {.lex_state = 0}, + [3772] = {.lex_state = 0, .external_lex_state = 4}, + [3773] = {.lex_state = 103}, [3774] = {.lex_state = 0}, - [3775] = {.lex_state = 99}, - [3776] = {.lex_state = 0}, + [3775] = {.lex_state = 0, .external_lex_state = 4}, + [3776] = {.lex_state = 0, .external_lex_state = 4}, [3777] = {.lex_state = 0}, [3778] = {.lex_state = 0}, [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 99}, - [3781] = {.lex_state = 99}, - [3782] = {.lex_state = 0, .external_lex_state = 4}, - [3783] = {.lex_state = 27}, - [3784] = {.lex_state = 1}, - [3785] = {.lex_state = 99}, - [3786] = {.lex_state = 99}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0, .external_lex_state = 4}, + [3780] = {.lex_state = 103}, + [3781] = {.lex_state = 103}, + [3782] = {.lex_state = 103}, + [3783] = {.lex_state = 103}, + [3784] = {.lex_state = 0}, + [3785] = {.lex_state = 0}, + [3786] = {.lex_state = 103}, + [3787] = {.lex_state = 103}, + [3788] = {.lex_state = 103}, + [3789] = {.lex_state = 103}, [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 99}, - [3792] = {.lex_state = 0, .external_lex_state = 4}, + [3791] = {.lex_state = 103}, + [3792] = {.lex_state = 0}, [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 99}, - [3795] = {.lex_state = 99}, - [3796] = {.lex_state = 99}, - [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 99}, - [3799] = {.lex_state = 99}, + [3794] = {.lex_state = 103}, + [3795] = {.lex_state = 103}, + [3796] = {.lex_state = 103}, + [3797] = {.lex_state = 103}, + [3798] = {.lex_state = 0, .external_lex_state = 4}, + [3799] = {.lex_state = 0}, [3800] = {.lex_state = 0, .external_lex_state = 4}, - [3801] = {.lex_state = 99}, + [3801] = {.lex_state = 0}, [3802] = {.lex_state = 0, .external_lex_state = 4}, - [3803] = {.lex_state = 99}, - [3804] = {.lex_state = 0}, - [3805] = {.lex_state = 0}, - [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 0, .external_lex_state = 4}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 0}, - [3810] = {.lex_state = 0}, - [3811] = {.lex_state = 0}, + [3803] = {.lex_state = 103}, + [3804] = {.lex_state = 0, .external_lex_state = 4}, + [3805] = {.lex_state = 0, .external_lex_state = 4}, + [3806] = {.lex_state = 0, .external_lex_state = 4}, + [3807] = {.lex_state = 103}, + [3808] = {.lex_state = 0, .external_lex_state = 4}, + [3809] = {.lex_state = 103}, + [3810] = {.lex_state = 103}, + [3811] = {.lex_state = 0, .external_lex_state = 4}, [3812] = {.lex_state = 0}, - [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 99}, - [3815] = {.lex_state = 0, .external_lex_state = 4}, + [3813] = {.lex_state = 0, .external_lex_state = 4}, + [3814] = {.lex_state = 103}, + [3815] = {.lex_state = 103}, [3816] = {.lex_state = 0}, [3817] = {.lex_state = 0}, - [3818] = {.lex_state = 99}, - [3819] = {.lex_state = 99}, - [3820] = {.lex_state = 0}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 99}, - [3823] = {.lex_state = 0, .external_lex_state = 4}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 99}, - [3826] = {.lex_state = 99}, - [3827] = {.lex_state = 99}, - [3828] = {.lex_state = 99}, - [3829] = {.lex_state = 99}, - [3830] = {.lex_state = 99}, - [3831] = {.lex_state = 1}, - [3832] = {.lex_state = 99}, - [3833] = {.lex_state = 99}, - [3834] = {.lex_state = 0}, + [3818] = {.lex_state = 103}, + [3819] = {.lex_state = 103}, + [3820] = {.lex_state = 103}, + [3821] = {.lex_state = 103}, + [3822] = {.lex_state = 103}, + [3823] = {.lex_state = 0}, + [3824] = {.lex_state = 103}, + [3825] = {.lex_state = 103}, + [3826] = {.lex_state = 0}, + [3827] = {.lex_state = 0}, + [3828] = {.lex_state = 103}, + [3829] = {.lex_state = 103}, + [3830] = {.lex_state = 103}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 0}, + [3833] = {.lex_state = 103}, + [3834] = {.lex_state = 103}, [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 99}, - [3837] = {.lex_state = 99}, - [3838] = {.lex_state = 99}, - [3839] = {.lex_state = 99}, - [3840] = {.lex_state = 99}, - [3841] = {.lex_state = 99}, + [3836] = {.lex_state = 0, .external_lex_state = 4}, + [3837] = {.lex_state = 103}, + [3838] = {.lex_state = 2}, + [3839] = {.lex_state = 0, .external_lex_state = 4}, + [3840] = {.lex_state = 0, .external_lex_state = 4}, + [3841] = {.lex_state = 0}, [3842] = {.lex_state = 0}, [3843] = {.lex_state = 0}, - [3844] = {.lex_state = 99}, - [3845] = {.lex_state = 0}, - [3846] = {.lex_state = 99}, - [3847] = {.lex_state = 0}, + [3844] = {.lex_state = 0}, + [3845] = {.lex_state = 103}, + [3846] = {.lex_state = 103}, + [3847] = {.lex_state = 103}, [3848] = {.lex_state = 0}, - [3849] = {.lex_state = 99}, - [3850] = {.lex_state = 0, .external_lex_state = 4}, - [3851] = {.lex_state = 99}, - [3852] = {.lex_state = 0}, - [3853] = {.lex_state = 0}, - [3854] = {.lex_state = 0, .external_lex_state = 4}, - [3855] = {.lex_state = 0, .external_lex_state = 4}, + [3849] = {.lex_state = 103}, + [3850] = {.lex_state = 0}, + [3851] = {.lex_state = 103}, + [3852] = {.lex_state = 103}, + [3853] = {.lex_state = 103}, + [3854] = {.lex_state = 103}, + [3855] = {.lex_state = 0}, [3856] = {.lex_state = 0}, - [3857] = {.lex_state = 99}, - [3858] = {.lex_state = 99}, - [3859] = {.lex_state = 99}, - [3860] = {.lex_state = 99}, - [3861] = {.lex_state = 99}, - [3862] = {.lex_state = 99}, - [3863] = {.lex_state = 99}, - [3864] = {.lex_state = 99}, - [3865] = {.lex_state = 99}, - [3866] = {.lex_state = 99}, - [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 99}, + [3857] = {.lex_state = 103}, + [3858] = {.lex_state = 0, .external_lex_state = 4}, + [3859] = {.lex_state = 0}, + [3860] = {.lex_state = 0}, + [3861] = {.lex_state = 0}, + [3862] = {.lex_state = 103}, + [3863] = {.lex_state = 103}, + [3864] = {.lex_state = 0}, + [3865] = {.lex_state = 0}, + [3866] = {.lex_state = 0}, + [3867] = {.lex_state = 103}, + [3868] = {.lex_state = 0}, [3869] = {.lex_state = 0}, [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 99}, - [3873] = {.lex_state = 0}, - [3874] = {.lex_state = 99}, - [3875] = {.lex_state = 99}, - [3876] = {.lex_state = 99}, + [3871] = {.lex_state = 103}, + [3872] = {.lex_state = 103}, + [3873] = {.lex_state = 103}, + [3874] = {.lex_state = 103}, + [3875] = {.lex_state = 103}, + [3876] = {.lex_state = 103}, [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 99}, - [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 99}, - [3881] = {.lex_state = 0}, + [3878] = {.lex_state = 0}, + [3879] = {.lex_state = 103}, + [3880] = {.lex_state = 103}, + [3881] = {.lex_state = 103}, [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 99}, - [3884] = {.lex_state = 0, .external_lex_state = 4}, - [3885] = {.lex_state = 99}, - [3886] = {.lex_state = 0}, - [3887] = {.lex_state = 99}, - [3888] = {.lex_state = 0}, - [3889] = {.lex_state = 99}, - [3890] = {.lex_state = 99}, + [3883] = {.lex_state = 0, .external_lex_state = 4}, + [3884] = {.lex_state = 103}, + [3885] = {.lex_state = 0, .external_lex_state = 4}, + [3886] = {.lex_state = 103}, + [3887] = {.lex_state = 103}, + [3888] = {.lex_state = 103}, + [3889] = {.lex_state = 0}, + [3890] = {.lex_state = 103}, [3891] = {.lex_state = 0}, [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 99}, - [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 99}, - [3897] = {.lex_state = 99}, - [3898] = {.lex_state = 99}, - [3899] = {.lex_state = 99}, - [3900] = {.lex_state = 99}, - [3901] = {.lex_state = 99}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 99}, - [3904] = {.lex_state = 0}, - [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 0, .external_lex_state = 4}, - [3907] = {.lex_state = 0, .external_lex_state = 4}, - [3908] = {.lex_state = 99}, - [3909] = {.lex_state = 99}, - [3910] = {.lex_state = 0, .external_lex_state = 4}, - [3911] = {.lex_state = 99}, - [3912] = {.lex_state = 0, .external_lex_state = 4}, - [3913] = {.lex_state = 0}, + [3893] = {.lex_state = 103}, + [3894] = {.lex_state = 0, .external_lex_state = 4}, + [3895] = {.lex_state = 0, .external_lex_state = 4}, + [3896] = {.lex_state = 0}, + [3897] = {.lex_state = 0, .external_lex_state = 4}, + [3898] = {.lex_state = 0}, + [3899] = {.lex_state = 0}, + [3900] = {.lex_state = 0, .external_lex_state = 4}, + [3901] = {.lex_state = 103}, + [3902] = {.lex_state = 103}, + [3903] = {.lex_state = 103}, + [3904] = {.lex_state = 103}, + [3905] = {.lex_state = 103}, + [3906] = {.lex_state = 103}, + [3907] = {.lex_state = 103}, + [3908] = {.lex_state = 0}, + [3909] = {.lex_state = 0}, + [3910] = {.lex_state = 103}, + [3911] = {.lex_state = 103}, + [3912] = {.lex_state = 103}, + [3913] = {.lex_state = 103}, [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 99}, - [3916] = {.lex_state = 0, .external_lex_state = 4}, - [3917] = {.lex_state = 99}, - [3918] = {.lex_state = 99}, - [3919] = {.lex_state = 99}, - [3920] = {.lex_state = 99}, - [3921] = {.lex_state = 99}, - [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 99}, - [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 99}, - [3926] = {.lex_state = 99}, - [3927] = {.lex_state = 99}, - [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 99}, - [3930] = {.lex_state = 99}, - [3931] = {.lex_state = 99}, - [3932] = {.lex_state = 0, .external_lex_state = 4}, - [3933] = {.lex_state = 99}, - [3934] = {.lex_state = 0, .external_lex_state = 4}, - [3935] = {.lex_state = 99}, - [3936] = {.lex_state = 0, .external_lex_state = 4}, - [3937] = {.lex_state = 99}, + [3915] = {.lex_state = 103}, + [3916] = {.lex_state = 0}, + [3917] = {.lex_state = 103}, + [3918] = {.lex_state = 103}, + [3919] = {.lex_state = 0}, + [3920] = {.lex_state = 103}, + [3921] = {.lex_state = 0}, + [3922] = {.lex_state = 103}, + [3923] = {.lex_state = 103}, + [3924] = {.lex_state = 103}, + [3925] = {.lex_state = 103}, + [3926] = {.lex_state = 0}, + [3927] = {.lex_state = 0}, + [3928] = {.lex_state = 103}, + [3929] = {.lex_state = 0, .external_lex_state = 4}, + [3930] = {.lex_state = 0, .external_lex_state = 4}, + [3931] = {.lex_state = 0, .external_lex_state = 4}, + [3932] = {.lex_state = 103}, + [3933] = {.lex_state = 103}, + [3934] = {.lex_state = 0}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 0}, + [3937] = {.lex_state = 0}, [3938] = {.lex_state = 0, .external_lex_state = 4}, - [3939] = {.lex_state = 99}, - [3940] = {.lex_state = 99}, - [3941] = {.lex_state = 99}, - [3942] = {.lex_state = 99}, - [3943] = {.lex_state = 0}, - [3944] = {.lex_state = 99}, - [3945] = {.lex_state = 99}, - [3946] = {.lex_state = 99}, - [3947] = {.lex_state = 0, .external_lex_state = 4}, - [3948] = {.lex_state = 99}, - [3949] = {.lex_state = 0, .external_lex_state = 4}, + [3939] = {.lex_state = 103}, + [3940] = {.lex_state = 103}, + [3941] = {.lex_state = 103}, + [3942] = {.lex_state = 103}, + [3943] = {.lex_state = 103}, + [3944] = {.lex_state = 0, .external_lex_state = 4}, + [3945] = {.lex_state = 0, .external_lex_state = 4}, + [3946] = {.lex_state = 103}, + [3947] = {.lex_state = 103}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 103}, [3950] = {.lex_state = 0}, - [3951] = {.lex_state = 0, .external_lex_state = 4}, - [3952] = {.lex_state = 0, .external_lex_state = 4}, - [3953] = {.lex_state = 0, .external_lex_state = 4}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 99}, - [3956] = {.lex_state = 0}, + [3951] = {.lex_state = 103}, + [3952] = {.lex_state = 103}, + [3953] = {.lex_state = 103}, + [3954] = {.lex_state = 0, .external_lex_state = 4}, + [3955] = {.lex_state = 103}, + [3956] = {.lex_state = 103}, [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 0}, + [3958] = {.lex_state = 103}, [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 99}, - [3961] = {.lex_state = 99}, - [3962] = {.lex_state = 99}, - [3963] = {.lex_state = 99}, - [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 99}, + [3960] = {.lex_state = 103}, + [3961] = {.lex_state = 103}, + [3962] = {.lex_state = 103}, + [3963] = {.lex_state = 103}, + [3964] = {.lex_state = 103}, + [3965] = {.lex_state = 103}, [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, - [3968] = {.lex_state = 99}, - [3969] = {.lex_state = 99}, - [3970] = {.lex_state = 99}, + [3967] = {.lex_state = 103}, + [3968] = {.lex_state = 103}, + [3969] = {.lex_state = 103}, + [3970] = {.lex_state = 103}, [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 99}, - [3973] = {.lex_state = 99}, - [3974] = {.lex_state = 99}, - [3975] = {.lex_state = 99}, - [3976] = {.lex_state = 99}, - [3977] = {.lex_state = 17}, - [3978] = {.lex_state = 99}, - [3979] = {.lex_state = 99}, - [3980] = {.lex_state = 99}, - [3981] = {.lex_state = 99}, - [3982] = {.lex_state = 99}, - [3983] = {.lex_state = 99}, - [3984] = {.lex_state = 99}, - [3985] = {.lex_state = 99}, - [3986] = {.lex_state = 99}, - [3987] = {.lex_state = 99}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 99}, - [3990] = {.lex_state = 99}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 99}, - [3993] = {.lex_state = 99}, - [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 99}, - [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 99}, - [3998] = {.lex_state = 99}, - [3999] = {.lex_state = 99}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 99}, - [4004] = {.lex_state = 99}, - [4005] = {.lex_state = 99}, - [4006] = {.lex_state = 99}, - [4007] = {.lex_state = 99}, - [4008] = {.lex_state = 99}, - [4009] = {.lex_state = 99}, - [4010] = {.lex_state = 99}, - [4011] = {.lex_state = 0}, + [3972] = {.lex_state = 103}, + [3973] = {.lex_state = 0}, + [3974] = {.lex_state = 103}, + [3975] = {.lex_state = 103}, + [3976] = {.lex_state = 0}, + [3977] = {.lex_state = 0}, + [3978] = {.lex_state = 103}, + [3979] = {.lex_state = 0}, + [3980] = {.lex_state = 0}, + [3981] = {.lex_state = 0, .external_lex_state = 4}, + [3982] = {.lex_state = 0, .external_lex_state = 4}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 103}, + [3985] = {.lex_state = 0}, + [3986] = {.lex_state = 0}, + [3987] = {.lex_state = 0, .external_lex_state = 4}, + [3988] = {.lex_state = 103}, + [3989] = {.lex_state = 103}, + [3990] = {.lex_state = 0}, + [3991] = {.lex_state = 103}, + [3992] = {.lex_state = 103}, + [3993] = {.lex_state = 103}, + [3994] = {.lex_state = 0, .external_lex_state = 4}, + [3995] = {.lex_state = 0, .external_lex_state = 4}, + [3996] = {.lex_state = 103}, + [3997] = {.lex_state = 0}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 0}, + [4000] = {.lex_state = 103}, + [4001] = {.lex_state = 0, .external_lex_state = 4}, + [4002] = {.lex_state = 103}, + [4003] = {.lex_state = 0}, + [4004] = {.lex_state = 103}, + [4005] = {.lex_state = 0}, + [4006] = {.lex_state = 103}, + [4007] = {.lex_state = 0}, + [4008] = {.lex_state = 103}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 0}, + [4011] = {.lex_state = 103}, [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 99}, - [4014] = {.lex_state = 99}, - [4015] = {.lex_state = 99}, - [4016] = {.lex_state = 99}, - [4017] = {.lex_state = 99}, - [4018] = {.lex_state = 99}, + [4013] = {.lex_state = 0}, + [4014] = {.lex_state = 103}, + [4015] = {.lex_state = 0}, + [4016] = {.lex_state = 0}, + [4017] = {.lex_state = 0}, + [4018] = {.lex_state = 103}, [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 99}, + [4020] = {.lex_state = 103}, [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 0}, + [4022] = {.lex_state = 103}, + [4023] = {.lex_state = 103}, + [4024] = {.lex_state = 103}, [4025] = {.lex_state = 0}, [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 0, .external_lex_state = 4}, - [4028] = {.lex_state = 99}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 99}, - [4031] = {.lex_state = 99}, - [4032] = {.lex_state = 99}, - [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 0, .external_lex_state = 4}, + [4027] = {.lex_state = 103}, + [4028] = {.lex_state = 0}, + [4029] = {.lex_state = 103}, + [4030] = {.lex_state = 103}, + [4031] = {.lex_state = 0}, + [4032] = {.lex_state = 0}, + [4033] = {.lex_state = 20}, + [4034] = {.lex_state = 0}, [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 99}, - [4037] = {.lex_state = 0}, - [4038] = {.lex_state = 0, .external_lex_state = 4}, - [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, + [4036] = {.lex_state = 0, .external_lex_state = 4}, + [4037] = {.lex_state = 103}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 103}, + [4040] = {.lex_state = 103}, [4041] = {.lex_state = 0}, - [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 0}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 99}, - [4046] = {.lex_state = 99}, - [4047] = {.lex_state = 99}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 99}, - [4050] = {.lex_state = 0, .external_lex_state = 4}, - [4051] = {.lex_state = 0, .external_lex_state = 4}, - [4052] = {.lex_state = 0, .external_lex_state = 4}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 99}, - [4055] = {.lex_state = 99}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 99}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 99}, - [4063] = {.lex_state = 0, .external_lex_state = 4}, - [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 99}, - [4066] = {.lex_state = 99}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 99}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 99}, - [4074] = {.lex_state = 99}, - [4075] = {.lex_state = 99}, - [4076] = {.lex_state = 99}, - [4077] = {.lex_state = 99}, - [4078] = {.lex_state = 99}, - [4079] = {.lex_state = 99}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 99}, - [4082] = {.lex_state = 99}, - [4083] = {.lex_state = 99}, - [4084] = {.lex_state = 99}, - [4085] = {.lex_state = 99}, + [4042] = {.lex_state = 103}, + [4043] = {.lex_state = 103}, + [4044] = {.lex_state = 103}, + [4045] = {.lex_state = 103}, + [4046] = {.lex_state = 0}, + [4047] = {.lex_state = 103}, + [4048] = {.lex_state = 103}, + [4049] = {.lex_state = 103}, + [4050] = {.lex_state = 0}, + [4051] = {.lex_state = 103}, + [4052] = {.lex_state = 103}, + [4053] = {.lex_state = 103}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 103}, + [4056] = {.lex_state = 103}, + [4057] = {.lex_state = 103}, + [4058] = {.lex_state = 0}, + [4059] = {.lex_state = 103}, + [4060] = {.lex_state = 103}, + [4061] = {.lex_state = 103}, + [4062] = {.lex_state = 103}, + [4063] = {.lex_state = 0}, + [4064] = {.lex_state = 103}, + [4065] = {.lex_state = 103}, + [4066] = {.lex_state = 103}, + [4067] = {.lex_state = 103}, + [4068] = {.lex_state = 103}, + [4069] = {.lex_state = 103}, + [4070] = {.lex_state = 103}, + [4071] = {.lex_state = 103}, + [4072] = {.lex_state = 103}, + [4073] = {.lex_state = 103}, + [4074] = {.lex_state = 0}, + [4075] = {.lex_state = 0, .external_lex_state = 4}, + [4076] = {.lex_state = 0, .external_lex_state = 4}, + [4077] = {.lex_state = 0, .external_lex_state = 4}, + [4078] = {.lex_state = 103}, + [4079] = {.lex_state = 103}, + [4080] = {.lex_state = 103}, + [4081] = {.lex_state = 103}, + [4082] = {.lex_state = 103}, + [4083] = {.lex_state = 103}, + [4084] = {.lex_state = 103}, + [4085] = {.lex_state = 0}, [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 99}, - [4090] = {.lex_state = 99}, + [4087] = {.lex_state = 103}, + [4088] = {.lex_state = 103}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 0}, [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 99}, - [4094] = {.lex_state = 99}, - [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, + [4093] = {.lex_state = 103}, + [4094] = {.lex_state = 103}, + [4095] = {.lex_state = 103}, + [4096] = {.lex_state = 103}, [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 99}, + [4099] = {.lex_state = 103}, [4100] = {.lex_state = 0}, [4101] = {.lex_state = 0}, [4102] = {.lex_state = 0}, [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 99}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 99}, - [4108] = {.lex_state = 99}, - [4109] = {.lex_state = 99}, + [4104] = {.lex_state = 103}, + [4105] = {.lex_state = 103}, + [4106] = {.lex_state = 103}, + [4107] = {.lex_state = 0}, + [4108] = {.lex_state = 0}, + [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 99}, - [4112] = {.lex_state = 99}, - [4113] = {.lex_state = 0}, + [4111] = {.lex_state = 103}, + [4112] = {.lex_state = 0}, + [4113] = {.lex_state = 103}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 99}, - [4117] = {.lex_state = 2}, - [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 0}, + [4116] = {.lex_state = 0}, + [4117] = {.lex_state = 0}, + [4118] = {.lex_state = 103}, + [4119] = {.lex_state = 3}, [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 99}, + [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 99}, + [4124] = {.lex_state = 0}, [4125] = {.lex_state = 0}, [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 99}, + [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 99}, - [4130] = {.lex_state = 99}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 13}, - [4134] = {.lex_state = 0}, + [4129] = {.lex_state = 103}, + [4130] = {.lex_state = 0}, + [4131] = {.lex_state = 103}, + [4132] = {.lex_state = 103}, + [4133] = {.lex_state = 0}, + [4134] = {.lex_state = 103}, [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 99}, + [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 0}, + [4138] = {.lex_state = 103}, [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 99}, - [4141] = {.lex_state = 99}, - [4142] = {.lex_state = 99}, - [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 99}, + [4140] = {.lex_state = 0}, + [4141] = {.lex_state = 0}, + [4142] = {.lex_state = 0}, + [4143] = {.lex_state = 103}, + [4144] = {.lex_state = 103}, + [4145] = {.lex_state = 103}, + [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 99}, + [4148] = {.lex_state = 103}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, + [4151] = {.lex_state = 16}, [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 99}, + [4153] = {.lex_state = 103}, [4154] = {.lex_state = 0}, [4155] = {.lex_state = 0}, [4156] = {.lex_state = 0}, [4157] = {.lex_state = 0}, - [4158] = {.lex_state = 99}, + [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, [4160] = {.lex_state = 0}, - [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 99}, - [4163] = {.lex_state = 99}, + [4161] = {.lex_state = 3}, + [4162] = {.lex_state = 0}, + [4163] = {.lex_state = 0}, [4164] = {.lex_state = 0}, [4165] = {.lex_state = 0}, [4166] = {.lex_state = 0}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 99}, + [4170] = {.lex_state = 0}, [4171] = {.lex_state = 0}, [4172] = {.lex_state = 0}, [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 13}, + [4174] = {.lex_state = 3}, [4175] = {.lex_state = 0}, [4176] = {.lex_state = 0}, - [4177] = {.lex_state = 99}, + [4177] = {.lex_state = 0}, [4178] = {.lex_state = 0}, [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 0}, + [4180] = {.lex_state = 103}, [4181] = {.lex_state = 0}, [4182] = {.lex_state = 0}, [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 2}, - [4185] = {.lex_state = 99}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, [4187] = {.lex_state = 0}, [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 0}, + [4191] = {.lex_state = 103}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 0}, + [4194] = {.lex_state = 103}, [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 99}, + [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, [4200] = {.lex_state = 0}, [4201] = {.lex_state = 0}, - [4202] = {.lex_state = 99}, - [4203] = {.lex_state = 99}, + [4202] = {.lex_state = 0}, + [4203] = {.lex_state = 0}, [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 99}, - [4206] = {.lex_state = 99}, - [4207] = {.lex_state = 99}, - [4208] = {.lex_state = 99}, - [4209] = {.lex_state = 99}, - [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 99}, + [4205] = {.lex_state = 0}, + [4206] = {.lex_state = 0}, + [4207] = {.lex_state = 103}, + [4208] = {.lex_state = 0}, + [4209] = {.lex_state = 103}, + [4210] = {.lex_state = 103}, + [4211] = {.lex_state = 103}, [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 99}, + [4213] = {.lex_state = 0}, [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 99}, - [4216] = {.lex_state = 99}, + [4215] = {.lex_state = 103}, + [4216] = {.lex_state = 0}, [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 2}, - [4219] = {.lex_state = 99}, + [4218] = {.lex_state = 0}, + [4219] = {.lex_state = 0}, [4220] = {.lex_state = 0}, - [4221] = {.lex_state = 99}, - [4222] = {.lex_state = 99}, + [4221] = {.lex_state = 0}, + [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 99}, + [4224] = {.lex_state = 0}, [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 99}, + [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, [4229] = {.lex_state = 0}, - [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 0}, + [4230] = {.lex_state = 103}, + [4231] = {.lex_state = 103}, + [4232] = {.lex_state = 103}, [4233] = {.lex_state = 0}, [4234] = {.lex_state = 0}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 99}, + [4237] = {.lex_state = 103}, [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 99}, + [4240] = {.lex_state = 0}, [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 99}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 99}, - [4245] = {.lex_state = 0}, + [4242] = {.lex_state = 0}, + [4243] = {.lex_state = 103}, + [4244] = {.lex_state = 0}, + [4245] = {.lex_state = 103}, [4246] = {.lex_state = 0}, [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, + [4248] = {.lex_state = 103}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 99}, + [4250] = {.lex_state = 103}, [4251] = {.lex_state = 0}, [4252] = {.lex_state = 0}, [4253] = {.lex_state = 0}, [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 99}, - [4258] = {.lex_state = 99}, - [4259] = {.lex_state = 99}, + [4257] = {.lex_state = 103}, + [4258] = {.lex_state = 0}, + [4259] = {.lex_state = 0}, [4260] = {.lex_state = 0}, [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 99}, - [4263] = {.lex_state = 0}, + [4262] = {.lex_state = 0}, + [4263] = {.lex_state = 103}, [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 99}, + [4265] = {.lex_state = 103}, [4266] = {.lex_state = 0}, [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 0}, - [4269] = {.lex_state = 13}, - [4270] = {.lex_state = 0}, + [4268] = {.lex_state = 103}, + [4269] = {.lex_state = 103}, + [4270] = {.lex_state = 103}, [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, + [4272] = {.lex_state = 103}, [4273] = {.lex_state = 0}, [4274] = {.lex_state = 0}, [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 99}, + [4276] = {.lex_state = 103}, + [4277] = {.lex_state = 0}, [4278] = {.lex_state = 0}, [4279] = {.lex_state = 0}, - [4280] = {.lex_state = 0}, + [4280] = {.lex_state = 103}, [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 99}, - [4283] = {.lex_state = 99}, - [4284] = {.lex_state = 0}, + [4282] = {.lex_state = 0}, + [4283] = {.lex_state = 0}, + [4284] = {.lex_state = 103}, [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 99}, - [4287] = {.lex_state = 99}, - [4288] = {.lex_state = 99}, - [4289] = {.lex_state = 99}, - [4290] = {.lex_state = 99}, - [4291] = {.lex_state = 99}, + [4286] = {.lex_state = 0}, + [4287] = {.lex_state = 0}, + [4288] = {.lex_state = 0}, + [4289] = {.lex_state = 103}, + [4290] = {.lex_state = 103}, + [4291] = {.lex_state = 0}, [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 99}, - [4294] = {.lex_state = 0}, + [4293] = {.lex_state = 103}, + [4294] = {.lex_state = 103}, [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 13}, - [4299] = {.lex_state = 99}, - [4300] = {.lex_state = 99}, - [4301] = {.lex_state = 99}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 0}, + [4301] = {.lex_state = 103}, [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 99}, + [4304] = {.lex_state = 103}, [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 99}, - [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 99}, + [4306] = {.lex_state = 0}, + [4307] = {.lex_state = 103}, + [4308] = {.lex_state = 0}, [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 99}, - [4314] = {.lex_state = 99}, - [4315] = {.lex_state = 99}, - [4316] = {.lex_state = 99}, + [4310] = {.lex_state = 103}, + [4311] = {.lex_state = 103}, + [4312] = {.lex_state = 16}, + [4313] = {.lex_state = 16}, + [4314] = {.lex_state = 103}, + [4315] = {.lex_state = 0}, + [4316] = {.lex_state = 103}, [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 99}, + [4318] = {.lex_state = 0}, [4319] = {.lex_state = 0}, [4320] = {.lex_state = 0}, [4321] = {.lex_state = 0}, [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 99}, + [4323] = {.lex_state = 103}, [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 0}, - [4326] = {.lex_state = 0}, + [4325] = {.lex_state = 3}, + [4326] = {.lex_state = 16}, [4327] = {.lex_state = 0}, [4328] = {.lex_state = 0}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 99}, + [4331] = {.lex_state = 0}, [4332] = {.lex_state = 0}, [4333] = {.lex_state = 0}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 0}, + [4336] = {.lex_state = 103}, [4337] = {.lex_state = 0}, - [4338] = {.lex_state = 99}, - [4339] = {.lex_state = 99}, - [4340] = {.lex_state = 99}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 99}, - [4343] = {.lex_state = 0}, - [4344] = {.lex_state = 99}, + [4338] = {.lex_state = 0}, + [4339] = {.lex_state = 103}, + [4340] = {.lex_state = 0}, + [4341] = {.lex_state = 103}, + [4342] = {.lex_state = 103}, + [4343] = {.lex_state = 103}, + [4344] = {.lex_state = 103}, [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, + [4346] = {.lex_state = 16}, [4347] = {.lex_state = 0}, [4348] = {.lex_state = 0}, [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 99}, - [4351] = {.lex_state = 0}, + [4350] = {.lex_state = 103}, + [4351] = {.lex_state = 103}, [4352] = {.lex_state = 0}, [4353] = {.lex_state = 0}, [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 99}, + [4355] = {.lex_state = 103}, [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 0}, + [4357] = {.lex_state = 103}, + [4358] = {.lex_state = 103}, [4359] = {.lex_state = 0}, [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, + [4361] = {.lex_state = 103}, [4362] = {.lex_state = 0}, [4363] = {.lex_state = 0}, [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 13}, + [4366] = {.lex_state = 0}, [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 99}, + [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 99}, + [4370] = {.lex_state = 0}, [4371] = {.lex_state = 0}, [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 0}, + [4373] = {.lex_state = 103}, [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 99}, + [4375] = {.lex_state = 0}, [4376] = {.lex_state = 0}, [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, + [4378] = {.lex_state = 103}, [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, + [4380] = {.lex_state = 103}, [4381] = {.lex_state = 0}, [4382] = {.lex_state = 0}, [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, [4385] = {.lex_state = 0}, [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 0}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, + [4387] = {.lex_state = 103}, + [4388] = {.lex_state = 103}, + [4389] = {.lex_state = 103}, + [4390] = {.lex_state = 103}, [4391] = {.lex_state = 0}, [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 0}, + [4393] = {.lex_state = 103}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, [4396] = {.lex_state = 0}, @@ -16112,59 +16229,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4400] = {.lex_state = 0}, [4401] = {.lex_state = 0}, [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 99}, + [4403] = {.lex_state = 103}, + [4404] = {.lex_state = 0}, [4405] = {.lex_state = 0}, [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 0}, + [4407] = {.lex_state = 103}, + [4408] = {.lex_state = 103}, [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 99}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 99}, - [4413] = {.lex_state = 99}, - [4414] = {.lex_state = 99}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 99}, - [4417] = {.lex_state = 99}, + [4410] = {.lex_state = 103}, + [4411] = {.lex_state = 103}, + [4412] = {.lex_state = 0}, + [4413] = {.lex_state = 0}, + [4414] = {.lex_state = 103}, + [4415] = {.lex_state = 103}, + [4416] = {.lex_state = 103}, + [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 99}, - [4420] = {.lex_state = 99}, - [4421] = {.lex_state = 99}, - [4422] = {.lex_state = 99}, - [4423] = {.lex_state = 2}, - [4424] = {.lex_state = 99}, - [4425] = {.lex_state = 99}, - [4426] = {.lex_state = 99}, - [4427] = {.lex_state = 99}, - [4428] = {.lex_state = 0}, + [4419] = {.lex_state = 103}, + [4420] = {.lex_state = 103}, + [4421] = {.lex_state = 103}, + [4422] = {.lex_state = 103}, + [4423] = {.lex_state = 3}, + [4424] = {.lex_state = 0}, + [4425] = {.lex_state = 0}, + [4426] = {.lex_state = 103}, + [4427] = {.lex_state = 0}, + [4428] = {.lex_state = 103}, [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 99}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 99}, - [4434] = {.lex_state = 99}, - [4435] = {.lex_state = 2}, - [4436] = {.lex_state = 99}, - [4437] = {.lex_state = 99}, - [4438] = {.lex_state = 99}, - [4439] = {.lex_state = 99}, - [4440] = {.lex_state = 99}, - [4441] = {.lex_state = 99}, - [4442] = {.lex_state = 99}, - [4443] = {.lex_state = 99}, - [4444] = {.lex_state = 99}, - [4445] = {.lex_state = 99}, - [4446] = {.lex_state = 99}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 99}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 99}, + [4430] = {.lex_state = 103}, + [4431] = {.lex_state = 0}, + [4432] = {.lex_state = 103}, + [4433] = {.lex_state = 103}, + [4434] = {.lex_state = 103}, + [4435] = {.lex_state = 0}, + [4436] = {.lex_state = 103}, }; enum { @@ -16261,10 +16359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LTtemplate_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LT_SLASH] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), @@ -16296,8 +16393,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_EQ_EQ_EQ] = ACTIONS(1), @@ -16368,87 +16467,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4411), - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(2956), + [sym_program] = STATE(4406), + [sym_export_statement] = STATE(29), + [sym_declaration] = STATE(29), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_for_in_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_debugger_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_empty_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(3105), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -16480,14 +16578,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -16525,78 +16623,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [2] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3327), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -16606,381 +16703,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(136), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [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(155), - [anon_sym_new] = 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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(197), + [anon_sym_readonly] = ACTIONS(196), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(198), [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(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [3] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3327), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = 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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(197), + [anon_sym_readonly] = ACTIONS(196), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(198), [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(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [4] = { - [sym_export_statement] = STATE(29), - [sym_declaration] = STATE(29), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_for_in_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_debugger_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4326), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4326), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4326), - [sym_spread_element] = STATE(3657), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1976), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3657), - [sym_pair] = STATE(3657), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2882), - [sym_computed_property_name] = STATE(2882), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_accessibility_modifier] = STATE(2266), - [sym_override_modifier] = STATE(2274), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(2956), - [aux_sym_object_repeat1] = STATE(3690), - [aux_sym_object_pattern_repeat1] = STATE(3693), + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_for_in_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_debugger_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_throw_statement] = STATE(26), + [sym_empty_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4368), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4368), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4368), + [sym_spread_element] = STATE(3599), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1967), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2959), + [sym_computed_property_name] = STATE(2959), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_accessibility_modifier] = STATE(2272), + [sym_override_modifier] = STATE(2300), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3105), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), [sym_identifier] = ACTIONS(220), [anon_sym_export] = ACTIONS(222), [anon_sym_STAR] = ACTIONS(224), @@ -17013,15 +17108,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(234), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), + [anon_sym_class] = ACTIONS(67), [anon_sym_async] = ACTIONS(236), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17060,106 +17155,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [5] = { - [sym_export_statement] = STATE(29), - [sym_declaration] = STATE(29), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_for_in_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_debugger_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4326), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4326), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4326), - [sym_spread_element] = STATE(3657), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1976), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3657), - [sym_pair] = STATE(3657), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2882), - [sym_computed_property_name] = STATE(2882), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_accessibility_modifier] = STATE(2266), - [sym_override_modifier] = STATE(2274), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(2956), - [aux_sym_object_repeat1] = STATE(3690), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(220), - [anon_sym_export] = ACTIONS(222), + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4368), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4368), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4368), + [sym_spread_element] = STATE(3598), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1967), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3598), + [sym_pair] = STATE(3598), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2959), + [sym_computed_property_name] = STATE(2959), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_accessibility_modifier] = STATE(2272), + [sym_override_modifier] = STATE(2300), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3105), + [aux_sym_object_repeat1] = STATE(3601), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(260), + [anon_sym_export] = ACTIONS(262), [anon_sym_STAR] = ACTIONS(224), - [anon_sym_type] = ACTIONS(226), - [anon_sym_namespace] = ACTIONS(228), + [anon_sym_type] = ACTIONS(264), + [anon_sym_namespace] = ACTIONS(266), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(230), - [anon_sym_RBRACE] = ACTIONS(260), + [anon_sym_RBRACE] = ACTIONS(268), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17184,15 +17278,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(234), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(236), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(270), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17211,126 +17305,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(244), - [anon_sym_readonly] = ACTIONS(246), - [anon_sym_get] = ACTIONS(248), - [anon_sym_set] = ACTIONS(248), - [anon_sym_declare] = ACTIONS(250), - [anon_sym_public] = ACTIONS(252), - [anon_sym_private] = ACTIONS(252), - [anon_sym_protected] = ACTIONS(252), - [anon_sym_override] = ACTIONS(254), - [anon_sym_module] = ACTIONS(256), - [anon_sym_any] = ACTIONS(258), - [anon_sym_number] = ACTIONS(258), - [anon_sym_boolean] = ACTIONS(258), - [anon_sym_string] = ACTIONS(258), - [anon_sym_symbol] = ACTIONS(258), + [anon_sym_static] = ACTIONS(272), + [anon_sym_readonly] = ACTIONS(274), + [anon_sym_get] = ACTIONS(276), + [anon_sym_set] = ACTIONS(276), + [anon_sym_declare] = ACTIONS(278), + [anon_sym_public] = ACTIONS(280), + [anon_sym_private] = ACTIONS(280), + [anon_sym_protected] = ACTIONS(280), + [anon_sym_override] = ACTIONS(282), + [anon_sym_module] = ACTIONS(284), + [anon_sym_any] = ACTIONS(286), + [anon_sym_number] = ACTIONS(286), + [anon_sym_boolean] = ACTIONS(286), + [anon_sym_string] = ACTIONS(286), + [anon_sym_symbol] = ACTIONS(286), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [6] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4326), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4326), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4326), - [sym_spread_element] = STATE(3657), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1976), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3657), - [sym_pair] = STATE(3657), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2882), - [sym_computed_property_name] = STATE(2882), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_accessibility_modifier] = STATE(2266), - [sym_override_modifier] = STATE(2274), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(2956), - [aux_sym_object_repeat1] = STATE(3690), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(220), - [anon_sym_export] = ACTIONS(222), + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4368), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4368), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4368), + [sym_spread_element] = STATE(3598), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1967), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3598), + [sym_pair] = STATE(3598), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2959), + [sym_computed_property_name] = STATE(2959), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_accessibility_modifier] = STATE(2272), + [sym_override_modifier] = STATE(2300), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3105), + [aux_sym_object_repeat1] = STATE(3601), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(260), + [anon_sym_export] = ACTIONS(262), [anon_sym_STAR] = ACTIONS(224), - [anon_sym_type] = ACTIONS(226), - [anon_sym_namespace] = ACTIONS(228), + [anon_sym_type] = ACTIONS(264), + [anon_sym_namespace] = ACTIONS(266), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(230), - [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(288), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17355,15 +17448,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(234), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(236), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(270), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17382,126 +17475,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(244), - [anon_sym_readonly] = ACTIONS(246), - [anon_sym_get] = ACTIONS(248), - [anon_sym_set] = ACTIONS(248), - [anon_sym_declare] = ACTIONS(250), - [anon_sym_public] = ACTIONS(252), - [anon_sym_private] = ACTIONS(252), - [anon_sym_protected] = ACTIONS(252), - [anon_sym_override] = ACTIONS(254), - [anon_sym_module] = ACTIONS(256), - [anon_sym_any] = ACTIONS(258), - [anon_sym_number] = ACTIONS(258), - [anon_sym_boolean] = ACTIONS(258), - [anon_sym_string] = ACTIONS(258), - [anon_sym_symbol] = ACTIONS(258), + [anon_sym_static] = ACTIONS(272), + [anon_sym_readonly] = ACTIONS(274), + [anon_sym_get] = ACTIONS(276), + [anon_sym_set] = ACTIONS(276), + [anon_sym_declare] = ACTIONS(278), + [anon_sym_public] = ACTIONS(280), + [anon_sym_private] = ACTIONS(280), + [anon_sym_protected] = ACTIONS(280), + [anon_sym_override] = ACTIONS(282), + [anon_sym_module] = ACTIONS(284), + [anon_sym_any] = ACTIONS(286), + [anon_sym_number] = ACTIONS(286), + [anon_sym_boolean] = ACTIONS(286), + [anon_sym_string] = ACTIONS(286), + [anon_sym_symbol] = ACTIONS(286), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [7] = { - [sym_export_statement] = STATE(27), - [sym_declaration] = STATE(27), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_for_in_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_with_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_debugger_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_empty_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4326), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4326), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4326), - [sym_spread_element] = STATE(3718), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1976), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2882), - [sym_computed_property_name] = STATE(2882), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_accessibility_modifier] = STATE(2266), - [sym_override_modifier] = STATE(2274), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2956), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(264), - [anon_sym_export] = ACTIONS(266), + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_for_in_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_debugger_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_throw_statement] = STATE(26), + [sym_empty_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4368), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4368), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4368), + [sym_spread_element] = STATE(3599), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1967), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2959), + [sym_computed_property_name] = STATE(2959), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_accessibility_modifier] = STATE(2272), + [sym_override_modifier] = STATE(2300), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3105), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(290), + [anon_sym_export] = ACTIONS(292), [anon_sym_STAR] = ACTIONS(224), - [anon_sym_type] = ACTIONS(268), - [anon_sym_namespace] = ACTIONS(270), + [anon_sym_type] = ACTIONS(294), + [anon_sym_namespace] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(230), - [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_RBRACE] = ACTIONS(232), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17526,15 +17618,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(234), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(274), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(298), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17553,126 +17645,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_get] = ACTIONS(280), - [anon_sym_set] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_public] = ACTIONS(284), - [anon_sym_private] = ACTIONS(284), - [anon_sym_protected] = ACTIONS(284), - [anon_sym_override] = ACTIONS(286), - [anon_sym_module] = ACTIONS(288), - [anon_sym_any] = ACTIONS(290), - [anon_sym_number] = ACTIONS(290), - [anon_sym_boolean] = ACTIONS(290), - [anon_sym_string] = ACTIONS(290), - [anon_sym_symbol] = ACTIONS(290), + [anon_sym_static] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(302), + [anon_sym_get] = ACTIONS(304), + [anon_sym_set] = ACTIONS(304), + [anon_sym_declare] = ACTIONS(306), + [anon_sym_public] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_protected] = ACTIONS(308), + [anon_sym_override] = ACTIONS(310), + [anon_sym_module] = ACTIONS(312), + [anon_sym_any] = ACTIONS(314), + [anon_sym_number] = ACTIONS(314), + [anon_sym_boolean] = ACTIONS(314), + [anon_sym_string] = ACTIONS(314), + [anon_sym_symbol] = ACTIONS(314), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [8] = { - [sym_export_statement] = STATE(27), - [sym_declaration] = STATE(27), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_for_in_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_with_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_debugger_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_empty_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4326), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4326), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4326), - [sym_spread_element] = STATE(3718), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1976), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2882), - [sym_computed_property_name] = STATE(2882), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_accessibility_modifier] = STATE(2266), - [sym_override_modifier] = STATE(2274), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2956), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(292), - [anon_sym_export] = ACTIONS(294), + [sym_export_statement] = STATE(28), + [sym_declaration] = STATE(28), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_for_in_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_with_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_debugger_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_empty_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4368), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4368), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4368), + [sym_spread_element] = STATE(3598), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1967), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3598), + [sym_pair] = STATE(3598), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2959), + [sym_computed_property_name] = STATE(2959), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_accessibility_modifier] = STATE(2272), + [sym_override_modifier] = STATE(2300), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(3105), + [aux_sym_object_repeat1] = STATE(3601), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(260), + [anon_sym_export] = ACTIONS(262), [anon_sym_STAR] = ACTIONS(224), - [anon_sym_type] = ACTIONS(296), - [anon_sym_namespace] = ACTIONS(298), + [anon_sym_type] = ACTIONS(264), + [anon_sym_namespace] = ACTIONS(266), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(230), - [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17697,15 +17788,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(234), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(300), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(270), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17724,21 +17815,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(302), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_get] = ACTIONS(306), - [anon_sym_set] = ACTIONS(306), - [anon_sym_declare] = ACTIONS(308), - [anon_sym_public] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_protected] = ACTIONS(310), - [anon_sym_override] = ACTIONS(312), - [anon_sym_module] = ACTIONS(314), - [anon_sym_any] = ACTIONS(316), - [anon_sym_number] = ACTIONS(316), - [anon_sym_boolean] = ACTIONS(316), - [anon_sym_string] = ACTIONS(316), - [anon_sym_symbol] = ACTIONS(316), + [anon_sym_static] = ACTIONS(272), + [anon_sym_readonly] = ACTIONS(274), + [anon_sym_get] = ACTIONS(276), + [anon_sym_set] = ACTIONS(276), + [anon_sym_declare] = ACTIONS(278), + [anon_sym_public] = ACTIONS(280), + [anon_sym_private] = ACTIONS(280), + [anon_sym_protected] = ACTIONS(280), + [anon_sym_override] = ACTIONS(282), + [anon_sym_module] = ACTIONS(284), + [anon_sym_any] = ACTIONS(286), + [anon_sym_number] = ACTIONS(286), + [anon_sym_boolean] = ACTIONS(286), + [anon_sym_string] = ACTIONS(286), + [anon_sym_symbol] = ACTIONS(286), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), @@ -17746,11 +17837,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [9] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -17767,63 +17858,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [ts_builtin_sym_end] = ACTIONS(318), [sym_identifier] = ACTIONS(320), [anon_sym_export] = ACTIONS(323), @@ -17857,14 +17947,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(400), [anon_sym_LBRACK] = ACTIONS(403), [anon_sym_LTtemplate_GT] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_SLASH] = ACTIONS(412), - [anon_sym_class] = ACTIONS(415), - [anon_sym_async] = ACTIONS(418), - [anon_sym_function] = ACTIONS(421), - [anon_sym_new] = ACTIONS(424), + [anon_sym_class] = ACTIONS(409), + [anon_sym_async] = ACTIONS(412), + [anon_sym_function] = ACTIONS(415), + [anon_sym_new] = ACTIONS(418), [anon_sym_PLUS] = ACTIONS(337), [anon_sym_DASH] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(424), [anon_sym_TILDE] = ACTIONS(352), [anon_sym_void] = ACTIONS(337), [anon_sym_delete] = ACTIONS(337), @@ -17904,11 +17994,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [10] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -17925,63 +18015,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(472), @@ -18014,14 +18103,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18059,86 +18148,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [11] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(2956), + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(476), @@ -18171,14 +18259,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18216,86 +18304,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [12] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [sym_export_statement] = STATE(13), + [sym_declaration] = STATE(13), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_for_in_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_with_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_debugger_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(480), @@ -18328,14 +18415,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18373,86 +18460,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [13] = { - [sym_export_statement] = STATE(10), - [sym_declaration] = STATE(10), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_for_in_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_try_statement] = STATE(10), - [sym_with_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_debugger_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(2956), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(484), @@ -18485,14 +18571,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18530,168 +18616,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [14] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2956), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [15] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -18708,224 +18639,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [16] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), - [ts_builtin_sym_end] = ACTIONS(492), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -18950,14 +18725,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18994,93 +18769,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [17] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), - [ts_builtin_sym_end] = ACTIONS(494), + [15] = { + [sym_export_statement] = STATE(28), + [sym_declaration] = STATE(28), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_for_in_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_with_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_debugger_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_empty_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19105,14 +18879,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19149,14 +18923,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [18] = { + [16] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -19173,69 +18947,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19260,14 +19033,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19304,14 +19077,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [19] = { + [17] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -19328,69 +19101,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19415,14 +19187,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19459,93 +19231,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [20] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(2956), + [18] = { + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(496), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19570,14 +19341,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19614,14 +19385,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [21] = { + [19] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -19638,69 +19409,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), + [ts_builtin_sym_end] = ACTIONS(498), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19725,14 +19495,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19769,93 +19539,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [22] = { - [sym_export_statement] = STATE(27), - [sym_declaration] = STATE(27), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_for_in_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_with_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_debugger_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_empty_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2956), + [20] = { + [sym_export_statement] = STATE(16), + [sym_declaration] = STATE(16), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_for_in_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_with_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_debugger_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19880,14 +19649,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19924,93 +19693,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [23] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2956), + [21] = { + [sym_export_statement] = STATE(14), + [sym_declaration] = STATE(14), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_for_in_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_try_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_debugger_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_throw_statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -20035,14 +19803,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20079,14 +19847,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [24] = { + [22] = { + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [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_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, + [23] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -20103,69 +20025,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(506), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -20190,14 +20111,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20234,93 +20155,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [25] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2956), - [ts_builtin_sym_end] = ACTIONS(494), + [24] = { + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(508), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -20345,14 +20265,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20389,87 +20309,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [26] = { - [sym_export_statement] = STATE(29), - [sym_declaration] = STATE(29), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_for_in_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_debugger_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(2956), + [25] = { + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_for_in_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_debugger_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_throw_statement] = STATE(26), + [sym_empty_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20500,14 +20419,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20544,14 +20463,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [27] = { + [26] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -20568,63 +20487,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20655,14 +20573,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20699,87 +20617,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [28] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(2956), + [27] = { + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_for_in_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym_with_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_debugger_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_throw_statement] = STATE(24), + [sym_empty_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20810,14 +20727,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20854,14 +20771,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [29] = { + [28] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -20878,63 +20795,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20965,14 +20881,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [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_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, + [29] = { + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3105), + [ts_builtin_sym_end] = ACTIONS(518), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21012,11 +21082,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [30] = { [sym_export_statement] = STATE(19), [sym_declaration] = STATE(19), - [sym_import] = STATE(1810), + [sym_import] = STATE(1905), [sym_import_statement] = STATE(19), [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), [sym_statement_block] = STATE(19), [sym_if_statement] = STATE(19), [sym_switch_statement] = STATE(19), @@ -21033,69 +21103,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(19), [sym_empty_statement] = STATE(19), [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(2956), + [aux_sym_export_statement_repeat1] = STATE(3105), + [ts_builtin_sym_end] = ACTIONS(518), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(518), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -21120,14 +21189,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21165,238 +21234,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [31] = { - [sym_export_statement] = STATE(747), - [sym_declaration] = STATE(739), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(738), - [sym_expression_statement] = STATE(737), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(736), - [sym_if_statement] = STATE(734), - [sym_switch_statement] = STATE(728), - [sym_for_statement] = STATE(727), - [sym_for_in_statement] = STATE(725), - [sym_while_statement] = STATE(724), - [sym_do_statement] = STATE(718), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(710), - [sym_break_statement] = STATE(709), - [sym_continue_statement] = STATE(702), - [sym_debugger_statement] = STATE(690), - [sym_return_statement] = STATE(689), - [sym_throw_statement] = STATE(687), - [sym_empty_statement] = STATE(685), - [sym_labeled_statement] = STATE(684), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [32] = { - [sym_export_statement] = STATE(746), - [sym_declaration] = STATE(746), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(746), - [sym_expression_statement] = STATE(746), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_for_statement] = STATE(746), - [sym_for_in_statement] = STATE(746), - [sym_while_statement] = STATE(746), - [sym_do_statement] = STATE(746), - [sym_try_statement] = STATE(746), - [sym_with_statement] = STATE(746), - [sym_break_statement] = STATE(746), - [sym_continue_statement] = STATE(746), - [sym_debugger_statement] = STATE(746), - [sym_return_statement] = STATE(746), - [sym_throw_statement] = STATE(746), - [sym_empty_statement] = STATE(746), - [sym_labeled_statement] = STATE(746), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [sym_export_statement] = STATE(672), + [sym_declaration] = STATE(672), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(672), + [sym_expression_statement] = STATE(672), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(672), + [sym_if_statement] = STATE(672), + [sym_switch_statement] = STATE(672), + [sym_for_statement] = STATE(672), + [sym_for_in_statement] = STATE(672), + [sym_while_statement] = STATE(672), + [sym_do_statement] = STATE(672), + [sym_try_statement] = STATE(672), + [sym_with_statement] = STATE(672), + [sym_break_statement] = STATE(672), + [sym_continue_statement] = STATE(672), + [sym_debugger_statement] = STATE(672), + [sym_return_statement] = STATE(672), + [sym_throw_statement] = STATE(672), + [sym_empty_statement] = STATE(672), + [sym_labeled_statement] = STATE(672), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -21426,14 +21341,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21470,86 +21385,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [33] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(638), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(636), - [sym_expression_statement] = STATE(635), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(632), - [sym_if_statement] = STATE(631), - [sym_switch_statement] = STATE(630), - [sym_for_statement] = STATE(629), - [sym_for_in_statement] = STATE(628), - [sym_while_statement] = STATE(625), - [sym_do_statement] = STATE(623), - [sym_try_statement] = STATE(622), - [sym_with_statement] = STATE(620), - [sym_break_statement] = STATE(680), - [sym_continue_statement] = STATE(688), - [sym_debugger_statement] = STATE(691), - [sym_return_statement] = STATE(693), - [sym_throw_statement] = STATE(695), - [sym_empty_statement] = STATE(713), - [sym_labeled_statement] = STATE(733), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), + [32] = { + [sym_export_statement] = STATE(639), + [sym_declaration] = STATE(639), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(639), + [sym_expression_statement] = STATE(639), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_switch_statement] = STATE(639), + [sym_for_statement] = STATE(639), + [sym_for_in_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_do_statement] = STATE(639), + [sym_try_statement] = STATE(639), + [sym_with_statement] = STATE(639), + [sym_break_statement] = STATE(639), + [sym_continue_statement] = STATE(639), + [sym_debugger_statement] = STATE(639), + [sym_return_statement] = STATE(639), + [sym_throw_statement] = STATE(639), + [sym_empty_statement] = STATE(639), + [sym_labeled_statement] = STATE(639), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21579,14 +21493,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21623,239 +21537,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [34] = { - [sym_export_statement] = STATE(683), - [sym_declaration] = STATE(683), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(683), - [sym_expression_statement] = STATE(683), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(683), - [sym_if_statement] = STATE(683), - [sym_switch_statement] = STATE(683), - [sym_for_statement] = STATE(683), - [sym_for_in_statement] = STATE(683), - [sym_while_statement] = STATE(683), - [sym_do_statement] = STATE(683), - [sym_try_statement] = STATE(683), - [sym_with_statement] = STATE(683), - [sym_break_statement] = STATE(683), - [sym_continue_statement] = STATE(683), - [sym_debugger_statement] = STATE(683), - [sym_return_statement] = STATE(683), - [sym_throw_statement] = STATE(683), - [sym_empty_statement] = STATE(683), - [sym_labeled_statement] = STATE(683), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_type] = ACTIONS(524), - [anon_sym_namespace] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(530), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(536), - [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_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(544), - [anon_sym_readonly] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), - [anon_sym_declare] = ACTIONS(546), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_protected] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(544), - [anon_sym_number] = ACTIONS(544), - [anon_sym_boolean] = ACTIONS(544), - [anon_sym_string] = ACTIONS(544), - [anon_sym_symbol] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [35] = { - [sym_export_statement] = STATE(746), - [sym_declaration] = STATE(746), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(746), - [sym_expression_statement] = STATE(746), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_for_statement] = STATE(746), - [sym_for_in_statement] = STATE(746), - [sym_while_statement] = STATE(746), - [sym_do_statement] = STATE(746), - [sym_try_statement] = STATE(746), - [sym_with_statement] = STATE(746), - [sym_break_statement] = STATE(746), - [sym_continue_statement] = STATE(746), - [sym_debugger_statement] = STATE(746), - [sym_return_statement] = STATE(746), - [sym_throw_statement] = STATE(746), - [sym_empty_statement] = STATE(746), - [sym_labeled_statement] = STATE(746), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), + [33] = { + [sym_export_statement] = STATE(714), + [sym_declaration] = STATE(714), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(714), + [sym_expression_statement] = STATE(714), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(714), + [sym_if_statement] = STATE(714), + [sym_switch_statement] = STATE(714), + [sym_for_statement] = STATE(714), + [sym_for_in_statement] = STATE(714), + [sym_while_statement] = STATE(714), + [sym_do_statement] = STATE(714), + [sym_try_statement] = STATE(714), + [sym_with_statement] = STATE(714), + [sym_break_statement] = STATE(714), + [sym_continue_statement] = STATE(714), + [sym_debugger_statement] = STATE(714), + [sym_return_statement] = STATE(714), + [sym_throw_statement] = STATE(714), + [sym_empty_statement] = STATE(714), + [sym_labeled_statement] = STATE(714), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21885,14 +21645,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21929,86 +21689,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [36] = { - [sym_export_statement] = STATE(3786), - [sym_declaration] = STATE(3786), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(3786), - [sym_expression_statement] = STATE(3786), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(3786), - [sym_if_statement] = STATE(3786), - [sym_switch_statement] = STATE(3786), - [sym_for_statement] = STATE(3786), - [sym_for_in_statement] = STATE(3786), - [sym_while_statement] = STATE(3786), - [sym_do_statement] = STATE(3786), - [sym_try_statement] = STATE(3786), - [sym_with_statement] = STATE(3786), - [sym_break_statement] = STATE(3786), - [sym_continue_statement] = STATE(3786), - [sym_debugger_statement] = STATE(3786), - [sym_return_statement] = STATE(3786), - [sym_throw_statement] = STATE(3786), - [sym_empty_statement] = STATE(3786), - [sym_labeled_statement] = STATE(3786), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [34] = { + [sym_export_statement] = STATE(697), + [sym_declaration] = STATE(697), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_switch_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym_for_in_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_try_statement] = STATE(697), + [sym_with_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_debugger_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_throw_statement] = STATE(697), + [sym_empty_statement] = STATE(697), + [sym_labeled_statement] = STATE(697), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -22038,14 +21797,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22082,106 +21841,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [37] = { - [sym_export_statement] = STATE(613), - [sym_declaration] = STATE(613), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(613), - [sym_expression_statement] = STATE(613), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(613), - [sym_if_statement] = STATE(613), - [sym_switch_statement] = STATE(613), - [sym_for_statement] = STATE(613), - [sym_for_in_statement] = STATE(613), - [sym_while_statement] = STATE(613), - [sym_do_statement] = STATE(613), - [sym_try_statement] = STATE(613), - [sym_with_statement] = STATE(613), - [sym_break_statement] = STATE(613), - [sym_continue_statement] = STATE(613), - [sym_debugger_statement] = STATE(613), - [sym_return_statement] = STATE(613), - [sym_throw_statement] = STATE(613), - [sym_empty_statement] = STATE(613), - [sym_labeled_statement] = STATE(613), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [35] = { + [sym_export_statement] = STATE(720), + [sym_declaration] = STATE(720), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(720), + [sym_expression_statement] = STATE(720), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(720), + [sym_if_statement] = STATE(720), + [sym_switch_statement] = STATE(720), + [sym_for_statement] = STATE(720), + [sym_for_in_statement] = STATE(720), + [sym_while_statement] = STATE(720), + [sym_do_statement] = STATE(720), + [sym_try_statement] = STATE(720), + [sym_with_statement] = STATE(720), + [sym_break_statement] = STATE(720), + [sym_continue_statement] = STATE(720), + [sym_debugger_statement] = STATE(720), + [sym_return_statement] = STATE(720), + [sym_throw_statement] = STATE(720), + [sym_empty_statement] = STATE(720), + [sym_labeled_statement] = STATE(720), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_type] = ACTIONS(524), + [anon_sym_namespace] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(528), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(530), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(534), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(536), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -22191,14 +21949,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(538), + [anon_sym_async] = ACTIONS(540), + [anon_sym_function] = ACTIONS(542), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22216,105 +21974,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [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_static] = ACTIONS(544), + [anon_sym_readonly] = ACTIONS(544), + [anon_sym_get] = ACTIONS(544), + [anon_sym_set] = ACTIONS(544), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(544), + [anon_sym_private] = ACTIONS(544), + [anon_sym_protected] = ACTIONS(544), + [anon_sym_override] = ACTIONS(544), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(544), + [anon_sym_number] = ACTIONS(544), + [anon_sym_boolean] = ACTIONS(544), + [anon_sym_string] = ACTIONS(544), + [anon_sym_symbol] = ACTIONS(544), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [38] = { - [sym_export_statement] = STATE(716), - [sym_declaration] = STATE(716), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_switch_statement] = STATE(716), - [sym_for_statement] = STATE(716), - [sym_for_in_statement] = STATE(716), - [sym_while_statement] = STATE(716), - [sym_do_statement] = STATE(716), - [sym_try_statement] = STATE(716), - [sym_with_statement] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_throw_statement] = STATE(716), - [sym_empty_statement] = STATE(716), - [sym_labeled_statement] = STATE(716), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [36] = { + [sym_export_statement] = STATE(658), + [sym_declaration] = STATE(658), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(658), + [sym_expression_statement] = STATE(658), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(658), + [sym_if_statement] = STATE(658), + [sym_switch_statement] = STATE(658), + [sym_for_statement] = STATE(658), + [sym_for_in_statement] = STATE(658), + [sym_while_statement] = STATE(658), + [sym_do_statement] = STATE(658), + [sym_try_statement] = STATE(658), + [sym_with_statement] = STATE(658), + [sym_break_statement] = STATE(658), + [sym_continue_statement] = STATE(658), + [sym_debugger_statement] = STATE(658), + [sym_return_statement] = STATE(658), + [sym_throw_statement] = STATE(658), + [sym_empty_statement] = STATE(658), + [sym_labeled_statement] = STATE(658), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -22344,14 +22101,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22388,106 +22145,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [39] = { - [sym_export_statement] = STATE(740), - [sym_declaration] = STATE(740), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(740), - [sym_expression_statement] = STATE(740), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(740), - [sym_if_statement] = STATE(740), - [sym_switch_statement] = STATE(740), - [sym_for_statement] = STATE(740), - [sym_for_in_statement] = STATE(740), - [sym_while_statement] = STATE(740), - [sym_do_statement] = STATE(740), - [sym_try_statement] = STATE(740), - [sym_with_statement] = STATE(740), - [sym_break_statement] = STATE(740), - [sym_continue_statement] = STATE(740), - [sym_debugger_statement] = STATE(740), - [sym_return_statement] = STATE(740), - [sym_throw_statement] = STATE(740), - [sym_empty_statement] = STATE(740), - [sym_labeled_statement] = STATE(740), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_type] = ACTIONS(524), - [anon_sym_namespace] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), + [37] = { + [sym_export_statement] = STATE(672), + [sym_declaration] = STATE(672), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(672), + [sym_expression_statement] = STATE(672), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(672), + [sym_if_statement] = STATE(672), + [sym_switch_statement] = STATE(672), + [sym_for_statement] = STATE(672), + [sym_for_in_statement] = STATE(672), + [sym_while_statement] = STATE(672), + [sym_do_statement] = STATE(672), + [sym_try_statement] = STATE(672), + [sym_with_statement] = STATE(672), + [sym_break_statement] = STATE(672), + [sym_continue_statement] = STATE(672), + [sym_debugger_statement] = STATE(672), + [sym_return_statement] = STATE(672), + [sym_throw_statement] = STATE(672), + [sym_empty_statement] = STATE(672), + [sym_labeled_statement] = STATE(672), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(530), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(532), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(534), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(536), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -22497,14 +22253,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22522,105 +22278,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(544), - [anon_sym_readonly] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), - [anon_sym_declare] = ACTIONS(546), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_protected] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(544), - [anon_sym_number] = ACTIONS(544), - [anon_sym_boolean] = ACTIONS(544), - [anon_sym_string] = ACTIONS(544), - [anon_sym_symbol] = ACTIONS(544), + [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_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [40] = { - [sym_export_statement] = STATE(4288), - [sym_declaration] = STATE(4288), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(4288), - [sym_expression_statement] = STATE(4288), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(4288), - [sym_if_statement] = STATE(4288), - [sym_switch_statement] = STATE(4288), - [sym_for_statement] = STATE(4288), - [sym_for_in_statement] = STATE(4288), - [sym_while_statement] = STATE(4288), - [sym_do_statement] = STATE(4288), - [sym_try_statement] = STATE(4288), - [sym_with_statement] = STATE(4288), - [sym_break_statement] = STATE(4288), - [sym_continue_statement] = STATE(4288), - [sym_debugger_statement] = STATE(4288), - [sym_return_statement] = STATE(4288), - [sym_throw_statement] = STATE(4288), - [sym_empty_statement] = STATE(4288), - [sym_labeled_statement] = STATE(4288), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [38] = { + [sym_export_statement] = STATE(3794), + [sym_declaration] = STATE(3794), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(3794), + [sym_expression_statement] = STATE(3794), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(3794), + [sym_if_statement] = STATE(3794), + [sym_switch_statement] = STATE(3794), + [sym_for_statement] = STATE(3794), + [sym_for_in_statement] = STATE(3794), + [sym_while_statement] = STATE(3794), + [sym_do_statement] = STATE(3794), + [sym_try_statement] = STATE(3794), + [sym_with_statement] = STATE(3794), + [sym_break_statement] = STATE(3794), + [sym_continue_statement] = STATE(3794), + [sym_debugger_statement] = STATE(3794), + [sym_return_statement] = STATE(3794), + [sym_throw_statement] = STATE(3794), + [sym_empty_statement] = STATE(3794), + [sym_labeled_statement] = STATE(3794), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -22650,14 +22405,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22694,106 +22449,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [41] = { - [sym_export_statement] = STATE(716), - [sym_declaration] = STATE(716), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_switch_statement] = STATE(716), - [sym_for_statement] = STATE(716), - [sym_for_in_statement] = STATE(716), - [sym_while_statement] = STATE(716), - [sym_do_statement] = STATE(716), - [sym_try_statement] = STATE(716), - [sym_with_statement] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_throw_statement] = STATE(716), - [sym_empty_statement] = STATE(716), - [sym_labeled_statement] = STATE(716), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [39] = { + [sym_export_statement] = STATE(694), + [sym_declaration] = STATE(688), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(685), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(683), + [sym_if_statement] = STATE(682), + [sym_switch_statement] = STATE(681), + [sym_for_statement] = STATE(679), + [sym_for_in_statement] = STATE(677), + [sym_while_statement] = STATE(676), + [sym_do_statement] = STATE(675), + [sym_try_statement] = STATE(669), + [sym_with_statement] = STATE(666), + [sym_break_statement] = STATE(664), + [sym_continue_statement] = STATE(657), + [sym_debugger_statement] = STATE(655), + [sym_return_statement] = STATE(654), + [sym_throw_statement] = STATE(653), + [sym_empty_statement] = STATE(652), + [sym_labeled_statement] = STATE(651), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_type] = ACTIONS(524), + [anon_sym_namespace] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(528), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(530), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(534), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(536), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -22803,14 +22557,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(538), + [anon_sym_async] = ACTIONS(540), + [anon_sym_function] = ACTIONS(542), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22828,105 +22582,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [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_static] = ACTIONS(544), + [anon_sym_readonly] = ACTIONS(544), + [anon_sym_get] = ACTIONS(544), + [anon_sym_set] = ACTIONS(544), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(544), + [anon_sym_private] = ACTIONS(544), + [anon_sym_protected] = ACTIONS(544), + [anon_sym_override] = ACTIONS(544), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(544), + [anon_sym_number] = ACTIONS(544), + [anon_sym_boolean] = ACTIONS(544), + [anon_sym_string] = ACTIONS(544), + [anon_sym_symbol] = ACTIONS(544), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [42] = { - [sym_export_statement] = STATE(681), - [sym_declaration] = STATE(681), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(681), - [sym_expression_statement] = STATE(681), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(681), - [sym_if_statement] = STATE(681), - [sym_switch_statement] = STATE(681), - [sym_for_statement] = STATE(681), - [sym_for_in_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_statement] = STATE(681), - [sym_try_statement] = STATE(681), - [sym_with_statement] = STATE(681), - [sym_break_statement] = STATE(681), - [sym_continue_statement] = STATE(681), - [sym_debugger_statement] = STATE(681), - [sym_return_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym_empty_statement] = STATE(681), - [sym_labeled_statement] = STATE(681), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), + [40] = { + [sym_export_statement] = STATE(604), + [sym_declaration] = STATE(604), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_for_in_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_with_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_debugger_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_empty_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -22956,14 +22709,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23000,86 +22753,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [43] = { - [sym_export_statement] = STATE(747), - [sym_declaration] = STATE(739), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(738), - [sym_expression_statement] = STATE(737), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(736), - [sym_if_statement] = STATE(734), - [sym_switch_statement] = STATE(728), - [sym_for_statement] = STATE(727), - [sym_for_in_statement] = STATE(725), - [sym_while_statement] = STATE(724), - [sym_do_statement] = STATE(718), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(710), - [sym_break_statement] = STATE(709), - [sym_continue_statement] = STATE(702), - [sym_debugger_statement] = STATE(690), - [sym_return_statement] = STATE(689), - [sym_throw_statement] = STATE(687), - [sym_empty_statement] = STATE(685), - [sym_labeled_statement] = STATE(684), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [41] = { + [sym_export_statement] = STATE(640), + [sym_declaration] = STATE(638), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(637), + [sym_expression_statement] = STATE(635), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(633), + [sym_if_statement] = STATE(632), + [sym_switch_statement] = STATE(629), + [sym_for_statement] = STATE(628), + [sym_for_in_statement] = STATE(626), + [sym_while_statement] = STATE(625), + [sym_do_statement] = STATE(624), + [sym_try_statement] = STATE(623), + [sym_with_statement] = STATE(622), + [sym_break_statement] = STATE(621), + [sym_continue_statement] = STATE(660), + [sym_debugger_statement] = STATE(663), + [sym_return_statement] = STATE(665), + [sym_throw_statement] = STATE(667), + [sym_empty_statement] = STATE(673), + [sym_labeled_statement] = STATE(680), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -23109,14 +22861,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23153,86 +22905,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [44] = { - [sym_export_statement] = STATE(704), - [sym_declaration] = STATE(704), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(704), - [sym_expression_statement] = STATE(704), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(704), - [sym_if_statement] = STATE(704), - [sym_switch_statement] = STATE(704), - [sym_for_statement] = STATE(704), - [sym_for_in_statement] = STATE(704), - [sym_while_statement] = STATE(704), - [sym_do_statement] = STATE(704), - [sym_try_statement] = STATE(704), - [sym_with_statement] = STATE(704), - [sym_break_statement] = STATE(704), - [sym_continue_statement] = STATE(704), - [sym_debugger_statement] = STATE(704), - [sym_return_statement] = STATE(704), - [sym_throw_statement] = STATE(704), - [sym_empty_statement] = STATE(704), - [sym_labeled_statement] = STATE(704), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), + [42] = { + [sym_export_statement] = STATE(694), + [sym_declaration] = STATE(688), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(685), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(683), + [sym_if_statement] = STATE(682), + [sym_switch_statement] = STATE(681), + [sym_for_statement] = STATE(679), + [sym_for_in_statement] = STATE(677), + [sym_while_statement] = STATE(676), + [sym_do_statement] = STATE(675), + [sym_try_statement] = STATE(669), + [sym_with_statement] = STATE(666), + [sym_break_statement] = STATE(664), + [sym_continue_statement] = STATE(657), + [sym_debugger_statement] = STATE(655), + [sym_return_statement] = STATE(654), + [sym_throw_statement] = STATE(653), + [sym_empty_statement] = STATE(652), + [sym_labeled_statement] = STATE(651), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -23262,14 +23013,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23306,86 +23057,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [45] = { - [sym_export_statement] = STATE(740), - [sym_declaration] = STATE(740), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(740), - [sym_expression_statement] = STATE(740), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(740), - [sym_if_statement] = STATE(740), - [sym_switch_statement] = STATE(740), - [sym_for_statement] = STATE(740), - [sym_for_in_statement] = STATE(740), - [sym_while_statement] = STATE(740), - [sym_do_statement] = STATE(740), - [sym_try_statement] = STATE(740), - [sym_with_statement] = STATE(740), - [sym_break_statement] = STATE(740), - [sym_continue_statement] = STATE(740), - [sym_debugger_statement] = STATE(740), - [sym_return_statement] = STATE(740), - [sym_throw_statement] = STATE(740), - [sym_empty_statement] = STATE(740), - [sym_labeled_statement] = STATE(740), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), + [43] = { + [sym_export_statement] = STATE(658), + [sym_declaration] = STATE(658), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(658), + [sym_expression_statement] = STATE(658), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(658), + [sym_if_statement] = STATE(658), + [sym_switch_statement] = STATE(658), + [sym_for_statement] = STATE(658), + [sym_for_in_statement] = STATE(658), + [sym_while_statement] = STATE(658), + [sym_do_statement] = STATE(658), + [sym_try_statement] = STATE(658), + [sym_with_statement] = STATE(658), + [sym_break_statement] = STATE(658), + [sym_continue_statement] = STATE(658), + [sym_debugger_statement] = STATE(658), + [sym_return_statement] = STATE(658), + [sym_throw_statement] = STATE(658), + [sym_empty_statement] = STATE(658), + [sym_labeled_statement] = STATE(658), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -23415,14 +23165,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23459,86 +23209,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [46] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(638), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(636), - [sym_expression_statement] = STATE(635), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(632), - [sym_if_statement] = STATE(631), - [sym_switch_statement] = STATE(630), - [sym_for_statement] = STATE(629), - [sym_for_in_statement] = STATE(628), - [sym_while_statement] = STATE(625), - [sym_do_statement] = STATE(623), - [sym_try_statement] = STATE(622), - [sym_with_statement] = STATE(620), - [sym_break_statement] = STATE(680), - [sym_continue_statement] = STATE(688), - [sym_debugger_statement] = STATE(691), - [sym_return_statement] = STATE(693), - [sym_throw_statement] = STATE(695), - [sym_empty_statement] = STATE(713), - [sym_labeled_statement] = STATE(733), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [44] = { + [sym_export_statement] = STATE(720), + [sym_declaration] = STATE(720), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(720), + [sym_expression_statement] = STATE(720), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(720), + [sym_if_statement] = STATE(720), + [sym_switch_statement] = STATE(720), + [sym_for_statement] = STATE(720), + [sym_for_in_statement] = STATE(720), + [sym_while_statement] = STATE(720), + [sym_do_statement] = STATE(720), + [sym_try_statement] = STATE(720), + [sym_with_statement] = STATE(720), + [sym_break_statement] = STATE(720), + [sym_continue_statement] = STATE(720), + [sym_debugger_statement] = STATE(720), + [sym_return_statement] = STATE(720), + [sym_throw_statement] = STATE(720), + [sym_empty_statement] = STATE(720), + [sym_labeled_statement] = STATE(720), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [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_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, + [45] = { + [sym_export_statement] = STATE(714), + [sym_declaration] = STATE(714), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(714), + [sym_expression_statement] = STATE(714), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(714), + [sym_if_statement] = STATE(714), + [sym_switch_statement] = STATE(714), + [sym_for_statement] = STATE(714), + [sym_for_in_statement] = STATE(714), + [sym_while_statement] = STATE(714), + [sym_do_statement] = STATE(714), + [sym_try_statement] = STATE(714), + [sym_with_statement] = STATE(714), + [sym_break_statement] = STATE(714), + [sym_continue_statement] = STATE(714), + [sym_debugger_statement] = STATE(714), + [sym_return_statement] = STATE(714), + [sym_throw_statement] = STATE(714), + [sym_empty_statement] = STATE(714), + [sym_labeled_statement] = STATE(714), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -23568,14 +23469,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23612,86 +23513,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [47] = { - [sym_export_statement] = STATE(681), - [sym_declaration] = STATE(681), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(681), - [sym_expression_statement] = STATE(681), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(681), - [sym_if_statement] = STATE(681), - [sym_switch_statement] = STATE(681), - [sym_for_statement] = STATE(681), - [sym_for_in_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_statement] = STATE(681), - [sym_try_statement] = STATE(681), - [sym_with_statement] = STATE(681), - [sym_break_statement] = STATE(681), - [sym_continue_statement] = STATE(681), - [sym_debugger_statement] = STATE(681), - [sym_return_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym_empty_statement] = STATE(681), - [sym_labeled_statement] = STATE(681), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [46] = { + [sym_export_statement] = STATE(639), + [sym_declaration] = STATE(639), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(639), + [sym_expression_statement] = STATE(639), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_switch_statement] = STATE(639), + [sym_for_statement] = STATE(639), + [sym_for_in_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_do_statement] = STATE(639), + [sym_try_statement] = STATE(639), + [sym_with_statement] = STATE(639), + [sym_break_statement] = STATE(639), + [sym_continue_statement] = STATE(639), + [sym_debugger_statement] = STATE(639), + [sym_return_statement] = STATE(639), + [sym_throw_statement] = STATE(639), + [sym_empty_statement] = STATE(639), + [sym_labeled_statement] = STATE(639), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -23721,14 +23621,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23765,86 +23665,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, + [47] = { + [sym_export_statement] = STATE(697), + [sym_declaration] = STATE(697), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_switch_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym_for_in_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_try_statement] = STATE(697), + [sym_with_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_debugger_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_throw_statement] = STATE(697), + [sym_empty_statement] = STATE(697), + [sym_labeled_statement] = STATE(697), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [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_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, [48] = { - [sym_export_statement] = STATE(704), - [sym_declaration] = STATE(704), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(704), - [sym_expression_statement] = STATE(704), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(704), - [sym_if_statement] = STATE(704), - [sym_switch_statement] = STATE(704), - [sym_for_statement] = STATE(704), - [sym_for_in_statement] = STATE(704), - [sym_while_statement] = STATE(704), - [sym_do_statement] = STATE(704), - [sym_try_statement] = STATE(704), - [sym_with_statement] = STATE(704), - [sym_break_statement] = STATE(704), - [sym_continue_statement] = STATE(704), - [sym_debugger_statement] = STATE(704), - [sym_return_statement] = STATE(704), - [sym_throw_statement] = STATE(704), - [sym_empty_statement] = STATE(704), - [sym_labeled_statement] = STATE(704), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3111), + [sym_export_statement] = STATE(4341), + [sym_declaration] = STATE(4341), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(4341), + [sym_expression_statement] = STATE(4341), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_switch_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_for_in_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_do_statement] = STATE(4341), + [sym_try_statement] = STATE(4341), + [sym_with_statement] = STATE(4341), + [sym_break_statement] = STATE(4341), + [sym_continue_statement] = STATE(4341), + [sym_debugger_statement] = STATE(4341), + [sym_return_statement] = STATE(4341), + [sym_throw_statement] = STATE(4341), + [sym_empty_statement] = STATE(4341), + [sym_labeled_statement] = STATE(4341), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(2999), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_type] = ACTIONS(524), @@ -23874,14 +23925,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(538), [anon_sym_async] = ACTIONS(540), [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23919,85 +23970,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [49] = { - [sym_export_statement] = STATE(683), - [sym_declaration] = STATE(683), - [sym_import] = STATE(1810), - [sym_import_statement] = STATE(683), - [sym_expression_statement] = STATE(683), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_statement_block] = STATE(683), - [sym_if_statement] = STATE(683), - [sym_switch_statement] = STATE(683), - [sym_for_statement] = STATE(683), - [sym_for_in_statement] = STATE(683), - [sym_while_statement] = STATE(683), - [sym_do_statement] = STATE(683), - [sym_try_statement] = STATE(683), - [sym_with_statement] = STATE(683), - [sym_break_statement] = STATE(683), - [sym_continue_statement] = STATE(683), - [sym_debugger_statement] = STATE(683), - [sym_return_statement] = STATE(683), - [sym_throw_statement] = STATE(683), - [sym_empty_statement] = STATE(683), - [sym_labeled_statement] = STATE(683), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(2956), + [sym_export_statement] = STATE(640), + [sym_declaration] = STATE(638), + [sym_import] = STATE(1905), + [sym_import_statement] = STATE(637), + [sym_expression_statement] = STATE(635), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_statement_block] = STATE(633), + [sym_if_statement] = STATE(632), + [sym_switch_statement] = STATE(629), + [sym_for_statement] = STATE(628), + [sym_for_in_statement] = STATE(626), + [sym_while_statement] = STATE(625), + [sym_do_statement] = STATE(624), + [sym_try_statement] = STATE(623), + [sym_with_statement] = STATE(622), + [sym_break_statement] = STATE(621), + [sym_continue_statement] = STATE(660), + [sym_debugger_statement] = STATE(663), + [sym_return_statement] = STATE(665), + [sym_throw_statement] = STATE(667), + [sym_empty_statement] = STATE(673), + [sym_labeled_statement] = STATE(680), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3105), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -24027,14 +24077,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -24072,99 +24122,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [50] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3395), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1576), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3617), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3618), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(572), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [51] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3268), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -24173,40 +24369,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(570), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -24219,402 +24417,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [51] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(598), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(149), }, [52] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(632), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [53] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3360), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -24623,40 +24518,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(634), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -24669,102 +24566,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [54] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3159), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [53] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(634), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [54] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -24773,40 +24816,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(636), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -24819,252 +24864,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, [55] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(638), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(636), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [56] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3343), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(638), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [57] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(640), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [58] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3416), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25073,40 +25412,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(640), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(642), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25119,102 +25460,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [57] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3327), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [59] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(644), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [60] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3420), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25223,40 +25710,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(642), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(646), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25269,102 +25758,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [58] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3335), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [61] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3291), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25373,40 +25859,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(644), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(648), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25419,102 +25907,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [59] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3281), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [62] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1576), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3617), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3618), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(650), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [63] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [64] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3792), + [sym_optional_tuple_parameter] = STATE(3792), + [sym_optional_type] = STATE(3792), + [sym_rest_type] = STATE(3792), + [sym__tuple_type_member] = STATE(3792), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(656), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [65] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3271), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25523,40 +26455,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(646), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(658), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25569,552 +26503,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [60] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(648), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [61] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(650), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [62] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3766), - [sym_optional_tuple_parameter] = STATE(3766), - [sym_optional_type] = STATE(3766), - [sym_rest_type] = STATE(3766), - [sym__tuple_type_member] = STATE(3766), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(654), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [63] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3327), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [66] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3427), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [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(552), + [anon_sym_LBRACE] = ACTIONS(608), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(610), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(136), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(613), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(560), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(144), [anon_sym_DOT] = ACTIONS(118), - [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(155), - [anon_sym_new] = ACTIONS(563), - [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_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -26123,40 +26604,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(178), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(565), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(642), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(174), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(621), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(660), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [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(574), + [anon_sym_QMARK] = ACTIONS(630), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -26169,1906 +26652,1446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [64] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [65] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1595), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3787), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3778), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(658), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [66] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(660), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(149), }, [67] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1595), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3787), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(3223), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3778), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(576), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(3345), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_RBRACK] = ACTIONS(662), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(624), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(598), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(626), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(630), - [anon_sym_number] = ACTIONS(630), - [anon_sym_boolean] = ACTIONS(630), - [anon_sym_string] = ACTIONS(630), - [anon_sym_symbol] = ACTIONS(630), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(604), + [anon_sym_number] = ACTIONS(604), + [anon_sym_boolean] = ACTIONS(604), + [anon_sym_string] = ACTIONS(604), + [anon_sym_symbol] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [68] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4134), - [sym_string] = STATE(1925), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3433), - [sym_constructor_type] = STATE(3433), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3433), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3433), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3433), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1364), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4317), + [sym_string] = STATE(1820), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3520), + [sym_constructor_type] = STATE(3520), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3520), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3520), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3520), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(664), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(666), [anon_sym_typeof] = ACTIONS(668), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(672), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(674), [anon_sym_DASH] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(676), [sym_number] = ACTIONS(678), [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(191), + [sym_super] = ACTIONS(190), [sym_true] = ACTIONS(682), [sym_false] = ACTIONS(682), [sym_null] = ACTIONS(682), [sym_undefined] = ACTIONS(684), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), [anon_sym_readonly] = ACTIONS(686), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), [anon_sym_public] = ACTIONS(688), [anon_sym_private] = ACTIONS(688), [anon_sym_protected] = ACTIONS(688), [anon_sym_override] = ACTIONS(690), - [anon_sym_module] = ACTIONS(578), + [anon_sym_module] = ACTIONS(552), [anon_sym_any] = ACTIONS(692), [anon_sym_number] = ACTIONS(692), [anon_sym_boolean] = ACTIONS(692), [anon_sym_string] = ACTIONS(692), [anon_sym_symbol] = ACTIONS(692), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [69] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1454), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4292), - [sym_string] = STATE(1925), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3507), - [sym_constructor_type] = STATE(3507), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3507), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3507), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3507), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1364), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4317), + [sym_string] = STATE(1820), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3452), + [sym_constructor_type] = STATE(3452), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3452), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3452), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3452), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(664), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(666), [anon_sym_typeof] = ACTIONS(668), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(672), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(674), [anon_sym_DASH] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(676), [sym_number] = ACTIONS(678), [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(191), + [sym_super] = ACTIONS(190), [sym_true] = ACTIONS(682), [sym_false] = ACTIONS(682), [sym_null] = ACTIONS(682), [sym_undefined] = ACTIONS(684), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), [anon_sym_readonly] = ACTIONS(686), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), [anon_sym_public] = ACTIONS(688), [anon_sym_private] = ACTIONS(688), [anon_sym_protected] = ACTIONS(688), [anon_sym_override] = ACTIONS(690), - [anon_sym_module] = ACTIONS(578), + [anon_sym_module] = ACTIONS(552), [anon_sym_any] = ACTIONS(692), [anon_sym_number] = ACTIONS(692), [anon_sym_boolean] = ACTIONS(692), [anon_sym_string] = ACTIONS(692), [anon_sym_symbol] = ACTIONS(692), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [70] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4134), - [sym_string] = STATE(1925), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3507), - [sym_constructor_type] = STATE(3507), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3507), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3507), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3507), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1393), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4345), + [sym_string] = STATE(1820), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3520), + [sym_constructor_type] = STATE(3520), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3520), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3520), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3520), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(664), - [anon_sym_export] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(666), [anon_sym_typeof] = ACTIONS(668), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(672), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(674), [anon_sym_DASH] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(676), [sym_number] = ACTIONS(678), [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(191), + [sym_super] = ACTIONS(190), [sym_true] = ACTIONS(682), [sym_false] = ACTIONS(682), [sym_null] = ACTIONS(682), [sym_undefined] = ACTIONS(684), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), [anon_sym_readonly] = ACTIONS(686), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(578), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(552), [anon_sym_public] = ACTIONS(688), [anon_sym_private] = ACTIONS(688), [anon_sym_protected] = ACTIONS(688), [anon_sym_override] = ACTIONS(690), - [anon_sym_module] = ACTIONS(578), + [anon_sym_module] = ACTIONS(552), [anon_sym_any] = ACTIONS(692), [anon_sym_number] = ACTIONS(692), [anon_sym_boolean] = ACTIONS(692), [anon_sym_string] = ACTIONS(692), [anon_sym_symbol] = ACTIONS(692), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [71] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3426), - [sym_constructor_type] = STATE(3426), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3426), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3426), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3426), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3555), + [sym_constructor_type] = STATE(3555), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3555), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3555), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3555), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [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_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), [sym_this] = ACTIONS(698), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(700), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(702), [anon_sym_private] = ACTIONS(702), [anon_sym_protected] = ACTIONS(702), [anon_sym_override] = ACTIONS(704), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [72] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), [sym__type] = STATE(3520), [sym_constructor_type] = STATE(3520), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), [sym_infer_type] = STATE(3520), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), [sym_readonly_type] = STATE(3520), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), [sym_function_type] = STATE(3520), - [aux_sym_export_statement_repeat1] = STATE(177), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [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_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), [sym_this] = ACTIONS(698), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(700), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(702), [anon_sym_private] = ACTIONS(702), [anon_sym_protected] = ACTIONS(702), [anon_sym_override] = ACTIONS(704), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [73] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3507), - [sym_constructor_type] = STATE(3507), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3507), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3507), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3507), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3452), + [sym_constructor_type] = STATE(3452), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3452), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3452), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3452), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [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_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), [sym_this] = ACTIONS(698), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(700), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(702), [anon_sym_private] = ACTIONS(702), [anon_sym_protected] = ACTIONS(702), [anon_sym_override] = ACTIONS(704), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [74] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3433), - [sym_constructor_type] = STATE(3433), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3433), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3433), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3433), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3544), + [sym_constructor_type] = STATE(3544), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3544), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3544), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3544), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [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_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), [sym_this] = ACTIONS(698), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(700), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(702), [anon_sym_private] = ACTIONS(702), [anon_sym_protected] = ACTIONS(702), [anon_sym_override] = ACTIONS(704), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [75] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym__type] = STATE(3508), - [sym_constructor_type] = STATE(3508), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3508), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3508), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3508), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym__type] = STATE(3549), + [sym_constructor_type] = STATE(3549), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3549), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3549), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3549), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [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_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), [sym_this] = ACTIONS(698), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_undefined] = ACTIONS(195), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(700), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(702), [anon_sym_private] = ACTIONS(702), [anon_sym_protected] = ACTIONS(702), [anon_sym_override] = ACTIONS(704), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [76] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1641), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3914), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4159), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1722), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3162), - [sym_pattern] = STATE(3637), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2664), - [sym_constructor_type] = STATE(2664), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2664), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(3843), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2664), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2664), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(4054), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4124), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1658), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3141), + [sym_pattern] = STATE(3721), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2675), + [sym_constructor_type] = STATE(2675), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2675), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(3870), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2675), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2675), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(706), - [anon_sym_export] = ACTIONS(578), + [anon_sym_export] = ACTIONS(552), [anon_sym_STAR] = ACTIONS(708), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(710), [anon_sym_typeof] = ACTIONS(712), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(716), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(718), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), [anon_sym_PLUS] = ACTIONS(724), [anon_sym_DASH] = ACTIONS(724), - [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), [anon_sym_void] = ACTIONS(726), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(728), [sym_number] = ACTIONS(730), [sym_this] = ACTIONS(732), - [sym_super] = ACTIONS(191), + [sym_super] = ACTIONS(190), [sym_true] = ACTIONS(734), [sym_false] = ACTIONS(734), [sym_null] = ACTIONS(734), [sym_undefined] = ACTIONS(736), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), [anon_sym_readonly] = ACTIONS(738), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), [anon_sym_any] = ACTIONS(742), [anon_sym_number] = ACTIONS(742), [anon_sym_boolean] = ACTIONS(742), @@ -28083,113 +28106,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, [77] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4430), - [sym_string] = STATE(1925), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3742), - [sym_constructor_type] = STATE(3742), - [sym__primary_type] = STATE(3180), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3742), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3742), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1684), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4107), + [sym_string] = STATE(1820), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3746), + [sym_constructor_type] = STATE(3746), + [sym__primary_type] = STATE(3391), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3465), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3746), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3746), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(754), [anon_sym_export] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(760), [anon_sym_typeof] = ACTIONS(668), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(674), [anon_sym_DASH] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(676), [sym_number] = ACTIONS(678), [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(191), + [sym_super] = ACTIONS(190), [sym_true] = ACTIONS(682), [sym_false] = ACTIONS(682), [sym_null] = ACTIONS(682), @@ -28199,7 +28221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(770), [anon_sym_get] = ACTIONS(756), [anon_sym_set] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(756), [anon_sym_public] = ACTIONS(756), [anon_sym_private] = ACTIONS(756), @@ -28211,403 +28233,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(772), [anon_sym_string] = ACTIONS(772), [anon_sym_symbol] = ACTIONS(772), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [78] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1393), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1692), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2924), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2924), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2924), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(2043), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1167), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3394), + [sym_constructor_type] = STATE(3394), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3394), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3394), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3394), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(774), [anon_sym_export] = ACTIONS(776), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_type] = ACTIONS(776), [anon_sym_namespace] = ACTIONS(778), [anon_sym_LBRACE] = ACTIONS(780), [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(794), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(784), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(808), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(816), - [sym_number] = ACTIONS(818), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [sym_undefined] = ACTIONS(824), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(786), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(790), + [sym_number] = ACTIONS(792), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(796), + [sym_false] = ACTIONS(796), + [sym_null] = ACTIONS(796), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(826), + [anon_sym_readonly] = ACTIONS(800), [anon_sym_get] = ACTIONS(776), [anon_sym_set] = ACTIONS(776), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(776), [anon_sym_public] = ACTIONS(776), [anon_sym_private] = ACTIONS(776), [anon_sym_protected] = ACTIONS(776), [anon_sym_override] = ACTIONS(776), [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(828), - [anon_sym_number] = ACTIONS(828), - [anon_sym_boolean] = ACTIONS(828), - [anon_sym_string] = ACTIONS(828), - [anon_sym_symbol] = ACTIONS(828), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_any] = ACTIONS(802), + [anon_sym_number] = ACTIONS(802), + [anon_sym_boolean] = ACTIONS(802), + [anon_sym_string] = ACTIONS(802), + [anon_sym_symbol] = ACTIONS(802), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [79] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1302), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1451), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(830), - [anon_sym_export] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_typeof] = ACTIONS(834), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(836), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1366), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(804), + [anon_sym_export] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(812), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(840), - [sym_number] = ACTIONS(842), - [sym_this] = ACTIONS(844), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(848), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(838), + [sym_number] = ACTIONS(840), + [sym_this] = ACTIONS(842), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_undefined] = ACTIONS(846), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(770), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), [anon_sym_any] = ACTIONS(850), [anon_sym_number] = ACTIONS(850), [anon_sym_boolean] = ACTIONS(850), [anon_sym_string] = ACTIONS(850), [anon_sym_symbol] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [80] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(3409), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(3409), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(3409), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1895), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1109), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3152), - [sym_constructor_type] = STATE(3152), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3152), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3152), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3152), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(3246), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(3246), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(3246), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1910), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1133), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3394), + [sym_constructor_type] = STATE(3394), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3394), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3394), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3394), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(852), [anon_sym_export] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_type] = ACTIONS(854), [anon_sym_namespace] = ACTIONS(856), [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_typeof] = ACTIONS(562), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(185), - [sym_number] = ACTIONS(187), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), [sym_undefined] = ACTIONS(862), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(854), [anon_sym_readonly] = ACTIONS(864), [anon_sym_get] = ACTIONS(854), [anon_sym_set] = ACTIONS(854), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(854), [anon_sym_public] = ACTIONS(854), [anon_sym_private] = ACTIONS(854), @@ -28619,1083 +28638,1075 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(866), [anon_sym_string] = ACTIONS(866), [anon_sym_symbol] = ACTIONS(866), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [81] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1451), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2954), - [sym_constructor_type] = STATE(2954), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2954), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2954), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2954), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1483), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1705), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(868), [anon_sym_export] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_type] = ACTIONS(870), [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(876), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(890), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(840), - [sym_number] = ACTIONS(842), - [sym_this] = ACTIONS(844), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(898), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(902), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(910), + [sym_number] = ACTIONS(912), + [sym_this] = ACTIONS(914), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [sym_undefined] = ACTIONS(918), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(920), [anon_sym_get] = ACTIONS(870), [anon_sym_set] = ACTIONS(870), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(870), [anon_sym_public] = ACTIONS(870), [anon_sym_private] = ACTIONS(870), [anon_sym_protected] = ACTIONS(870), [anon_sym_override] = ACTIONS(870), [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_any] = ACTIONS(922), + [anon_sym_number] = ACTIONS(922), + [anon_sym_boolean] = ACTIONS(922), + [anon_sym_string] = ACTIONS(922), + [anon_sym_symbol] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [82] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1468), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1692), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_typeof] = ACTIONS(910), - [anon_sym_import] = ACTIONS(784), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1448), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1705), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(924), + [anon_sym_export] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(930), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(882), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(888), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(918), + [anon_sym_void] = ACTIONS(938), [anon_sym_delete] = ACTIONS(19), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(816), - [sym_number] = ACTIONS(818), - [sym_this] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(910), + [sym_number] = ACTIONS(912), + [sym_this] = ACTIONS(914), [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [sym_undefined] = ACTIONS(920), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [sym_undefined] = ACTIONS(940), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(922), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(924), - [anon_sym_number] = ACTIONS(924), - [anon_sym_boolean] = ACTIONS(924), - [anon_sym_string] = ACTIONS(924), - [anon_sym_symbol] = ACTIONS(924), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [83] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2005), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1793), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(926), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_typeof] = ACTIONS(934), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(936), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1721), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(946), + [anon_sym_export] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_typeof] = ACTIONS(954), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(942), - [sym_number] = ACTIONS(944), - [sym_this] = ACTIONS(946), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_undefined] = ACTIONS(950), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(972), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(980), + [sym_number] = ACTIONS(982), + [sym_this] = ACTIONS(984), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_undefined] = ACTIONS(988), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(954), - [anon_sym_number] = ACTIONS(954), - [anon_sym_boolean] = ACTIONS(954), - [anon_sym_string] = ACTIONS(954), - [anon_sym_symbol] = ACTIONS(954), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(990), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [84] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1451), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(836), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2038), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1721), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_typeof] = ACTIONS(1000), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(890), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(840), - [sym_number] = ACTIONS(842), - [sym_this] = ACTIONS(844), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(898), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(170), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(980), + [sym_number] = ACTIONS(982), + [sym_this] = ACTIONS(984), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_undefined] = ACTIONS(1006), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(900), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1008), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(602), + [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(1010), + [anon_sym_number] = ACTIONS(1010), + [anon_sym_boolean] = ACTIONS(1010), + [anon_sym_string] = ACTIONS(1010), + [anon_sym_symbol] = ACTIONS(1010), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [85] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1542), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1793), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(936), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1366), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2979), + [sym_constructor_type] = STATE(2979), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2979), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2979), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2979), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(804), + [anon_sym_export] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(812), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(978), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(942), - [sym_number] = ACTIONS(944), - [sym_this] = ACTIONS(946), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_undefined] = ACTIONS(986), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(830), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(838), + [sym_number] = ACTIONS(840), + [sym_this] = ACTIONS(842), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_undefined] = ACTIONS(846), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(988), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(628), - [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(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [86] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2865), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2865), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1159), - [sym_subscript_expression] = STATE(1159), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2865), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(2060), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1159), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3152), - [sym_constructor_type] = STATE(3152), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3152), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3152), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3152), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(992), - [anon_sym_export] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(994), - [anon_sym_namespace] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_typeof] = ACTIONS(1000), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1008), - [sym_number] = ACTIONS(1010), - [sym_this] = ACTIONS(1012), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(1014), - [sym_false] = ACTIONS(1014), - [sym_null] = ACTIONS(1014), - [sym_undefined] = ACTIONS(1016), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(994), - [anon_sym_readonly] = ACTIONS(1018), - [anon_sym_get] = ACTIONS(994), - [anon_sym_set] = ACTIONS(994), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(994), - [anon_sym_public] = ACTIONS(994), - [anon_sym_private] = ACTIONS(994), - [anon_sym_protected] = ACTIONS(994), - [anon_sym_override] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_any] = ACTIONS(1020), - [anon_sym_number] = ACTIONS(1020), - [anon_sym_boolean] = ACTIONS(1020), - [anon_sym_string] = ACTIONS(1020), - [anon_sym_symbol] = ACTIONS(1020), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [87] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1980), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1022), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_typeof] = ACTIONS(1030), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1038), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(2006), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1028), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1036), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), - [sym_this] = ACTIONS(1058), + [anon_sym_BQUOTE] = ACTIONS(1044), + [sym_number] = ACTIONS(1046), + [sym_this] = ACTIONS(1048), [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_undefined] = ACTIONS(1062), + [sym_true] = ACTIONS(1050), + [sym_false] = ACTIONS(1050), + [sym_null] = ACTIONS(1050), + [sym_undefined] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1054), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1056), + [anon_sym_number] = ACTIONS(1056), + [anon_sym_boolean] = ACTIONS(1056), + [anon_sym_string] = ACTIONS(1056), + [anon_sym_symbol] = ACTIONS(1056), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [87] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1295), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1366), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1058), + [anon_sym_export] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(838), + [sym_number] = ACTIONS(840), + [sym_this] = ACTIONS(842), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_undefined] = ACTIONS(1064), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1064), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(770), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), [anon_sym_any] = ACTIONS(1066), [anon_sym_number] = ACTIONS(1066), [anon_sym_boolean] = ACTIONS(1066), [anon_sym_string] = ACTIONS(1066), [anon_sym_symbol] = ACTIONS(1066), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [88] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_nested_identifier] = STATE(4364), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1793), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3209), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3811), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_nested_identifier] = STATE(4142), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1721), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3240), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4086), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1068), [anon_sym_export] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_typeof] = ACTIONS(1074), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_typeof] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(1088), [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(942), - [sym_number] = ACTIONS(944), - [sym_this] = ACTIONS(946), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(980), + [sym_number] = ACTIONS(982), + [sym_this] = ACTIONS(984), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), [sym_undefined] = ACTIONS(1098), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1100), [anon_sym_get] = ACTIONS(1070), [anon_sym_set] = ACTIONS(1070), - [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(602), [anon_sym_declare] = ACTIONS(1070), [anon_sym_public] = ACTIONS(1070), [anon_sym_private] = ACTIONS(1070), @@ -29707,60 +29718,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1102), [anon_sym_string] = ACTIONS(1102), [anon_sym_symbol] = ACTIONS(1102), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [89] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1256), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1347), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_STAR] = ACTIONS(1106), @@ -29770,25 +29780,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_COMMA] = ACTIONS(1112), [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(616), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(590), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(592), + [anon_sym_await] = ACTIONS(566), [anon_sym_in] = ACTIONS(1108), [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_RBRACK] = ACTIONS(1112), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(600), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_QMARK_DOT] = ACTIONS(1112), [anon_sym_new] = ACTIONS(1118), [anon_sym_AMP_AMP] = ACTIONS(1112), @@ -29799,10 +29807,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(166), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -29811,21 +29821,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -29847,62 +29857,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1112), }, [90] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1484), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), + [anon_sym_export] = ACTIONS(926), [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(906), + [anon_sym_type] = ACTIONS(926), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_COMMA] = ACTIONS(1112), [anon_sym_RBRACE] = ACTIONS(1112), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -29911,15 +29920,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), [anon_sym_QMARK_DOT] = ACTIONS(1112), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_AMP_AMP] = ACTIONS(1112), [anon_sym_PIPE_PIPE] = ACTIONS(1112), [anon_sym_GT_GT] = ACTIONS(1108), @@ -29930,8 +29937,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1108), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -29957,97 +29966,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), [anon_sym_satisfies] = ACTIONS(1108), [sym__automatic_semicolon] = ACTIONS(1112), [sym__ternary_qmark] = ACTIONS(1112), }, [91] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1394), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1442), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), + [anon_sym_export] = ACTIONS(870), [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(776), + [anon_sym_type] = ACTIONS(870), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(778), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(904), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), + [anon_sym_await] = ACTIONS(884), [anon_sym_in] = ACTIONS(1108), [anon_sym_of] = ACTIONS(1108), [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(796), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), [anon_sym_QMARK_DOT] = ACTIONS(1112), [anon_sym_new] = ACTIONS(1134), [anon_sym_AMP_AMP] = ACTIONS(1112), @@ -30058,10 +30064,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -30070,11 +30078,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30087,97 +30095,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), [anon_sym_satisfies] = ACTIONS(1108), [sym__automatic_semicolon] = ACTIONS(1112), [sym__ternary_qmark] = ACTIONS(1112), }, [92] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1583), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1590), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), + [anon_sym_export] = ACTIONS(1070), [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_type] = ACTIONS(958), + [anon_sym_type] = ACTIONS(1070), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(980), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1092), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), + [anon_sym_await] = ACTIONS(1080), [anon_sym_in] = ACTIONS(1108), [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_RBRACK] = ACTIONS(1112), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(600), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), [anon_sym_QMARK_DOT] = ACTIONS(1112), [anon_sym_new] = ACTIONS(1142), [anon_sym_AMP_AMP] = ACTIONS(1112), @@ -30188,10 +30193,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(166), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -30200,111 +30207,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1144), [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_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), [anon_sym_satisfies] = ACTIONS(1108), [sym__ternary_qmark] = ACTIONS(1112), }, [93] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1531), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), + [anon_sym_export] = ACTIONS(806), [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(870), + [anon_sym_type] = ACTIONS(806), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(872), + [anon_sym_namespace] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(892), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(832), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), + [anon_sym_await] = ACTIONS(816), [anon_sym_in] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(882), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), [anon_sym_QMARK_DOT] = ACTIONS(1112), [anon_sym_new] = ACTIONS(1150), [anon_sym_AMP_AMP] = ACTIONS(1112), @@ -30315,10 +30319,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(166), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -30327,112 +30333,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), [anon_sym_satisfies] = ACTIONS(1108), [anon_sym_implements] = ACTIONS(1108), [sym__ternary_qmark] = ACTIONS(1112), }, [94] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1679), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1734), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1014), [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_type] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1014), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1038), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1024), [anon_sym_in] = ACTIONS(1108), [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), [anon_sym_QMARK_DOT] = ACTIONS(1112), [anon_sym_new] = ACTIONS(1158), [anon_sym_AMP_AMP] = ACTIONS(1112), @@ -30443,10 +30446,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -30455,11 +30460,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30472,95 +30477,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), [anon_sym_satisfies] = ACTIONS(1108), [sym__automatic_semicolon] = ACTIONS(1112), [sym__ternary_qmark] = ACTIONS(1112), }, [95] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1933), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1983), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(948), [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_type] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(948), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(974), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), + [anon_sym_await] = ACTIONS(958), [anon_sym_in] = ACTIONS(1108), [anon_sym_of] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), [anon_sym_QMARK_DOT] = ACTIONS(1112), [anon_sym_new] = ACTIONS(1170), [anon_sym_AMP_AMP] = ACTIONS(1112), @@ -30571,10 +30573,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(166), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -30583,112 +30587,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), [anon_sym_satisfies] = ACTIONS(1108), [sym__ternary_qmark] = ACTIONS(1112), }, [96] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1995), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2014), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), + [anon_sym_export] = ACTIONS(996), [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(928), + [anon_sym_type] = ACTIONS(996), [anon_sym_as] = ACTIONS(1108), - [anon_sym_namespace] = ACTIONS(930), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), + [anon_sym_await] = ACTIONS(135), [anon_sym_in] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), [anon_sym_GT] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(600), [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), [anon_sym_QMARK_DOT] = ACTIONS(1112), - [anon_sym_new] = ACTIONS(563), + [anon_sym_new] = ACTIONS(616), [anon_sym_AMP_AMP] = ACTIONS(1112), [anon_sym_PIPE_PIPE] = ACTIONS(1112), [anon_sym_GT_GT] = ACTIONS(1108), @@ -30697,10 +30698,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1108), [anon_sym_CARET] = ACTIONS(1112), [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(1112), [anon_sym_STAR_STAR] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(166), [anon_sym_LT_EQ] = ACTIONS(1112), [anon_sym_EQ_EQ] = ACTIONS(1108), [anon_sym_EQ_EQ_EQ] = ACTIONS(1112), @@ -30709,130 +30712,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1112), [anon_sym_QMARK_QMARK] = ACTIONS(1112), [anon_sym_instanceof] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [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_satisfies] = ACTIONS(1108), [sym__ternary_qmark] = ACTIONS(1112), }, [97] = { - [sym_declaration] = STATE(639), - [sym_import] = STATE(1810), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1693), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3129), + [sym_declaration] = STATE(3292), + [sym_import] = STATE(1905), + [sym_variable_declaration] = STATE(3131), + [sym_lexical_declaration] = STATE(3131), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(3131), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(3131), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(3131), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_function_signature] = STATE(3131), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(3131), + [sym_abstract_class_declaration] = STATE(3131), + [sym_module] = STATE(3131), + [sym_internal_module] = STATE(1916), + [sym_import_alias] = STATE(3131), + [sym_interface_declaration] = STATE(3131), + [sym_enum_declaration] = STATE(3131), + [sym_type_alias_declaration] = STATE(3131), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3255), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1014), [anon_sym_type] = ACTIONS(1180), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1038), [anon_sym_import] = ACTIONS(1182), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_var] = ACTIONS(1184), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_function] = ACTIONS(542), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(1194), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30845,114 +30847,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1186), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1188), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1196), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1204), }, [98] = { - [sym_declaration] = STATE(3287), - [sym_import] = STATE(1810), - [sym_variable_declaration] = STATE(3391), - [sym_lexical_declaration] = STATE(3391), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(3391), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(3391), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(3391), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_function_signature] = STATE(3391), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(3391), - [sym_abstract_class_declaration] = STATE(3391), - [sym_module] = STATE(3391), - [sym_internal_module] = STATE(1932), - [sym_import_alias] = STATE(3391), - [sym_interface_declaration] = STATE(3391), - [sym_enum_declaration] = STATE(3391), - [sym_type_alias_declaration] = STATE(3391), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1905), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1672), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3440), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1192), - [anon_sym_var] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1202), - [anon_sym_function] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(538), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(542), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30965,114 +30966,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1206), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1208), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - [anon_sym_abstract] = ACTIONS(1210), - [anon_sym_interface] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), }, [99] = { - [sym_declaration] = STATE(694), - [sym_import] = STATE(1810), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3273), + [sym_declaration] = STATE(693), + [sym_import] = STATE(1905), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(1824), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3440), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1182), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1208), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(75), + [anon_sym_class] = ACTIONS(538), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(542), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -31085,114 +31085,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1186), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1188), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [100] = { - [sym_declaration] = STATE(639), - [sym_import] = STATE(1810), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1693), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(168), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3273), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1905), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1672), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3300), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1206), [anon_sym_namespace] = ACTIONS(1216), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1182), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1208), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), + [anon_sym_class] = ACTIONS(67), [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(75), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -31205,114 +31204,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1186), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1188), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [101] = { - [sym_declaration] = STATE(3300), - [sym_import] = STATE(1810), - [sym_variable_declaration] = STATE(3391), - [sym_lexical_declaration] = STATE(3391), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(3391), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(3391), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(3391), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_function_signature] = STATE(3391), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(3391), - [sym_abstract_class_declaration] = STATE(3391), - [sym_module] = STATE(3391), - [sym_internal_module] = STATE(1932), - [sym_import_alias] = STATE(3391), - [sym_interface_declaration] = STATE(3391), - [sym_enum_declaration] = STATE(3391), - [sym_type_alias_declaration] = STATE(3391), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3351), + [sym_declaration] = STATE(693), + [sym_import] = STATE(1905), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(763), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(763), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(763), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_function_signature] = STATE(763), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(169), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3300), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_namespace] = ACTIONS(1216), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1192), - [anon_sym_var] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1202), - [anon_sym_function] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -31325,114 +31323,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1206), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1208), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - [anon_sym_abstract] = ACTIONS(1210), - [anon_sym_interface] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), }, [102] = { - [sym_declaration] = STATE(694), - [sym_import] = STATE(1810), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_class_declaration] = STATE(668), - [sym_function] = STATE(1810), - [sym_function_declaration] = STATE(668), - [sym_generator_function] = STATE(1810), - [sym_generator_function_declaration] = STATE(668), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_function_signature] = STATE(668), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(1829), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3129), + [sym_declaration] = STATE(3194), + [sym_import] = STATE(1905), + [sym_variable_declaration] = STATE(3131), + [sym_lexical_declaration] = STATE(3131), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_class_declaration] = STATE(3131), + [sym_function] = STATE(1905), + [sym_function_declaration] = STATE(3131), + [sym_generator_function] = STATE(1905), + [sym_generator_function_declaration] = STATE(3131), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_function_signature] = STATE(3131), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_ambient_declaration] = STATE(3131), + [sym_abstract_class_declaration] = STATE(3131), + [sym_module] = STATE(3131), + [sym_internal_module] = STATE(1916), + [sym_import_alias] = STATE(3131), + [sym_interface_declaration] = STATE(3131), + [sym_enum_declaration] = STATE(3131), + [sym_type_alias_declaration] = STATE(3131), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3255), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1014), [anon_sym_type] = ACTIONS(1180), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1038), [anon_sym_import] = ACTIONS(1182), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_var] = ACTIONS(1184), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_function] = ACTIONS(542), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(1194), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -31445,113 +31442,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1186), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1188), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1196), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1204), }, [103] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1222), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(149), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1232), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -31564,108 +31561,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [104] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -31678,109 +31675,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [105] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1256), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(149), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -31793,109 +31790,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [106] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(149), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1232), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -31908,108 +31905,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [107] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32022,221 +32019,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [108] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(1222), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(1264), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(216), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(1267), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), + [anon_sym_RBRACK] = ACTIONS(1264), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), - }, - [109] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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(1236), - [anon_sym_DASH] = ACTIONS(1236), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32249,51 +32133,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, - [110] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [109] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1269), @@ -32303,52 +32187,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(149), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32361,86 +32245,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [111] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2626), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2626), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2626), + [110] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2625), + [sym_constructor_type] = STATE(2625), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2625), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2625), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2625), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), [anon_sym_new] = ACTIONS(1285), - [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_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -32451,18 +32333,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1289), [anon_sym_PLUS] = ACTIONS(1291), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(750), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -32489,92 +32373,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(750), [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [112] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [111] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1309), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1311), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32587,52 +32471,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), [anon_sym_implements] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), + }, + [112] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(212), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [113] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1313), @@ -32642,52 +32639,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1267), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32700,106 +32697,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [114] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1315), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_EQ_GT] = ACTIONS(1317), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32812,54 +32809,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [115] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), @@ -32867,50 +32864,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1234), - [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_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(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_AMP] = ACTIONS(157), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), @@ -32923,337 +32920,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(199), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(198), + [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_abstract] = ACTIONS(202), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(149), }, [116] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1454), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4292), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1393), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4345), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1321), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), [anon_sym_public] = ACTIONS(688), [anon_sym_private] = ACTIONS(688), [anon_sym_protected] = ACTIONS(688), [anon_sym_override] = ACTIONS(690), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [117] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4134), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1364), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4317), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1321), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), [anon_sym_public] = ACTIONS(688), [anon_sym_private] = ACTIONS(688), [anon_sym_protected] = ACTIONS(688), [anon_sym_override] = ACTIONS(690), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [118] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33272,98 +33266,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [119] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3659), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3659), - [sym_optional_parameter] = STATE(3659), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3767), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3767), + [sym_optional_parameter] = STATE(3767), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33382,98 +33375,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [120] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3609), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3609), + [sym_optional_parameter] = STATE(3609), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33492,98 +33484,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [121] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33602,98 +33593,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [122] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3793), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3793), - [sym_optional_parameter] = STATE(3793), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33712,98 +33702,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [123] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33822,98 +33811,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [124] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(3605), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(3605), + [sym_optional_parameter] = STATE(3605), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -33932,98 +33920,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [125] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -34042,98 +34029,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [126] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(3584), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(3584), - [sym_optional_parameter] = STATE(3584), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), + [sym_number] = ACTIONS(624), [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1333), @@ -34152,190 +34138,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [127] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1588), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3787), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3778), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1357), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_GT_GT_GT] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_QMARK_QMARK] = ACTIONS(1357), + [anon_sym_instanceof] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_satisfies] = ACTIONS(1353), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [sym__automatic_semicolon] = ACTIONS(1359), + [sym__ternary_qmark] = ACTIONS(1357), + }, + [128] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym__formal_parameter] = STATE(4012), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3423), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(210), + [sym_required_parameter] = STATE(4012), + [sym_optional_parameter] = STATE(4012), + [sym__parameter_name] = STATE(2952), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(606), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1351), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1323), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(1331), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(702), + [anon_sym_private] = ACTIONS(702), + [anon_sym_protected] = ACTIONS(702), + [anon_sym_override] = ACTIONS(704), + [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), }, - [128] = { - [sym_import] = STATE(1810), - [sym_expression_statement] = STATE(195), - [sym_variable_declaration] = STATE(195), - [sym_lexical_declaration] = STATE(195), - [sym_empty_statement] = STATE(195), - [sym_parenthesized_expression] = STATE(1119), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(3577), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(3577), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1119), - [sym_subscript_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(3577), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1119), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1353), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), + [129] = { + [sym_import] = STATE(1905), + [sym_expression_statement] = STATE(194), + [sym_variable_declaration] = STATE(194), + [sym_lexical_declaration] = STATE(194), + [sym_empty_statement] = STATE(194), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(3691), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(3691), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(3691), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1118), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_type] = ACTIONS(1363), + [anon_sym_namespace] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_var] = ACTIONS(1361), - [anon_sym_let] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), + [anon_sym_import] = ACTIONS(878), + [anon_sym_var] = ACTIONS(1369), + [anon_sym_let] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1373), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -34351,2493 +34443,4406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1369), + [sym_undefined] = ACTIONS(1377), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_readonly] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1363), + [anon_sym_set] = ACTIONS(1363), + [anon_sym_declare] = ACTIONS(1363), + [anon_sym_public] = ACTIONS(1363), + [anon_sym_private] = ACTIONS(1363), + [anon_sym_protected] = ACTIONS(1363), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_number] = ACTIONS(1363), + [anon_sym_boolean] = ACTIONS(1363), + [anon_sym_string] = ACTIONS(1363), + [anon_sym_symbol] = ACTIONS(1363), }, - [129] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1595), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3787), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3778), - [aux_sym_array_pattern_repeat1] = STATE(3773), + [130] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_RBRACK] = ACTIONS(1381), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, - [130] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [131] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_RBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), - }, - [131] = { - [sym_import] = STATE(1810), - [sym_expression_statement] = STATE(191), - [sym_variable_declaration] = STATE(191), - [sym_lexical_declaration] = STATE(191), - [sym_empty_statement] = STATE(191), - [sym_parenthesized_expression] = STATE(1119), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(3577), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(3577), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1119), - [sym_subscript_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(3577), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1119), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1353), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_var] = ACTIONS(1361), - [anon_sym_let] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1369), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + [anon_sym_extends] = ACTIONS(1385), }, [132] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1576), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3617), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3618), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1375), + [anon_sym_RBRACK] = ACTIONS(1387), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [133] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1389), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [134] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_RBRACK] = ACTIONS(1391), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [135] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym__formal_parameter] = STATE(4037), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(192), - [sym_override_modifier] = STATE(218), - [sym_required_parameter] = STATE(4037), - [sym_optional_parameter] = STATE(4037), - [sym__parameter_name] = STATE(2853), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(550), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(1331), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(702), - [anon_sym_private] = ACTIONS(702), - [anon_sym_protected] = ACTIONS(702), - [anon_sym_override] = ACTIONS(704), - [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), - }, - [136] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(1393), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(1381), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), - [anon_sym_extends] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, - [137] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1595), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3787), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3778), - [aux_sym_array_pattern_repeat1] = STATE(3773), + [136] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3610), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3614), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1351), + [anon_sym_RBRACK] = ACTIONS(1395), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), + }, + [137] = { + [sym_statement_block] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_QMARK_DOT] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_GT_GT_GT] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_STAR_STAR] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_EQ_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_QMARK_QMARK] = ACTIONS(1397), + [anon_sym_instanceof] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_satisfies] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + [sym__automatic_semicolon] = ACTIONS(1397), + [sym__ternary_qmark] = ACTIONS(1397), }, [138] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3732), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3710), - [aux_sym_array_pattern_repeat1] = STATE(3773), + [sym_import] = STATE(1905), + [sym_expression_statement] = STATE(196), + [sym_variable_declaration] = STATE(196), + [sym_lexical_declaration] = STATE(196), + [sym_empty_statement] = STATE(196), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(3691), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(3691), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(3691), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1118), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_type] = ACTIONS(1363), + [anon_sym_namespace] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_var] = ACTIONS(1369), + [anon_sym_let] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_readonly] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1363), + [anon_sym_set] = ACTIONS(1363), + [anon_sym_declare] = ACTIONS(1363), + [anon_sym_public] = ACTIONS(1363), + [anon_sym_private] = ACTIONS(1363), + [anon_sym_protected] = ACTIONS(1363), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_number] = ACTIONS(1363), + [anon_sym_boolean] = ACTIONS(1363), + [anon_sym_string] = ACTIONS(1363), + [anon_sym_symbol] = ACTIONS(1363), + }, + [139] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1555), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3617), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3618), + [aux_sym_array_pattern_repeat1] = STATE(3619), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1387), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), - }, - [139] = { - [sym_statement_block] = STATE(156), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_typeof] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_await] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_with] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_debugger] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_throw] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LTtemplate_GT] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_class] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_function] = ACTIONS(1389), - [anon_sym_QMARK_DOT] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_GT_GT_GT] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1387), - [anon_sym_STAR_STAR] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1387), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_QMARK_QMARK] = ACTIONS(1387), - [anon_sym_instanceof] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_delete] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_number] = ACTIONS(1387), - [sym_this] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [sym_null] = ACTIONS(1389), - [sym_undefined] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_abstract] = ACTIONS(1389), - [anon_sym_satisfies] = ACTIONS(1389), - [anon_sym_interface] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [sym__automatic_semicolon] = ACTIONS(1387), - [sym__ternary_qmark] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [140] = { - [sym_statement_block] = STATE(156), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_typeof] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_await] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_with] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_debugger] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_throw] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LTtemplate_GT] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_class] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_function] = ACTIONS(1389), - [anon_sym_QMARK_DOT] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_GT_GT_GT] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1387), - [anon_sym_STAR_STAR] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1387), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_QMARK_QMARK] = ACTIONS(1387), - [anon_sym_instanceof] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_delete] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_number] = ACTIONS(1387), - [sym_this] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [sym_null] = ACTIONS(1389), - [sym_undefined] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_abstract] = ACTIONS(1389), - [anon_sym_satisfies] = ACTIONS(1389), - [anon_sym_interface] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [sym__automatic_semicolon] = ACTIONS(1387), - [sym__ternary_qmark] = ACTIONS(1387), + [sym_statement_block] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_QMARK_DOT] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_GT_GT_GT] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_STAR_STAR] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_EQ_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_QMARK_QMARK] = ACTIONS(1397), + [anon_sym_instanceof] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_satisfies] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + [sym__automatic_semicolon] = ACTIONS(1397), + [sym__ternary_qmark] = ACTIONS(1397), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1397), + [sym_statement_block] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), [anon_sym_as] = ACTIONS(1399), - [anon_sym_namespace] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_await] = ACTIONS(1397), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), [anon_sym_in] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_debugger] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LTtemplate_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), [anon_sym_GT] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_QMARK_DOT] = ACTIONS(1403), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_QMARK_DOT] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_GT_GT_GT] = ACTIONS(1403), - [anon_sym_LT_LT] = ACTIONS(1403), + [anon_sym_GT_GT_GT] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1397), [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1397), [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_STAR_STAR] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1397), [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1397), [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_QMARK_QMARK] = ACTIONS(1403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_QMARK_QMARK] = ACTIONS(1397), [anon_sym_instanceof] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_delete] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_number] = ACTIONS(1395), - [sym_this] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [sym_null] = ACTIONS(1397), - [sym_undefined] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_readonly] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(1397), - [anon_sym_set] = ACTIONS(1397), - [anon_sym_declare] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_protected] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_number] = ACTIONS(1397), - [anon_sym_boolean] = ACTIONS(1397), - [anon_sym_string] = ACTIONS(1397), - [anon_sym_symbol] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), [anon_sym_satisfies] = ACTIONS(1399), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [sym__automatic_semicolon] = ACTIONS(1405), - [sym__ternary_qmark] = ACTIONS(1403), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + [sym__automatic_semicolon] = ACTIONS(1397), + [sym__ternary_qmark] = ACTIONS(1397), }, [142] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1576), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3617), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3618), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(1407), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), - [anon_sym_extends] = ACTIONS(1383), - [anon_sym_PIPE_RBRACE] = ACTIONS(1381), - [sym__automatic_semicolon] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, [143] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(3593), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(3593), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1147), - [sym_subscript_expression] = STATE(1147), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(3593), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_mapped_type_clause] = STATE(4145), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(1407), - [anon_sym_export] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_namespace] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(3594), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(3594), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1157), + [sym_subscript_expression] = STATE(1157), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(3594), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1157), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_mapped_type_clause] = STATE(4184), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1411), + [anon_sym_type] = ACTIONS(1411), + [anon_sym_namespace] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACK] = ACTIONS(1419), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_RBRACK] = ACTIONS(1421), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1423), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1423), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1425), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_readonly] = ACTIONS(1409), - [anon_sym_get] = ACTIONS(1409), - [anon_sym_set] = ACTIONS(1409), - [anon_sym_declare] = ACTIONS(1409), - [anon_sym_public] = ACTIONS(1409), - [anon_sym_private] = ACTIONS(1409), - [anon_sym_protected] = ACTIONS(1409), - [anon_sym_override] = ACTIONS(1409), - [anon_sym_module] = ACTIONS(1409), - [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_static] = ACTIONS(1411), + [anon_sym_readonly] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_override] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_identifier] = ACTIONS(1427), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_namespace] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_typeof] = ACTIONS(1427), - [anon_sym_import] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_try] = ACTIONS(1427), - [anon_sym_with] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_debugger] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LTtemplate_GT] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_class] = ACTIONS(1427), - [anon_sym_async] = ACTIONS(1427), - [anon_sym_function] = ACTIONS(1427), - [anon_sym_QMARK_DOT] = ACTIONS(1431), - [anon_sym_new] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_GT_GT_GT] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_STAR_STAR] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1431), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_QMARK_QMARK] = ACTIONS(1431), - [anon_sym_instanceof] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_delete] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_number] = ACTIONS(1425), - [sym_this] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_undefined] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_abstract] = ACTIONS(1427), - [anon_sym_satisfies] = ACTIONS(1429), - [anon_sym_interface] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1433), - [sym__ternary_qmark] = ACTIONS(1431), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym_import] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_await] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_with] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_debugger] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LTtemplate_GT] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_function] = ACTIONS(1429), + [anon_sym_QMARK_DOT] = ACTIONS(1433), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_GT_GT_GT] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_QMARK_QMARK] = ACTIONS(1433), + [anon_sym_instanceof] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_delete] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_number] = ACTIONS(1427), + [sym_this] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [sym_undefined] = ACTIONS(1429), + [anon_sym_AT] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_readonly] = ACTIONS(1429), + [anon_sym_get] = ACTIONS(1429), + [anon_sym_set] = ACTIONS(1429), + [anon_sym_declare] = ACTIONS(1429), + [anon_sym_public] = ACTIONS(1429), + [anon_sym_private] = ACTIONS(1429), + [anon_sym_protected] = ACTIONS(1429), + [anon_sym_override] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [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_abstract] = ACTIONS(1429), + [anon_sym_satisfies] = ACTIONS(1431), + [anon_sym_interface] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [sym__automatic_semicolon] = ACTIONS(1435), + [sym__ternary_qmark] = ACTIONS(1433), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_export] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym_import] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_await] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_debugger] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_throw] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LTtemplate_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_class] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(1437), - [anon_sym_QMARK_DOT] = ACTIONS(1441), - [anon_sym_new] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_GT_GT_GT] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1439), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_QMARK_QMARK] = ACTIONS(1441), - [anon_sym_instanceof] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_delete] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_number] = ACTIONS(1435), - [sym_this] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [sym_null] = ACTIONS(1437), - [sym_undefined] = ACTIONS(1437), - [anon_sym_AT] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_declare] = ACTIONS(1437), - [anon_sym_public] = ACTIONS(1437), - [anon_sym_private] = ACTIONS(1437), - [anon_sym_protected] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1437), - [anon_sym_module] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_number] = ACTIONS(1437), - [anon_sym_boolean] = ACTIONS(1437), - [anon_sym_string] = ACTIONS(1437), - [anon_sym_symbol] = ACTIONS(1437), - [anon_sym_abstract] = ACTIONS(1437), - [anon_sym_satisfies] = ACTIONS(1439), - [anon_sym_interface] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [sym__automatic_semicolon] = ACTIONS(1443), - [sym__ternary_qmark] = ACTIONS(1441), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_instanceof] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_satisfies] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [sym__automatic_semicolon] = ACTIONS(1437), + [sym__ternary_qmark] = ACTIONS(1349), }, [146] = { - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_export] = ACTIONS(1447), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_import] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_await] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_with] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_debugger] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_throw] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_LTtemplate_GT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_function] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(1439), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_GT_GT_GT] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_STAR_STAR] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_QMARK_QMARK] = ACTIONS(1439), + [anon_sym_instanceof] = ACTIONS(1441), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_delete] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_number] = ACTIONS(1439), + [sym_this] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [sym_undefined] = ACTIONS(1441), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_abstract] = ACTIONS(1441), + [anon_sym_satisfies] = ACTIONS(1441), + [anon_sym_interface] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [sym__automatic_semicolon] = ACTIONS(1439), + [sym__ternary_qmark] = ACTIONS(1439), + }, + [147] = { + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_export] = ACTIONS(1445), [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), [anon_sym_as] = ACTIONS(1447), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym_import] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_await] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_await] = ACTIONS(1445), [anon_sym_in] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_with] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_debugger] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LTtemplate_GT] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_with] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_debugger] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_throw] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_LTtemplate_GT] = ACTIONS(1443), [anon_sym_GT] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_class] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1447), - [anon_sym_QMARK_DOT] = ACTIONS(1445), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_function] = ACTIONS(1445), + [anon_sym_QMARK_DOT] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_GT_GT_GT] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT_GT] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1449), [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1449), [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1445), - [anon_sym_STAR_STAR] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_STAR_STAR] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1449), [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1445), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1449), [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1445), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_QMARK_QMARK] = ACTIONS(1445), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_QMARK_QMARK] = ACTIONS(1449), [anon_sym_instanceof] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_delete] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_number] = ACTIONS(1445), - [sym_this] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_undefined] = ACTIONS(1447), - [anon_sym_AT] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_readonly] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_override] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [anon_sym_abstract] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_delete] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1443), + [sym_this] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_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_abstract] = ACTIONS(1445), [anon_sym_satisfies] = ACTIONS(1447), - [anon_sym_interface] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [sym__automatic_semicolon] = ACTIONS(1445), - [sym__ternary_qmark] = ACTIONS(1445), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_namespace] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1451), - [anon_sym_import] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_await] = ACTIONS(1451), - [anon_sym_in] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [anon_sym_with] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_debugger] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_throw] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_case] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LTtemplate_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_class] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_function] = ACTIONS(1451), - [anon_sym_QMARK_DOT] = ACTIONS(1455), - [anon_sym_new] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_GT_GT_GT] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_STAR_STAR] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_QMARK_QMARK] = ACTIONS(1455), - [anon_sym_instanceof] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_delete] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_number] = ACTIONS(1449), - [sym_this] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_true] = ACTIONS(1451), - [sym_false] = ACTIONS(1451), - [sym_null] = ACTIONS(1451), - [sym_undefined] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_readonly] = ACTIONS(1451), - [anon_sym_get] = ACTIONS(1451), - [anon_sym_set] = ACTIONS(1451), - [anon_sym_declare] = ACTIONS(1451), - [anon_sym_public] = ACTIONS(1451), - [anon_sym_private] = ACTIONS(1451), - [anon_sym_protected] = ACTIONS(1451), - [anon_sym_override] = ACTIONS(1451), - [anon_sym_module] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_number] = ACTIONS(1451), - [anon_sym_boolean] = ACTIONS(1451), - [anon_sym_string] = ACTIONS(1451), - [anon_sym_symbol] = ACTIONS(1451), - [anon_sym_abstract] = ACTIONS(1451), - [anon_sym_satisfies] = ACTIONS(1453), - [anon_sym_interface] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [sym__automatic_semicolon] = ACTIONS(1457), - [sym__ternary_qmark] = ACTIONS(1455), + [anon_sym_interface] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(1451), + [sym__ternary_qmark] = ACTIONS(1449), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_namespace] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_typeof] = ACTIONS(1461), - [anon_sym_import] = ACTIONS(1461), - [anon_sym_var] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_await] = ACTIONS(1461), - [anon_sym_in] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_debugger] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_throw] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_LTtemplate_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_function] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1465), - [anon_sym_new] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_PIPE_PIPE] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_GT_GT_GT] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_STAR_STAR] = ACTIONS(1465), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1463), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK] = ACTIONS(1465), - [anon_sym_instanceof] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_void] = ACTIONS(1461), - [anon_sym_delete] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1459), - [sym_number] = ACTIONS(1459), - [sym_this] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [sym_null] = ACTIONS(1461), - [sym_undefined] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_readonly] = ACTIONS(1461), - [anon_sym_get] = ACTIONS(1461), - [anon_sym_set] = ACTIONS(1461), - [anon_sym_declare] = ACTIONS(1461), - [anon_sym_public] = ACTIONS(1461), - [anon_sym_private] = ACTIONS(1461), - [anon_sym_protected] = ACTIONS(1461), - [anon_sym_override] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_any] = ACTIONS(1461), - [anon_sym_number] = ACTIONS(1461), - [anon_sym_boolean] = ACTIONS(1461), - [anon_sym_string] = ACTIONS(1461), - [anon_sym_symbol] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(1461), - [anon_sym_satisfies] = ACTIONS(1463), - [anon_sym_interface] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [sym__automatic_semicolon] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1465), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_export] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1455), + [anon_sym_import] = ACTIONS(1455), + [anon_sym_var] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_with] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_debugger] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_throw] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LTtemplate_GT] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_GT_GT_GT] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_STAR_STAR] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_QMARK_QMARK] = ACTIONS(1459), + [anon_sym_instanceof] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1453), + [anon_sym_void] = ACTIONS(1455), + [anon_sym_delete] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1453), + [sym_number] = ACTIONS(1453), + [sym_this] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_true] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [sym_null] = ACTIONS(1455), + [sym_undefined] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_readonly] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1455), + [anon_sym_set] = ACTIONS(1455), + [anon_sym_declare] = ACTIONS(1455), + [anon_sym_public] = ACTIONS(1455), + [anon_sym_private] = ACTIONS(1455), + [anon_sym_protected] = ACTIONS(1455), + [anon_sym_override] = ACTIONS(1455), + [anon_sym_module] = ACTIONS(1455), + [anon_sym_any] = ACTIONS(1455), + [anon_sym_number] = ACTIONS(1455), + [anon_sym_boolean] = ACTIONS(1455), + [anon_sym_string] = ACTIONS(1455), + [anon_sym_symbol] = ACTIONS(1455), + [anon_sym_abstract] = ACTIONS(1455), + [anon_sym_satisfies] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [sym__automatic_semicolon] = ACTIONS(1461), + [sym__ternary_qmark] = ACTIONS(1459), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_namespace] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1471), - [anon_sym_import] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_let] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1471), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_try] = ACTIONS(1471), - [anon_sym_with] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_debugger] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_LTtemplate_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_class] = ACTIONS(1471), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_function] = ACTIONS(1471), - [anon_sym_QMARK_DOT] = ACTIONS(1475), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_GT_GT_GT] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_QMARK_QMARK] = ACTIONS(1475), - [anon_sym_instanceof] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_delete] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_number] = ACTIONS(1469), - [sym_this] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_true] = ACTIONS(1471), - [sym_false] = ACTIONS(1471), - [sym_null] = ACTIONS(1471), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_readonly] = ACTIONS(1471), - [anon_sym_get] = ACTIONS(1471), - [anon_sym_set] = ACTIONS(1471), - [anon_sym_declare] = ACTIONS(1471), - [anon_sym_public] = ACTIONS(1471), - [anon_sym_private] = ACTIONS(1471), - [anon_sym_protected] = ACTIONS(1471), - [anon_sym_override] = ACTIONS(1471), - [anon_sym_module] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_number] = ACTIONS(1471), - [anon_sym_boolean] = ACTIONS(1471), - [anon_sym_string] = ACTIONS(1471), - [anon_sym_symbol] = ACTIONS(1471), - [anon_sym_abstract] = ACTIONS(1471), - [anon_sym_satisfies] = ACTIONS(1473), - [anon_sym_interface] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [sym__automatic_semicolon] = ACTIONS(1477), - [sym__ternary_qmark] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_export] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_namespace] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1465), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [anon_sym_with] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_debugger] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_throw] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LTtemplate_GT] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_function] = ACTIONS(1465), + [anon_sym_QMARK_DOT] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_GT_GT_GT] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1469), + [anon_sym_instanceof] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_number] = ACTIONS(1463), + [sym_this] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_true] = ACTIONS(1465), + [sym_false] = ACTIONS(1465), + [sym_null] = ACTIONS(1465), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_readonly] = ACTIONS(1465), + [anon_sym_get] = ACTIONS(1465), + [anon_sym_set] = ACTIONS(1465), + [anon_sym_declare] = ACTIONS(1465), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_override] = ACTIONS(1465), + [anon_sym_module] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_number] = ACTIONS(1465), + [anon_sym_boolean] = ACTIONS(1465), + [anon_sym_string] = ACTIONS(1465), + [anon_sym_symbol] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_satisfies] = ACTIONS(1467), + [anon_sym_interface] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [sym__automatic_semicolon] = ACTIONS(1471), + [sym__ternary_qmark] = ACTIONS(1469), }, [150] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1547), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3988), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3558), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3677), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1166), + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_namespace] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1473), [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_typeof] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_in] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1475), + [anon_sym_with] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_debugger] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_throw] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_LTtemplate_GT] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_function] = ACTIONS(1475), + [anon_sym_QMARK_DOT] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_GT_GT_GT] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_STAR_STAR] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1479), + [anon_sym_QMARK_QMARK] = ACTIONS(1479), + [anon_sym_instanceof] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1473), + [anon_sym_void] = ACTIONS(1475), + [anon_sym_delete] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1473), + [sym_number] = ACTIONS(1473), + [sym_this] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_true] = ACTIONS(1475), + [sym_false] = ACTIONS(1475), + [sym_null] = ACTIONS(1475), + [sym_undefined] = ACTIONS(1475), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_satisfies] = ACTIONS(1477), + [anon_sym_interface] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [sym__automatic_semicolon] = ACTIONS(1481), + [sym__ternary_qmark] = ACTIONS(1479), + }, + [151] = { + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_export] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_namespace] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1485), + [anon_sym_import] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1485), + [anon_sym_in] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_with] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_debugger] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_throw] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_case] = ACTIONS(1485), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LTtemplate_GT] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1485), + [anon_sym_async] = ACTIONS(1485), + [anon_sym_function] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_GT_GT_GT] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_STAR_STAR] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_QMARK_QMARK] = ACTIONS(1489), + [anon_sym_instanceof] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_delete] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_number] = ACTIONS(1483), + [sym_this] = ACTIONS(1485), + [sym_super] = ACTIONS(1485), + [sym_true] = ACTIONS(1485), + [sym_false] = ACTIONS(1485), + [sym_null] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_readonly] = ACTIONS(1485), + [anon_sym_get] = ACTIONS(1485), + [anon_sym_set] = ACTIONS(1485), + [anon_sym_declare] = ACTIONS(1485), + [anon_sym_public] = ACTIONS(1485), + [anon_sym_private] = ACTIONS(1485), + [anon_sym_protected] = ACTIONS(1485), + [anon_sym_override] = ACTIONS(1485), + [anon_sym_module] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_number] = ACTIONS(1485), + [anon_sym_boolean] = ACTIONS(1485), + [anon_sym_string] = ACTIONS(1485), + [anon_sym_symbol] = ACTIONS(1485), + [anon_sym_abstract] = ACTIONS(1485), + [anon_sym_satisfies] = ACTIONS(1487), + [anon_sym_interface] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [sym__automatic_semicolon] = ACTIONS(1491), + [sym__ternary_qmark] = ACTIONS(1489), + }, + [152] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_else] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_with] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_debugger] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LTtemplate_GT] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(1495), + [anon_sym_QMARK_DOT] = ACTIONS(1499), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_GT_GT_GT] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_STAR_STAR] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_QMARK_QMARK] = ACTIONS(1499), + [anon_sym_instanceof] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_delete] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1493), + [sym_number] = ACTIONS(1493), + [sym_this] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_true] = ACTIONS(1495), + [sym_false] = ACTIONS(1495), + [sym_null] = ACTIONS(1495), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_readonly] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_declare] = ACTIONS(1495), + [anon_sym_public] = ACTIONS(1495), + [anon_sym_private] = ACTIONS(1495), + [anon_sym_protected] = ACTIONS(1495), + [anon_sym_override] = ACTIONS(1495), + [anon_sym_module] = ACTIONS(1495), + [anon_sym_any] = ACTIONS(1495), + [anon_sym_number] = ACTIONS(1495), + [anon_sym_boolean] = ACTIONS(1495), + [anon_sym_string] = ACTIONS(1495), + [anon_sym_symbol] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_satisfies] = ACTIONS(1497), + [anon_sym_interface] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [sym__automatic_semicolon] = ACTIONS(1501), + [sym__ternary_qmark] = ACTIONS(1499), + }, + [153] = { + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_typeof] = ACTIONS(1505), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_with] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_debugger] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LTtemplate_GT] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1505), + [anon_sym_QMARK_DOT] = ACTIONS(1503), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_STAR_STAR] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_QMARK_QMARK] = ACTIONS(1503), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_delete] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_number] = ACTIONS(1503), + [sym_this] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_true] = ACTIONS(1505), + [sym_false] = ACTIONS(1505), + [sym_null] = ACTIONS(1505), + [sym_undefined] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_readonly] = ACTIONS(1505), + [anon_sym_get] = ACTIONS(1505), + [anon_sym_set] = ACTIONS(1505), + [anon_sym_declare] = ACTIONS(1505), + [anon_sym_public] = ACTIONS(1505), + [anon_sym_private] = ACTIONS(1505), + [anon_sym_protected] = ACTIONS(1505), + [anon_sym_override] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_number] = ACTIONS(1505), + [anon_sym_boolean] = ACTIONS(1505), + [anon_sym_string] = ACTIONS(1505), + [anon_sym_symbol] = ACTIONS(1505), + [anon_sym_abstract] = ACTIONS(1505), + [anon_sym_satisfies] = ACTIONS(1505), + [anon_sym_interface] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [sym__automatic_semicolon] = ACTIONS(1503), + [sym__ternary_qmark] = ACTIONS(1503), + }, + [154] = { + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_with] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_debugger] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LTtemplate_GT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_function] = ACTIONS(1509), + [anon_sym_QMARK_DOT] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_GT_GT_GT] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_STAR_STAR] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_QMARK_QMARK] = ACTIONS(1507), + [anon_sym_instanceof] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_delete] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1507), + [sym_this] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_satisfies] = ACTIONS(1509), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(1507), + [sym__ternary_qmark] = ACTIONS(1507), + }, + [155] = { + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_namespace] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1513), + [anon_sym_import] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_await] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_with] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_debugger] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_throw] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_case] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LTtemplate_GT] = ACTIONS(1511), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1513), + [anon_sym_function] = ACTIONS(1513), + [anon_sym_QMARK_DOT] = ACTIONS(1511), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_GT_GT_GT] = ACTIONS(1511), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_QMARK_QMARK] = ACTIONS(1511), + [anon_sym_instanceof] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_delete] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_number] = ACTIONS(1511), + [sym_this] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), + [sym_undefined] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_readonly] = ACTIONS(1513), + [anon_sym_get] = ACTIONS(1513), + [anon_sym_set] = ACTIONS(1513), + [anon_sym_declare] = ACTIONS(1513), + [anon_sym_public] = ACTIONS(1513), + [anon_sym_private] = ACTIONS(1513), + [anon_sym_protected] = ACTIONS(1513), + [anon_sym_override] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_number] = ACTIONS(1513), + [anon_sym_boolean] = ACTIONS(1513), + [anon_sym_string] = ACTIONS(1513), + [anon_sym_symbol] = ACTIONS(1513), + [anon_sym_abstract] = ACTIONS(1513), + [anon_sym_satisfies] = ACTIONS(1513), + [anon_sym_interface] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [sym__automatic_semicolon] = ACTIONS(1511), + [sym__ternary_qmark] = ACTIONS(1511), + }, + [156] = { + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_export] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_namespace] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_typeof] = ACTIONS(1517), + [anon_sym_import] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_with] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_debugger] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_case] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LTtemplate_GT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1517), + [anon_sym_function] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1515), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_GT_GT_GT] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_QMARK_QMARK] = ACTIONS(1515), + [anon_sym_instanceof] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_delete] = ACTIONS(1517), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1515), + [sym_this] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_true] = ACTIONS(1517), + [sym_false] = ACTIONS(1517), + [sym_null] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_readonly] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1517), + [anon_sym_set] = ACTIONS(1517), + [anon_sym_declare] = ACTIONS(1517), + [anon_sym_public] = ACTIONS(1517), + [anon_sym_private] = ACTIONS(1517), + [anon_sym_protected] = ACTIONS(1517), + [anon_sym_override] = ACTIONS(1517), + [anon_sym_module] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_number] = ACTIONS(1517), + [anon_sym_boolean] = ACTIONS(1517), + [anon_sym_string] = ACTIONS(1517), + [anon_sym_symbol] = ACTIONS(1517), + [anon_sym_abstract] = ACTIONS(1517), + [anon_sym_satisfies] = ACTIONS(1517), + [anon_sym_interface] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [sym__automatic_semicolon] = ACTIONS(1515), + [sym__ternary_qmark] = ACTIONS(1515), + }, + [157] = { + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_export] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1523), + [anon_sym_namespace] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_typeof] = ACTIONS(1521), + [anon_sym_import] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_with] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_debugger] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_throw] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_case] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LTtemplate_GT] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(1521), + [anon_sym_QMARK_DOT] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1523), + [anon_sym_GT_GT_GT] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_STAR_STAR] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1525), + [anon_sym_BANG_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_QMARK_QMARK] = ACTIONS(1525), + [anon_sym_instanceof] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_delete] = ACTIONS(1521), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_number] = ACTIONS(1519), + [sym_this] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_declare] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_private] = ACTIONS(1521), + [anon_sym_protected] = ACTIONS(1521), + [anon_sym_override] = ACTIONS(1521), + [anon_sym_module] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_number] = ACTIONS(1521), + [anon_sym_boolean] = ACTIONS(1521), + [anon_sym_string] = ACTIONS(1521), + [anon_sym_symbol] = ACTIONS(1521), + [anon_sym_abstract] = ACTIONS(1521), + [anon_sym_satisfies] = ACTIONS(1523), + [anon_sym_interface] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [sym__automatic_semicolon] = ACTIONS(1527), + [sym__ternary_qmark] = ACTIONS(1525), + }, + [158] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1323), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + [anon_sym_extends] = ACTIONS(1385), + [anon_sym_PIPE_RBRACE] = ACTIONS(1383), + [sym__automatic_semicolon] = ACTIONS(1383), }, - [151] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_assignment_pattern] = STATE(3733), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3449), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_pattern_repeat1] = STATE(3704), - [sym_identifier] = ACTIONS(550), + [159] = { + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_export] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_as] = ACTIONS(1531), + [anon_sym_namespace] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_typeof] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(1531), + [anon_sym_var] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_else] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_await] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_do] = ACTIONS(1531), + [anon_sym_try] = ACTIONS(1531), + [anon_sym_with] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_debugger] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1531), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_LTtemplate_GT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1531), + [anon_sym_class] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(1531), + [anon_sym_QMARK_DOT] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_GT_GT_GT] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_STAR_STAR] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1529), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1529), + [anon_sym_QMARK_QMARK] = ACTIONS(1529), + [anon_sym_instanceof] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1531), + [anon_sym_delete] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1529), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1529), + [sym_number] = ACTIONS(1529), + [sym_this] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_undefined] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_readonly] = ACTIONS(1531), + [anon_sym_get] = ACTIONS(1531), + [anon_sym_set] = ACTIONS(1531), + [anon_sym_declare] = ACTIONS(1531), + [anon_sym_public] = ACTIONS(1531), + [anon_sym_private] = ACTIONS(1531), + [anon_sym_protected] = ACTIONS(1531), + [anon_sym_override] = ACTIONS(1531), + [anon_sym_module] = ACTIONS(1531), + [anon_sym_any] = ACTIONS(1531), + [anon_sym_number] = ACTIONS(1531), + [anon_sym_boolean] = ACTIONS(1531), + [anon_sym_string] = ACTIONS(1531), + [anon_sym_symbol] = ACTIONS(1531), + [anon_sym_abstract] = ACTIONS(1531), + [anon_sym_satisfies] = ACTIONS(1531), + [anon_sym_interface] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [sym__automatic_semicolon] = ACTIONS(1529), + [sym__ternary_qmark] = ACTIONS(1529), + }, + [160] = { + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_export] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1535), + [anon_sym_var] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_else] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_switch] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_do] = ACTIONS(1535), + [anon_sym_try] = ACTIONS(1535), + [anon_sym_with] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_debugger] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_throw] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LTtemplate_GT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_function] = ACTIONS(1535), + [anon_sym_QMARK_DOT] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_GT_GT_GT] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_QMARK_QMARK] = ACTIONS(1539), + [anon_sym_instanceof] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1535), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1533), + [sym_number] = ACTIONS(1533), + [sym_this] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_true] = ACTIONS(1535), + [sym_false] = ACTIONS(1535), + [sym_null] = ACTIONS(1535), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_readonly] = ACTIONS(1535), + [anon_sym_get] = ACTIONS(1535), + [anon_sym_set] = ACTIONS(1535), + [anon_sym_declare] = ACTIONS(1535), + [anon_sym_public] = ACTIONS(1535), + [anon_sym_private] = ACTIONS(1535), + [anon_sym_protected] = ACTIONS(1535), + [anon_sym_override] = ACTIONS(1535), + [anon_sym_module] = ACTIONS(1535), + [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_abstract] = ACTIONS(1535), + [anon_sym_satisfies] = ACTIONS(1537), + [anon_sym_interface] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [sym__automatic_semicolon] = ACTIONS(1541), + [sym__ternary_qmark] = ACTIONS(1539), + }, + [161] = { + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_with] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_debugger] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_throw] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LTtemplate_GT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1543), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_GT_GT_GT] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_STAR] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1543), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_QMARK_QMARK] = ACTIONS(1543), + [anon_sym_instanceof] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_delete] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_number] = ACTIONS(1543), + [sym_this] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_undefined] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_readonly] = ACTIONS(1545), + [anon_sym_get] = ACTIONS(1545), + [anon_sym_set] = ACTIONS(1545), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_private] = ACTIONS(1545), + [anon_sym_protected] = ACTIONS(1545), + [anon_sym_override] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_number] = ACTIONS(1545), + [anon_sym_boolean] = ACTIONS(1545), + [anon_sym_string] = ACTIONS(1545), + [anon_sym_symbol] = ACTIONS(1545), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_satisfies] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [sym__automatic_semicolon] = ACTIONS(1543), + [sym__ternary_qmark] = ACTIONS(1543), + }, + [162] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_debugger] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LTtemplate_GT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1549), + [anon_sym_QMARK_DOT] = ACTIONS(1547), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_GT_GT_GT] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_STAR_STAR] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_QMARK_QMARK] = ACTIONS(1547), + [anon_sym_instanceof] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_number] = ACTIONS(1547), + [sym_this] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_undefined] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_override] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_satisfies] = ACTIONS(1549), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [sym__automatic_semicolon] = ACTIONS(1551), + [sym__ternary_qmark] = ACTIONS(1547), + }, + [163] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_debugger] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LTtemplate_GT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1549), + [anon_sym_QMARK_DOT] = ACTIONS(1547), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_GT_GT_GT] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_STAR_STAR] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_QMARK_QMARK] = ACTIONS(1547), + [anon_sym_instanceof] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_number] = ACTIONS(1547), + [sym_this] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_undefined] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_override] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_satisfies] = ACTIONS(1549), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [sym__automatic_semicolon] = ACTIONS(1547), + [sym__ternary_qmark] = ACTIONS(1547), + }, + [164] = { + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1555), + [anon_sym_namespace] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1555), + [anon_sym_var] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1555), + [anon_sym_in] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_with] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_debugger] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_throw] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LTtemplate_GT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DOT] = ACTIONS(1555), + [anon_sym_class] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(1555), + [anon_sym_QMARK_DOT] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_GT_GT_GT] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_STAR_STAR] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_QMARK_QMARK] = ACTIONS(1553), + [anon_sym_instanceof] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1555), + [anon_sym_delete] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1553), + [sym_number] = ACTIONS(1553), + [sym_this] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_true] = ACTIONS(1555), + [sym_false] = ACTIONS(1555), + [sym_null] = ACTIONS(1555), + [sym_undefined] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_readonly] = ACTIONS(1555), + [anon_sym_get] = ACTIONS(1555), + [anon_sym_set] = ACTIONS(1555), + [anon_sym_declare] = ACTIONS(1555), + [anon_sym_public] = ACTIONS(1555), + [anon_sym_private] = ACTIONS(1555), + [anon_sym_protected] = ACTIONS(1555), + [anon_sym_override] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [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_abstract] = ACTIONS(1555), + [anon_sym_satisfies] = ACTIONS(1555), + [anon_sym_interface] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [sym__automatic_semicolon] = ACTIONS(1553), + [sym__ternary_qmark] = ACTIONS(1553), + }, + [165] = { + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_typeof] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1559), + [anon_sym_var] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_else] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_switch] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1559), + [anon_sym_in] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1559), + [anon_sym_try] = ACTIONS(1559), + [anon_sym_with] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_debugger] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_throw] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1559), + [anon_sym_yield] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LTtemplate_GT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_function] = ACTIONS(1559), + [anon_sym_QMARK_DOT] = ACTIONS(1563), + [anon_sym_new] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_GT_GT_GT] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1563), + [anon_sym_BANG_EQ] = ACTIONS(1561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_QMARK_QMARK] = ACTIONS(1563), + [anon_sym_instanceof] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1559), + [anon_sym_delete] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1557), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1557), + [sym_number] = ACTIONS(1557), + [sym_this] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_true] = ACTIONS(1559), + [sym_false] = ACTIONS(1559), + [sym_null] = ACTIONS(1559), + [sym_undefined] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1557), + [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_abstract] = ACTIONS(1559), + [anon_sym_satisfies] = ACTIONS(1561), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [sym__automatic_semicolon] = ACTIONS(1565), + [sym__ternary_qmark] = ACTIONS(1563), + }, + [166] = { + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_namespace] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_debugger] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_throw] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LTtemplate_GT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_function] = ACTIONS(1569), + [anon_sym_QMARK_DOT] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_GT_GT_GT] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_STAR_STAR] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1567), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_QMARK_QMARK] = ACTIONS(1567), + [anon_sym_instanceof] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_delete] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_number] = ACTIONS(1567), + [sym_this] = ACTIONS(1569), + [sym_super] = ACTIONS(1569), + [sym_true] = ACTIONS(1569), + [sym_false] = ACTIONS(1569), + [sym_null] = ACTIONS(1569), + [sym_undefined] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_get] = ACTIONS(1569), + [anon_sym_set] = ACTIONS(1569), + [anon_sym_declare] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_private] = ACTIONS(1569), + [anon_sym_protected] = ACTIONS(1569), + [anon_sym_override] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_number] = ACTIONS(1569), + [anon_sym_boolean] = ACTIONS(1569), + [anon_sym_string] = ACTIONS(1569), + [anon_sym_symbol] = ACTIONS(1569), + [anon_sym_abstract] = ACTIONS(1569), + [anon_sym_satisfies] = ACTIONS(1569), + [anon_sym_interface] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), + [sym__automatic_semicolon] = ACTIONS(1567), + [sym__ternary_qmark] = ACTIONS(1567), + }, + [167] = { + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_COMMA] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1573), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_with] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_debugger] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LTtemplate_GT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(1573), + [anon_sym_QMARK_DOT] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(1575), + [anon_sym_GT_GT_GT] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_PERCENT] = ACTIONS(1577), + [anon_sym_STAR_STAR] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1577), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1577), + [anon_sym_GT_EQ] = ACTIONS(1577), + [anon_sym_QMARK_QMARK] = ACTIONS(1577), + [anon_sym_instanceof] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_number] = ACTIONS(1571), + [sym_this] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_undefined] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1573), + [anon_sym_satisfies] = ACTIONS(1575), + [anon_sym_interface] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [sym__automatic_semicolon] = ACTIONS(1579), + [sym__ternary_qmark] = ACTIONS(1577), + }, + [168] = { + [ts_builtin_sym_end] = ACTIONS(1581), + [sym_identifier] = ACTIONS(1583), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1583), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_namespace] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(1583), + [anon_sym_var] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_else] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_switch] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_await] = ACTIONS(1583), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_with] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_debugger] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_throw] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LTtemplate_GT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(1583), + [anon_sym_QMARK_DOT] = ACTIONS(1587), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_GT_GT_GT] = ACTIONS(1587), + [anon_sym_LT_LT] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PERCENT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_QMARK_QMARK] = ACTIONS(1587), + [anon_sym_instanceof] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1583), + [anon_sym_delete] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1581), + [sym_number] = ACTIONS(1581), + [sym_this] = ACTIONS(1583), + [sym_super] = ACTIONS(1583), + [sym_true] = ACTIONS(1583), + [sym_false] = ACTIONS(1583), + [sym_null] = ACTIONS(1583), + [sym_undefined] = ACTIONS(1583), + [anon_sym_AT] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(1583), + [anon_sym_get] = ACTIONS(1583), + [anon_sym_set] = ACTIONS(1583), + [anon_sym_declare] = ACTIONS(1583), + [anon_sym_public] = ACTIONS(1583), + [anon_sym_private] = ACTIONS(1583), + [anon_sym_protected] = ACTIONS(1583), + [anon_sym_override] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_any] = ACTIONS(1583), + [anon_sym_number] = ACTIONS(1583), + [anon_sym_boolean] = ACTIONS(1583), + [anon_sym_string] = ACTIONS(1583), + [anon_sym_symbol] = ACTIONS(1583), + [anon_sym_abstract] = ACTIONS(1583), + [anon_sym_satisfies] = ACTIONS(1585), + [anon_sym_interface] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1583), + [sym__automatic_semicolon] = ACTIONS(1589), + [sym__ternary_qmark] = ACTIONS(1587), + }, + [169] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_in] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_with] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_debugger] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LTtemplate_GT] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_function] = ACTIONS(1593), + [anon_sym_QMARK_DOT] = ACTIONS(1597), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_GT_GT] = ACTIONS(1595), + [anon_sym_GT_GT_GT] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PERCENT] = ACTIONS(1597), + [anon_sym_STAR_STAR] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_EQ_EQ] = ACTIONS(1595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_QMARK_QMARK] = ACTIONS(1597), + [anon_sym_instanceof] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_delete] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_number] = ACTIONS(1591), + [sym_this] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [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_abstract] = ACTIONS(1593), + [anon_sym_satisfies] = ACTIONS(1595), + [anon_sym_interface] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [sym__automatic_semicolon] = ACTIONS(1597), + [sym__ternary_qmark] = ACTIONS(1597), + }, + [170] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1421), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), @@ -36855,845 +38860,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_typeof] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_debugger] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LTtemplate_GT] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_QMARK_DOT] = ACTIONS(1484), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_GT_GT_GT] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1484), - [anon_sym_STAR_STAR] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1484), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1484), - [anon_sym_QMARK_QMARK] = ACTIONS(1484), - [anon_sym_instanceof] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [sym_this] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [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_abstract] = ACTIONS(1486), - [anon_sym_satisfies] = ACTIONS(1486), - [anon_sym_interface] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [sym__automatic_semicolon] = ACTIONS(1488), - [sym__ternary_qmark] = ACTIONS(1484), - }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_type] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_namespace] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_COMMA] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_typeof] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_in] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_with] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_debugger] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_throw] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_LTtemplate_GT] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1492), - [anon_sym_class] = ACTIONS(1492), - [anon_sym_async] = ACTIONS(1492), - [anon_sym_function] = ACTIONS(1492), - [anon_sym_QMARK_DOT] = ACTIONS(1490), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1492), - [anon_sym_GT_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_STAR_STAR] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1490), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1490), - [anon_sym_QMARK_QMARK] = ACTIONS(1490), - [anon_sym_instanceof] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_delete] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_number] = ACTIONS(1490), - [sym_this] = ACTIONS(1492), - [sym_super] = ACTIONS(1492), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [sym_null] = ACTIONS(1492), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_readonly] = ACTIONS(1492), - [anon_sym_get] = ACTIONS(1492), - [anon_sym_set] = ACTIONS(1492), - [anon_sym_declare] = ACTIONS(1492), - [anon_sym_public] = ACTIONS(1492), - [anon_sym_private] = ACTIONS(1492), - [anon_sym_protected] = ACTIONS(1492), - [anon_sym_override] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_number] = ACTIONS(1492), - [anon_sym_boolean] = ACTIONS(1492), - [anon_sym_string] = ACTIONS(1492), - [anon_sym_symbol] = ACTIONS(1492), - [anon_sym_abstract] = ACTIONS(1492), - [anon_sym_satisfies] = ACTIONS(1492), - [anon_sym_interface] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [sym__automatic_semicolon] = ACTIONS(1490), - [sym__ternary_qmark] = ACTIONS(1490), - }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_typeof] = ACTIONS(1496), - [anon_sym_import] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_await] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_with] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_debugger] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_throw] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_yield] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LTtemplate_GT] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_class] = ACTIONS(1496), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(1496), - [anon_sym_QMARK_DOT] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_GT_GT_GT] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(1500), - [anon_sym_STAR_STAR] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_EQ_EQ] = ACTIONS(1498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), - [anon_sym_QMARK_QMARK] = ACTIONS(1500), - [anon_sym_instanceof] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_delete] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_number] = ACTIONS(1494), - [sym_this] = ACTIONS(1496), - [sym_super] = ACTIONS(1496), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [sym_null] = ACTIONS(1496), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_readonly] = ACTIONS(1496), - [anon_sym_get] = ACTIONS(1496), - [anon_sym_set] = ACTIONS(1496), - [anon_sym_declare] = ACTIONS(1496), - [anon_sym_public] = ACTIONS(1496), - [anon_sym_private] = ACTIONS(1496), - [anon_sym_protected] = ACTIONS(1496), - [anon_sym_override] = ACTIONS(1496), - [anon_sym_module] = ACTIONS(1496), - [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_abstract] = ACTIONS(1496), - [anon_sym_satisfies] = ACTIONS(1498), - [anon_sym_interface] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [sym__automatic_semicolon] = ACTIONS(1502), - [sym__ternary_qmark] = ACTIONS(1500), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_as] = ACTIONS(1508), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(1506), - [anon_sym_var] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_else] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_try] = ACTIONS(1506), - [anon_sym_with] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_debugger] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_throw] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_LTtemplate_GT] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_function] = ACTIONS(1506), - [anon_sym_QMARK_DOT] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1510), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_STAR_STAR] = ACTIONS(1510), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1510), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_QMARK_QMARK] = ACTIONS(1510), - [anon_sym_instanceof] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1504), - [sym_number] = ACTIONS(1504), - [sym_this] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [sym_null] = ACTIONS(1506), - [sym_undefined] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_readonly] = ACTIONS(1506), - [anon_sym_get] = ACTIONS(1506), - [anon_sym_set] = ACTIONS(1506), - [anon_sym_declare] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1506), - [anon_sym_private] = ACTIONS(1506), - [anon_sym_protected] = ACTIONS(1506), - [anon_sym_override] = ACTIONS(1506), - [anon_sym_module] = ACTIONS(1506), - [anon_sym_any] = ACTIONS(1506), - [anon_sym_number] = ACTIONS(1506), - [anon_sym_boolean] = ACTIONS(1506), - [anon_sym_string] = ACTIONS(1506), - [anon_sym_symbol] = ACTIONS(1506), - [anon_sym_abstract] = ACTIONS(1506), - [anon_sym_satisfies] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [sym__automatic_semicolon] = ACTIONS(1512), - [sym__ternary_qmark] = ACTIONS(1510), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_export] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_as] = ACTIONS(1516), - [anon_sym_namespace] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_typeof] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_else] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_await] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_try] = ACTIONS(1516), - [anon_sym_with] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_debugger] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_throw] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_LTtemplate_GT] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_function] = ACTIONS(1516), - [anon_sym_QMARK_DOT] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_GT_GT_GT] = ACTIONS(1514), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_STAR_STAR] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1514), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1514), - [anon_sym_QMARK_QMARK] = ACTIONS(1514), - [anon_sym_instanceof] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_delete] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_number] = ACTIONS(1514), - [sym_this] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [sym_null] = ACTIONS(1516), - [sym_undefined] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_readonly] = ACTIONS(1516), - [anon_sym_get] = ACTIONS(1516), - [anon_sym_set] = ACTIONS(1516), - [anon_sym_declare] = ACTIONS(1516), - [anon_sym_public] = ACTIONS(1516), - [anon_sym_private] = ACTIONS(1516), - [anon_sym_protected] = ACTIONS(1516), - [anon_sym_override] = ACTIONS(1516), - [anon_sym_module] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_number] = ACTIONS(1516), - [anon_sym_boolean] = ACTIONS(1516), - [anon_sym_string] = ACTIONS(1516), - [anon_sym_symbol] = ACTIONS(1516), - [anon_sym_abstract] = ACTIONS(1516), - [anon_sym_satisfies] = ACTIONS(1516), - [anon_sym_interface] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [sym__automatic_semicolon] = ACTIONS(1514), - [sym__ternary_qmark] = ACTIONS(1514), - }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_as] = ACTIONS(1522), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_typeof] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_else] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_await] = ACTIONS(1520), - [anon_sym_in] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1520), - [anon_sym_with] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_debugger] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_LTtemplate_GT] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_QMARK_DOT] = ACTIONS(1524), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1524), - [anon_sym_PIPE_PIPE] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_GT_GT_GT] = ACTIONS(1524), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_STAR_STAR] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1524), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_QMARK_QMARK] = ACTIONS(1524), - [anon_sym_instanceof] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_delete] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_super] = ACTIONS(1520), - [sym_true] = ACTIONS(1520), - [sym_false] = ACTIONS(1520), - [sym_null] = ACTIONS(1520), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_get] = ACTIONS(1520), - [anon_sym_set] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_protected] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_module] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_number] = ACTIONS(1520), - [anon_sym_boolean] = ACTIONS(1520), - [anon_sym_string] = ACTIONS(1520), - [anon_sym_symbol] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_satisfies] = ACTIONS(1522), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [sym__automatic_semicolon] = ACTIONS(1526), - [sym__ternary_qmark] = ACTIONS(1524), + [171] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1587), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(4015), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3686), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3687), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_typeof] = ACTIONS(1530), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_var] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_else] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1530), - [anon_sym_in] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_with] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_debugger] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_throw] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LTtemplate_GT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1532), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_function] = ACTIONS(1530), - [anon_sym_QMARK_DOT] = ACTIONS(1534), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_GT_GT_GT] = ACTIONS(1534), - [anon_sym_LT_LT] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_CARET] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PERCENT] = ACTIONS(1534), - [anon_sym_STAR_STAR] = ACTIONS(1534), - [anon_sym_LT_EQ] = ACTIONS(1534), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1534), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1534), - [anon_sym_GT_EQ] = ACTIONS(1534), - [anon_sym_QMARK_QMARK] = ACTIONS(1534), - [anon_sym_instanceof] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_void] = ACTIONS(1530), - [anon_sym_delete] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1528), - [sym_number] = ACTIONS(1528), - [sym_this] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [sym_null] = ACTIONS(1530), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_readonly] = ACTIONS(1530), - [anon_sym_get] = ACTIONS(1530), - [anon_sym_set] = ACTIONS(1530), - [anon_sym_declare] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_private] = ACTIONS(1530), - [anon_sym_protected] = ACTIONS(1530), - [anon_sym_override] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_any] = ACTIONS(1530), - [anon_sym_number] = ACTIONS(1530), - [anon_sym_boolean] = ACTIONS(1530), - [anon_sym_string] = ACTIONS(1530), - [anon_sym_symbol] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(1530), - [anon_sym_satisfies] = ACTIONS(1532), - [anon_sym_interface] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [sym__automatic_semicolon] = ACTIONS(1536), - [sym__ternary_qmark] = ACTIONS(1534), + [172] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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_extends] = ACTIONS(1385), }, - [159] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(550), + [173] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_assignment_pattern] = STATE(3607), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3451), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_pattern_repeat1] = STATE(3615), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1419), + [anon_sym_RBRACK] = ACTIONS(1606), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), @@ -37711,1700 +39178,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_await] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_with] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_throw] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LTtemplate_GT] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_class] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_QMARK_DOT] = ACTIONS(1538), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_GT_GT_GT] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_CARET] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1538), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1538), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1538), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1538), - [anon_sym_QMARK_QMARK] = ACTIONS(1538), - [anon_sym_instanceof] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_number] = ACTIONS(1538), - [sym_this] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_true] = ACTIONS(1540), - [sym_false] = ACTIONS(1540), - [sym_null] = ACTIONS(1540), - [sym_undefined] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_readonly] = ACTIONS(1540), - [anon_sym_get] = ACTIONS(1540), - [anon_sym_set] = ACTIONS(1540), - [anon_sym_declare] = ACTIONS(1540), - [anon_sym_public] = ACTIONS(1540), - [anon_sym_private] = ACTIONS(1540), - [anon_sym_protected] = ACTIONS(1540), - [anon_sym_override] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [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_abstract] = ACTIONS(1540), - [anon_sym_satisfies] = ACTIONS(1540), - [anon_sym_interface] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [sym__automatic_semicolon] = ACTIONS(1538), - [sym__ternary_qmark] = ACTIONS(1538), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_export] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_typeof] = ACTIONS(1544), - [anon_sym_import] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_await] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_debugger] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_throw] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_case] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LTtemplate_GT] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_class] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_function] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1548), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_GT_GT_GT] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_STAR_STAR] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_EQ_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1548), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_QMARK_QMARK] = ACTIONS(1548), - [anon_sym_instanceof] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_delete] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_number] = ACTIONS(1542), - [sym_this] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_true] = ACTIONS(1544), - [sym_false] = ACTIONS(1544), - [sym_null] = ACTIONS(1544), - [sym_undefined] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1542), - [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_abstract] = ACTIONS(1544), - [anon_sym_satisfies] = ACTIONS(1546), - [anon_sym_interface] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [sym__automatic_semicolon] = ACTIONS(1550), - [sym__ternary_qmark] = ACTIONS(1548), - }, - [162] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1547), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3988), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3558), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3677), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [174] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1587), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(4015), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3686), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3687), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1599), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_as] = ACTIONS(1558), - [anon_sym_namespace] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_typeof] = ACTIONS(1558), - [anon_sym_import] = ACTIONS(1558), - [anon_sym_var] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_else] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_switch] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_await] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1558), - [anon_sym_with] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_debugger] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_throw] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LTtemplate_GT] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_class] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_function] = ACTIONS(1558), - [anon_sym_QMARK_DOT] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_AMP_AMP] = ACTIONS(1556), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1558), - [anon_sym_GT_GT_GT] = ACTIONS(1556), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_QMARK_QMARK] = ACTIONS(1556), - [anon_sym_instanceof] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_void] = ACTIONS(1558), - [anon_sym_delete] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1556), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_true] = ACTIONS(1558), - [sym_false] = ACTIONS(1558), - [sym_null] = ACTIONS(1558), - [sym_undefined] = ACTIONS(1558), - [anon_sym_AT] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_readonly] = ACTIONS(1558), - [anon_sym_get] = ACTIONS(1558), - [anon_sym_set] = ACTIONS(1558), - [anon_sym_declare] = ACTIONS(1558), - [anon_sym_public] = ACTIONS(1558), - [anon_sym_private] = ACTIONS(1558), - [anon_sym_protected] = ACTIONS(1558), - [anon_sym_override] = ACTIONS(1558), - [anon_sym_module] = ACTIONS(1558), - [anon_sym_any] = ACTIONS(1558), - [anon_sym_number] = ACTIONS(1558), - [anon_sym_boolean] = ACTIONS(1558), - [anon_sym_string] = ACTIONS(1558), - [anon_sym_symbol] = ACTIONS(1558), - [anon_sym_abstract] = ACTIONS(1558), - [anon_sym_satisfies] = ACTIONS(1558), - [anon_sym_interface] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [sym__automatic_semicolon] = ACTIONS(1556), - [sym__ternary_qmark] = ACTIONS(1556), - }, - [164] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(3593), - [sym_assignment_pattern] = STATE(3788), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(3593), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1147), - [sym_subscript_expression] = STATE(1147), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(3593), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3424), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1147), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_pattern_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(1560), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [175] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(3594), + [sym_assignment_pattern] = STATE(3616), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(3594), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1157), + [sym_subscript_expression] = STATE(1157), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(3594), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3513), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1157), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_pattern_repeat1] = STATE(3619), + [sym_identifier] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_namespace] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACK] = ACTIONS(1419), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_RBRACK] = ACTIONS(1421), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1423), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - }, - [165] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1425), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - [anon_sym_extends] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_readonly] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1610), + [anon_sym_set] = ACTIONS(1610), + [anon_sym_declare] = ACTIONS(1610), + [anon_sym_public] = ACTIONS(1610), + [anon_sym_private] = ACTIONS(1610), + [anon_sym_protected] = ACTIONS(1610), + [anon_sym_override] = ACTIONS(1610), + [anon_sym_module] = ACTIONS(1610), + [anon_sym_any] = ACTIONS(1610), + [anon_sym_number] = ACTIONS(1610), + [anon_sym_boolean] = ACTIONS(1610), + [anon_sym_string] = ACTIONS(1610), + [anon_sym_symbol] = ACTIONS(1610), }, - [166] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1547), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3988), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_spread_element] = STATE(3558), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3677), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [176] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1587), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(4015), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_spread_element] = STATE(3686), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3687), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_RBRACK] = ACTIONS(1616), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_namespace] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_debugger] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LTtemplate_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_QMARK_DOT] = ACTIONS(1395), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_instanceof] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_delete] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_number] = ACTIONS(1395), - [sym_this] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [sym_null] = ACTIONS(1397), - [sym_undefined] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_readonly] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(1397), - [anon_sym_set] = ACTIONS(1397), - [anon_sym_declare] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_protected] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_number] = ACTIONS(1397), - [anon_sym_boolean] = ACTIONS(1397), - [anon_sym_string] = ACTIONS(1397), - [anon_sym_symbol] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_satisfies] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [sym__automatic_semicolon] = ACTIONS(1572), - [sym__ternary_qmark] = ACTIONS(1395), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_as] = ACTIONS(1578), - [anon_sym_namespace] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_typeof] = ACTIONS(1576), - [anon_sym_import] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_else] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_with] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_debugger] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_throw] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_LTtemplate_GT] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1578), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_DOT] = ACTIONS(1578), - [anon_sym_class] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1576), - [anon_sym_QMARK_DOT] = ACTIONS(1580), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_GT_GT] = ACTIONS(1578), - [anon_sym_GT_GT_GT] = ACTIONS(1580), - [anon_sym_LT_LT] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1578), - [anon_sym_CARET] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_STAR_STAR] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_QMARK_QMARK] = ACTIONS(1580), - [anon_sym_instanceof] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_delete] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_number] = ACTIONS(1574), - [sym_this] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_true] = ACTIONS(1576), - [sym_false] = ACTIONS(1576), - [sym_null] = ACTIONS(1576), - [sym_undefined] = ACTIONS(1576), - [anon_sym_AT] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_readonly] = ACTIONS(1576), - [anon_sym_get] = ACTIONS(1576), - [anon_sym_set] = ACTIONS(1576), - [anon_sym_declare] = ACTIONS(1576), - [anon_sym_public] = ACTIONS(1576), - [anon_sym_private] = ACTIONS(1576), - [anon_sym_protected] = ACTIONS(1576), - [anon_sym_override] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_number] = ACTIONS(1576), - [anon_sym_boolean] = ACTIONS(1576), - [anon_sym_string] = ACTIONS(1576), - [anon_sym_symbol] = ACTIONS(1576), - [anon_sym_abstract] = ACTIONS(1576), - [anon_sym_satisfies] = ACTIONS(1578), - [anon_sym_interface] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym__ternary_qmark] = ACTIONS(1580), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_type] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_COMMA] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_typeof] = ACTIONS(1584), - [anon_sym_import] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_await] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_try] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_debugger] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_throw] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_case] = ACTIONS(1584), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_LTtemplate_GT] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_class] = ACTIONS(1584), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(1584), - [anon_sym_QMARK_DOT] = ACTIONS(1582), - [anon_sym_new] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_GT_GT_GT] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_STAR_STAR] = ACTIONS(1582), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ] = ACTIONS(1584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ] = ACTIONS(1584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_QMARK_QMARK] = ACTIONS(1582), - [anon_sym_instanceof] = ACTIONS(1584), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_delete] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_number] = ACTIONS(1582), - [sym_this] = ACTIONS(1584), - [sym_super] = ACTIONS(1584), - [sym_true] = ACTIONS(1584), - [sym_false] = ACTIONS(1584), - [sym_null] = ACTIONS(1584), - [sym_undefined] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_readonly] = ACTIONS(1584), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_declare] = ACTIONS(1584), - [anon_sym_public] = ACTIONS(1584), - [anon_sym_private] = ACTIONS(1584), - [anon_sym_protected] = ACTIONS(1584), - [anon_sym_override] = ACTIONS(1584), - [anon_sym_module] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_number] = ACTIONS(1584), - [anon_sym_boolean] = ACTIONS(1584), - [anon_sym_string] = ACTIONS(1584), - [anon_sym_symbol] = ACTIONS(1584), - [anon_sym_abstract] = ACTIONS(1584), - [anon_sym_satisfies] = ACTIONS(1584), - [anon_sym_interface] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - [sym__automatic_semicolon] = ACTIONS(1582), - [sym__ternary_qmark] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_as] = ACTIONS(1588), - [anon_sym_namespace] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_else] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1588), - [anon_sym_with] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_debugger] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_throw] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_case] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_LTtemplate_GT] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1588), - [anon_sym_class] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_function] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_PIPE_PIPE] = ACTIONS(1586), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_GT_GT_GT] = ACTIONS(1586), - [anon_sym_LT_LT] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_PERCENT] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1586), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), - [anon_sym_GT_EQ] = ACTIONS(1586), - [anon_sym_QMARK_QMARK] = ACTIONS(1586), - [anon_sym_instanceof] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_delete] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_number] = ACTIONS(1586), - [sym_this] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_true] = ACTIONS(1588), - [sym_false] = ACTIONS(1588), - [sym_null] = ACTIONS(1588), - [sym_undefined] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_readonly] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(1588), - [anon_sym_set] = ACTIONS(1588), - [anon_sym_declare] = ACTIONS(1588), - [anon_sym_public] = ACTIONS(1588), - [anon_sym_private] = ACTIONS(1588), - [anon_sym_protected] = ACTIONS(1588), - [anon_sym_override] = ACTIONS(1588), - [anon_sym_module] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_number] = ACTIONS(1588), - [anon_sym_boolean] = ACTIONS(1588), - [anon_sym_string] = ACTIONS(1588), - [anon_sym_symbol] = ACTIONS(1588), - [anon_sym_abstract] = ACTIONS(1588), - [anon_sym_satisfies] = ACTIONS(1588), - [anon_sym_interface] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [sym__automatic_semicolon] = ACTIONS(1586), - [sym__ternary_qmark] = ACTIONS(1586), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_export] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_as] = ACTIONS(1594), - [anon_sym_namespace] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_COMMA] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_typeof] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_await] = ACTIONS(1592), - [anon_sym_in] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_try] = ACTIONS(1592), - [anon_sym_with] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_debugger] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_throw] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_LTtemplate_GT] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1594), - [anon_sym_SLASH] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1594), - [anon_sym_class] = ACTIONS(1592), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(1592), - [anon_sym_QMARK_DOT] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_PIPE_PIPE] = ACTIONS(1596), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_GT_GT_GT] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_CARET] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1596), - [anon_sym_STAR_STAR] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1596), - [anon_sym_EQ_EQ] = ACTIONS(1594), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), - [anon_sym_BANG_EQ] = ACTIONS(1594), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1596), - [anon_sym_QMARK_QMARK] = ACTIONS(1596), - [anon_sym_instanceof] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_delete] = ACTIONS(1592), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_number] = ACTIONS(1590), - [sym_this] = ACTIONS(1592), - [sym_super] = ACTIONS(1592), - [sym_true] = ACTIONS(1592), - [sym_false] = ACTIONS(1592), - [sym_null] = ACTIONS(1592), - [sym_undefined] = ACTIONS(1592), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_readonly] = ACTIONS(1592), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), - [anon_sym_declare] = ACTIONS(1592), - [anon_sym_public] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_override] = ACTIONS(1592), - [anon_sym_module] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_number] = ACTIONS(1592), - [anon_sym_boolean] = ACTIONS(1592), - [anon_sym_string] = ACTIONS(1592), - [anon_sym_symbol] = ACTIONS(1592), - [anon_sym_abstract] = ACTIONS(1592), - [anon_sym_satisfies] = ACTIONS(1594), - [anon_sym_interface] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [sym__automatic_semicolon] = ACTIONS(1598), - [sym__ternary_qmark] = ACTIONS(1596), - }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_typeof] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_debugger] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LTtemplate_GT] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_QMARK_DOT] = ACTIONS(1484), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_GT_GT_GT] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1484), - [anon_sym_STAR_STAR] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1484), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1484), - [anon_sym_QMARK_QMARK] = ACTIONS(1484), - [anon_sym_instanceof] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [sym_this] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [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_abstract] = ACTIONS(1486), - [anon_sym_satisfies] = ACTIONS(1486), - [anon_sym_interface] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [sym__automatic_semicolon] = ACTIONS(1484), - [sym__ternary_qmark] = ACTIONS(1484), - }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [sym_identifier] = ACTIONS(1602), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_namespace] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_typeof] = ACTIONS(1602), - [anon_sym_import] = ACTIONS(1602), - [anon_sym_var] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_switch] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_await] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_try] = ACTIONS(1602), - [anon_sym_with] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_throw] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LTtemplate_GT] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1602), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_class] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1602), - [anon_sym_QMARK_DOT] = ACTIONS(1606), - [anon_sym_new] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_GT_GT] = ACTIONS(1604), - [anon_sym_GT_GT_GT] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1606), - [anon_sym_STAR_STAR] = ACTIONS(1606), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_EQ_EQ] = ACTIONS(1604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1606), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_QMARK_QMARK] = ACTIONS(1606), - [anon_sym_instanceof] = ACTIONS(1604), - [anon_sym_TILDE] = ACTIONS(1600), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1600), - [sym_this] = ACTIONS(1602), - [sym_super] = ACTIONS(1602), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(1602), - [anon_sym_satisfies] = ACTIONS(1604), - [anon_sym_interface] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [sym__automatic_semicolon] = ACTIONS(1608), - [sym__ternary_qmark] = ACTIONS(1606), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_else] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_with] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_debugger] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_throw] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LTtemplate_GT] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_class] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_function] = ACTIONS(1612), - [anon_sym_QMARK_DOT] = ACTIONS(1610), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1612), - [anon_sym_GT_GT_GT] = ACTIONS(1610), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_STAR_STAR] = ACTIONS(1610), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_EQ_EQ] = ACTIONS(1612), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1612), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1610), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_QMARK_QMARK] = ACTIONS(1610), - [anon_sym_instanceof] = ACTIONS(1612), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_delete] = ACTIONS(1612), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_number] = ACTIONS(1610), - [sym_this] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_AT] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1612), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_override] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_number] = ACTIONS(1612), - [anon_sym_boolean] = ACTIONS(1612), - [anon_sym_string] = ACTIONS(1612), - [anon_sym_symbol] = ACTIONS(1612), - [anon_sym_abstract] = ACTIONS(1612), - [anon_sym_satisfies] = ACTIONS(1612), - [anon_sym_interface] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [sym__automatic_semicolon] = ACTIONS(1610), - [sym__ternary_qmark] = ACTIONS(1610), - }, - [175] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_assignment_pattern] = STATE(3988), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3677), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [177] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_assignment_pattern] = STATE(4015), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3687), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(1614), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1620), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), @@ -39422,93 +39601,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [176] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1521), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3601), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3602), + [178] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3648), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3646), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1618), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -39527,97 +39705,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [177] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3324), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(202), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(1133), - [sym_identifier] = ACTIONS(550), + [179] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3164), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_accessibility_modifier] = STATE(193), + [sym_override_modifier] = STATE(223), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(1624), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(1630), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1626), + [anon_sym_readonly] = ACTIONS(1632), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -39632,303 +39809,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [178] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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_extends] = ACTIONS(1383), - }, - [179] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - [anon_sym_extends] = ACTIONS(1383), - }, [180] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3805), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3804), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1587), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3686), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1634), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -39948,302 +39914,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(756), }, [181] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - [anon_sym_extends] = ACTIONS(1383), - }, - [182] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1369), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - [anon_sym_extends] = ACTIONS(1383), - }, - [183] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1533), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3719), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3724), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1531), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3665), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3666), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1630), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -40262,93 +40017,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [184] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1935), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [182] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1383), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -40365,95 +40119,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1070), [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), - [anon_sym_extends] = ACTIONS(1383), + [anon_sym_extends] = ACTIONS(1385), }, - [185] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1547), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3558), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [183] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1620), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3736), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3737), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_RBRACK] = ACTIONS(1632), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -40472,93 +40225,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [186] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1577), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3706), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3709), + [184] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3778), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3779), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -40577,93 +40329,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [187] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1593), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3707), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3708), + [185] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + [anon_sym_extends] = ACTIONS(1385), + }, + [186] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1585), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3706), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3707), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -40682,82 +40537,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, + [187] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + [anon_sym_extends] = ACTIONS(1385), + }, [188] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -40770,304 +40728,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - [anon_sym_extends] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + [anon_sym_extends] = ACTIONS(1385), }, [189] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1607), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3621), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3614), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + [anon_sym_extends] = ACTIONS(1385), }, [190] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1608), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(3678), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [aux_sym_array_repeat1] = STATE(3679), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), - }, - [191] = { - [sym_import] = STATE(1810), - [sym_expression_statement] = STATE(222), - [sym_empty_statement] = STATE(222), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1371), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1383), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -41085,212 +40936,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), + [anon_sym_extends] = ACTIONS(1385), }, - [192] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3327), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_override_modifier] = STATE(208), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [191] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1597), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3708), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(642), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1642), - [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(704), - [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_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [193] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(4328), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4328), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [192] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1567), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(3627), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [aux_sym_array_repeat1] = STATE(3628), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -41309,103 +41161,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [194] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_assignment_pattern] = STATE(3914), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3637), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [193] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3272), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_override_modifier] = STATE(206), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(1648), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1650), [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_override] = ACTIONS(704), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -41413,62 +41264,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [195] = { - [sym_import] = STATE(1810), - [sym_expression_statement] = STATE(223), - [sym_empty_statement] = STATE(223), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3884), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [194] = { + [sym_import] = STATE(1905), + [sym_expression_statement] = STATE(224), + [sym_empty_statement] = STATE(224), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -41476,14 +41326,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -41501,317 +41351,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [196] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_spread_element] = STATE(4311), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4311), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), - }, - [197] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1641), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2844), - [sym_assignment_pattern] = STATE(3914), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2844), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2844), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3637), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1070), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_namespace] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(578), - [anon_sym_readonly] = ACTIONS(578), - [anon_sym_get] = ACTIONS(578), - [anon_sym_set] = ACTIONS(578), - [anon_sym_declare] = ACTIONS(578), - [anon_sym_public] = ACTIONS(578), - [anon_sym_private] = ACTIONS(578), - [anon_sym_protected] = ACTIONS(578), - [anon_sym_override] = ACTIONS(578), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(578), - [anon_sym_number] = ACTIONS(578), - [anon_sym_boolean] = ACTIONS(578), - [anon_sym_string] = ACTIONS(578), - [anon_sym_symbol] = ACTIONS(578), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [198] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3412), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_override_modifier] = STATE(216), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [195] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_override_modifier] = STATE(220), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(1650), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1652), @@ -41829,287 +41470,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [199] = { - [sym_import] = STATE(1627), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - }, - [200] = { - [sym_identifier] = ACTIONS(1656), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(1656), - [anon_sym_import] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(1656), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LTtemplate_GT] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1656), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_function] = ACTIONS(1656), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1656), - [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(1658), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_delete] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_number] = ACTIONS(1658), - [sym_this] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_true] = ACTIONS(1656), - [sym_false] = ACTIONS(1656), - [sym_null] = ACTIONS(1656), - [sym_undefined] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_readonly] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(1656), - [anon_sym_set] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_protected] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_number] = ACTIONS(1656), - [anon_sym_boolean] = ACTIONS(1656), - [anon_sym_string] = ACTIONS(1656), - [anon_sym_symbol] = ACTIONS(1656), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [201] = { - [sym_import] = STATE(1627), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1660), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [196] = { + [sym_import] = STATE(1905), + [sym_expression_statement] = STATE(225), + [sym_empty_statement] = STATE(225), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3858), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -42120,113 +41555,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [202] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3406), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [197] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_assignment_pattern] = STATE(4054), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3721), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(1662), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -42241,156 +41676,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [203] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [204] = { - [sym_identifier] = ACTIONS(1668), - [anon_sym_export] = ACTIONS(1668), + [198] = { + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(1668), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_await] = ACTIONS(1654), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LTtemplate_GT] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_LTtemplate_GT] = ACTIONS(1656), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1668), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1668), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_function] = ACTIONS(1668), + [anon_sym_class] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_function] = ACTIONS(1654), [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1668), - [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(1670), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1656), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -42399,242 +41729,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1668), - [anon_sym_delete] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_this] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_true] = ACTIONS(1668), - [sym_false] = ACTIONS(1668), - [sym_null] = ACTIONS(1668), - [sym_undefined] = ACTIONS(1668), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_readonly] = ACTIONS(1668), - [anon_sym_get] = ACTIONS(1668), - [anon_sym_set] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_protected] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_any] = ACTIONS(1668), - [anon_sym_number] = ACTIONS(1668), - [anon_sym_boolean] = ACTIONS(1668), - [anon_sym_string] = ACTIONS(1668), - [anon_sym_symbol] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_void] = ACTIONS(1654), + [anon_sym_delete] = ACTIONS(1654), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1656), + [sym_number] = ACTIONS(1656), + [sym_this] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_true] = ACTIONS(1654), + [sym_false] = ACTIONS(1654), + [sym_null] = ACTIONS(1654), + [sym_undefined] = ACTIONS(1654), + [anon_sym_AT] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_readonly] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(1654), + [anon_sym_set] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_declare] = ACTIONS(1654), + [anon_sym_public] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_any] = ACTIONS(1654), + [anon_sym_number] = ACTIONS(1654), + [anon_sym_boolean] = ACTIONS(1654), + [anon_sym_string] = ACTIONS(1654), + [anon_sym_symbol] = ACTIONS(1654), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [205] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1163), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(3617), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(3617), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1163), - [sym_subscript_expression] = STATE(1163), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(3617), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1163), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1680), - [anon_sym_let] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(149), }, - [206] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1690), + [199] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(4201), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4201), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(1658), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -42653,568 +41882,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [207] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [208] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3360), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(634), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1694), - [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), - }, - [209] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1696), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - }, - [210] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1698), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [211] = { - [sym_import] = STATE(1627), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1369), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [200] = { + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(212), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_import] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_await] = ACTIONS(1662), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_LTtemplate_GT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_class] = ACTIONS(1662), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_function] = ACTIONS(1662), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(1664), + [anon_sym_void] = ACTIONS(1662), + [anon_sym_delete] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1664), + [anon_sym_DASH_DASH] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1664), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1662), + [sym_super] = ACTIONS(1662), + [sym_true] = ACTIONS(1662), + [sym_false] = ACTIONS(1662), + [sym_null] = ACTIONS(1662), + [sym_undefined] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_readonly] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1662), + [anon_sym_set] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_declare] = ACTIONS(1662), + [anon_sym_public] = ACTIONS(1662), + [anon_sym_private] = ACTIONS(1662), + [anon_sym_protected] = ACTIONS(1662), + [anon_sym_override] = ACTIONS(1662), + [anon_sym_module] = ACTIONS(1662), + [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_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), }, - [212] = { - [sym_identifier] = ACTIONS(1668), - [anon_sym_export] = ACTIONS(1668), + [201] = { + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(1662), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1662), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_namespace] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_import] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(1668), + [anon_sym_await] = ACTIONS(1662), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LTtemplate_GT] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), + [anon_sym_yield] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_LTtemplate_GT] = ACTIONS(1664), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1668), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1668), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_function] = ACTIONS(1668), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1668), - [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(1670), + [anon_sym_class] = ACTIONS(1662), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_function] = ACTIONS(1662), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1662), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1664), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -43223,101 +42038,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1668), - [anon_sym_delete] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_this] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_true] = ACTIONS(1668), - [sym_false] = ACTIONS(1668), - [sym_null] = ACTIONS(1668), - [sym_undefined] = ACTIONS(1668), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_readonly] = ACTIONS(1668), - [anon_sym_get] = ACTIONS(1668), - [anon_sym_set] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_protected] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_any] = ACTIONS(1668), - [anon_sym_number] = ACTIONS(1668), - [anon_sym_boolean] = ACTIONS(1668), - [anon_sym_string] = ACTIONS(1668), - [anon_sym_symbol] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1664), + [anon_sym_void] = ACTIONS(1662), + [anon_sym_delete] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1664), + [anon_sym_DASH_DASH] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1664), + [sym_number] = ACTIONS(1664), + [sym_this] = ACTIONS(1662), + [sym_super] = ACTIONS(1662), + [sym_true] = ACTIONS(1662), + [sym_false] = ACTIONS(1662), + [sym_null] = ACTIONS(1662), + [sym_undefined] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_readonly] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1662), + [anon_sym_set] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_declare] = ACTIONS(1662), + [anon_sym_public] = ACTIONS(1662), + [anon_sym_private] = ACTIONS(1662), + [anon_sym_protected] = ACTIONS(1662), + [anon_sym_override] = ACTIONS(1662), + [anon_sym_module] = ACTIONS(1662), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [213] = { - [sym_identifier] = ACTIONS(1656), - [anon_sym_export] = ACTIONS(1656), + [202] = { + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1656), + [anon_sym_type] = ACTIONS(1654), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1656), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1656), - [anon_sym_import] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_typeof] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1656), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(1656), + [anon_sym_await] = ACTIONS(1654), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LTtemplate_GT] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), + [anon_sym_yield] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_LTtemplate_GT] = ACTIONS(1656), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1656), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1656), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_function] = ACTIONS(1656), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [anon_sym_new] = ACTIONS(1656), - [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(1658), + [anon_sym_class] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_function] = ACTIONS(1654), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1656), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -43326,139 +42141,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_delete] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_number] = ACTIONS(1658), - [sym_this] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_true] = ACTIONS(1656), - [sym_false] = ACTIONS(1656), - [sym_null] = ACTIONS(1656), - [sym_undefined] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_readonly] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(1656), - [anon_sym_set] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_protected] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_number] = ACTIONS(1656), - [anon_sym_boolean] = ACTIONS(1656), - [anon_sym_string] = ACTIONS(1656), - [anon_sym_symbol] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_void] = ACTIONS(1654), + [anon_sym_delete] = ACTIONS(1654), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1656), + [sym_number] = ACTIONS(1656), + [sym_this] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_true] = ACTIONS(1654), + [sym_false] = ACTIONS(1654), + [sym_null] = ACTIONS(1654), + [sym_undefined] = ACTIONS(1654), + [anon_sym_AT] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_readonly] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(1654), + [anon_sym_set] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_declare] = ACTIONS(1654), + [anon_sym_public] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_any] = ACTIONS(1654), + [anon_sym_number] = ACTIONS(1654), + [anon_sym_boolean] = ACTIONS(1654), + [anon_sym_string] = ACTIONS(1654), + [anon_sym_symbol] = ACTIONS(1654), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [214] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1702), + [203] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2954), + [sym_assignment_pattern] = STATE(4054), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2954), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2954), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3721), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_namespace] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(574), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(552), + [anon_sym_readonly] = ACTIONS(552), + [anon_sym_get] = ACTIONS(552), + [anon_sym_set] = ACTIONS(552), + [anon_sym_declare] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_any] = ACTIONS(552), + [anon_sym_number] = ACTIONS(552), + [anon_sym_boolean] = ACTIONS(552), + [anon_sym_string] = ACTIONS(552), + [anon_sym_symbol] = ACTIONS(552), + }, + [204] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1714), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_spread_element] = STATE(4100), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4100), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -43477,92 +42397,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [215] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1935), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1704), + [205] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [206] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3424), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(1670), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1672), + [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), + }, + [207] = { + [sym_import] = STATE(1730), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [208] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1676), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -43580,95 +42805,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [216] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3342), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), + [209] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [210] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(1706), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1652), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -43683,75 +43009,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [217] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1543), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3952), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [211] = { + [sym_import] = STATE(1730), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1371), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1710), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -43769,211 +43095,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(1710), - }, - [218] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2879), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2879), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2879), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_pattern] = STATE(3327), - [sym_rest_pattern] = STATE(2854), - [sym_non_null_expression] = STATE(1066), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(550), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(642), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1642), - [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_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [219] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1712), + [212] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1682), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -43992,91 +43213,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [220] = { - [sym_import] = STATE(2054), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2409), - [sym__type_query_subscript_expression] = STATE(2410), - [sym__type_query_call_expression] = STATE(2510), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1714), + [213] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [214] = { + [sym_import] = STATE(1730), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1686), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + }, + [215] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1586), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3897), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(1688), + }, + [216] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [217] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1692), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -44095,193 +43723,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, + [218] = { + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1694), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [219] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1166), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(3625), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1166), + [sym_subscript_expression] = STATE(1166), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1166), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1712), + [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), + }, + [220] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3268), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1714), + [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), + }, [221] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym__type_query_member_expression] = STATE(2336), - [sym__type_query_subscript_expression] = STATE(2331), - [sym__type_query_call_expression] = STATE(2368), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1323), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2335), + [sym__type_query_subscript_expression] = STATE(2362), + [sym__type_query_call_expression] = STATE(2383), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1716), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [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), }, [222] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4409), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), + [sym_import] = STATE(2076), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym__type_query_member_expression] = STATE(2415), + [sym__type_query_subscript_expression] = STATE(2416), + [sym__type_query_call_expression] = STATE(2532), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1718), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -44301,89 +44234,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(756), }, [223] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4360), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2921), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2921), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2921), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_pattern] = STATE(3273), + [sym_rest_pattern] = STATE(2953), + [sym_non_null_expression] = STATE(1063), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(606), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(1720), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1722), + [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), + }, + [224] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1719), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4308), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -44402,89 +44436,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [224] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [225] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1702), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4413), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -44503,291 +44537,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [225] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1463), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [226] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1504), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_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), }, - [226] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_namespace] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [227] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1506), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2018), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_readonly] = ACTIONS(1726), - [anon_sym_get] = ACTIONS(1726), - [anon_sym_set] = ACTIONS(1726), - [anon_sym_declare] = ACTIONS(1726), - [anon_sym_public] = ACTIONS(1726), - [anon_sym_private] = ACTIONS(1726), - [anon_sym_protected] = ACTIONS(1726), - [anon_sym_override] = ACTIONS(1726), - [anon_sym_module] = ACTIONS(1726), - [anon_sym_any] = ACTIONS(1726), - [anon_sym_number] = ACTIONS(1726), - [anon_sym_boolean] = ACTIONS(1726), - [anon_sym_string] = ACTIONS(1726), - [anon_sym_symbol] = ACTIONS(1726), + [anon_sym_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), }, - [227] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1666), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4429), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [228] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1737), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4155), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -44806,279 +44837,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [228] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_namespace] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_readonly] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1736), - [anon_sym_set] = ACTIONS(1736), - [anon_sym_declare] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_protected] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_module] = ACTIONS(1736), - [anon_sym_any] = ACTIONS(1736), - [anon_sym_number] = ACTIONS(1736), - [anon_sym_boolean] = ACTIONS(1736), - [anon_sym_string] = ACTIONS(1736), - [anon_sym_symbol] = ACTIONS(1736), - }, [229] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_namespace] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_readonly] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(1744), - [anon_sym_set] = ACTIONS(1744), - [anon_sym_declare] = ACTIONS(1744), - [anon_sym_public] = ACTIONS(1744), - [anon_sym_private] = ACTIONS(1744), - [anon_sym_protected] = ACTIONS(1744), - [anon_sym_override] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [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), - }, - [230] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1089), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1370), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_namespace] = ACTIONS(1754), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1086), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1486), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1086), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1734), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1758), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), [anon_sym_DQUOTE] = ACTIONS(83), @@ -45091,193 +44919,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1762), + [sym_undefined] = ACTIONS(1742), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_readonly] = ACTIONS(1752), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_declare] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_module] = ACTIONS(1752), - [anon_sym_any] = ACTIONS(1752), - [anon_sym_number] = ACTIONS(1752), - [anon_sym_boolean] = ACTIONS(1752), - [anon_sym_string] = ACTIONS(1752), - [anon_sym_symbol] = ACTIONS(1752), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), }, - [231] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1764), - [anon_sym_export] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_namespace] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [230] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1400), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1556), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_readonly] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1766), - [anon_sym_set] = ACTIONS(1766), - [anon_sym_declare] = ACTIONS(1766), - [anon_sym_public] = ACTIONS(1766), - [anon_sym_private] = ACTIONS(1766), - [anon_sym_protected] = ACTIONS(1766), - [anon_sym_override] = ACTIONS(1766), - [anon_sym_module] = ACTIONS(1766), - [anon_sym_any] = ACTIONS(1766), - [anon_sym_number] = ACTIONS(1766), - [anon_sym_boolean] = ACTIONS(1766), - [anon_sym_string] = ACTIONS(1766), - [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [232] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1878), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1398), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [231] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1989), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1374), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1746), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -45295,509 +45121,804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [233] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_mapped_type_clause] = STATE(4337), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_namespace] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [232] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1431), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1562), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_readonly] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1776), - [anon_sym_set] = ACTIONS(1776), - [anon_sym_declare] = ACTIONS(1776), - [anon_sym_public] = ACTIONS(1776), - [anon_sym_private] = ACTIONS(1776), - [anon_sym_protected] = ACTIONS(1776), - [anon_sym_override] = ACTIONS(1776), - [anon_sym_module] = ACTIONS(1776), - [anon_sym_any] = ACTIONS(1776), - [anon_sym_number] = ACTIONS(1776), - [anon_sym_boolean] = ACTIONS(1776), - [anon_sym_string] = ACTIONS(1776), - [anon_sym_symbol] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [234] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3168), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3894), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_namespace] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [233] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1431), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_readonly] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1736), - [anon_sym_set] = ACTIONS(1736), - [anon_sym_declare] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_protected] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_module] = ACTIONS(1736), - [anon_sym_any] = ACTIONS(1736), - [anon_sym_number] = ACTIONS(1736), - [anon_sym_boolean] = ACTIONS(1736), - [anon_sym_string] = ACTIONS(1736), - [anon_sym_symbol] = ACTIONS(1736), + [anon_sym_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), }, - [235] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_namespace] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [234] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1509), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1564), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [235] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1835), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_readonly] = ACTIONS(1726), - [anon_sym_get] = ACTIONS(1726), - [anon_sym_set] = ACTIONS(1726), - [anon_sym_declare] = ACTIONS(1726), - [anon_sym_public] = ACTIONS(1726), - [anon_sym_private] = ACTIONS(1726), - [anon_sym_protected] = ACTIONS(1726), - [anon_sym_override] = ACTIONS(1726), - [anon_sym_module] = ACTIONS(1726), - [anon_sym_any] = ACTIONS(1726), - [anon_sym_number] = ACTIONS(1726), - [anon_sym_boolean] = ACTIONS(1726), - [anon_sym_string] = ACTIONS(1726), - [anon_sym_symbol] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [236] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1400), + [sym_parenthesized_expression] = STATE(1033), [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [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), }, [237] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4430), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1989), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1754), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [238] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1834), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [239] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1684), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4107), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -45816,77 +45937,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [238] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1089), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1370), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_namespace] = ACTIONS(1786), + [240] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3193), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3909), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1748), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_readonly] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_any] = ACTIONS(1750), + [anon_sym_number] = ACTIONS(1750), + [anon_sym_boolean] = ACTIONS(1750), + [anon_sym_string] = ACTIONS(1750), + [anon_sym_symbol] = ACTIONS(1750), + }, + [241] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1086), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1486), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1086), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_namespace] = ACTIONS(1762), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), [anon_sym_DQUOTE] = ACTIONS(83), @@ -45899,193 +46119,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1762), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_readonly] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(1784), - [anon_sym_set] = ACTIONS(1784), - [anon_sym_declare] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_protected] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_module] = ACTIONS(1784), - [anon_sym_any] = ACTIONS(1784), - [anon_sym_number] = ACTIONS(1784), - [anon_sym_boolean] = ACTIONS(1784), - [anon_sym_string] = ACTIONS(1784), - [anon_sym_symbol] = ACTIONS(1784), - }, - [239] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_undefined] = ACTIONS(1742), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), }, - [240] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1860), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [242] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1911), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1438), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1746), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -46103,105 +46221,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [241] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4407), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [243] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_namespace] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_readonly] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_declare] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_any] = ACTIONS(1768), + [anon_sym_number] = ACTIONS(1768), + [anon_sym_boolean] = ACTIONS(1768), + [anon_sym_string] = ACTIONS(1768), + [anon_sym_symbol] = ACTIONS(1768), + }, + [244] = { + [sym_namespace_export] = STATE(3875), + [sym_export_clause] = STATE(3498), + [sym_declaration] = STATE(701), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), + }, + [245] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1748), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_readonly] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_any] = ACTIONS(1750), + [anon_sym_number] = ACTIONS(1750), + [anon_sym_boolean] = ACTIONS(1750), + [anon_sym_string] = ACTIONS(1750), + [anon_sym_symbol] = ACTIONS(1750), + }, + [246] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1748), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_readonly] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_any] = ACTIONS(1750), + [anon_sym_number] = ACTIONS(1750), + [anon_sym_boolean] = ACTIONS(1750), + [anon_sym_string] = ACTIONS(1750), + [anon_sym_symbol] = ACTIONS(1750), + }, + [247] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_namespace] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_readonly] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_declare] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_any] = ACTIONS(1768), + [anon_sym_number] = ACTIONS(1768), + [anon_sym_boolean] = ACTIONS(1768), + [anon_sym_string] = ACTIONS(1768), + [anon_sym_symbol] = ACTIONS(1768), + }, + [248] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1487), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4122), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -46220,89 +46837,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [242] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4408), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [249] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1825), + [anon_sym_export] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_get] = ACTIONS(1827), + [anon_sym_set] = ACTIONS(1827), + [anon_sym_declare] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_protected] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_module] = ACTIONS(1827), + [anon_sym_any] = ACTIONS(1827), + [anon_sym_number] = ACTIONS(1827), + [anon_sym_boolean] = ACTIONS(1827), + [anon_sym_string] = ACTIONS(1827), + [anon_sym_symbol] = ACTIONS(1827), + }, + [250] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1835), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1457), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), + }, + [251] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1504), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1348), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -46321,393 +47137,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [243] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1764), - [anon_sym_export] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_namespace] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [252] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1509), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1969), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_readonly] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1766), - [anon_sym_set] = ACTIONS(1766), - [anon_sym_declare] = ACTIONS(1766), - [anon_sym_public] = ACTIONS(1766), - [anon_sym_private] = ACTIONS(1766), - [anon_sym_protected] = ACTIONS(1766), - [anon_sym_override] = ACTIONS(1766), - [anon_sym_module] = ACTIONS(1766), - [anon_sym_any] = ACTIONS(1766), - [anon_sym_number] = ACTIONS(1766), - [anon_sym_boolean] = ACTIONS(1766), - [anon_sym_string] = ACTIONS(1766), - [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [244] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1568), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [253] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_mapped_type_clause] = STATE(4184), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_namespace] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_get] = ACTIONS(1835), + [anon_sym_set] = ACTIONS(1835), + [anon_sym_declare] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_private] = ACTIONS(1835), + [anon_sym_protected] = ACTIONS(1835), + [anon_sym_override] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_any] = ACTIONS(1835), + [anon_sym_number] = ACTIONS(1835), + [anon_sym_boolean] = ACTIONS(1835), + [anon_sym_string] = ACTIONS(1835), + [anon_sym_symbol] = ACTIONS(1835), }, - [245] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1385), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1556), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [254] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1509), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2004), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_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), }, - [246] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1387), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1535), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), + [255] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1835), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1411), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), [anon_sym_export] = ACTIONS(870), [anon_sym_type] = ACTIONS(870), [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -46725,74 +47537,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [247] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1557), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3953), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [256] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1601), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3813), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -46810,105 +47621,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [248] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4144), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [257] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1755), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4404), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -46927,89 +47737,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [249] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4132), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [258] = { + [sym_namespace_export] = STATE(3875), + [sym_export_clause] = STATE(3498), + [sym_declaration] = STATE(701), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), + }, + [259] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4397), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -47028,89 +47937,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [250] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4126), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [260] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4097), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -47129,89 +48037,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [251] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1405), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4367), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [261] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1749), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4386), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -47230,89 +48137,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [252] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4121), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [262] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4375), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -47331,493 +48237,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [253] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1424), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1534), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [263] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1387), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - }, - [254] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1089), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1370), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_namespace] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1762), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_readonly] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1794), - [anon_sym_set] = ACTIONS(1794), - [anon_sym_declare] = ACTIONS(1794), - [anon_sym_public] = ACTIONS(1794), - [anon_sym_private] = ACTIONS(1794), - [anon_sym_protected] = ACTIONS(1794), - [anon_sym_override] = ACTIONS(1794), - [anon_sym_module] = ACTIONS(1794), - [anon_sym_any] = ACTIONS(1794), - [anon_sym_number] = ACTIONS(1794), - [anon_sym_boolean] = ACTIONS(1794), - [anon_sym_string] = ACTIONS(1794), - [anon_sym_symbol] = ACTIONS(1794), - }, - [255] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1525), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_sequence_expression] = STATE(3815), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [256] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1878), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1800), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [257] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1431), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4167), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [264] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4120), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -47836,89 +48437,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [258] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4453), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [265] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1509), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1350), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -47937,190 +48537,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [259] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1860), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1785), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - }, - [260] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4317), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [266] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1506), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1349), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -48139,89 +48637,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [261] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4454), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [267] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1086), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1486), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1086), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_get] = ACTIONS(1845), + [anon_sym_set] = ACTIONS(1845), + [anon_sym_declare] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_private] = ACTIONS(1845), + [anon_sym_protected] = ACTIONS(1845), + [anon_sym_override] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_any] = ACTIONS(1845), + [anon_sym_number] = ACTIONS(1845), + [anon_sym_boolean] = ACTIONS(1845), + [anon_sym_string] = ACTIONS(1845), + [anon_sym_symbol] = ACTIONS(1845), + }, + [268] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1911), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [269] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1506), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1977), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [270] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1504), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1981), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [271] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4228), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -48240,180 +49137,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [262] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1961), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), + [272] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1387), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2032), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [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), }, - [263] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1089), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1370), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_namespace] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(169), + [273] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1834), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1413), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -48424,208 +49319,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1762), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_readonly] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(1784), - [anon_sym_set] = ACTIONS(1784), - [anon_sym_declare] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_protected] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_module] = ACTIONS(1784), - [anon_sym_any] = ACTIONS(1784), - [anon_sym_number] = ACTIONS(1784), - [anon_sym_boolean] = ACTIONS(1784), - [anon_sym_string] = ACTIONS(1784), - [anon_sym_symbol] = ACTIONS(1784), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [264] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_namespace] = ACTIONS(1738), + [274] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1825), + [anon_sym_export] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1829), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_readonly] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1736), - [anon_sym_set] = ACTIONS(1736), - [anon_sym_declare] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_protected] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_module] = ACTIONS(1736), - [anon_sym_any] = ACTIONS(1736), - [anon_sym_number] = ACTIONS(1736), - [anon_sym_boolean] = ACTIONS(1736), - [anon_sym_string] = ACTIONS(1736), - [anon_sym_symbol] = ACTIONS(1736), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_get] = ACTIONS(1827), + [anon_sym_set] = ACTIONS(1827), + [anon_sym_declare] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_protected] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_module] = ACTIONS(1827), + [anon_sym_any] = ACTIONS(1827), + [anon_sym_number] = ACTIONS(1827), + [anon_sym_boolean] = ACTIONS(1827), + [anon_sym_string] = ACTIONS(1827), + [anon_sym_symbol] = ACTIONS(1827), }, - [265] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1342), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [275] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4300), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -48644,89 +49537,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [266] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1385), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [276] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1387), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1356), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -48745,180 +49637,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [267] = { - [sym_import] = STATE(1401), + [277] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + }, + [278] = { + [sym_import] = STATE(1516), [sym_statement_block] = STATE(1387), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1355), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1577), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [268] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1852), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [279] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [280] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1832), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1414), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -48929,97 +50019,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [269] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1858), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [281] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [282] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1086), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1486), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1086), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -49030,97 +50219,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1742), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), }, - [270] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1864), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [283] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1400), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [284] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1400), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1288), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [285] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1086), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1486), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1086), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_namespace] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -49131,97 +50519,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1742), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), }, - [271] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1089), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1370), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_namespace] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(169), + [286] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1861), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1459), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -49232,97 +50619,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1762), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_readonly] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1794), - [anon_sym_set] = ACTIONS(1794), - [anon_sym_declare] = ACTIONS(1794), - [anon_sym_public] = ACTIONS(1794), - [anon_sym_private] = ACTIONS(1794), - [anon_sym_protected] = ACTIONS(1794), - [anon_sym_override] = ACTIONS(1794), - [anon_sym_module] = ACTIONS(1794), - [anon_sym_any] = ACTIONS(1794), - [anon_sym_number] = ACTIONS(1794), - [anon_sym_boolean] = ACTIONS(1794), - [anon_sym_string] = ACTIONS(1794), - [anon_sym_symbol] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [272] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1864), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1356), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [287] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [288] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1832), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -49333,92 +50819,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [273] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1858), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1402), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [289] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1861), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1409), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1746), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -49436,191 +50921,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [274] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1424), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1320), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [290] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1209), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), }, - [275] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1852), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1397), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [291] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1086), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1486), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3122), + [sym_non_null_expression] = STATE(1086), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3934), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_get] = ACTIONS(1845), + [anon_sym_set] = ACTIONS(1845), + [anon_sym_declare] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_private] = ACTIONS(1845), + [anon_sym_protected] = ACTIONS(1845), + [anon_sym_override] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_any] = ACTIONS(1845), + [anon_sym_number] = ACTIONS(1845), + [anon_sym_boolean] = ACTIONS(1845), + [anon_sym_string] = ACTIONS(1845), + [anon_sym_symbol] = ACTIONS(1845), + }, + [292] = { + [sym_namespace_export] = STATE(3875), + [sym_export_clause] = STATE(3498), + [sym_declaration] = STATE(701), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), + }, + [293] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1832), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1441), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1746), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -49638,105 +51321,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [276] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(4264), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [294] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1911), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1477), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + }, + [295] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1582), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_sequence_expression] = STATE(3900), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), + }, + [296] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1431), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [297] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1504), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1525), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [298] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1293), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(3528), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -49755,882 +51837,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [277] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1511), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1986), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [278] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1463), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1981), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [279] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1424), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [280] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_mapped_type_clause] = STATE(4145), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1800), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_namespace] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [299] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1506), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1526), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_readonly] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1802), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1802), - [anon_sym_private] = ACTIONS(1802), - [anon_sym_protected] = ACTIONS(1802), - [anon_sym_override] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_any] = ACTIONS(1802), - [anon_sym_number] = ACTIONS(1802), - [anon_sym_boolean] = ACTIONS(1802), - [anon_sym_string] = ACTIONS(1802), - [anon_sym_symbol] = ACTIONS(1802), - }, - [281] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1387), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [282] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1385), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1988), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [283] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2028), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [284] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [300] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1509), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1527), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [285] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1961), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1412), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [301] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1834), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1451), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1746), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -50648,105 +52121,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [286] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1297), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(3483), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [302] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1989), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1449), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + }, + [303] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1706), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4391), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -50765,89 +52337,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [287] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1463), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1294), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [304] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1704), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4399), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -50866,281 +52437,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [288] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1463), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1565), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [305] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4405), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [306] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_sequence_expression] = STATE(4354), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [307] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1431), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1615), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [289] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1878), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1462), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [308] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1431), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1236), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [290] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1860), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1484), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [309] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1400), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1628), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [310] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1504), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1571), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [311] = { + [sym_import] = STATE(1905), + [sym_statement_block] = STATE(1861), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -51151,714 +53119,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [291] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1961), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [292] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1852), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1482), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [293] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1858), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [294] = { - [sym_import] = STATE(1810), - [sym_statement_block] = STATE(1864), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1478), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [312] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_mapped_type_clause] = STATE(4435), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1861), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), }, - [295] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1511), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1596), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [313] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1387), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1549), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [296] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1511), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1536), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [314] = { + [sym_import] = STATE(1516), + [sym_statement_block] = STATE(1506), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1568), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [297] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1744), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -51876,191 +53437,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [298] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1463), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1540), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [315] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1557), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [299] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1385), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1941), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -52078,494 +53536,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [300] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1424), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1523), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [301] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1387), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1571), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [302] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1385), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1572), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [303] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1573), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [316] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1542), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [304] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1387), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1948), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -52583,79 +53635,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [305] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1089), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1370), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_namespace] = ACTIONS(1754), + [317] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1371), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1758), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52666,209 +53716,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1762), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_readonly] = ACTIONS(1752), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_declare] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_module] = ACTIONS(1752), - [anon_sym_any] = ACTIONS(1752), - [anon_sym_number] = ACTIONS(1752), - [anon_sym_boolean] = ACTIONS(1752), - [anon_sym_string] = ACTIONS(1752), - [anon_sym_symbol] = ACTIONS(1752), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [306] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1424), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1957), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [318] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [307] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1511), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [319] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [320] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1570), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [321] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1599), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [322] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1627), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [323] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1964), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -52886,280 +54328,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [308] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1205), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(3137), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3809), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_namespace] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [324] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1602), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_readonly] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(1744), - [anon_sym_set] = ACTIONS(1744), - [anon_sym_declare] = ACTIONS(1744), - [anon_sym_public] = ACTIONS(1744), - [anon_sym_private] = ACTIONS(1744), - [anon_sym_protected] = ACTIONS(1744), - [anon_sym_override] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [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_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [309] = { - [sym_import] = STATE(1401), - [sym_statement_block] = STATE(1511), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1272), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [325] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1604), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [310] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [326] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1609), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [327] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1417), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -53170,1407 +54706,1393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [311] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1609), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [328] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1610), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [312] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1958), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [329] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1603), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [313] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1962), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [330] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1621), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [314] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [331] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1622), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [315] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), + [332] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_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), }, - [316] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), + [333] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_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), }, - [317] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1970), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [334] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [318] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [335] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1535), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [319] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1641), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [336] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [320] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1963), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [337] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1455), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [321] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1942), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [338] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1629), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [322] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [339] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [323] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), + [340] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2037), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_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), }, - [324] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [341] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -54588,478 +56110,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [325] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), + [342] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1618), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [326] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1584), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [327] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), - }, - [328] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), - }, - [329] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1461), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [343] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1514), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -55070,91 +56290,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [330] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1419), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [344] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1448), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -55172,105 +56391,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [331] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [345] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + }, + [346] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1476), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + }, + [347] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -55288,78 +56704,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [332] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [348] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1480), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -55372,94 +56787,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [333] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1400), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [349] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1483), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -55470,296 +56884,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [334] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), - }, - [335] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1253), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [336] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [350] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1485), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -55770,396 +56983,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - }, - [337] = { - [sym_namespace_export] = STATE(3911), - [sym_export_clause] = STATE(3514), - [sym_declaration] = STATE(677), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), - }, - [338] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [339] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_undefined] = ACTIONS(1136), [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_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [340] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1395), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [351] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1489), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56170,207 +57082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [341] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [342] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1466), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -56388,278 +57100,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [343] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1582), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [344] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [345] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1720), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [352] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1501), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56670,96 +57181,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - }, - [346] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1599), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + }, + [353] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1580), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [354] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1502), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56770,108 +57379,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [347] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [355] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [356] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1503), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), [anon_sym_get] = ACTIONS(870), @@ -56888,289 +57595,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [348] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1574), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [349] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1277), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [357] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1508), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [350] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), + [358] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1513), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), [anon_sym_export] = ACTIONS(870), [anon_sym_type] = ACTIONS(870), [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -57188,78 +57793,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [351] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [359] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1517), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -57272,105 +57876,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [352] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), + [360] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1415), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), [anon_sym_export] = ACTIONS(870), [anon_sym_type] = ACTIONS(870), [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -57388,189 +57991,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [353] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [361] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1472), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1859), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [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_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [354] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), + [362] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), [anon_sym_export] = ACTIONS(870), [anon_sym_type] = ACTIONS(870), [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -57588,89 +58189,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [355] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1956), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [363] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1869), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [364] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1976), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -57688,73 +58387,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [356] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1399), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [365] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1391), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -57772,394 +58470,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [357] = { - [sym_namespace_export] = STATE(3911), - [sym_export_clause] = STATE(3514), - [sym_declaration] = STATE(677), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [358] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [366] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(1871), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [359] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), + [367] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [368] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_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), }, - [360] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [369] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1423), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -58170,607 +58864,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [361] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [370] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1247), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1863), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [362] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(3409), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(3409), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(3409), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1109), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1865), - [anon_sym_export] = ACTIONS(854), - [anon_sym_type] = ACTIONS(854), - [anon_sym_namespace] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(854), - [anon_sym_readonly] = ACTIONS(854), - [anon_sym_get] = ACTIONS(854), - [anon_sym_set] = ACTIONS(854), - [anon_sym_declare] = ACTIONS(854), - [anon_sym_public] = ACTIONS(854), - [anon_sym_private] = ACTIONS(854), - [anon_sym_protected] = ACTIONS(854), - [anon_sym_override] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_any] = ACTIONS(854), - [anon_sym_number] = ACTIONS(854), - [anon_sym_boolean] = ACTIONS(854), - [anon_sym_string] = ACTIONS(854), - [anon_sym_symbol] = ACTIONS(854), - }, - [363] = { - [sym_namespace_export] = STATE(3911), - [sym_export_clause] = STATE(3514), - [sym_declaration] = STATE(677), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), - }, - [364] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1377), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [365] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1522), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [366] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1863), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), [anon_sym_readonly] = ACTIONS(756), @@ -58788,1073 +58981,765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [367] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1564), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [368] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [369] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1560), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [371] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2034), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, - [370] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1517), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [372] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2035), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, - [371] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1555), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [373] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2036), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, - [372] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1554), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [374] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1890), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [373] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1389), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [374] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1553), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [375] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [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_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [375] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1546), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [376] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(1873), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [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_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [376] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1545), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [377] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2026), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, - [377] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1373), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [378] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1462), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -59872,489 +59757,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [378] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [379] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1542), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2022), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, [380] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2011), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, [381] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1494), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [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), }, [382] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1458), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1398), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -60372,204 +60153,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [383] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1539), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1715), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [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_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, [384] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1871), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -60589,77 +60368,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(756), }, [385] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1439), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [386] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1396), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -60670,207 +60547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [386] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [387] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1859), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -60888,588 +60565,582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, + [387] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, [388] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2033), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), [anon_sym_PLUS_PLUS] = ACTIONS(694), [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1871), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [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), }, [389] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1325), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2038), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [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), }, [390] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1951), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [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_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), }, [391] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1593), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), - }, - [392] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1537), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1144), [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_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [393] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [392] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1244), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -61488,673 +61159,765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, + [393] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2019), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, [394] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_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), }, [395] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1999), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_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), }, [396] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1971), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1873), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, [397] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1561), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1144), [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_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [398] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1474), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2017), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [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), }, [399] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1906), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, [400] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1480), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1367), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -62172,294 +61935,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [401] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1560), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1144), [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_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [402] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(1875), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [403] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1396), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1436), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -62472,105 +62232,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, [404] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1935), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1554), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1859), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -62589,172 +62348,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1070), }, [405] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(2865), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(2865), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1056), - [sym_subscript_expression] = STATE(1056), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(2865), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1056), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1885), + [sym_number] = ACTIONS(1875), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_readonly] = ACTIONS(1879), - [anon_sym_get] = ACTIONS(1879), - [anon_sym_set] = ACTIONS(1879), - [anon_sym_declare] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [anon_sym_override] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_any] = ACTIONS(1879), - [anon_sym_number] = ACTIONS(1879), - [anon_sym_boolean] = ACTIONS(1879), - [anon_sym_string] = ACTIONS(1879), - [anon_sym_symbol] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, [406] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1468), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1376), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -62772,194 +62529,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [407] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1598), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - }, - [408] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1519), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -62970,96 +62626,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [409] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1487), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [408] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63070,96 +62725,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [410] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [409] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1488), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63170,96 +62824,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [411] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1489), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [410] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1482), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63270,96 +62923,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [412] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1491), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [411] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1679), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63370,96 +63022,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [413] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [412] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1478), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63470,96 +63121,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [414] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1510), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [413] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1474), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63570,96 +63220,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [415] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [414] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1670), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63672,94 +63321,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [416] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1512), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [415] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63770,196 +63418,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [417] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1508), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [416] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [418] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1505), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [417] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63972,94 +63618,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), }, - [419] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [418] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -64072,189 +63717,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [419] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1547), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [420] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1504), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, [421] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1521), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -64272,294 +64014,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [422] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1503), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1541), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [423] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1559), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1540), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [424] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1502), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -64570,96 +64309,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [425] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1500), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1537), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [426] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1574), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -64670,607 +64507,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [426] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, [427] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1393), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1536), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [428] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1485), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [429] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1534), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1144), [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), - }, - [430] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [431] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1936), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), + [429] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1533), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), [anon_sym_export] = ACTIONS(1070), [anon_sym_type] = ACTIONS(1070), [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), [anon_sym_void] = ACTIONS(1092), [anon_sym_delete] = ACTIONS(1092), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1070), [anon_sym_readonly] = ACTIONS(1070), @@ -65288,373 +64822,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), }, - [432] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1481), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [433] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1774), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), - }, - [434] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [435] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1450), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [430] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1466), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -65672,599 +64905,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [436] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [437] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), + [431] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [438] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1769), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), + [432] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1961), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [439] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), + [433] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(3246), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(3246), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(3246), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1133), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(854), + [anon_sym_type] = ACTIONS(854), + [anon_sym_namespace] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(860), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1879), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(854), + [anon_sym_readonly] = ACTIONS(854), + [anon_sym_get] = ACTIONS(854), + [anon_sym_set] = ACTIONS(854), + [anon_sym_declare] = ACTIONS(854), + [anon_sym_public] = ACTIONS(854), + [anon_sym_private] = ACTIONS(854), + [anon_sym_protected] = ACTIONS(854), + [anon_sym_override] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_any] = ACTIONS(854), + [anon_sym_number] = ACTIONS(854), + [anon_sym_boolean] = ACTIONS(854), + [anon_sym_string] = ACTIONS(854), + [anon_sym_symbol] = ACTIONS(854), }, - [440] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(63), + [434] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1361), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [441] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1766), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [435] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(1871), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), @@ -66272,89 +65400,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [442] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [436] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -66372,204 +65499,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [443] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1600), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [437] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [444] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), + [438] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1528), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [439] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1286), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1859), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -66588,273 +65812,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [445] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1115), - [sym_expression] = STATE(1473), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4392), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4392), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4390), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2389), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4392), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1115), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(776), - [anon_sym_type] = ACTIONS(776), - [anon_sym_namespace] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(810), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_void] = ACTIONS(810), - [anon_sym_delete] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(776), - [anon_sym_readonly] = ACTIONS(776), - [anon_sym_get] = ACTIONS(776), - [anon_sym_set] = ACTIONS(776), - [anon_sym_declare] = ACTIONS(776), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(776), - [anon_sym_module] = ACTIONS(776), - [anon_sym_any] = ACTIONS(776), - [anon_sym_number] = ACTIONS(776), - [anon_sym_boolean] = ACTIONS(776), - [anon_sym_string] = ACTIONS(776), - [anon_sym_symbol] = ACTIONS(776), - }, - [446] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1369), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(1875), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [447] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1445), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [440] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1371), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -66864,7 +65887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(1871), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), @@ -66872,205 +65895,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [448] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1562), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [441] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(1869), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [449] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1569), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [442] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1900), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [443] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -67088,78 +66208,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [450] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [444] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1611), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67170,91 +66289,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [451] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1444), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [445] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1869), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [446] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1440), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -67272,94 +66489,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [452] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1443), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [447] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1875), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), + [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), + }, + [448] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1909), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [449] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [450] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67370,106 +66883,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [453] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [451] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1559), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -67488,178 +67000,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [454] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [452] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [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_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [455] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [453] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67670,96 +67180,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [456] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [454] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67770,196 +67279,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), - }, - [457] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1575), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [458] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1429), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [455] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67970,96 +67378,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [459] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1421), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [456] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -68070,96 +67477,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [460] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1420), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [457] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1324), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [458] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1869), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [459] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -68170,301 +67774,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [460] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [461] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(2924), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(2924), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1074), + [sym_subscript_expression] = STATE(1074), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(2924), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1074), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1329), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1889), [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_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), }, [462] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1576), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [463] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(1875), + [sym_number] = ACTIONS(89), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), @@ -68472,304 +68172,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [464] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1616), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [465] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1597), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1572), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [466] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1586), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1339), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -68789,187 +68486,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(756), }, [467] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1321), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [468] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1317), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1338), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -68989,387 +68684,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(756), }, [469] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1316), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, [470] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1548), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [471] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1315), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1584), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, [472] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1314), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [473] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1322), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -69388,78 +69178,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [473] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1152), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4225), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4225), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4223), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1152), - [sym_subscript_expression] = STATE(1152), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2416), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4225), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [474] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1785), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1154), - [anon_sym_export] = ACTIONS(1024), - [anon_sym_type] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_function] = ACTIONS(802), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), [anon_sym_new] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_delete] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -69472,289 +69261,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1160), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(1024), - [anon_sym_set] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(1024), - [anon_sym_public] = ACTIONS(1024), - [anon_sym_private] = ACTIONS(1024), - [anon_sym_protected] = ACTIONS(1024), - [anon_sym_override] = ACTIONS(1024), - [anon_sym_module] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1024), - [anon_sym_number] = ACTIONS(1024), - [anon_sym_boolean] = ACTIONS(1024), - [anon_sym_string] = ACTIONS(1024), - [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), }, - [474] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1369), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [475] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4374), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4219), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1174), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(135), + [anon_sym_yield] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(1873), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [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), }, - [475] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1606), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [476] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), }, - [476] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1453), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [477] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -69772,204 +69558,796 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [477] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2026), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [478] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [479] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [478] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [480] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [481] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [482] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [483] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [484] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [485] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1321), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -69988,188 +70366,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [479] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1985), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [486] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1319), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [480] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), + [487] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4331), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4331), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4112), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2408), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4331), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1136), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_readonly] = ACTIONS(1070), + [anon_sym_get] = ACTIONS(1070), + [anon_sym_set] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_protected] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + }, + [488] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1156), + [sym_expression] = STATE(1750), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4214), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4214), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4212), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1156), + [sym_subscript_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2391), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4214), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1156), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_delete] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_readonly] = ACTIONS(1014), + [anon_sym_get] = ACTIONS(1014), + [anon_sym_set] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [anon_sym_public] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + }, + [489] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), [sym_expression] = STATE(1312), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -70188,88 +70762,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [481] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1310), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [490] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1304), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -70288,89 +70861,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [482] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1611), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [491] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1302), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), + }, + [492] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1447), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4379), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4379), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4377), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4379), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1120), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1130), + [anon_sym_export] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_namespace] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(870), [anon_sym_readonly] = ACTIONS(870), @@ -70388,88 +71059,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(870), [anon_sym_symbol] = ACTIONS(870), }, - [483] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1309), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [493] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1301), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -70488,1688 +71158,978 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [484] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2002), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [494] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [485] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), + [495] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1300), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [486] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2003), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [496] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1990), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [487] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1889), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), + [497] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1295), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1122), [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_static] = ACTIONS(756), + [anon_sym_readonly] = ACTIONS(756), + [anon_sym_get] = ACTIONS(756), + [anon_sym_set] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_override] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_any] = ACTIONS(756), + [anon_sym_number] = ACTIONS(756), + [anon_sym_boolean] = ACTIONS(756), + [anon_sym_string] = ACTIONS(756), + [anon_sym_symbol] = ACTIONS(756), }, - [488] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [498] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [489] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2005), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), + [499] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1481), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(1124), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [490] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2000), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [500] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [491] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2006), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [501] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [492] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2007), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [493] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2008), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [494] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2010), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [495] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1979), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [496] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2012), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [497] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [498] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2016), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [499] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2017), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [502] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1871), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [500] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1291), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [503] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1289), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -72188,573 +72148,666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [501] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [504] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1172), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [502] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2019), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [505] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1935), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [503] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1161), - [sym_expression] = STATE(1935), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4418), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4418), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4178), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2418), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4418), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1161), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [506] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1930), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1162), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_namespace] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1084), - [anon_sym_function] = ACTIONS(151), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_readonly] = ACTIONS(1070), - [anon_sym_get] = ACTIONS(1070), - [anon_sym_set] = ACTIONS(1070), - [anon_sym_declare] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_protected] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_any] = ACTIONS(1070), - [anon_sym_number] = ACTIONS(1070), - [anon_sym_boolean] = ACTIONS(1070), - [anon_sym_string] = ACTIONS(1070), - [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [504] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1295), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), + [507] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1595), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), }, - [505] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1140), - [sym_expression] = STATE(1617), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4383), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4383), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4343), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2400), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4383), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1140), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(870), - [anon_sym_type] = ACTIONS(870), - [anon_sym_namespace] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(876), + [508] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1152), + [sym_number] = ACTIONS(1869), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [506] = { - [sym_import] = STATE(1810), - [sym_parenthesized_expression] = STATE(1123), - [sym_expression] = STATE(1404), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1880), - [sym_object] = STATE(1810), - [sym_object_pattern] = STATE(4385), - [sym_array] = STATE(1810), - [sym_array_pattern] = STATE(4385), - [sym_glimmer_template] = STATE(1880), - [sym_glimmer_opening_tag] = STATE(3539), - [sym_jsx_element] = STATE(1880), - [sym_jsx_fragment] = STATE(1880), - [sym_jsx_opening_element] = STATE(2645), - [sym_jsx_self_closing_element] = STATE(1880), - [sym_class] = STATE(1810), - [sym_function] = STATE(1810), - [sym_generator_function] = STATE(1810), - [sym_arrow_function] = STATE(1810), - [sym__call_signature] = STATE(4389), - [sym_call_expression] = STATE(1810), - [sym_new_expression] = STATE(1880), - [sym_await_expression] = STATE(1880), - [sym_member_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1880), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1880), - [sym__destructuring_pattern] = STATE(4385), - [sym_ternary_expression] = STATE(1880), - [sym_binary_expression] = STATE(1880), - [sym_unary_expression] = STATE(1880), - [sym_update_expression] = STATE(1880), - [sym_string] = STATE(1810), - [sym_template_string] = STATE(1810), - [sym_regex] = STATE(1810), - [sym_meta_property] = STATE(1810), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1123), - [sym_as_expression] = STATE(1880), - [sym_satisfies_expression] = STATE(1880), - [sym_internal_module] = STATE(1880), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3456), + [509] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), + }, + [510] = { + [sym_import] = STATE(1905), + [sym_parenthesized_expression] = STATE(1128), + [sym_expression] = STATE(1382), + [sym_primary_expression] = STATE(1779), + [sym_yield_expression] = STATE(1946), + [sym_object] = STATE(1905), + [sym_object_pattern] = STATE(4400), + [sym_array] = STATE(1905), + [sym_array_pattern] = STATE(4400), + [sym_glimmer_template] = STATE(1946), + [sym_glimmer_opening_tag] = STATE(3553), + [sym_jsx_element] = STATE(1946), + [sym_jsx_opening_element] = STATE(2561), + [sym_jsx_self_closing_element] = STATE(1946), + [sym_class] = STATE(1905), + [sym_function] = STATE(1905), + [sym_generator_function] = STATE(1905), + [sym_arrow_function] = STATE(1905), + [sym__call_signature] = STATE(4401), + [sym_call_expression] = STATE(1905), + [sym_new_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_member_expression] = STATE(1128), + [sym_subscript_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1946), + [sym__augmented_assignment_lhs] = STATE(2404), + [sym_augmented_assignment_expression] = STATE(1946), + [sym__destructuring_pattern] = STATE(4400), + [sym_ternary_expression] = STATE(1946), + [sym_binary_expression] = STATE(1946), + [sym_unary_expression] = STATE(1946), + [sym_update_expression] = STATE(1946), + [sym_string] = STATE(1905), + [sym_template_string] = STATE(1905), + [sym_regex] = STATE(1905), + [sym_meta_property] = STATE(1905), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1128), + [sym_as_expression] = STATE(1946), + [sym_satisfies_expression] = STATE(1946), + [sym_internal_module] = STATE(1946), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3533), [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), + [anon_sym_export] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_namespace] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(1128), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(784), + [anon_sym_import] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(798), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(802), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -72772,204 +72825,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(906), - [anon_sym_readonly] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [anon_sym_public] = ACTIONS(906), - [anon_sym_private] = ACTIONS(906), - [anon_sym_protected] = ACTIONS(906), - [anon_sym_override] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_any] = ACTIONS(906), - [anon_sym_number] = ACTIONS(906), - [anon_sym_boolean] = ACTIONS(906), - [anon_sym_string] = ACTIONS(906), - [anon_sym_symbol] = ACTIONS(906), + [anon_sym_static] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_protected] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_any] = ACTIONS(926), + [anon_sym_number] = ACTIONS(926), + [anon_sym_boolean] = ACTIONS(926), + [anon_sym_string] = ACTIONS(926), + [anon_sym_symbol] = ACTIONS(926), }, - [507] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [511] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1144), + [sym_expression] = STATE(1529), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4369), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4369), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4329), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1144), + [sym_subscript_expression] = STATE(1144), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2402), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4369), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1146), + [anon_sym_export] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(832), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_void] = ACTIONS(832), + [anon_sym_delete] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(806), + [anon_sym_readonly] = ACTIONS(806), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_declare] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_any] = ACTIONS(806), + [anon_sym_number] = ACTIONS(806), + [anon_sym_boolean] = ACTIONS(806), + [anon_sym_string] = ACTIONS(806), + [anon_sym_symbol] = ACTIONS(806), + }, + [512] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(1859), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [508] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1302), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [513] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1245), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -72988,88 +73138,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [509] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1529), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [514] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1548), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -73088,288 +73237,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [510] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4345), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4345), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4110), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2388), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4345), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1138), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1138), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(980), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(972), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1144), - [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), - }, - [511] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1305), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(756), - [anon_sym_type] = ACTIONS(756), - [anon_sym_namespace] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [515] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1877), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1122), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(756), - [anon_sym_readonly] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [anon_sym_declare] = ACTIONS(756), - [anon_sym_public] = ACTIONS(756), - [anon_sym_private] = ACTIONS(756), - [anon_sym_protected] = ACTIONS(756), - [anon_sym_override] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_any] = ACTIONS(756), - [anon_sym_number] = ACTIONS(756), - [anon_sym_boolean] = ACTIONS(756), - [anon_sym_string] = ACTIONS(756), - [anon_sym_symbol] = ACTIONS(756), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [512] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1306), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [516] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1290), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -73388,188 +73435,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [513] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), + [517] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1907), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4402), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4402), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4402), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(948), + [anon_sym_type] = ACTIONS(948), + [anon_sym_namespace] = ACTIONS(950), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(974), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(956), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_class] = ACTIONS(141), + [anon_sym_async] = ACTIONS(964), + [anon_sym_function] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_void] = ACTIONS(974), + [anon_sym_delete] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), + [sym_number] = ACTIONS(624), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1172), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), + [anon_sym_static] = ACTIONS(948), + [anon_sym_readonly] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [anon_sym_declare] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_override] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(948), + [anon_sym_number] = ACTIONS(948), + [anon_sym_boolean] = ACTIONS(948), + [anon_sym_string] = ACTIONS(948), + [anon_sym_symbol] = ACTIONS(948), }, - [514] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1075), - [sym_expression] = STATE(1308), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4261), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4261), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4400), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2377), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4261), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), + [518] = { + [sym_import] = STATE(1516), + [sym_parenthesized_expression] = STATE(1079), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1357), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1516), + [sym_object_pattern] = STATE(4216), + [sym_array] = STATE(1516), + [sym_array_pattern] = STATE(4216), + [sym_glimmer_template] = STATE(1512), + [sym_glimmer_opening_tag] = STATE(3450), + [sym_jsx_element] = STATE(1512), + [sym_jsx_opening_element] = STATE(2554), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1516), + [sym_function] = STATE(1516), + [sym_generator_function] = STATE(1516), + [sym_arrow_function] = STATE(1516), + [sym__call_signature] = STATE(4376), + [sym_call_expression] = STATE(1516), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(1079), + [sym_subscript_expression] = STATE(1079), + [sym_assignment_expression] = STATE(1512), + [sym__augmented_assignment_lhs] = STATE(2393), + [sym_augmented_assignment_expression] = STATE(1512), + [sym__destructuring_pattern] = STATE(4216), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1516), + [sym_template_string] = STATE(1516), + [sym_regex] = STATE(1516), + [sym_meta_property] = STATE(1516), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(3113), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1512), + [sym_satisfies_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(3859), + [aux_sym_export_statement_repeat1] = STATE(3458), [sym_identifier] = ACTIONS(1104), [anon_sym_export] = ACTIONS(756), [anon_sym_type] = ACTIONS(756), [anon_sym_namespace] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(616), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(128), + [anon_sym_BANG] = ACTIONS(564), [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), + [anon_sym_await] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), + [anon_sym_class] = ACTIONS(141), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(145), [anon_sym_new] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_void] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), + [sym_number] = ACTIONS(1891), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(756), @@ -73588,267 +73633,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(756), [anon_sym_symbol] = ACTIONS(756), }, - [515] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1994), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [516] = { - [sym_import] = STATE(1401), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1243), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1401), - [sym_object_pattern] = STATE(4395), - [sym_array] = STATE(1401), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1406), - [sym_glimmer_opening_tag] = STATE(3518), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2663), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1401), - [sym_function] = STATE(1401), - [sym_generator_function] = STATE(1401), - [sym_arrow_function] = STATE(1401), - [sym__call_signature] = STATE(4263), - [sym_call_expression] = STATE(1401), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1406), - [sym__augmented_assignment_lhs] = STATE(2379), - [sym_augmented_assignment_expression] = STATE(1406), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_string] = STATE(1401), - [sym_template_string] = STATE(1401), - [sym_regex] = STATE(1401), - [sym_meta_property] = STATE(1401), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2953), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1406), - [sym_satisfies_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(3886), - [aux_sym_export_statement_repeat1] = STATE(3431), - [sym_identifier] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(928), - [anon_sym_type] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_number] = ACTIONS(568), - [sym_this] = ACTIONS(191), - [sym_super] = ACTIONS(191), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(928), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [anon_sym_declare] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_protected] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_any] = ACTIONS(928), - [anon_sym_number] = ACTIONS(928), - [anon_sym_boolean] = ACTIONS(928), - [anon_sym_string] = ACTIONS(928), - [anon_sym_symbol] = ACTIONS(928), - }, - [517] = { - [sym_declaration] = STATE(730), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), + [519] = { + [sym_declaration] = STATE(641), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73859,93 +73702,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [518] = { - [sym_declaration] = STATE(730), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), + [520] = { + [sym_declaration] = STATE(641), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73956,93 +73799,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [519] = { - [sym_declaration] = STATE(730), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), + [521] = { + [sym_declaration] = STATE(641), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74053,94 +73896,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [520] = { - [sym_namespace_export] = STATE(3911), - [sym_export_clause] = STATE(3514), - [sym_declaration] = STATE(677), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [522] = { + [sym_namespace_export] = STATE(3875), + [sym_export_clause] = STATE(3498), + [sym_declaration] = STATE(701), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74151,92 +73994,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [521] = { - [sym_namespace_export] = STATE(3911), - [sym_export_clause] = STATE(3514), - [sym_declaration] = STATE(677), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [523] = { + [sym_namespace_export] = STATE(3875), + [sym_export_clause] = STATE(3498), + [sym_declaration] = STATE(701), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74247,77 +74090,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [522] = { - [sym__call_signature] = STATE(4233), - [sym_string] = STATE(2991), - [sym_formal_parameters] = STATE(2953), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [sym_type_parameters] = STATE(3886), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1889), + [524] = { + [sym__call_signature] = STATE(4318), + [sym_string] = STATE(3070), + [sym_formal_parameters] = STATE(3113), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [sym_type_parameters] = STATE(3859), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1909), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1916), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74328,91 +74171,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_readonly] = ACTIONS(1905), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1905), - [anon_sym_public] = ACTIONS(1905), - [anon_sym_private] = ACTIONS(1905), - [anon_sym_protected] = ACTIONS(1905), - [anon_sym_override] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_any] = ACTIONS(1905), - [anon_sym_number] = ACTIONS(1905), - [anon_sym_boolean] = ACTIONS(1905), - [anon_sym_string] = ACTIONS(1905), - [anon_sym_symbol] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_readonly] = ACTIONS(1911), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_private] = ACTIONS(1911), + [anon_sym_protected] = ACTIONS(1911), + [anon_sym_override] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_any] = ACTIONS(1911), + [anon_sym_number] = ACTIONS(1911), + [anon_sym_boolean] = ACTIONS(1911), + [anon_sym_string] = ACTIONS(1911), + [anon_sym_symbol] = ACTIONS(1911), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [523] = { - [sym__call_signature] = STATE(4233), - [sym_string] = STATE(2991), - [sym_formal_parameters] = STATE(2953), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [sym_type_parameters] = STATE(3886), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1889), + [525] = { + [sym__call_signature] = STATE(4318), + [sym_string] = STATE(3070), + [sym_formal_parameters] = STATE(3113), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [sym_type_parameters] = STATE(3859), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1909), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1916), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74423,91 +74266,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_readonly] = ACTIONS(1905), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1905), - [anon_sym_public] = ACTIONS(1905), - [anon_sym_private] = ACTIONS(1905), - [anon_sym_protected] = ACTIONS(1905), - [anon_sym_override] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_any] = ACTIONS(1905), - [anon_sym_number] = ACTIONS(1905), - [anon_sym_boolean] = ACTIONS(1905), - [anon_sym_string] = ACTIONS(1905), - [anon_sym_symbol] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_readonly] = ACTIONS(1911), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_private] = ACTIONS(1911), + [anon_sym_protected] = ACTIONS(1911), + [anon_sym_override] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_any] = ACTIONS(1911), + [anon_sym_number] = ACTIONS(1911), + [anon_sym_boolean] = ACTIONS(1911), + [anon_sym_string] = ACTIONS(1911), + [anon_sym_symbol] = ACTIONS(1911), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [524] = { - [sym__call_signature] = STATE(4233), - [sym_string] = STATE(2991), - [sym_formal_parameters] = STATE(2953), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [sym_type_parameters] = STATE(3886), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1889), + [526] = { + [sym__call_signature] = STATE(4318), + [sym_string] = STATE(3070), + [sym_formal_parameters] = STATE(3113), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [sym_type_parameters] = STATE(3859), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1909), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1916), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74518,102 +74361,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_readonly] = ACTIONS(1905), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1905), - [anon_sym_public] = ACTIONS(1905), - [anon_sym_private] = ACTIONS(1905), - [anon_sym_protected] = ACTIONS(1905), - [anon_sym_override] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_any] = ACTIONS(1905), - [anon_sym_number] = ACTIONS(1905), - [anon_sym_boolean] = ACTIONS(1905), - [anon_sym_string] = ACTIONS(1905), - [anon_sym_symbol] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_readonly] = ACTIONS(1911), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_private] = ACTIONS(1911), + [anon_sym_protected] = ACTIONS(1911), + [anon_sym_override] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_any] = ACTIONS(1911), + [anon_sym_number] = ACTIONS(1911), + [anon_sym_boolean] = ACTIONS(1911), + [anon_sym_string] = ACTIONS(1911), + [anon_sym_symbol] = ACTIONS(1911), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [525] = { - [sym_declaration] = STATE(730), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), + [527] = { + [sym_declaration] = STATE(641), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1256), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74624,89 +74467,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [526] = { - [sym_declaration] = STATE(730), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), + [528] = { + [sym_declaration] = STATE(641), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1256), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74717,75 +74560,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [527] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [sym_override_modifier] = STATE(2280), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [529] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [sym_override_modifier] = STATE(2286), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74796,88 +74639,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1941), + [anon_sym_get] = ACTIONS(1943), + [anon_sym_set] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [528] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [sym_override_modifier] = STATE(2280), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [530] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [sym_override_modifier] = STATE(2286), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74888,88 +74731,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1941), + [anon_sym_get] = ACTIONS(1943), + [anon_sym_set] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [529] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [sym_override_modifier] = STATE(2280), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [531] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [sym_override_modifier] = STATE(2286), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74980,87 +74823,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1935), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1941), + [anon_sym_get] = ACTIONS(1943), + [anon_sym_set] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [530] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [532] = { + [sym_declaration] = STATE(641), + [sym_variable_declaration] = STATE(763), + [sym_lexical_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), + [sym_generator_function_declaration] = STATE(763), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(763), + [sym_ambient_declaration] = STATE(763), + [sym_abstract_class_declaration] = STATE(763), + [sym_module] = STATE(763), + [sym_internal_module] = STATE(700), + [sym_import_alias] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_type_alias_declaration] = STATE(763), + [aux_sym_export_statement_repeat1] = STATE(3202), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1790), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_EQ_GT] = ACTIONS(1271), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75071,87 +74927,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1819), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [531] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [533] = { + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_namespace] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1513), + [anon_sym_import] = ACTIONS(1513), + [anon_sym_from] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_await] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_with] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_debugger] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_throw] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_COLON] = ACTIONS(1511), + [anon_sym_case] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1511), + [anon_sym_LTtemplate_GT] = ACTIONS(1511), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1513), + [anon_sym_function] = ACTIONS(1513), + [anon_sym_EQ_GT] = ACTIONS(1511), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_delete] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_number] = ACTIONS(1511), + [sym_this] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), + [sym_undefined] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_readonly] = ACTIONS(1513), + [anon_sym_get] = ACTIONS(1513), + [anon_sym_set] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1511), + [anon_sym_declare] = ACTIONS(1513), + [anon_sym_public] = ACTIONS(1513), + [anon_sym_private] = ACTIONS(1513), + [anon_sym_protected] = ACTIONS(1513), + [anon_sym_override] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_number] = ACTIONS(1513), + [anon_sym_boolean] = ACTIONS(1513), + [anon_sym_string] = ACTIONS(1513), + [anon_sym_symbol] = ACTIONS(1513), + [anon_sym_abstract] = ACTIONS(1513), + [anon_sym_extends] = ACTIONS(1513), + [anon_sym_interface] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + }, + [534] = { + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_from] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_with] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_debugger] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_throw] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_COLON] = ACTIONS(1543), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_RBRACK] = ACTIONS(1543), + [anon_sym_LTtemplate_GT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(1545), + [anon_sym_EQ_GT] = ACTIONS(1543), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_delete] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_number] = ACTIONS(1543), + [sym_this] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_undefined] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_readonly] = ACTIONS(1545), + [anon_sym_get] = ACTIONS(1545), + [anon_sym_set] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_private] = ACTIONS(1545), + [anon_sym_protected] = ACTIONS(1545), + [anon_sym_override] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_number] = ACTIONS(1545), + [anon_sym_boolean] = ACTIONS(1545), + [anon_sym_string] = ACTIONS(1545), + [anon_sym_symbol] = ACTIONS(1545), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_extends] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + }, + [535] = { + [sym_declaration] = STATE(3127), + [sym_variable_declaration] = STATE(3131), + [sym_lexical_declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_function_declaration] = STATE(3131), + [sym_generator_function_declaration] = STATE(3131), + [sym_decorator] = STATE(1152), + [sym_function_signature] = STATE(3131), + [sym_ambient_declaration] = STATE(3131), + [sym_abstract_class_declaration] = STATE(3131), + [sym_module] = STATE(3131), + [sym_internal_module] = STATE(3128), + [sym_import_alias] = STATE(3131), + [sym_interface_declaration] = STATE(3131), + [sym_enum_declaration] = STATE(3131), + [sym_type_alias_declaration] = STATE(3131), + [aux_sym_export_statement_repeat1] = STATE(3135), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1949), + [anon_sym_import] = ACTIONS(1951), + [anon_sym_var] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1955), + [anon_sym_const] = ACTIONS(1957), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_class] = ACTIONS(1959), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_function] = ACTIONS(1963), + [anon_sym_EQ_GT] = ACTIONS(1271), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75162,87 +75200,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1967), + [anon_sym_abstract] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(149), + [anon_sym_global] = ACTIONS(1971), + [anon_sym_interface] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1975), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [532] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), + [536] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1937), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75253,87 +75278,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1937), + [anon_sym_set] = ACTIONS(1937), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [533] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [537] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75344,178 +75369,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1943), + [anon_sym_set] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [534] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_type] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1584), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_COMMA] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_typeof] = ACTIONS(1584), - [anon_sym_import] = ACTIONS(1584), - [anon_sym_from] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_await] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_try] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_debugger] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_throw] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_COLON] = ACTIONS(1582), - [anon_sym_case] = ACTIONS(1584), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_RBRACK] = ACTIONS(1582), - [anon_sym_LTtemplate_GT] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_class] = ACTIONS(1584), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(1584), - [anon_sym_EQ_GT] = ACTIONS(1582), - [anon_sym_new] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_delete] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_number] = ACTIONS(1582), - [sym_this] = ACTIONS(1584), - [sym_super] = ACTIONS(1584), - [sym_true] = ACTIONS(1584), - [sym_false] = ACTIONS(1584), - [sym_null] = ACTIONS(1584), - [sym_undefined] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_readonly] = ACTIONS(1584), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_QMARK] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1584), - [anon_sym_public] = ACTIONS(1584), - [anon_sym_private] = ACTIONS(1584), - [anon_sym_protected] = ACTIONS(1584), - [anon_sym_override] = ACTIONS(1584), - [anon_sym_module] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_number] = ACTIONS(1584), - [anon_sym_boolean] = ACTIONS(1584), - [anon_sym_string] = ACTIONS(1584), - [anon_sym_symbol] = ACTIONS(1584), - [anon_sym_abstract] = ACTIONS(1584), - [anon_sym_extends] = ACTIONS(1584), - [anon_sym_interface] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - }, - [535] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [538] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75526,191 +75460,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1943), + [anon_sym_set] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1558), - [anon_sym_namespace] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_typeof] = ACTIONS(1558), - [anon_sym_import] = ACTIONS(1558), - [anon_sym_from] = ACTIONS(1558), - [anon_sym_var] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_switch] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_await] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1558), - [anon_sym_with] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_debugger] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_throw] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_LTtemplate_GT] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1558), - [anon_sym_class] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_function] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_void] = ACTIONS(1558), - [anon_sym_delete] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1556), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_true] = ACTIONS(1558), - [sym_false] = ACTIONS(1558), - [sym_null] = ACTIONS(1558), - [sym_undefined] = ACTIONS(1558), - [anon_sym_AT] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_readonly] = ACTIONS(1558), - [anon_sym_get] = ACTIONS(1558), - [anon_sym_set] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_declare] = ACTIONS(1558), - [anon_sym_public] = ACTIONS(1558), - [anon_sym_private] = ACTIONS(1558), - [anon_sym_protected] = ACTIONS(1558), - [anon_sym_override] = ACTIONS(1558), - [anon_sym_module] = ACTIONS(1558), - [anon_sym_any] = ACTIONS(1558), - [anon_sym_number] = ACTIONS(1558), - [anon_sym_boolean] = ACTIONS(1558), - [anon_sym_string] = ACTIONS(1558), - [anon_sym_symbol] = ACTIONS(1558), - [anon_sym_abstract] = ACTIONS(1558), - [anon_sym_extends] = ACTIONS(1558), - [anon_sym_interface] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - }, - [537] = { - [sym_declaration] = STATE(730), - [sym_variable_declaration] = STATE(668), - [sym_lexical_declaration] = STATE(668), - [sym_class_declaration] = STATE(668), - [sym_function_declaration] = STATE(668), - [sym_generator_function_declaration] = STATE(668), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(668), - [sym_ambient_declaration] = STATE(668), - [sym_abstract_class_declaration] = STATE(668), - [sym_module] = STATE(668), - [sym_internal_module] = STATE(679), - [sym_import_alias] = STATE(668), - [sym_interface_declaration] = STATE(668), - [sym_enum_declaration] = STATE(668), - [sym_type_alias_declaration] = STATE(668), - [aux_sym_export_statement_repeat1] = STATE(3282), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1269), + [539] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(118), + [anon_sym_async] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75721,87 +75551,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1857), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1943), + [anon_sym_set] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [538] = { - [sym_declaration] = STATE(3330), - [sym_variable_declaration] = STATE(3391), - [sym_lexical_declaration] = STATE(3391), - [sym_class_declaration] = STATE(3391), - [sym_function_declaration] = STATE(3391), - [sym_generator_function_declaration] = STATE(3391), - [sym_decorator] = STATE(1150), - [sym_function_signature] = STATE(3391), - [sym_ambient_declaration] = STATE(3391), - [sym_abstract_class_declaration] = STATE(3391), - [sym_module] = STATE(3391), - [sym_internal_module] = STATE(3320), - [sym_import_alias] = STATE(3391), - [sym_interface_declaration] = STATE(3391), - [sym_enum_declaration] = STATE(3391), - [sym_type_alias_declaration] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3212), + [540] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1943), - [anon_sym_import] = ACTIONS(1945), - [anon_sym_var] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1951), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_class] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1955), - [anon_sym_function] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(118), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75812,74 +75642,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_satisfies] = ACTIONS(155), - [anon_sym_global] = ACTIONS(1965), - [anon_sym_interface] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1969), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1937), + [anon_sym_set] = ACTIONS(1937), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [539] = { - [sym_string] = STATE(2991), - [sym__property_name] = STATE(2991), - [sym_computed_property_name] = STATE(2991), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), + [541] = { + [sym_string] = STATE(3070), + [sym__property_name] = STATE(3070), + [sym_computed_property_name] = STATE(3070), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1937), + [anon_sym_export] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1920), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1937), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75890,710 +75733,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1937), + [anon_sym_set] = ACTIONS(1937), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_private] = ACTIONS(1937), + [anon_sym_protected] = ACTIONS(1937), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_any] = ACTIONS(1937), + [anon_sym_number] = ACTIONS(1937), + [anon_sym_boolean] = ACTIONS(1937), + [anon_sym_string] = ACTIONS(1937), + [anon_sym_symbol] = ACTIONS(1937), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), - }, - [540] = { - [ts_builtin_sym_end] = ACTIONS(1971), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_default] = ACTIONS(1973), - [anon_sym_type] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(1973), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_typeof] = ACTIONS(1973), - [anon_sym_import] = ACTIONS(1973), - [anon_sym_var] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_else] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_switch] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_await] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_with] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_debugger] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_case] = ACTIONS(1973), - [anon_sym_yield] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_LTtemplate_GT] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1973), - [anon_sym_class] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_function] = ACTIONS(1973), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_void] = ACTIONS(1973), - [anon_sym_delete] = ACTIONS(1973), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1971), - [sym_number] = ACTIONS(1971), - [sym_this] = ACTIONS(1973), - [sym_super] = ACTIONS(1973), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_undefined] = ACTIONS(1973), - [anon_sym_AT] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1971), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_abstract] = ACTIONS(1973), - [anon_sym_extends] = ACTIONS(1973), - [anon_sym_interface] = ACTIONS(1973), - [anon_sym_enum] = ACTIONS(1973), - }, - [541] = { - [ts_builtin_sym_end] = ACTIONS(1975), - [sym_identifier] = ACTIONS(1977), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_default] = ACTIONS(1977), - [anon_sym_type] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_namespace] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_typeof] = ACTIONS(1977), - [anon_sym_import] = ACTIONS(1977), - [anon_sym_var] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_switch] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_await] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_with] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_debugger] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_throw] = ACTIONS(1977), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_COLON] = ACTIONS(1975), - [anon_sym_case] = ACTIONS(1977), - [anon_sym_yield] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(1975), - [anon_sym_LTtemplate_GT] = ACTIONS(1975), - [anon_sym_LT] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1977), - [anon_sym_class] = ACTIONS(1977), - [anon_sym_async] = ACTIONS(1977), - [anon_sym_function] = ACTIONS(1977), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1975), - [anon_sym_void] = ACTIONS(1977), - [anon_sym_delete] = ACTIONS(1977), - [anon_sym_PLUS_PLUS] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1975), - [sym_this] = ACTIONS(1977), - [sym_super] = ACTIONS(1977), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_AT] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1977), - [anon_sym_get] = ACTIONS(1977), - [anon_sym_set] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_declare] = ACTIONS(1977), - [anon_sym_public] = ACTIONS(1977), - [anon_sym_private] = ACTIONS(1977), - [anon_sym_protected] = ACTIONS(1977), - [anon_sym_override] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_any] = ACTIONS(1977), - [anon_sym_number] = ACTIONS(1977), - [anon_sym_boolean] = ACTIONS(1977), - [anon_sym_string] = ACTIONS(1977), - [anon_sym_symbol] = ACTIONS(1977), - [anon_sym_abstract] = ACTIONS(1977), - [anon_sym_extends] = ACTIONS(1977), - [anon_sym_interface] = ACTIONS(1977), - [anon_sym_enum] = ACTIONS(1977), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [542] = { - [ts_builtin_sym_end] = ACTIONS(1979), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_default] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_namespace] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_COMMA] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_typeof] = ACTIONS(1981), - [anon_sym_import] = ACTIONS(1981), - [anon_sym_var] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_await] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_debugger] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_throw] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_case] = ACTIONS(1981), - [anon_sym_yield] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_RBRACK] = ACTIONS(1979), - [anon_sym_LTtemplate_GT] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_class] = ACTIONS(1981), - [anon_sym_async] = ACTIONS(1981), - [anon_sym_function] = ACTIONS(1981), - [anon_sym_EQ_GT] = ACTIONS(1979), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_void] = ACTIONS(1981), - [anon_sym_delete] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1979), - [sym_number] = ACTIONS(1979), - [sym_this] = ACTIONS(1981), - [sym_super] = ACTIONS(1981), - [sym_true] = ACTIONS(1981), - [sym_false] = ACTIONS(1981), - [sym_null] = ACTIONS(1981), - [sym_undefined] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_get] = ACTIONS(1981), - [anon_sym_set] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1979), - [anon_sym_declare] = ACTIONS(1981), - [anon_sym_public] = ACTIONS(1981), - [anon_sym_private] = ACTIONS(1981), - [anon_sym_protected] = ACTIONS(1981), - [anon_sym_override] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_any] = ACTIONS(1981), - [anon_sym_number] = ACTIONS(1981), - [anon_sym_boolean] = ACTIONS(1981), - [anon_sym_string] = ACTIONS(1981), - [anon_sym_symbol] = ACTIONS(1981), - [anon_sym_abstract] = ACTIONS(1981), - [anon_sym_extends] = ACTIONS(1981), - [anon_sym_interface] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), + [ts_builtin_sym_end] = ACTIONS(1977), + [sym_identifier] = ACTIONS(1979), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(1979), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(1979), + [anon_sym_import] = ACTIONS(1979), + [anon_sym_var] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_switch] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_do] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [anon_sym_with] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_debugger] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_throw] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_COLON] = ACTIONS(1977), + [anon_sym_case] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_LTtemplate_GT] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1977), + [anon_sym_class] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_function] = ACTIONS(1979), + [anon_sym_EQ_GT] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_void] = ACTIONS(1979), + [anon_sym_delete] = ACTIONS(1979), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_super] = ACTIONS(1979), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_QMARK] = ACTIONS(1977), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1979), + [anon_sym_private] = ACTIONS(1979), + [anon_sym_protected] = ACTIONS(1979), + [anon_sym_override] = ACTIONS(1979), + [anon_sym_module] = ACTIONS(1979), + [anon_sym_any] = ACTIONS(1979), + [anon_sym_number] = ACTIONS(1979), + [anon_sym_boolean] = ACTIONS(1979), + [anon_sym_string] = ACTIONS(1979), + [anon_sym_symbol] = ACTIONS(1979), + [anon_sym_abstract] = ACTIONS(1979), + [anon_sym_extends] = ACTIONS(1979), + [anon_sym_interface] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1979), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_identifier] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_default] = ACTIONS(1985), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_namespace] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(1985), - [anon_sym_var] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_switch] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_with] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_debugger] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_throw] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_case] = ACTIONS(1985), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_RBRACK] = ACTIONS(1983), - [anon_sym_LTtemplate_GT] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_GT] = ACTIONS(1983), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_class] = ACTIONS(1985), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1985), - [anon_sym_EQ_GT] = ACTIONS(1983), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_void] = ACTIONS(1985), - [anon_sym_delete] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1983), - [anon_sym_SQUOTE] = ACTIONS(1983), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1983), - [sym_number] = ACTIONS(1983), - [sym_this] = ACTIONS(1985), - [sym_super] = ACTIONS(1985), - [sym_true] = ACTIONS(1985), - [sym_false] = ACTIONS(1985), - [sym_null] = ACTIONS(1985), - [sym_undefined] = ACTIONS(1985), - [anon_sym_AT] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_readonly] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_declare] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_protected] = ACTIONS(1985), - [anon_sym_override] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_any] = ACTIONS(1985), - [anon_sym_number] = ACTIONS(1985), - [anon_sym_boolean] = ACTIONS(1985), - [anon_sym_string] = ACTIONS(1985), - [anon_sym_symbol] = ACTIONS(1985), - [anon_sym_abstract] = ACTIONS(1985), - [anon_sym_extends] = ACTIONS(1985), - [anon_sym_interface] = ACTIONS(1985), - [anon_sym_enum] = ACTIONS(1985), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_identifier] = ACTIONS(1983), + [anon_sym_export] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_namespace] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_COMMA] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_typeof] = ACTIONS(1983), + [anon_sym_import] = ACTIONS(1983), + [anon_sym_var] = ACTIONS(1983), + [anon_sym_let] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_RPAREN] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_do] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_debugger] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_throw] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_COLON] = ACTIONS(1981), + [anon_sym_case] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_LTtemplate_GT] = ACTIONS(1981), + [anon_sym_GT] = ACTIONS(1981), + [anon_sym_class] = ACTIONS(1983), + [anon_sym_async] = ACTIONS(1983), + [anon_sym_function] = ACTIONS(1983), + [anon_sym_EQ_GT] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_SLASH] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_void] = ACTIONS(1983), + [anon_sym_delete] = ACTIONS(1983), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1981), + [sym_number] = ACTIONS(1981), + [sym_this] = ACTIONS(1983), + [sym_super] = ACTIONS(1983), + [sym_true] = ACTIONS(1983), + [sym_false] = ACTIONS(1983), + [sym_null] = ACTIONS(1983), + [sym_undefined] = ACTIONS(1983), + [anon_sym_AT] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_get] = ACTIONS(1983), + [anon_sym_set] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1981), + [anon_sym_declare] = ACTIONS(1983), + [anon_sym_public] = ACTIONS(1983), + [anon_sym_private] = ACTIONS(1983), + [anon_sym_protected] = ACTIONS(1983), + [anon_sym_override] = ACTIONS(1983), + [anon_sym_module] = ACTIONS(1983), + [anon_sym_any] = ACTIONS(1983), + [anon_sym_number] = ACTIONS(1983), + [anon_sym_boolean] = ACTIONS(1983), + [anon_sym_string] = ACTIONS(1983), + [anon_sym_symbol] = ACTIONS(1983), + [anon_sym_abstract] = ACTIONS(1983), + [anon_sym_extends] = ACTIONS(1983), + [anon_sym_interface] = ACTIONS(1983), + [anon_sym_enum] = ACTIONS(1983), }, [544] = { - [ts_builtin_sym_end] = ACTIONS(1987), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_default] = ACTIONS(1989), - [anon_sym_type] = ACTIONS(1989), - [anon_sym_EQ] = ACTIONS(1989), - [anon_sym_namespace] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_typeof] = ACTIONS(1989), - [anon_sym_import] = ACTIONS(1989), - [anon_sym_var] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_switch] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_await] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_with] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_debugger] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_COLON] = ACTIONS(1987), - [anon_sym_case] = ACTIONS(1989), - [anon_sym_yield] = ACTIONS(1989), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_RBRACK] = ACTIONS(1987), - [anon_sym_LTtemplate_GT] = ACTIONS(1987), - [anon_sym_LT] = ACTIONS(1989), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1989), - [anon_sym_class] = ACTIONS(1989), - [anon_sym_async] = ACTIONS(1989), - [anon_sym_function] = ACTIONS(1989), - [anon_sym_EQ_GT] = ACTIONS(1987), - [anon_sym_new] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1989), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_TILDE] = ACTIONS(1987), - [anon_sym_void] = ACTIONS(1989), - [anon_sym_delete] = ACTIONS(1989), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1987), - [anon_sym_SQUOTE] = ACTIONS(1987), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1987), - [sym_number] = ACTIONS(1987), - [sym_this] = ACTIONS(1989), - [sym_super] = ACTIONS(1989), - [sym_true] = ACTIONS(1989), - [sym_false] = ACTIONS(1989), - [sym_null] = ACTIONS(1989), - [sym_undefined] = ACTIONS(1989), - [anon_sym_AT] = ACTIONS(1987), - [anon_sym_static] = ACTIONS(1989), - [anon_sym_readonly] = ACTIONS(1989), - [anon_sym_get] = ACTIONS(1989), - [anon_sym_set] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(1987), - [anon_sym_declare] = ACTIONS(1989), - [anon_sym_public] = ACTIONS(1989), - [anon_sym_private] = ACTIONS(1989), - [anon_sym_protected] = ACTIONS(1989), - [anon_sym_override] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_any] = ACTIONS(1989), - [anon_sym_number] = ACTIONS(1989), - [anon_sym_boolean] = ACTIONS(1989), - [anon_sym_string] = ACTIONS(1989), - [anon_sym_symbol] = ACTIONS(1989), - [anon_sym_abstract] = ACTIONS(1989), - [anon_sym_extends] = ACTIONS(1989), - [anon_sym_interface] = ACTIONS(1989), - [anon_sym_enum] = ACTIONS(1989), + [ts_builtin_sym_end] = ACTIONS(1985), + [sym_identifier] = ACTIONS(1987), + [anon_sym_export] = ACTIONS(1987), + [anon_sym_default] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym_namespace] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_import] = ACTIONS(1987), + [anon_sym_var] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_do] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_with] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_debugger] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_throw] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_COLON] = ACTIONS(1985), + [anon_sym_case] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_RBRACK] = ACTIONS(1985), + [anon_sym_LTtemplate_GT] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1985), + [anon_sym_class] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1987), + [anon_sym_function] = ACTIONS(1987), + [anon_sym_EQ_GT] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1985), + [anon_sym_void] = ACTIONS(1987), + [anon_sym_delete] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1985), + [anon_sym_SQUOTE] = ACTIONS(1985), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1985), + [sym_number] = ACTIONS(1985), + [sym_this] = ACTIONS(1987), + [sym_super] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_null] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1987), + [anon_sym_readonly] = ACTIONS(1987), + [anon_sym_get] = ACTIONS(1987), + [anon_sym_set] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_declare] = ACTIONS(1987), + [anon_sym_public] = ACTIONS(1987), + [anon_sym_private] = ACTIONS(1987), + [anon_sym_protected] = ACTIONS(1987), + [anon_sym_override] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_any] = ACTIONS(1987), + [anon_sym_number] = ACTIONS(1987), + [anon_sym_boolean] = ACTIONS(1987), + [anon_sym_string] = ACTIONS(1987), + [anon_sym_symbol] = ACTIONS(1987), + [anon_sym_abstract] = ACTIONS(1987), + [anon_sym_extends] = ACTIONS(1987), + [anon_sym_interface] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), }, [545] = { - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1668), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_readonly] = ACTIONS(1668), - [anon_sym_get] = ACTIONS(1668), - [anon_sym_set] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_protected] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_any] = ACTIONS(1668), - [anon_sym_number] = ACTIONS(1668), - [anon_sym_boolean] = ACTIONS(1668), - [anon_sym_string] = ACTIONS(1668), - [anon_sym_symbol] = ACTIONS(1668), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [ts_builtin_sym_end] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_typeof] = ACTIONS(1991), + [anon_sym_import] = ACTIONS(1991), + [anon_sym_var] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_switch] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_await] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_with] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_debugger] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_throw] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_COLON] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_RBRACK] = ACTIONS(1989), + [anon_sym_LTtemplate_GT] = ACTIONS(1989), + [anon_sym_GT] = ACTIONS(1989), + [anon_sym_class] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1991), + [anon_sym_EQ_GT] = ACTIONS(1989), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1989), + [anon_sym_void] = ACTIONS(1991), + [anon_sym_delete] = ACTIONS(1991), + [anon_sym_PLUS_PLUS] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1989), + [anon_sym_SQUOTE] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1989), + [sym_number] = ACTIONS(1989), + [sym_this] = ACTIONS(1991), + [sym_super] = ACTIONS(1991), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), + [sym_null] = ACTIONS(1991), + [sym_undefined] = ACTIONS(1991), + [anon_sym_AT] = ACTIONS(1989), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(1989), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_abstract] = ACTIONS(1991), + [anon_sym_extends] = ACTIONS(1991), + [anon_sym_interface] = ACTIONS(1991), + [anon_sym_enum] = ACTIONS(1991), }, [546] = { - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1668), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_readonly] = ACTIONS(1668), - [anon_sym_get] = ACTIONS(1668), - [anon_sym_set] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_protected] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_any] = ACTIONS(1668), - [anon_sym_number] = ACTIONS(1668), - [anon_sym_boolean] = ACTIONS(1668), - [anon_sym_string] = ACTIONS(1668), - [anon_sym_symbol] = ACTIONS(1668), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_identifier] = ACTIONS(1995), + [anon_sym_export] = ACTIONS(1995), + [anon_sym_default] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_EQ] = ACTIONS(1995), + [anon_sym_namespace] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_typeof] = ACTIONS(1995), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1995), + [anon_sym_let] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_switch] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_debugger] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_throw] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1993), + [anon_sym_COLON] = ACTIONS(1993), + [anon_sym_case] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_LTtemplate_GT] = ACTIONS(1993), + [anon_sym_GT] = ACTIONS(1993), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_function] = ACTIONS(1995), + [anon_sym_EQ_GT] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PIPE] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_void] = ACTIONS(1995), + [anon_sym_delete] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1993), + [sym_number] = ACTIONS(1993), + [sym_this] = ACTIONS(1995), + [sym_super] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_null] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1995), + [anon_sym_readonly] = ACTIONS(1995), + [anon_sym_get] = ACTIONS(1995), + [anon_sym_set] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1993), + [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_abstract] = ACTIONS(1995), + [anon_sym_extends] = ACTIONS(1995), + [anon_sym_interface] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), }, [547] = { - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1656), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(1889), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1656), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1664), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1662), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76604,84 +76271,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1658), - [sym_private_property_identifier] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_readonly] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(1656), - [anon_sym_set] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_protected] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_number] = ACTIONS(1656), - [anon_sym_boolean] = ACTIONS(1656), - [anon_sym_string] = ACTIONS(1656), - [anon_sym_symbol] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1664), + [sym_private_property_identifier] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_readonly] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1662), + [anon_sym_set] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1662), + [anon_sym_public] = ACTIONS(1662), + [anon_sym_private] = ACTIONS(1662), + [anon_sym_protected] = ACTIONS(1662), + [anon_sym_override] = ACTIONS(1662), + [anon_sym_module] = ACTIONS(1662), + [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [548] = { - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1668), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(1889), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1656), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1654), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76692,84 +76359,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_readonly] = ACTIONS(1668), - [anon_sym_get] = ACTIONS(1668), - [anon_sym_set] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_protected] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_any] = ACTIONS(1668), - [anon_sym_number] = ACTIONS(1668), - [anon_sym_boolean] = ACTIONS(1668), - [anon_sym_string] = ACTIONS(1668), - [anon_sym_symbol] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1656), + [sym_private_property_identifier] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_readonly] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(1654), + [anon_sym_set] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1654), + [anon_sym_public] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_any] = ACTIONS(1654), + [anon_sym_number] = ACTIONS(1654), + [anon_sym_boolean] = ACTIONS(1654), + [anon_sym_string] = ACTIONS(1654), + [anon_sym_symbol] = ACTIONS(1654), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [549] = { - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1656), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(1889), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1656), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1664), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1662), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76780,84 +76447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1658), - [sym_private_property_identifier] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_readonly] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(1656), - [anon_sym_set] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_protected] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_number] = ACTIONS(1656), - [anon_sym_boolean] = ACTIONS(1656), - [anon_sym_string] = ACTIONS(1656), - [anon_sym_symbol] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1664), + [sym_private_property_identifier] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_readonly] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1662), + [anon_sym_set] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1662), + [anon_sym_public] = ACTIONS(1662), + [anon_sym_private] = ACTIONS(1662), + [anon_sym_protected] = ACTIONS(1662), + [anon_sym_override] = ACTIONS(1662), + [anon_sym_module] = ACTIONS(1662), + [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [550] = { - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(1656), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(1889), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1656), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1656), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_async] = ACTIONS(1654), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76868,87 +76535,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [sym_number] = ACTIONS(1658), - [sym_private_property_identifier] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_readonly] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(1656), - [anon_sym_set] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_protected] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_number] = ACTIONS(1656), - [anon_sym_boolean] = ACTIONS(1656), - [anon_sym_string] = ACTIONS(1656), - [anon_sym_symbol] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1656), + [sym_private_property_identifier] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_readonly] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(1654), + [anon_sym_set] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1654), + [anon_sym_public] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_any] = ACTIONS(1654), + [anon_sym_number] = ACTIONS(1654), + [anon_sym_boolean] = ACTIONS(1654), + [anon_sym_string] = ACTIONS(1654), + [anon_sym_symbol] = ACTIONS(1654), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [551] = { - [sym__call_signature] = STATE(4254), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1317), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_namespace] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1664), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(118), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76959,82 +76623,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(1993), - [anon_sym_set] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(2003), - [anon_sym_declare] = ACTIONS(1993), - [anon_sym_public] = ACTIONS(1993), - [anon_sym_private] = ACTIONS(1993), - [anon_sym_protected] = ACTIONS(1993), - [anon_sym_override] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_any] = ACTIONS(1993), - [anon_sym_number] = ACTIONS(1993), - [anon_sym_boolean] = ACTIONS(1993), - [anon_sym_string] = ACTIONS(1993), - [anon_sym_symbol] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1664), + [sym_private_property_identifier] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_readonly] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1662), + [anon_sym_set] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1662), + [anon_sym_public] = ACTIONS(1662), + [anon_sym_private] = ACTIONS(1662), + [anon_sym_protected] = ACTIONS(1662), + [anon_sym_override] = ACTIONS(1662), + [anon_sym_module] = ACTIONS(1662), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [552] = { - [sym__call_signature] = STATE(4357), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(115), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1656), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(118), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77045,82 +76711,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_readonly] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_protected] = ACTIONS(2007), - [anon_sym_override] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_any] = ACTIONS(2007), - [anon_sym_number] = ACTIONS(2007), - [anon_sym_boolean] = ACTIONS(2007), - [anon_sym_string] = ACTIONS(2007), - [anon_sym_symbol] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [sym_number] = ACTIONS(1656), + [sym_private_property_identifier] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_readonly] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(1654), + [anon_sym_set] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1654), + [anon_sym_public] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_any] = ACTIONS(1654), + [anon_sym_number] = ACTIONS(1654), + [anon_sym_boolean] = ACTIONS(1654), + [anon_sym_string] = ACTIONS(1654), + [anon_sym_symbol] = ACTIONS(1654), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [553] = { - [sym__call_signature] = STATE(4254), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1993), + [sym__call_signature] = STATE(4320), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1999), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_namespace] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(215), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_function] = ACTIONS(2004), [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77131,82 +76802,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(1993), - [anon_sym_set] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(1993), - [anon_sym_public] = ACTIONS(1993), - [anon_sym_private] = ACTIONS(1993), - [anon_sym_protected] = ACTIONS(1993), - [anon_sym_override] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_any] = ACTIONS(1993), - [anon_sym_number] = ACTIONS(1993), - [anon_sym_boolean] = ACTIONS(1993), - [anon_sym_string] = ACTIONS(1993), - [anon_sym_symbol] = ACTIONS(1993), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_readonly] = ACTIONS(1999), + [anon_sym_get] = ACTIONS(1999), + [anon_sym_set] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_declare] = ACTIONS(1999), + [anon_sym_public] = ACTIONS(1999), + [anon_sym_private] = ACTIONS(1999), + [anon_sym_protected] = ACTIONS(1999), + [anon_sym_override] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_any] = ACTIONS(1999), + [anon_sym_number] = ACTIONS(1999), + [anon_sym_boolean] = ACTIONS(1999), + [anon_sym_string] = ACTIONS(1999), + [anon_sym_symbol] = ACTIONS(1999), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, [554] = { - [sym__call_signature] = STATE(4357), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2007), + [sym__call_signature] = STATE(4200), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2011), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77217,81 +76888,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_readonly] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_declare] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_protected] = ACTIONS(2007), - [anon_sym_override] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_any] = ACTIONS(2007), - [anon_sym_number] = ACTIONS(2007), - [anon_sym_boolean] = ACTIONS(2007), - [anon_sym_string] = ACTIONS(2007), - [anon_sym_symbol] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_get] = ACTIONS(2011), + [anon_sym_set] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_declare] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_private] = ACTIONS(2011), + [anon_sym_protected] = ACTIONS(2011), + [anon_sym_override] = ACTIONS(2011), + [anon_sym_module] = ACTIONS(2011), + [anon_sym_any] = ACTIONS(2011), + [anon_sym_number] = ACTIONS(2011), + [anon_sym_boolean] = ACTIONS(2011), + [anon_sym_string] = ACTIONS(2011), + [anon_sym_symbol] = ACTIONS(2011), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, [555] = { - [sym__call_signature] = STATE(4357), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2007), + [sym__call_signature] = STATE(4200), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2011), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(1267), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(1267), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77302,79 +76974,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_readonly] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_declare] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_protected] = ACTIONS(2007), - [anon_sym_override] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_any] = ACTIONS(2007), - [anon_sym_number] = ACTIONS(2007), - [anon_sym_boolean] = ACTIONS(2007), - [anon_sym_string] = ACTIONS(2007), - [anon_sym_symbol] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_get] = ACTIONS(2011), + [anon_sym_set] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(2013), + [anon_sym_declare] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_private] = ACTIONS(2011), + [anon_sym_protected] = ACTIONS(2011), + [anon_sym_override] = ACTIONS(2011), + [anon_sym_module] = ACTIONS(2011), + [anon_sym_any] = ACTIONS(2011), + [anon_sym_number] = ACTIONS(2011), + [anon_sym_boolean] = ACTIONS(2011), + [anon_sym_string] = ACTIONS(2011), + [anon_sym_symbol] = ACTIONS(2011), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, [556] = { - [sym__call_signature] = STATE(4399), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2011), + [sym__call_signature] = STATE(4320), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1999), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2011), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77385,80 +77060,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2011), - [anon_sym_readonly] = ACTIONS(2011), - [anon_sym_get] = ACTIONS(2011), - [anon_sym_set] = ACTIONS(2011), - [anon_sym_declare] = ACTIONS(2011), - [anon_sym_public] = ACTIONS(2011), - [anon_sym_private] = ACTIONS(2011), - [anon_sym_protected] = ACTIONS(2011), - [anon_sym_override] = ACTIONS(2011), - [anon_sym_module] = ACTIONS(2011), - [anon_sym_any] = ACTIONS(2011), - [anon_sym_number] = ACTIONS(2011), - [anon_sym_boolean] = ACTIONS(2011), - [anon_sym_string] = ACTIONS(2011), - [anon_sym_symbol] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_readonly] = ACTIONS(1999), + [anon_sym_get] = ACTIONS(1999), + [anon_sym_set] = ACTIONS(1999), + [anon_sym_declare] = ACTIONS(1999), + [anon_sym_public] = ACTIONS(1999), + [anon_sym_private] = ACTIONS(1999), + [anon_sym_protected] = ACTIONS(1999), + [anon_sym_override] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_any] = ACTIONS(1999), + [anon_sym_number] = ACTIONS(1999), + [anon_sym_boolean] = ACTIONS(1999), + [anon_sym_string] = ACTIONS(1999), + [anon_sym_symbol] = ACTIONS(1999), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, [557] = { - [sym__call_signature] = STATE(4233), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2015), - [anon_sym_export] = ACTIONS(2017), + [sym__call_signature] = STATE(4320), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1999), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1222), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(149), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77469,80 +77145,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_readonly] = ACTIONS(2017), - [anon_sym_get] = ACTIONS(2017), - [anon_sym_set] = ACTIONS(2017), - [anon_sym_declare] = ACTIONS(2017), - [anon_sym_public] = ACTIONS(2017), - [anon_sym_private] = ACTIONS(2017), - [anon_sym_protected] = ACTIONS(2017), - [anon_sym_override] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_any] = ACTIONS(2017), - [anon_sym_number] = ACTIONS(2017), - [anon_sym_boolean] = ACTIONS(2017), - [anon_sym_string] = ACTIONS(2017), - [anon_sym_symbol] = ACTIONS(2017), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_readonly] = ACTIONS(1999), + [anon_sym_get] = ACTIONS(1999), + [anon_sym_set] = ACTIONS(1999), + [anon_sym_declare] = ACTIONS(1999), + [anon_sym_public] = ACTIONS(1999), + [anon_sym_private] = ACTIONS(1999), + [anon_sym_protected] = ACTIONS(1999), + [anon_sym_override] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_any] = ACTIONS(1999), + [anon_sym_number] = ACTIONS(1999), + [anon_sym_boolean] = ACTIONS(1999), + [anon_sym_string] = ACTIONS(1999), + [anon_sym_symbol] = ACTIONS(1999), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, [558] = { - [sym__call_signature] = STATE(4233), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), + [sym__call_signature] = STATE(4385), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), [sym_identifier] = ACTIONS(2015), [anon_sym_export] = ACTIONS(2017), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(149), [anon_sym_async] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(1921), + [anon_sym_function] = ACTIONS(2019), [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77553,20 +77228,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_static] = ACTIONS(2017), [anon_sym_readonly] = ACTIONS(2017), [anon_sym_get] = ACTIONS(2017), @@ -77583,50 +77260,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2017), [anon_sym_symbol] = ACTIONS(2017), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [559] = { - [sym__call_signature] = STATE(4233), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2015), - [anon_sym_export] = ACTIONS(2017), + [sym__call_signature] = STATE(4318), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_of] = ACTIONS(2022), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(2019), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77637,80 +77312,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_readonly] = ACTIONS(2017), - [anon_sym_get] = ACTIONS(2017), - [anon_sym_set] = ACTIONS(2017), - [anon_sym_declare] = ACTIONS(2017), - [anon_sym_public] = ACTIONS(2017), - [anon_sym_private] = ACTIONS(2017), - [anon_sym_protected] = ACTIONS(2017), - [anon_sym_override] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_any] = ACTIONS(2017), - [anon_sym_number] = ACTIONS(2017), - [anon_sym_boolean] = ACTIONS(2017), - [anon_sym_string] = ACTIONS(2017), - [anon_sym_symbol] = ACTIONS(2017), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_get] = ACTIONS(2023), + [anon_sym_set] = ACTIONS(2023), + [anon_sym_declare] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_private] = ACTIONS(2023), + [anon_sym_protected] = ACTIONS(2023), + [anon_sym_override] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_any] = ACTIONS(2023), + [anon_sym_number] = ACTIONS(2023), + [anon_sym_boolean] = ACTIONS(2023), + [anon_sym_string] = ACTIONS(2023), + [anon_sym_symbol] = ACTIONS(2023), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [560] = { - [sym__call_signature] = STATE(4399), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2011), + [sym__call_signature] = STATE(4318), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2023), [anon_sym_EQ] = ACTIONS(1256), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2011), - [anon_sym_function] = ACTIONS(2013), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(1923), [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77721,80 +77396,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2011), - [anon_sym_readonly] = ACTIONS(2011), - [anon_sym_get] = ACTIONS(2011), - [anon_sym_set] = ACTIONS(2011), - [anon_sym_declare] = ACTIONS(2011), - [anon_sym_public] = ACTIONS(2011), - [anon_sym_private] = ACTIONS(2011), - [anon_sym_protected] = ACTIONS(2011), - [anon_sym_override] = ACTIONS(2011), - [anon_sym_module] = ACTIONS(2011), - [anon_sym_any] = ACTIONS(2011), - [anon_sym_number] = ACTIONS(2011), - [anon_sym_boolean] = ACTIONS(2011), - [anon_sym_string] = ACTIONS(2011), - [anon_sym_symbol] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_get] = ACTIONS(2023), + [anon_sym_set] = ACTIONS(2023), + [anon_sym_declare] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_private] = ACTIONS(2023), + [anon_sym_protected] = ACTIONS(2023), + [anon_sym_override] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_any] = ACTIONS(2023), + [anon_sym_number] = ACTIONS(2023), + [anon_sym_boolean] = ACTIONS(2023), + [anon_sym_string] = ACTIONS(2023), + [anon_sym_symbol] = ACTIONS(2023), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [561] = { - [sym__call_signature] = STATE(4233), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2015), - [anon_sym_export] = ACTIONS(2017), + [sym__call_signature] = STATE(4318), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(1256), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(2025), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77805,81 +77480,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_readonly] = ACTIONS(2017), - [anon_sym_get] = ACTIONS(2017), - [anon_sym_set] = ACTIONS(2017), - [anon_sym_declare] = ACTIONS(2017), - [anon_sym_public] = ACTIONS(2017), - [anon_sym_private] = ACTIONS(2017), - [anon_sym_protected] = ACTIONS(2017), - [anon_sym_override] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_any] = ACTIONS(2017), - [anon_sym_number] = ACTIONS(2017), - [anon_sym_boolean] = ACTIONS(2017), - [anon_sym_string] = ACTIONS(2017), - [anon_sym_symbol] = ACTIONS(2017), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_get] = ACTIONS(2023), + [anon_sym_set] = ACTIONS(2023), + [anon_sym_declare] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_private] = ACTIONS(2023), + [anon_sym_protected] = ACTIONS(2023), + [anon_sym_override] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_any] = ACTIONS(2023), + [anon_sym_number] = ACTIONS(2023), + [anon_sym_boolean] = ACTIONS(2023), + [anon_sym_string] = ACTIONS(2023), + [anon_sym_symbol] = ACTIONS(2023), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [562] = { - [sym__call_signature] = STATE(4357), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2007), + [sym__call_signature] = STATE(4318), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_of] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(2019), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_get] = ACTIONS(2023), + [anon_sym_set] = ACTIONS(2023), + [anon_sym_declare] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_private] = ACTIONS(2023), + [anon_sym_protected] = ACTIONS(2023), + [anon_sym_override] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_any] = ACTIONS(2023), + [anon_sym_number] = ACTIONS(2023), + [anon_sym_boolean] = ACTIONS(2023), + [anon_sym_string] = ACTIONS(2023), + [anon_sym_symbol] = ACTIONS(2023), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), + }, + [563] = { + [sym__call_signature] = STATE(4320), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1999), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2007), + [anon_sym_type] = ACTIONS(1999), [anon_sym_EQ] = ACTIONS(1222), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2007), + [anon_sym_namespace] = ACTIONS(1999), [anon_sym_COMMA] = ACTIONS(1264), [anon_sym_RBRACE] = ACTIONS(1264), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1998), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77890,42 +77649,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_readonly] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_declare] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_protected] = ACTIONS(2007), - [anon_sym_override] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_any] = ACTIONS(2007), - [anon_sym_number] = ACTIONS(2007), - [anon_sym_boolean] = ACTIONS(2007), - [anon_sym_string] = ACTIONS(2007), - [anon_sym_symbol] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_readonly] = ACTIONS(1999), + [anon_sym_get] = ACTIONS(1999), + [anon_sym_set] = ACTIONS(1999), + [anon_sym_declare] = ACTIONS(1999), + [anon_sym_public] = ACTIONS(1999), + [anon_sym_private] = ACTIONS(1999), + [anon_sym_protected] = ACTIONS(1999), + [anon_sym_override] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_any] = ACTIONS(1999), + [anon_sym_number] = ACTIONS(1999), + [anon_sym_boolean] = ACTIONS(1999), + [anon_sym_string] = ACTIONS(1999), + [anon_sym_symbol] = ACTIONS(1999), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [563] = { - [sym__call_signature] = STATE(4233), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), + [564] = { + [sym__call_signature] = STATE(4385), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), [sym_identifier] = ACTIONS(2015), [anon_sym_export] = ACTIONS(2017), [anon_sym_STAR] = ACTIONS(118), @@ -77933,36 +77694,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(149), [anon_sym_async] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2013), + [anon_sym_function] = ACTIONS(2019), [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77973,20 +77732,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_static] = ACTIONS(2017), [anon_sym_readonly] = ACTIONS(2017), [anon_sym_get] = ACTIONS(2017), @@ -78003,49 +77764,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2017), [anon_sym_symbol] = ACTIONS(2017), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [564] = { - [sym__call_signature] = STATE(4348), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2026), - [anon_sym_export] = ACTIONS(2028), + [565] = { + [sym__call_signature] = STATE(4318), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2023), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(1256), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(1311), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(2019), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78056,80 +77816,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_readonly] = ACTIONS(2028), - [anon_sym_get] = ACTIONS(2028), - [anon_sym_set] = ACTIONS(2028), - [anon_sym_declare] = ACTIONS(2028), - [anon_sym_public] = ACTIONS(2028), - [anon_sym_private] = ACTIONS(2028), - [anon_sym_protected] = ACTIONS(2028), - [anon_sym_override] = ACTIONS(2028), - [anon_sym_module] = ACTIONS(2028), - [anon_sym_any] = ACTIONS(2028), - [anon_sym_number] = ACTIONS(2028), - [anon_sym_boolean] = ACTIONS(2028), - [anon_sym_string] = ACTIONS(2028), - [anon_sym_symbol] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_get] = ACTIONS(2023), + [anon_sym_set] = ACTIONS(2023), + [anon_sym_declare] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_private] = ACTIONS(2023), + [anon_sym_protected] = ACTIONS(2023), + [anon_sym_override] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_any] = ACTIONS(2023), + [anon_sym_number] = ACTIONS(2023), + [anon_sym_boolean] = ACTIONS(2023), + [anon_sym_string] = ACTIONS(2023), + [anon_sym_symbol] = ACTIONS(2023), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [565] = { - [sym__call_signature] = STATE(4115), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [566] = { + [sym__call_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(2036), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2034), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(215), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2004), [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78140,162 +77900,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [566] = { - [sym_catch_clause] = STATE(592), - [sym_finally_clause] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_export] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_typeof] = ACTIONS(2036), - [anon_sym_import] = ACTIONS(2036), - [anon_sym_var] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_switch] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_do] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [anon_sym_with] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_debugger] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_throw] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2036), - [anon_sym_catch] = ACTIONS(2038), - [anon_sym_finally] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LTtemplate_GT] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2036), - [anon_sym_class] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_function] = ACTIONS(2036), - [anon_sym_new] = ACTIONS(2036), - [anon_sym_PLUS] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2034), - [anon_sym_void] = ACTIONS(2036), - [anon_sym_delete] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2034), - [sym_number] = ACTIONS(2034), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_true] = ACTIONS(2036), - [sym_false] = ACTIONS(2036), - [sym_null] = ACTIONS(2036), - [sym_undefined] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_readonly] = ACTIONS(2036), - [anon_sym_get] = ACTIONS(2036), - [anon_sym_set] = ACTIONS(2036), - [anon_sym_declare] = ACTIONS(2036), - [anon_sym_public] = ACTIONS(2036), - [anon_sym_private] = ACTIONS(2036), - [anon_sym_protected] = ACTIONS(2036), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_module] = ACTIONS(2036), - [anon_sym_any] = ACTIONS(2036), - [anon_sym_number] = ACTIONS(2036), - [anon_sym_boolean] = ACTIONS(2036), - [anon_sym_string] = ACTIONS(2036), - [anon_sym_symbol] = ACTIONS(2036), - [anon_sym_abstract] = ACTIONS(2036), - [anon_sym_interface] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), + [sym__ternary_qmark] = ACTIONS(149), }, [567] = { - [sym__call_signature] = STATE(4115), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [sym_catch_clause] = STATE(595), + [sym_finally_clause] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_typeof] = ACTIONS(2043), + [anon_sym_import] = ACTIONS(2043), + [anon_sym_var] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_with] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_debugger] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_case] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2045), + [anon_sym_finally] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LTtemplate_GT] = ACTIONS(2041), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_void] = ACTIONS(2043), + [anon_sym_delete] = ACTIONS(2043), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2041), + [sym_number] = ACTIONS(2041), + [sym_this] = ACTIONS(2043), + [sym_super] = ACTIONS(2043), + [sym_true] = ACTIONS(2043), + [sym_false] = ACTIONS(2043), + [sym_null] = ACTIONS(2043), + [sym_undefined] = ACTIONS(2043), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_readonly] = ACTIONS(2043), + [anon_sym_get] = ACTIONS(2043), + [anon_sym_set] = ACTIONS(2043), + [anon_sym_declare] = ACTIONS(2043), + [anon_sym_public] = ACTIONS(2043), + [anon_sym_private] = ACTIONS(2043), + [anon_sym_protected] = ACTIONS(2043), + [anon_sym_override] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_any] = ACTIONS(2043), + [anon_sym_number] = ACTIONS(2043), + [anon_sym_boolean] = ACTIONS(2043), + [anon_sym_string] = ACTIONS(2043), + [anon_sym_symbol] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + }, + [568] = { + [sym__call_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), - [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2004), [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78306,161 +78066,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [568] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_namespace] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_debugger] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_finally] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LTtemplate_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_delete] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_number] = ACTIONS(1395), - [sym_this] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [sym_null] = ACTIONS(1397), - [sym_undefined] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_readonly] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(1397), - [anon_sym_set] = ACTIONS(1397), - [anon_sym_declare] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_protected] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_number] = ACTIONS(1397), - [anon_sym_boolean] = ACTIONS(1397), - [anon_sym_string] = ACTIONS(1397), - [anon_sym_symbol] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [sym__automatic_semicolon] = ACTIONS(1405), + [sym__ternary_qmark] = ACTIONS(149), }, [569] = { - [sym__call_signature] = STATE(4348), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2026), - [anon_sym_export] = ACTIONS(2028), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_catch] = ACTIONS(1351), + [anon_sym_finally] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [sym__automatic_semicolon] = ACTIONS(1359), + }, + [570] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_debugger] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_catch] = ACTIONS(1549), + [anon_sym_finally] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LTtemplate_GT] = ACTIONS(1547), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_number] = ACTIONS(1547), + [sym_this] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_undefined] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_override] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [sym__automatic_semicolon] = ACTIONS(2049), + }, + [571] = { + [sym__call_signature] = STATE(4334), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(2053), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_function] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2004), [anon_sym_EQ_GT] = ACTIONS(1311), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78471,163 +78314,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_readonly] = ACTIONS(2028), - [anon_sym_get] = ACTIONS(2028), - [anon_sym_set] = ACTIONS(2028), - [anon_sym_declare] = ACTIONS(2028), - [anon_sym_public] = ACTIONS(2028), - [anon_sym_private] = ACTIONS(2028), - [anon_sym_protected] = ACTIONS(2028), - [anon_sym_override] = ACTIONS(2028), - [anon_sym_module] = ACTIONS(2028), - [anon_sym_any] = ACTIONS(2028), - [anon_sym_number] = ACTIONS(2028), - [anon_sym_boolean] = ACTIONS(2028), - [anon_sym_string] = ACTIONS(2028), - [anon_sym_symbol] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_readonly] = ACTIONS(2053), + [anon_sym_get] = ACTIONS(2053), + [anon_sym_set] = ACTIONS(2053), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(2053), + [anon_sym_private] = ACTIONS(2053), + [anon_sym_protected] = ACTIONS(2053), + [anon_sym_override] = ACTIONS(2053), + [anon_sym_module] = ACTIONS(2053), + [anon_sym_any] = ACTIONS(2053), + [anon_sym_number] = ACTIONS(2053), + [anon_sym_boolean] = ACTIONS(2053), + [anon_sym_string] = ACTIONS(2053), + [anon_sym_symbol] = ACTIONS(2053), [anon_sym_satisfies] = ACTIONS(118), [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [570] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_typeof] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_debugger] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_finally] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LTtemplate_GT] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [sym_this] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [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_abstract] = ACTIONS(1486), - [anon_sym_interface] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [sym__automatic_semicolon] = ACTIONS(2042), + [sym__ternary_qmark] = ACTIONS(149), }, - [571] = { - [sym__call_signature] = STATE(4115), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [572] = { + [sym__call_signature] = STATE(4334), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(2053), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(1309), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78638,487 +78397,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_readonly] = ACTIONS(2053), + [anon_sym_get] = ACTIONS(2053), + [anon_sym_set] = ACTIONS(2053), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(2053), + [anon_sym_private] = ACTIONS(2053), + [anon_sym_protected] = ACTIONS(2053), + [anon_sym_override] = ACTIONS(2053), + [anon_sym_module] = ACTIONS(2053), + [anon_sym_any] = ACTIONS(2053), + [anon_sym_number] = ACTIONS(2053), + [anon_sym_boolean] = ACTIONS(2053), + [anon_sym_string] = ACTIONS(2053), + [anon_sym_symbol] = ACTIONS(2053), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [572] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_typeof] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_debugger] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LTtemplate_GT] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [sym_this] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [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_abstract] = ACTIONS(1486), - [anon_sym_interface] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_PIPE_RBRACE] = ACTIONS(1484), - [sym__automatic_semicolon] = ACTIONS(1484), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), }, [573] = { - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_export] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym_import] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_await] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_with] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_debugger] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LTtemplate_GT] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_class] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1447), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_delete] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_number] = ACTIONS(1445), - [sym_this] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_undefined] = ACTIONS(1447), - [anon_sym_AT] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_readonly] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_override] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [anon_sym_abstract] = ACTIONS(1447), - [anon_sym_interface] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_PIPE_RBRACE] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(1445), - }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_namespace] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_debugger] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LTtemplate_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_delete] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_number] = ACTIONS(1395), - [sym_this] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [sym_null] = ACTIONS(1397), - [sym_undefined] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_readonly] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(1397), - [anon_sym_set] = ACTIONS(1397), - [anon_sym_declare] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_protected] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_number] = ACTIONS(1397), - [anon_sym_boolean] = ACTIONS(1397), - [anon_sym_string] = ACTIONS(1397), - [anon_sym_symbol] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_PIPE_RBRACE] = ACTIONS(1395), - [sym__automatic_semicolon] = ACTIONS(2049), - }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_await] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_with] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_throw] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_catch] = ACTIONS(1540), - [anon_sym_finally] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LTtemplate_GT] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_class] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_number] = ACTIONS(1538), - [sym_this] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_true] = ACTIONS(1540), - [sym_false] = ACTIONS(1540), - [sym_null] = ACTIONS(1540), - [sym_undefined] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_readonly] = ACTIONS(1540), - [anon_sym_get] = ACTIONS(1540), - [anon_sym_set] = ACTIONS(1540), - [anon_sym_declare] = ACTIONS(1540), - [anon_sym_public] = ACTIONS(1540), - [anon_sym_private] = ACTIONS(1540), - [anon_sym_protected] = ACTIONS(1540), - [anon_sym_override] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [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_abstract] = ACTIONS(1540), - [anon_sym_interface] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_typeof] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_debugger] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_finally] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LTtemplate_GT] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [sym_this] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [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_abstract] = ACTIONS(1486), - [anon_sym_interface] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - }, - [577] = { - [sym__call_signature] = STATE(4239), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2051), - [anon_sym_export] = ACTIONS(2053), + [sym__call_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79129,161 +78481,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_readonly] = ACTIONS(2053), - [anon_sym_get] = ACTIONS(2053), - [anon_sym_set] = ACTIONS(2053), - [anon_sym_declare] = ACTIONS(2053), - [anon_sym_public] = ACTIONS(2053), - [anon_sym_private] = ACTIONS(2053), - [anon_sym_protected] = ACTIONS(2053), - [anon_sym_override] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(2053), - [anon_sym_number] = ACTIONS(2053), - [anon_sym_boolean] = ACTIONS(2053), - [anon_sym_string] = ACTIONS(2053), - [anon_sym_symbol] = ACTIONS(2053), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_typeof] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_debugger] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LTtemplate_GT] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [sym_this] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [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_abstract] = ACTIONS(1486), - [anon_sym_interface] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_PIPE_RBRACE] = ACTIONS(1484), - [sym__automatic_semicolon] = ACTIONS(2055), + [574] = { + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_export] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_namespace] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_typeof] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(1531), + [anon_sym_var] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_await] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_do] = ACTIONS(1531), + [anon_sym_try] = ACTIONS(1531), + [anon_sym_with] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_debugger] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1531), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_LTtemplate_GT] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1531), + [anon_sym_delete] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1529), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1529), + [sym_number] = ACTIONS(1529), + [sym_this] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_undefined] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_readonly] = ACTIONS(1531), + [anon_sym_get] = ACTIONS(1531), + [anon_sym_set] = ACTIONS(1531), + [anon_sym_declare] = ACTIONS(1531), + [anon_sym_public] = ACTIONS(1531), + [anon_sym_private] = ACTIONS(1531), + [anon_sym_protected] = ACTIONS(1531), + [anon_sym_override] = ACTIONS(1531), + [anon_sym_module] = ACTIONS(1531), + [anon_sym_any] = ACTIONS(1531), + [anon_sym_number] = ACTIONS(1531), + [anon_sym_boolean] = ACTIONS(1531), + [anon_sym_string] = ACTIONS(1531), + [anon_sym_symbol] = ACTIONS(1531), + [anon_sym_abstract] = ACTIONS(1531), + [anon_sym_interface] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [anon_sym_PIPE_RBRACE] = ACTIONS(1529), + [sym__automatic_semicolon] = ACTIONS(1529), }, - [579] = { - [sym__call_signature] = STATE(4115), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [575] = { + [sym__call_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2034), [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2034), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2004), [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79294,77 +78645,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [580] = { - [sym__call_signature] = STATE(4239), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2051), - [anon_sym_export] = ACTIONS(2053), + [576] = { + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_typeof] = ACTIONS(1505), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_with] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_debugger] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LTtemplate_GT] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_delete] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_number] = ACTIONS(1503), + [sym_this] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_true] = ACTIONS(1505), + [sym_false] = ACTIONS(1505), + [sym_null] = ACTIONS(1505), + [sym_undefined] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_readonly] = ACTIONS(1505), + [anon_sym_get] = ACTIONS(1505), + [anon_sym_set] = ACTIONS(1505), + [anon_sym_declare] = ACTIONS(1505), + [anon_sym_public] = ACTIONS(1505), + [anon_sym_private] = ACTIONS(1505), + [anon_sym_protected] = ACTIONS(1505), + [anon_sym_override] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_number] = ACTIONS(1505), + [anon_sym_boolean] = ACTIONS(1505), + [anon_sym_string] = ACTIONS(1505), + [anon_sym_symbol] = ACTIONS(1505), + [anon_sym_abstract] = ACTIONS(1505), + [anon_sym_interface] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_PIPE_RBRACE] = ACTIONS(1503), + [sym__automatic_semicolon] = ACTIONS(1503), + }, + [577] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_debugger] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LTtemplate_GT] = ACTIONS(1547), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_number] = ACTIONS(1547), + [sym_this] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_undefined] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_override] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_PIPE_RBRACE] = ACTIONS(1547), + [sym__automatic_semicolon] = ACTIONS(1547), + }, + [578] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_PIPE_RBRACE] = ACTIONS(1349), + [sym__automatic_semicolon] = ACTIONS(2057), + }, + [579] = { + [sym__call_signature] = STATE(4227), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2061), [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2013), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2063), [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79375,160 +78972,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_readonly] = ACTIONS(2053), - [anon_sym_get] = ACTIONS(2053), - [anon_sym_set] = ACTIONS(2053), - [anon_sym_declare] = ACTIONS(2053), - [anon_sym_public] = ACTIONS(2053), - [anon_sym_private] = ACTIONS(2053), - [anon_sym_protected] = ACTIONS(2053), - [anon_sym_override] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(2053), - [anon_sym_number] = ACTIONS(2053), - [anon_sym_boolean] = ACTIONS(2053), - [anon_sym_string] = ACTIONS(2053), - [anon_sym_symbol] = ACTIONS(2053), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), - }, - [581] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_namespace] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1588), - [anon_sym_with] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_debugger] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_throw] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_case] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_LTtemplate_GT] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_class] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_function] = ACTIONS(1588), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_delete] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_number] = ACTIONS(1586), - [sym_this] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_true] = ACTIONS(1588), - [sym_false] = ACTIONS(1588), - [sym_null] = ACTIONS(1588), - [sym_undefined] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_readonly] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(1588), - [anon_sym_set] = ACTIONS(1588), - [anon_sym_declare] = ACTIONS(1588), - [anon_sym_public] = ACTIONS(1588), - [anon_sym_private] = ACTIONS(1588), - [anon_sym_protected] = ACTIONS(1588), - [anon_sym_override] = ACTIONS(1588), - [anon_sym_module] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_number] = ACTIONS(1588), - [anon_sym_boolean] = ACTIONS(1588), - [anon_sym_string] = ACTIONS(1588), - [anon_sym_symbol] = ACTIONS(1588), - [anon_sym_abstract] = ACTIONS(1588), - [anon_sym_interface] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [anon_sym_PIPE_RBRACE] = ACTIONS(1586), - [sym__automatic_semicolon] = ACTIONS(1586), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [582] = { - [sym__call_signature] = STATE(4239), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2051), - [anon_sym_export] = ACTIONS(2053), + [580] = { + [sym__call_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2034), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79539,79 +79055,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_readonly] = ACTIONS(2053), - [anon_sym_get] = ACTIONS(2053), - [anon_sym_set] = ACTIONS(2053), - [anon_sym_declare] = ACTIONS(2053), - [anon_sym_public] = ACTIONS(2053), - [anon_sym_private] = ACTIONS(2053), - [anon_sym_protected] = ACTIONS(2053), - [anon_sym_override] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(2053), - [anon_sym_number] = ACTIONS(2053), - [anon_sym_boolean] = ACTIONS(2053), - [anon_sym_string] = ACTIONS(2053), - [anon_sym_symbol] = ACTIONS(2053), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [583] = { - [sym__call_signature] = STATE(4115), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [581] = { + [sym__call_signature] = STATE(4227), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2019), + [anon_sym_EQ_GT] = ACTIONS(1271), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79622,77 +79136,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), + }, + [582] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_debugger] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_catch] = ACTIONS(1549), + [anon_sym_finally] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LTtemplate_GT] = ACTIONS(1547), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_number] = ACTIONS(1547), + [sym_this] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_undefined] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_override] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + }, + [583] = { + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_with] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_debugger] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_catch] = ACTIONS(1509), + [anon_sym_finally] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LTtemplate_GT] = ACTIONS(1507), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_function] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_delete] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1507), + [sym_this] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), }, [584] = { - [sym__call_signature] = STATE(4239), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2051), - [anon_sym_export] = ACTIONS(2053), + [sym__call_signature] = STATE(4227), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2061), [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2025), [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79703,161 +79382,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_readonly] = ACTIONS(2053), - [anon_sym_get] = ACTIONS(2053), - [anon_sym_set] = ACTIONS(2053), - [anon_sym_declare] = ACTIONS(2053), - [anon_sym_public] = ACTIONS(2053), - [anon_sym_private] = ACTIONS(2053), - [anon_sym_protected] = ACTIONS(2053), - [anon_sym_override] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(2053), - [anon_sym_number] = ACTIONS(2053), - [anon_sym_boolean] = ACTIONS(2053), - [anon_sym_string] = ACTIONS(2053), - [anon_sym_symbol] = ACTIONS(2053), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [585] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_await] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_with] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_throw] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LTtemplate_GT] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_class] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_number] = ACTIONS(1538), - [sym_this] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_true] = ACTIONS(1540), - [sym_false] = ACTIONS(1540), - [sym_null] = ACTIONS(1540), - [sym_undefined] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_readonly] = ACTIONS(1540), - [anon_sym_get] = ACTIONS(1540), - [anon_sym_set] = ACTIONS(1540), - [anon_sym_declare] = ACTIONS(1540), - [anon_sym_public] = ACTIONS(1540), - [anon_sym_private] = ACTIONS(1540), - [anon_sym_protected] = ACTIONS(1540), - [anon_sym_override] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [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_abstract] = ACTIONS(1540), - [anon_sym_interface] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_PIPE_RBRACE] = ACTIONS(1538), - [sym__automatic_semicolon] = ACTIONS(1538), - }, - [586] = { - [sym__call_signature] = STATE(4115), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [sym__call_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(2036), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_namespace] = ACTIONS(2034), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(215), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2004), [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79868,77 +79465,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), + }, + [586] = { + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_with] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_debugger] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LTtemplate_GT] = ACTIONS(1507), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_function] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_delete] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1507), + [sym_this] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_PIPE_RBRACE] = ACTIONS(1507), + [sym__automatic_semicolon] = ACTIONS(1507), }, [587] = { - [sym__call_signature] = STATE(4239), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2051), - [anon_sym_export] = ACTIONS(2053), + [sym__call_signature] = STATE(4227), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2013), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2019), [anon_sym_EQ_GT] = ACTIONS(1271), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79949,159 +79628,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_readonly] = ACTIONS(2053), - [anon_sym_get] = ACTIONS(2053), - [anon_sym_set] = ACTIONS(2053), - [anon_sym_declare] = ACTIONS(2053), - [anon_sym_public] = ACTIONS(2053), - [anon_sym_private] = ACTIONS(2053), - [anon_sym_protected] = ACTIONS(2053), - [anon_sym_override] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(2053), - [anon_sym_number] = ACTIONS(2053), - [anon_sym_boolean] = ACTIONS(2053), - [anon_sym_string] = ACTIONS(2053), - [anon_sym_symbol] = ACTIONS(2053), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [588] = { - [sym_statement_block] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_typeof] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_await] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_with] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_debugger] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_throw] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LTtemplate_GT] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(2063), - [anon_sym_class] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_function] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_delete] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_number] = ACTIONS(1387), - [sym_this] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [sym_null] = ACTIONS(1389), - [sym_undefined] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_abstract] = ACTIONS(1389), - [anon_sym_interface] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_debugger] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LTtemplate_GT] = ACTIONS(1547), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_number] = ACTIONS(1547), + [sym_this] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_undefined] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_override] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_interface] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_PIPE_RBRACE] = ACTIONS(1547), + [sym__automatic_semicolon] = ACTIONS(2065), }, [589] = { - [sym__call_signature] = STATE(4182), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), + [sym__call_signature] = STATE(4227), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_EQ_GT] = ACTIONS(1271), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -80112,77 +79792,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [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_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, [590] = { - [sym__call_signature] = STATE(4254), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1993), + [sym_statement_block] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + }, + [591] = { + [sym_statement_block] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + }, + [592] = { + [sym__call_signature] = STATE(4172), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2073), + [anon_sym_export] = ACTIONS(2075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1993), + [anon_sym_namespace] = ACTIONS(2075), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_of] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(1317), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -80193,77 +80036,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(1993), - [anon_sym_set] = ACTIONS(1993), - [anon_sym_declare] = ACTIONS(1993), - [anon_sym_public] = ACTIONS(1993), - [anon_sym_private] = ACTIONS(1993), - [anon_sym_protected] = ACTIONS(1993), - [anon_sym_override] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_any] = ACTIONS(1993), - [anon_sym_number] = ACTIONS(1993), - [anon_sym_boolean] = ACTIONS(1993), - [anon_sym_string] = ACTIONS(1993), - [anon_sym_symbol] = ACTIONS(1993), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_readonly] = ACTIONS(2075), + [anon_sym_get] = ACTIONS(2075), + [anon_sym_set] = ACTIONS(2075), + [anon_sym_declare] = ACTIONS(2075), + [anon_sym_public] = ACTIONS(2075), + [anon_sym_private] = ACTIONS(2075), + [anon_sym_protected] = ACTIONS(2075), + [anon_sym_override] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_any] = ACTIONS(2075), + [anon_sym_number] = ACTIONS(2075), + [anon_sym_boolean] = ACTIONS(2075), + [anon_sym_string] = ACTIONS(2075), + [anon_sym_symbol] = ACTIONS(2075), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [591] = { - [sym__call_signature] = STATE(4254), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1993), + [593] = { + [sym__call_signature] = STATE(4200), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2011), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1993), + [anon_sym_namespace] = ACTIONS(2011), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_of] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -80274,158 +80117,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(1993), - [anon_sym_set] = ACTIONS(1993), - [anon_sym_declare] = ACTIONS(1993), - [anon_sym_public] = ACTIONS(1993), - [anon_sym_private] = ACTIONS(1993), - [anon_sym_protected] = ACTIONS(1993), - [anon_sym_override] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_any] = ACTIONS(1993), - [anon_sym_number] = ACTIONS(1993), - [anon_sym_boolean] = ACTIONS(1993), - [anon_sym_string] = ACTIONS(1993), - [anon_sym_symbol] = ACTIONS(1993), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_get] = ACTIONS(2011), + [anon_sym_set] = ACTIONS(2011), + [anon_sym_declare] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_private] = ACTIONS(2011), + [anon_sym_protected] = ACTIONS(2011), + [anon_sym_override] = ACTIONS(2011), + [anon_sym_module] = ACTIONS(2011), + [anon_sym_any] = ACTIONS(2011), + [anon_sym_number] = ACTIONS(2011), + [anon_sym_boolean] = ACTIONS(2011), + [anon_sym_string] = ACTIONS(2011), + [anon_sym_symbol] = ACTIONS(2011), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [592] = { - [sym_finally_clause] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2069), - [sym_identifier] = ACTIONS(2071), - [anon_sym_export] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(2071), - [anon_sym_import] = ACTIONS(2071), - [anon_sym_var] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_else] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_with] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_debugger] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_case] = ACTIONS(2071), - [anon_sym_finally] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_LTtemplate_GT] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_void] = ACTIONS(2071), - [anon_sym_delete] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2069), - [sym_number] = ACTIONS(2069), - [sym_this] = ACTIONS(2071), - [sym_super] = ACTIONS(2071), - [sym_true] = ACTIONS(2071), - [sym_false] = ACTIONS(2071), - [sym_null] = ACTIONS(2071), - [sym_undefined] = ACTIONS(2071), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_readonly] = ACTIONS(2071), - [anon_sym_get] = ACTIONS(2071), - [anon_sym_set] = ACTIONS(2071), - [anon_sym_declare] = ACTIONS(2071), - [anon_sym_public] = ACTIONS(2071), - [anon_sym_private] = ACTIONS(2071), - [anon_sym_protected] = ACTIONS(2071), - [anon_sym_override] = ACTIONS(2071), - [anon_sym_module] = ACTIONS(2071), - [anon_sym_any] = ACTIONS(2071), - [anon_sym_number] = ACTIONS(2071), - [anon_sym_boolean] = ACTIONS(2071), - [anon_sym_string] = ACTIONS(2071), - [anon_sym_symbol] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - }, - [593] = { - [sym__call_signature] = STATE(4182), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), + [594] = { + [sym__call_signature] = STATE(4200), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2011), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2011), [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2011), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_of] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -80436,439 +80198,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [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_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_get] = ACTIONS(2011), + [anon_sym_set] = ACTIONS(2011), + [anon_sym_declare] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_private] = ACTIONS(2011), + [anon_sym_protected] = ACTIONS(2011), + [anon_sym_override] = ACTIONS(2011), + [anon_sym_module] = ACTIONS(2011), + [anon_sym_any] = ACTIONS(2011), + [anon_sym_number] = ACTIONS(2011), + [anon_sym_boolean] = ACTIONS(2011), + [anon_sym_string] = ACTIONS(2011), + [anon_sym_symbol] = ACTIONS(2011), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [594] = { - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_namespace] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1451), - [anon_sym_import] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_else] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_await] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [anon_sym_with] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_debugger] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_throw] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_case] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LTtemplate_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_function] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_delete] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_number] = ACTIONS(1449), - [sym_this] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_true] = ACTIONS(1451), - [sym_false] = ACTIONS(1451), - [sym_null] = ACTIONS(1451), - [sym_undefined] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_readonly] = ACTIONS(1451), - [anon_sym_get] = ACTIONS(1451), - [anon_sym_set] = ACTIONS(1451), - [anon_sym_declare] = ACTIONS(1451), - [anon_sym_public] = ACTIONS(1451), - [anon_sym_private] = ACTIONS(1451), - [anon_sym_protected] = ACTIONS(1451), - [anon_sym_override] = ACTIONS(1451), - [anon_sym_module] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_number] = ACTIONS(1451), - [anon_sym_boolean] = ACTIONS(1451), - [anon_sym_string] = ACTIONS(1451), - [anon_sym_symbol] = ACTIONS(1451), - [anon_sym_abstract] = ACTIONS(1451), - [anon_sym_interface] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [sym__automatic_semicolon] = ACTIONS(1457), + [sym__ternary_qmark] = ACTIONS(149), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(1506), - [anon_sym_var] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_else] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_try] = ACTIONS(1506), - [anon_sym_with] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_debugger] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_throw] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_LTtemplate_GT] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_class] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_function] = ACTIONS(1506), - [anon_sym_new] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1504), - [sym_number] = ACTIONS(1504), - [sym_this] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [sym_null] = ACTIONS(1506), - [sym_undefined] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_readonly] = ACTIONS(1506), - [anon_sym_get] = ACTIONS(1506), - [anon_sym_set] = ACTIONS(1506), - [anon_sym_declare] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1506), - [anon_sym_private] = ACTIONS(1506), - [anon_sym_protected] = ACTIONS(1506), - [anon_sym_override] = ACTIONS(1506), - [anon_sym_module] = ACTIONS(1506), - [anon_sym_any] = ACTIONS(1506), - [anon_sym_number] = ACTIONS(1506), - [anon_sym_boolean] = ACTIONS(1506), - [anon_sym_string] = ACTIONS(1506), - [anon_sym_symbol] = ACTIONS(1506), - [anon_sym_abstract] = ACTIONS(1506), - [anon_sym_interface] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [sym__automatic_semicolon] = ACTIONS(1512), - }, - [596] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_namespace] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_typeof] = ACTIONS(1461), - [anon_sym_import] = ACTIONS(1461), - [anon_sym_var] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_await] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_with] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_debugger] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_throw] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_LTtemplate_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_function] = ACTIONS(1461), - [anon_sym_new] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_void] = ACTIONS(1461), - [anon_sym_delete] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1459), - [sym_number] = ACTIONS(1459), - [sym_this] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [sym_null] = ACTIONS(1461), - [sym_undefined] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_readonly] = ACTIONS(1461), - [anon_sym_get] = ACTIONS(1461), - [anon_sym_set] = ACTIONS(1461), - [anon_sym_declare] = ACTIONS(1461), - [anon_sym_public] = ACTIONS(1461), - [anon_sym_private] = ACTIONS(1461), - [anon_sym_protected] = ACTIONS(1461), - [anon_sym_override] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_any] = ACTIONS(1461), - [anon_sym_number] = ACTIONS(1461), - [anon_sym_boolean] = ACTIONS(1461), - [anon_sym_string] = ACTIONS(1461), - [anon_sym_symbol] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(1461), - [anon_sym_interface] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [sym__automatic_semicolon] = ACTIONS(1467), - }, - [597] = { - [ts_builtin_sym_end] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_namespace] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1471), - [anon_sym_import] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_let] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_try] = ACTIONS(1471), - [anon_sym_with] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_debugger] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_LTtemplate_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_class] = ACTIONS(1471), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_function] = ACTIONS(1471), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_delete] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_number] = ACTIONS(1469), - [sym_this] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_true] = ACTIONS(1471), - [sym_false] = ACTIONS(1471), - [sym_null] = ACTIONS(1471), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_readonly] = ACTIONS(1471), - [anon_sym_get] = ACTIONS(1471), - [anon_sym_set] = ACTIONS(1471), - [anon_sym_declare] = ACTIONS(1471), - [anon_sym_public] = ACTIONS(1471), - [anon_sym_private] = ACTIONS(1471), - [anon_sym_protected] = ACTIONS(1471), - [anon_sym_override] = ACTIONS(1471), - [anon_sym_module] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_number] = ACTIONS(1471), - [anon_sym_boolean] = ACTIONS(1471), - [anon_sym_string] = ACTIONS(1471), - [anon_sym_symbol] = ACTIONS(1471), - [anon_sym_abstract] = ACTIONS(1471), - [anon_sym_interface] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [sym__automatic_semicolon] = ACTIONS(1477), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2075), - [anon_sym_export] = ACTIONS(2075), - [anon_sym_default] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2075), - [anon_sym_namespace] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(2075), - [anon_sym_import] = ACTIONS(2075), - [anon_sym_var] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_switch] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_do] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2075), - [anon_sym_with] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_debugger] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_throw] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_case] = ACTIONS(2075), - [anon_sym_yield] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_LTtemplate_GT] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_class] = ACTIONS(2075), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2075), - [anon_sym_new] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_void] = ACTIONS(2075), - [anon_sym_delete] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2073), - [sym_number] = ACTIONS(2073), - [sym_this] = ACTIONS(2075), - [sym_super] = ACTIONS(2075), - [sym_true] = ACTIONS(2075), - [sym_false] = ACTIONS(2075), - [sym_null] = ACTIONS(2075), - [sym_undefined] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_readonly] = ACTIONS(2075), - [anon_sym_get] = ACTIONS(2075), - [anon_sym_set] = ACTIONS(2075), - [anon_sym_declare] = ACTIONS(2075), - [anon_sym_public] = ACTIONS(2075), - [anon_sym_private] = ACTIONS(2075), - [anon_sym_protected] = ACTIONS(2075), - [anon_sym_override] = ACTIONS(2075), - [anon_sym_module] = ACTIONS(2075), - [anon_sym_any] = ACTIONS(2075), - [anon_sym_number] = ACTIONS(2075), - [anon_sym_boolean] = ACTIONS(2075), - [anon_sym_string] = ACTIONS(2075), - [anon_sym_symbol] = ACTIONS(2075), - [anon_sym_abstract] = ACTIONS(2075), - [anon_sym_interface] = ACTIONS(2075), - [anon_sym_enum] = ACTIONS(2075), - }, - [599] = { + [sym_finally_clause] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2077), [sym_identifier] = ACTIONS(2079), [anon_sym_export] = ACTIONS(2079), @@ -80888,7 +80253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2079), [anon_sym_for] = ACTIONS(2079), [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), [anon_sym_await] = ACTIONS(2079), [anon_sym_while] = ACTIONS(2079), [anon_sym_do] = ACTIONS(2079), @@ -80901,17 +80265,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2079), [anon_sym_SEMI] = ACTIONS(2077), [anon_sym_case] = ACTIONS(2079), + [anon_sym_finally] = ACTIONS(2047), [anon_sym_yield] = ACTIONS(2079), [anon_sym_LBRACK] = ACTIONS(2077), [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_SLASH] = ACTIONS(2079), [anon_sym_class] = ACTIONS(2079), [anon_sym_async] = ACTIONS(2079), [anon_sym_function] = ACTIONS(2079), [anon_sym_new] = ACTIONS(2079), [anon_sym_PLUS] = ACTIONS(2079), [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), [anon_sym_TILDE] = ACTIONS(2077), [anon_sym_void] = ACTIONS(2079), [anon_sym_delete] = ACTIONS(2079), @@ -80948,415 +80313,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2079), [anon_sym_enum] = ACTIONS(2079), }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_typeof] = ACTIONS(1496), - [anon_sym_import] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_await] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_with] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_debugger] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_throw] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_yield] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LTtemplate_GT] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_SLASH] = ACTIONS(1496), - [anon_sym_class] = ACTIONS(1496), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_delete] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_number] = ACTIONS(1494), - [sym_this] = ACTIONS(1496), - [sym_super] = ACTIONS(1496), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [sym_null] = ACTIONS(1496), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_readonly] = ACTIONS(1496), - [anon_sym_get] = ACTIONS(1496), - [anon_sym_set] = ACTIONS(1496), - [anon_sym_declare] = ACTIONS(1496), - [anon_sym_public] = ACTIONS(1496), - [anon_sym_private] = ACTIONS(1496), - [anon_sym_protected] = ACTIONS(1496), - [anon_sym_override] = ACTIONS(1496), - [anon_sym_module] = ACTIONS(1496), - [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_abstract] = ACTIONS(1496), - [anon_sym_interface] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [sym__automatic_semicolon] = ACTIONS(1502), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_typeof] = ACTIONS(1530), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_var] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_with] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_debugger] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_throw] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LTtemplate_GT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_function] = ACTIONS(1530), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_void] = ACTIONS(1530), - [anon_sym_delete] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1528), - [sym_number] = ACTIONS(1528), - [sym_this] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [sym_null] = ACTIONS(1530), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_readonly] = ACTIONS(1530), - [anon_sym_get] = ACTIONS(1530), - [anon_sym_set] = ACTIONS(1530), - [anon_sym_declare] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_private] = ACTIONS(1530), - [anon_sym_protected] = ACTIONS(1530), - [anon_sym_override] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_any] = ACTIONS(1530), - [anon_sym_number] = ACTIONS(1530), - [anon_sym_boolean] = ACTIONS(1530), - [anon_sym_string] = ACTIONS(1530), - [anon_sym_symbol] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(1530), - [anon_sym_interface] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [sym__automatic_semicolon] = ACTIONS(1536), - }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_export] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_namespace] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_typeof] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_await] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_try] = ACTIONS(1592), - [anon_sym_with] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_debugger] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_throw] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_LTtemplate_GT] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_SLASH] = ACTIONS(1592), - [anon_sym_class] = ACTIONS(1592), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(1592), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_delete] = ACTIONS(1592), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_number] = ACTIONS(1590), - [sym_this] = ACTIONS(1592), - [sym_super] = ACTIONS(1592), - [sym_true] = ACTIONS(1592), - [sym_false] = ACTIONS(1592), - [sym_null] = ACTIONS(1592), - [sym_undefined] = ACTIONS(1592), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_readonly] = ACTIONS(1592), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), - [anon_sym_declare] = ACTIONS(1592), - [anon_sym_public] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_override] = ACTIONS(1592), - [anon_sym_module] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_number] = ACTIONS(1592), - [anon_sym_boolean] = ACTIONS(1592), - [anon_sym_string] = ACTIONS(1592), - [anon_sym_symbol] = ACTIONS(1592), - [anon_sym_abstract] = ACTIONS(1592), - [anon_sym_interface] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [sym__automatic_semicolon] = ACTIONS(1598), - }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [sym_identifier] = ACTIONS(1602), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_typeof] = ACTIONS(1602), - [anon_sym_import] = ACTIONS(1602), - [anon_sym_var] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_switch] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_await] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_try] = ACTIONS(1602), - [anon_sym_with] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_throw] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LTtemplate_GT] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1602), - [anon_sym_class] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1602), - [anon_sym_new] = ACTIONS(1602), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1600), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1600), - [sym_this] = ACTIONS(1602), - [sym_super] = ACTIONS(1602), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(1602), - [anon_sym_interface] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [sym__automatic_semicolon] = ACTIONS(1608), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_identifier] = ACTIONS(1427), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_typeof] = ACTIONS(1427), - [anon_sym_import] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_try] = ACTIONS(1427), - [anon_sym_with] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_debugger] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LTtemplate_GT] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1427), - [anon_sym_async] = ACTIONS(1427), - [anon_sym_function] = ACTIONS(1427), - [anon_sym_new] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_delete] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_number] = ACTIONS(1425), - [sym_this] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_undefined] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_abstract] = ACTIONS(1427), - [anon_sym_interface] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1433), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), + [596] = { + [sym__call_signature] = STATE(4172), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2073), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(1317), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_readonly] = ACTIONS(2075), + [anon_sym_get] = ACTIONS(2075), + [anon_sym_set] = ACTIONS(2075), + [anon_sym_declare] = ACTIONS(2075), + [anon_sym_public] = ACTIONS(2075), + [anon_sym_private] = ACTIONS(2075), + [anon_sym_protected] = ACTIONS(2075), + [anon_sym_override] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_any] = ACTIONS(2075), + [anon_sym_number] = ACTIONS(2075), + [anon_sym_boolean] = ACTIONS(2075), + [anon_sym_string] = ACTIONS(2075), + [anon_sym_symbol] = ACTIONS(2075), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), + }, + [597] = { + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_export] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1485), + [anon_sym_namespace] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1485), + [anon_sym_import] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_with] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_debugger] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_throw] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_case] = ACTIONS(1485), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LTtemplate_GT] = ACTIONS(1483), + [anon_sym_class] = ACTIONS(1485), + [anon_sym_async] = ACTIONS(1485), + [anon_sym_function] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_delete] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_number] = ACTIONS(1483), + [sym_this] = ACTIONS(1485), + [sym_super] = ACTIONS(1485), + [sym_true] = ACTIONS(1485), + [sym_false] = ACTIONS(1485), + [sym_null] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_readonly] = ACTIONS(1485), + [anon_sym_get] = ACTIONS(1485), + [anon_sym_set] = ACTIONS(1485), + [anon_sym_declare] = ACTIONS(1485), + [anon_sym_public] = ACTIONS(1485), + [anon_sym_private] = ACTIONS(1485), + [anon_sym_protected] = ACTIONS(1485), + [anon_sym_override] = ACTIONS(1485), + [anon_sym_module] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_number] = ACTIONS(1485), + [anon_sym_boolean] = ACTIONS(1485), + [anon_sym_string] = ACTIONS(1485), + [anon_sym_symbol] = ACTIONS(1485), + [anon_sym_abstract] = ACTIONS(1485), + [anon_sym_interface] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [sym__automatic_semicolon] = ACTIONS(1491), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym_import] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_await] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_with] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_debugger] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LTtemplate_GT] = ACTIONS(1427), + [anon_sym_class] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_function] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_delete] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_number] = ACTIONS(1427), + [sym_this] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [sym_undefined] = ACTIONS(1429), + [anon_sym_AT] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_readonly] = ACTIONS(1429), + [anon_sym_get] = ACTIONS(1429), + [anon_sym_set] = ACTIONS(1429), + [anon_sym_declare] = ACTIONS(1429), + [anon_sym_public] = ACTIONS(1429), + [anon_sym_private] = ACTIONS(1429), + [anon_sym_protected] = ACTIONS(1429), + [anon_sym_override] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [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_abstract] = ACTIONS(1429), + [anon_sym_interface] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [sym__automatic_semicolon] = ACTIONS(1435), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_typeof] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1559), + [anon_sym_var] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_switch] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1559), + [anon_sym_try] = ACTIONS(1559), + [anon_sym_with] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_debugger] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_throw] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1559), + [anon_sym_yield] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LTtemplate_GT] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_function] = ACTIONS(1559), + [anon_sym_new] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1559), + [anon_sym_delete] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1557), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1557), + [sym_number] = ACTIONS(1557), + [sym_this] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_true] = ACTIONS(1559), + [sym_false] = ACTIONS(1559), + [sym_null] = ACTIONS(1559), + [sym_undefined] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1557), + [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_abstract] = ACTIONS(1559), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [sym__automatic_semicolon] = ACTIONS(1565), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), [anon_sym_typeof] = ACTIONS(2083), [anon_sym_import] = ACTIONS(2083), [anon_sym_var] = ACTIONS(2083), @@ -81368,6 +80654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2083), [anon_sym_for] = ACTIONS(2083), [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_RPAREN] = ACTIONS(2081), [anon_sym_await] = ACTIONS(2083), [anon_sym_while] = ACTIONS(2083), [anon_sym_do] = ACTIONS(2083), @@ -81380,18 +80667,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2083), [anon_sym_SEMI] = ACTIONS(2081), [anon_sym_case] = ACTIONS(2083), - [anon_sym_finally] = ACTIONS(2083), [anon_sym_yield] = ACTIONS(2083), [anon_sym_LBRACK] = ACTIONS(2081), [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), [anon_sym_class] = ACTIONS(2083), [anon_sym_async] = ACTIONS(2083), [anon_sym_function] = ACTIONS(2083), [anon_sym_new] = ACTIONS(2083), [anon_sym_PLUS] = ACTIONS(2083), [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), [anon_sym_TILDE] = ACTIONS(2081), [anon_sym_void] = ACTIONS(2083), [anon_sym_delete] = ACTIONS(2083), @@ -81428,167 +80714,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2083), [anon_sym_enum] = ACTIONS(2083), }, - [606] = { - [sym_statement_block] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_typeof] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_await] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_with] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_debugger] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_throw] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LTtemplate_GT] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_class] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_function] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_delete] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_number] = ACTIONS(1387), - [sym_this] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [sym_null] = ACTIONS(1389), - [sym_undefined] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_abstract] = ACTIONS(1389), - [anon_sym_interface] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - }, - [607] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_export] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym_import] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_await] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_debugger] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_throw] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LTtemplate_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_class] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(1437), - [anon_sym_new] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_delete] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_number] = ACTIONS(1435), - [sym_this] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [sym_null] = ACTIONS(1437), - [sym_undefined] = ACTIONS(1437), - [anon_sym_AT] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_declare] = ACTIONS(1437), - [anon_sym_public] = ACTIONS(1437), - [anon_sym_private] = ACTIONS(1437), - [anon_sym_protected] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1437), - [anon_sym_module] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_number] = ACTIONS(1437), - [anon_sym_boolean] = ACTIONS(1437), - [anon_sym_string] = ACTIONS(1437), - [anon_sym_symbol] = ACTIONS(1437), - [anon_sym_abstract] = ACTIONS(1437), - [anon_sym_interface] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [sym__automatic_semicolon] = ACTIONS(1443), + [601] = { + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_export] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_namespace] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [anon_sym_with] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_debugger] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_throw] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LTtemplate_GT] = ACTIONS(1463), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_function] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_number] = ACTIONS(1463), + [sym_this] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_true] = ACTIONS(1465), + [sym_false] = ACTIONS(1465), + [sym_null] = ACTIONS(1465), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_readonly] = ACTIONS(1465), + [anon_sym_get] = ACTIONS(1465), + [anon_sym_set] = ACTIONS(1465), + [anon_sym_declare] = ACTIONS(1465), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_override] = ACTIONS(1465), + [anon_sym_module] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_number] = ACTIONS(1465), + [anon_sym_boolean] = ACTIONS(1465), + [anon_sym_string] = ACTIONS(1465), + [anon_sym_symbol] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_interface] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [sym__automatic_semicolon] = ACTIONS(1471), }, - [608] = { + [602] = { [ts_builtin_sym_end] = ACTIONS(2085), [sym_identifier] = ACTIONS(2087), [anon_sym_export] = ACTIONS(2087), @@ -81624,14 +80830,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2087), [anon_sym_LBRACK] = ACTIONS(2085), [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2087), [anon_sym_class] = ACTIONS(2087), [anon_sym_async] = ACTIONS(2087), [anon_sym_function] = ACTIONS(2087), [anon_sym_new] = ACTIONS(2087), [anon_sym_PLUS] = ACTIONS(2087), [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_SLASH] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2087), [anon_sym_TILDE] = ACTIONS(2085), [anon_sym_void] = ACTIONS(2087), [anon_sym_delete] = ACTIONS(2087), @@ -81668,7 +80874,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2087), [anon_sym_enum] = ACTIONS(2087), }, - [609] = { + [603] = { + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_typeof] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1475), + [anon_sym_with] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_debugger] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_throw] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_LTtemplate_GT] = ACTIONS(1473), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_function] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1473), + [anon_sym_void] = ACTIONS(1475), + [anon_sym_delete] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1473), + [sym_number] = ACTIONS(1473), + [sym_this] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_true] = ACTIONS(1475), + [sym_false] = ACTIONS(1475), + [sym_null] = ACTIONS(1475), + [sym_undefined] = ACTIONS(1475), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_interface] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [sym__automatic_semicolon] = ACTIONS(1481), + }, + [604] = { + [sym_else_clause] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2089), [sym_identifier] = ACTIONS(2091), [anon_sym_export] = ACTIONS(2091), @@ -81683,7 +80970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2091), [anon_sym_const] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(2093), [anon_sym_if] = ACTIONS(2091), [anon_sym_switch] = ACTIONS(2091), [anon_sym_for] = ACTIONS(2091), @@ -81700,18 +80987,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2091), [anon_sym_SEMI] = ACTIONS(2089), [anon_sym_case] = ACTIONS(2091), - [anon_sym_finally] = ACTIONS(2091), [anon_sym_yield] = ACTIONS(2091), [anon_sym_LBRACK] = ACTIONS(2089), [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2091), [anon_sym_class] = ACTIONS(2091), [anon_sym_async] = ACTIONS(2091), [anon_sym_function] = ACTIONS(2091), [anon_sym_new] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(2091), [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2091), [anon_sym_TILDE] = ACTIONS(2089), [anon_sym_void] = ACTIONS(2091), [anon_sym_delete] = ACTIONS(2091), @@ -81748,364 +81034,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2091), [anon_sym_enum] = ACTIONS(2091), }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_type] = ACTIONS(1492), - [anon_sym_namespace] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_typeof] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_with] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_debugger] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_throw] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_LTtemplate_GT] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1492), - [anon_sym_class] = ACTIONS(1492), - [anon_sym_async] = ACTIONS(1492), - [anon_sym_function] = ACTIONS(1492), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_delete] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_number] = ACTIONS(1490), - [sym_this] = ACTIONS(1492), - [sym_super] = ACTIONS(1492), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [sym_null] = ACTIONS(1492), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_readonly] = ACTIONS(1492), - [anon_sym_get] = ACTIONS(1492), - [anon_sym_set] = ACTIONS(1492), - [anon_sym_declare] = ACTIONS(1492), - [anon_sym_public] = ACTIONS(1492), - [anon_sym_private] = ACTIONS(1492), - [anon_sym_protected] = ACTIONS(1492), - [anon_sym_override] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_number] = ACTIONS(1492), - [anon_sym_boolean] = ACTIONS(1492), - [anon_sym_string] = ACTIONS(1492), - [anon_sym_symbol] = ACTIONS(1492), - [anon_sym_abstract] = ACTIONS(1492), - [anon_sym_interface] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_export] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_namespace] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_typeof] = ACTIONS(1544), - [anon_sym_import] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_await] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_debugger] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_throw] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_case] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LTtemplate_GT] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_class] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_function] = ACTIONS(1544), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_delete] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_number] = ACTIONS(1542), - [sym_this] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_true] = ACTIONS(1544), - [sym_false] = ACTIONS(1544), - [sym_null] = ACTIONS(1544), - [sym_undefined] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1542), - [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_abstract] = ACTIONS(1544), - [anon_sym_interface] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [sym__automatic_semicolon] = ACTIONS(1550), - }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_typeof] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_await] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1520), - [anon_sym_with] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_debugger] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_LTtemplate_GT] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_delete] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_super] = ACTIONS(1520), - [sym_true] = ACTIONS(1520), - [sym_false] = ACTIONS(1520), - [sym_null] = ACTIONS(1520), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_get] = ACTIONS(1520), - [anon_sym_set] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_protected] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_module] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_number] = ACTIONS(1520), - [anon_sym_boolean] = ACTIONS(1520), - [anon_sym_string] = ACTIONS(1520), - [anon_sym_symbol] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [sym__automatic_semicolon] = ACTIONS(1526), - }, - [613] = { - [sym_else_clause] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2093), - [sym_identifier] = ACTIONS(2095), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_namespace] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2095), - [anon_sym_import] = ACTIONS(2095), - [anon_sym_var] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_with] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_debugger] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_throw] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2095), - [anon_sym_yield] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_class] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_function] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2095), - [anon_sym_delete] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_this] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_true] = ACTIONS(2095), - [sym_false] = ACTIONS(2095), - [sym_null] = ACTIONS(2095), - [sym_undefined] = ACTIONS(2095), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_readonly] = ACTIONS(2095), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_declare] = ACTIONS(2095), - [anon_sym_public] = ACTIONS(2095), - [anon_sym_private] = ACTIONS(2095), - [anon_sym_protected] = ACTIONS(2095), - [anon_sym_override] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_any] = ACTIONS(2095), - [anon_sym_number] = ACTIONS(2095), - [anon_sym_boolean] = ACTIONS(2095), - [anon_sym_string] = ACTIONS(2095), - [anon_sym_symbol] = ACTIONS(2095), - [anon_sym_abstract] = ACTIONS(2095), - [anon_sym_interface] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), + [605] = { + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_export] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_namespace] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_typeof] = ACTIONS(1521), + [anon_sym_import] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_with] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_debugger] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_throw] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_case] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LTtemplate_GT] = ACTIONS(1519), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(1521), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_delete] = ACTIONS(1521), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_number] = ACTIONS(1519), + [sym_this] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_declare] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_private] = ACTIONS(1521), + [anon_sym_protected] = ACTIONS(1521), + [anon_sym_override] = ACTIONS(1521), + [anon_sym_module] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_number] = ACTIONS(1521), + [anon_sym_boolean] = ACTIONS(1521), + [anon_sym_string] = ACTIONS(1521), + [anon_sym_symbol] = ACTIONS(1521), + [anon_sym_abstract] = ACTIONS(1521), + [anon_sym_interface] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [sym__automatic_semicolon] = ACTIONS(1527), }, - [614] = { - [sym__call_signature] = STATE(4254), - [sym_formal_parameters] = STATE(2953), - [sym_type_parameters] = STATE(3886), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1993), + [606] = { + [sym__call_signature] = STATE(4200), + [sym_formal_parameters] = STATE(3113), + [sym_type_parameters] = STATE(3859), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2011), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1993), + [anon_sym_namespace] = ACTIONS(2011), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -82116,39 +81160,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(1993), - [anon_sym_set] = ACTIONS(1993), - [anon_sym_declare] = ACTIONS(1993), - [anon_sym_public] = ACTIONS(1993), - [anon_sym_private] = ACTIONS(1993), - [anon_sym_protected] = ACTIONS(1993), - [anon_sym_override] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_any] = ACTIONS(1993), - [anon_sym_number] = ACTIONS(1993), - [anon_sym_boolean] = ACTIONS(1993), - [anon_sym_string] = ACTIONS(1993), - [anon_sym_symbol] = ACTIONS(1993), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_get] = ACTIONS(2011), + [anon_sym_set] = ACTIONS(2011), + [anon_sym_declare] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_private] = ACTIONS(2011), + [anon_sym_protected] = ACTIONS(2011), + [anon_sym_override] = ACTIONS(2011), + [anon_sym_module] = ACTIONS(2011), + [anon_sym_any] = ACTIONS(2011), + [anon_sym_number] = ACTIONS(2011), + [anon_sym_boolean] = ACTIONS(2011), + [anon_sym_string] = ACTIONS(2011), + [anon_sym_symbol] = ACTIONS(2011), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym__ternary_qmark] = ACTIONS(149), }, - [615] = { + [607] = { + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_with] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_debugger] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LTtemplate_GT] = ACTIONS(1571), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(1573), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_number] = ACTIONS(1571), + [sym_this] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_undefined] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1573), + [anon_sym_interface] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [sym__automatic_semicolon] = ACTIONS(1579), + }, + [608] = { + [sym_statement_block] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(1581), + [sym_identifier] = ACTIONS(1583), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_default] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1583), + [anon_sym_namespace] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(1583), + [anon_sym_var] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_switch] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_await] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_with] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_debugger] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_throw] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LTtemplate_GT] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1583), + [anon_sym_delete] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1581), + [sym_number] = ACTIONS(1581), + [sym_this] = ACTIONS(1583), + [sym_super] = ACTIONS(1583), + [sym_true] = ACTIONS(1583), + [sym_false] = ACTIONS(1583), + [sym_null] = ACTIONS(1583), + [sym_undefined] = ACTIONS(1583), + [anon_sym_AT] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(1583), + [anon_sym_get] = ACTIONS(1583), + [anon_sym_set] = ACTIONS(1583), + [anon_sym_declare] = ACTIONS(1583), + [anon_sym_public] = ACTIONS(1583), + [anon_sym_private] = ACTIONS(1583), + [anon_sym_protected] = ACTIONS(1583), + [anon_sym_override] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_any] = ACTIONS(1583), + [anon_sym_number] = ACTIONS(1583), + [anon_sym_boolean] = ACTIONS(1583), + [anon_sym_string] = ACTIONS(1583), + [anon_sym_symbol] = ACTIONS(1583), + [anon_sym_abstract] = ACTIONS(1583), + [anon_sym_interface] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1583), + [sym__automatic_semicolon] = ACTIONS(1589), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [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(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_with] = 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(2095), + [anon_sym_case] = ACTIONS(2097), + [anon_sym_finally] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_LTtemplate_GT] = ACTIONS(2095), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_new] = 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(2095), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2095), + [sym_number] = ACTIONS(2095), + [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(2095), + [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_abstract] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_await] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_with] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_debugger] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_throw] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_LTtemplate_GT] = ACTIONS(1443), + [anon_sym_class] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_function] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_delete] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1443), + [sym_this] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_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_abstract] = ACTIONS(1445), + [anon_sym_interface] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(1451), + }, + [612] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_with] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_debugger] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LTtemplate_GT] = ACTIONS(1493), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_delete] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1493), + [sym_number] = ACTIONS(1493), + [sym_this] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_true] = ACTIONS(1495), + [sym_false] = ACTIONS(1495), + [sym_null] = ACTIONS(1495), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_readonly] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_declare] = ACTIONS(1495), + [anon_sym_public] = ACTIONS(1495), + [anon_sym_private] = ACTIONS(1495), + [anon_sym_protected] = ACTIONS(1495), + [anon_sym_override] = ACTIONS(1495), + [anon_sym_module] = ACTIONS(1495), + [anon_sym_any] = ACTIONS(1495), + [anon_sym_number] = ACTIONS(1495), + [anon_sym_boolean] = ACTIONS(1495), + [anon_sym_string] = ACTIONS(1495), + [anon_sym_symbol] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_interface] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [sym__automatic_semicolon] = ACTIONS(1501), + }, + [613] = { [ts_builtin_sym_end] = ACTIONS(2099), [sym_identifier] = ACTIONS(2101), [anon_sym_export] = ACTIONS(2101), @@ -82180,17 +81706,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2101), [anon_sym_SEMI] = ACTIONS(2099), [anon_sym_case] = ACTIONS(2101), + [anon_sym_finally] = ACTIONS(2101), [anon_sym_yield] = ACTIONS(2101), [anon_sym_LBRACK] = ACTIONS(2099), [anon_sym_LTtemplate_GT] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), [anon_sym_class] = ACTIONS(2101), [anon_sym_async] = ACTIONS(2101), [anon_sym_function] = ACTIONS(2101), [anon_sym_new] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(2101), [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), [anon_sym_TILDE] = ACTIONS(2099), [anon_sym_void] = ACTIONS(2101), [anon_sym_delete] = ACTIONS(2101), @@ -82227,7 +81754,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2101), [anon_sym_enum] = ACTIONS(2101), }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_export] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_namespace] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1535), + [anon_sym_var] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_switch] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_do] = ACTIONS(1535), + [anon_sym_try] = ACTIONS(1535), + [anon_sym_with] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_debugger] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_throw] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LTtemplate_GT] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_function] = ACTIONS(1535), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1535), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1533), + [sym_number] = ACTIONS(1533), + [sym_this] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_true] = ACTIONS(1535), + [sym_false] = ACTIONS(1535), + [sym_null] = ACTIONS(1535), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_readonly] = ACTIONS(1535), + [anon_sym_get] = ACTIONS(1535), + [anon_sym_set] = ACTIONS(1535), + [anon_sym_declare] = ACTIONS(1535), + [anon_sym_public] = ACTIONS(1535), + [anon_sym_private] = ACTIONS(1535), + [anon_sym_protected] = ACTIONS(1535), + [anon_sym_override] = ACTIONS(1535), + [anon_sym_module] = ACTIONS(1535), + [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_abstract] = ACTIONS(1535), + [anon_sym_interface] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [sym__automatic_semicolon] = ACTIONS(1541), + }, + [615] = { + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_namespace] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1555), + [anon_sym_var] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_with] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_debugger] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_throw] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LTtemplate_GT] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1555), + [anon_sym_class] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1555), + [anon_sym_delete] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1553), + [sym_number] = ACTIONS(1553), + [sym_this] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_true] = ACTIONS(1555), + [sym_false] = ACTIONS(1555), + [sym_null] = ACTIONS(1555), + [sym_undefined] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_readonly] = ACTIONS(1555), + [anon_sym_get] = ACTIONS(1555), + [anon_sym_set] = ACTIONS(1555), + [anon_sym_declare] = ACTIONS(1555), + [anon_sym_public] = ACTIONS(1555), + [anon_sym_private] = ACTIONS(1555), + [anon_sym_protected] = ACTIONS(1555), + [anon_sym_override] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [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_abstract] = ACTIONS(1555), + [anon_sym_interface] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + }, [616] = { + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_export] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_namespace] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_typeof] = ACTIONS(1517), + [anon_sym_import] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_with] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_debugger] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_case] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LTtemplate_GT] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1517), + [anon_sym_function] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_delete] = ACTIONS(1517), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1515), + [sym_this] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_true] = ACTIONS(1517), + [sym_false] = ACTIONS(1517), + [sym_null] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_readonly] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1517), + [anon_sym_set] = ACTIONS(1517), + [anon_sym_declare] = ACTIONS(1517), + [anon_sym_public] = ACTIONS(1517), + [anon_sym_private] = ACTIONS(1517), + [anon_sym_protected] = ACTIONS(1517), + [anon_sym_override] = ACTIONS(1517), + [anon_sym_module] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_number] = ACTIONS(1517), + [anon_sym_boolean] = ACTIONS(1517), + [anon_sym_string] = ACTIONS(1517), + [anon_sym_symbol] = ACTIONS(1517), + [anon_sym_abstract] = ACTIONS(1517), + [anon_sym_interface] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_export] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_namespace] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1455), + [anon_sym_import] = ACTIONS(1455), + [anon_sym_var] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_with] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_debugger] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_throw] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LTtemplate_GT] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1453), + [anon_sym_void] = ACTIONS(1455), + [anon_sym_delete] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1453), + [sym_number] = ACTIONS(1453), + [sym_this] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_true] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [sym_null] = ACTIONS(1455), + [sym_undefined] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_readonly] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1455), + [anon_sym_set] = ACTIONS(1455), + [anon_sym_declare] = ACTIONS(1455), + [anon_sym_public] = ACTIONS(1455), + [anon_sym_private] = ACTIONS(1455), + [anon_sym_protected] = ACTIONS(1455), + [anon_sym_override] = ACTIONS(1455), + [anon_sym_module] = ACTIONS(1455), + [anon_sym_any] = ACTIONS(1455), + [anon_sym_number] = ACTIONS(1455), + [anon_sym_boolean] = ACTIONS(1455), + [anon_sym_string] = ACTIONS(1455), + [anon_sym_symbol] = ACTIONS(1455), + [anon_sym_abstract] = ACTIONS(1455), + [anon_sym_interface] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [sym__automatic_semicolon] = ACTIONS(1461), + }, + [618] = { [ts_builtin_sym_end] = ACTIONS(2103), [sym_identifier] = ACTIONS(2105), [anon_sym_export] = ACTIONS(2105), @@ -82247,6 +82094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2105), [anon_sym_for] = ACTIONS(2105), [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2103), [anon_sym_await] = ACTIONS(2105), [anon_sym_while] = ACTIONS(2105), [anon_sym_do] = ACTIONS(2105), @@ -82262,14 +82110,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2105), [anon_sym_LBRACK] = ACTIONS(2103), [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), [anon_sym_class] = ACTIONS(2105), [anon_sym_async] = ACTIONS(2105), [anon_sym_function] = ACTIONS(2105), [anon_sym_new] = 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(2103), [anon_sym_void] = ACTIONS(2105), [anon_sym_delete] = ACTIONS(2105), @@ -82306,7 +82154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2105), [anon_sym_enum] = ACTIONS(2105), }, - [617] = { + [619] = { [ts_builtin_sym_end] = ACTIONS(2107), [sym_identifier] = ACTIONS(2109), [anon_sym_export] = ACTIONS(2109), @@ -82341,14 +82189,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2109), [anon_sym_LBRACK] = ACTIONS(2107), [anon_sym_LTtemplate_GT] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), [anon_sym_class] = ACTIONS(2109), [anon_sym_async] = ACTIONS(2109), [anon_sym_function] = ACTIONS(2109), [anon_sym_new] = 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(2107), [anon_sym_void] = ACTIONS(2109), [anon_sym_delete] = ACTIONS(2109), @@ -82385,7 +82233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2109), [anon_sym_enum] = ACTIONS(2109), }, - [618] = { + [620] = { [ts_builtin_sym_end] = ACTIONS(2111), [sym_identifier] = ACTIONS(2113), [anon_sym_export] = ACTIONS(2113), @@ -82420,14 +82268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2113), [anon_sym_LBRACK] = ACTIONS(2111), [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_SLASH] = ACTIONS(2113), [anon_sym_class] = ACTIONS(2113), [anon_sym_async] = ACTIONS(2113), [anon_sym_function] = ACTIONS(2113), [anon_sym_new] = ACTIONS(2113), [anon_sym_PLUS] = ACTIONS(2113), [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_SLASH] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), [anon_sym_TILDE] = ACTIONS(2111), [anon_sym_void] = ACTIONS(2113), [anon_sym_delete] = ACTIONS(2113), @@ -82464,7 +82312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2113), [anon_sym_enum] = ACTIONS(2113), }, - [619] = { + [621] = { [ts_builtin_sym_end] = ACTIONS(2115), [sym_identifier] = ACTIONS(2117), [anon_sym_export] = ACTIONS(2117), @@ -82499,14 +82347,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2117), [anon_sym_LBRACK] = ACTIONS(2115), [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [622] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [623] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), [anon_sym_class] = ACTIONS(2117), [anon_sym_async] = ACTIONS(2117), [anon_sym_function] = ACTIONS(2117), [anon_sym_new] = ACTIONS(2117), [anon_sym_PLUS] = ACTIONS(2117), [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), [anon_sym_TILDE] = ACTIONS(2115), [anon_sym_void] = ACTIONS(2117), [anon_sym_delete] = ACTIONS(2117), @@ -82543,7 +82549,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2117), [anon_sym_enum] = ACTIONS(2117), }, - [620] = { + [624] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [625] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [626] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [627] = { [ts_builtin_sym_end] = ACTIONS(2119), [sym_identifier] = ACTIONS(2121), [anon_sym_export] = ACTIONS(2121), @@ -82578,14 +82821,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2121), [anon_sym_LBRACK] = ACTIONS(2119), [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), [anon_sym_class] = ACTIONS(2121), [anon_sym_async] = ACTIONS(2121), [anon_sym_function] = ACTIONS(2121), [anon_sym_new] = ACTIONS(2121), [anon_sym_PLUS] = ACTIONS(2121), [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_SLASH] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), [anon_sym_TILDE] = ACTIONS(2119), [anon_sym_void] = ACTIONS(2121), [anon_sym_delete] = ACTIONS(2121), @@ -82622,7 +82865,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2121), [anon_sym_enum] = ACTIONS(2121), }, - [621] = { + [628] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [629] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [630] = { [ts_builtin_sym_end] = ACTIONS(2123), [sym_identifier] = ACTIONS(2125), [anon_sym_export] = ACTIONS(2125), @@ -82657,14 +83058,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2125), [anon_sym_LBRACK] = ACTIONS(2123), [anon_sym_LTtemplate_GT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), [anon_sym_class] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), [anon_sym_function] = ACTIONS(2125), [anon_sym_new] = 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(2123), [anon_sym_void] = ACTIONS(2125), [anon_sym_delete] = ACTIONS(2125), @@ -82701,214 +83102,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2125), [anon_sym_enum] = ACTIONS(2125), }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), + [631] = { + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LTtemplate_GT] = ACTIONS(2127), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2127), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2127), [sym_number] = ACTIONS(2127), @@ -82938,86 +83181,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2129), [anon_sym_enum] = ACTIONS(2129), }, - [625] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [632] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), }, - [626] = { + [633] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [634] = { [ts_builtin_sym_end] = ACTIONS(2131), [sym_identifier] = ACTIONS(2133), [anon_sym_export] = ACTIONS(2133), @@ -83052,14 +83374,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2133), [anon_sym_LBRACK] = ACTIONS(2131), [anon_sym_LTtemplate_GT] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2133), [anon_sym_class] = ACTIONS(2133), [anon_sym_async] = ACTIONS(2133), [anon_sym_function] = ACTIONS(2133), [anon_sym_new] = ACTIONS(2133), [anon_sym_PLUS] = ACTIONS(2133), [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), [anon_sym_TILDE] = ACTIONS(2131), [anon_sym_void] = ACTIONS(2133), [anon_sym_delete] = ACTIONS(2133), @@ -83096,77 +83418,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2133), [anon_sym_enum] = ACTIONS(2133), }, - [627] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), + [635] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [636] = { + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_import] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_await] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_with] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_debugger] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_throw] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_LTtemplate_GT] = ACTIONS(1439), + [anon_sym_class] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_function] = ACTIONS(1441), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_delete] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_number] = ACTIONS(1439), + [sym_this] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [sym_undefined] = ACTIONS(1441), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_abstract] = ACTIONS(1441), + [anon_sym_interface] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + }, + [637] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [638] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LTtemplate_GT] = ACTIONS(2135), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2135), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2135), + [sym_number] = ACTIONS(2135), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), [anon_sym_number] = ACTIONS(2137), [anon_sym_boolean] = ACTIONS(2137), [anon_sym_string] = ACTIONS(2137), @@ -83175,481 +83813,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2137), [anon_sym_enum] = ACTIONS(2137), }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [629] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [640] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), }, - [630] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_default] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_typeof] = ACTIONS(2133), - [anon_sym_import] = ACTIONS(2133), - [anon_sym_var] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_with] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_debugger] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_throw] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_case] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LTtemplate_GT] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_void] = ACTIONS(2133), - [anon_sym_delete] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2131), - [sym_number] = ACTIONS(2131), - [sym_this] = ACTIONS(2133), - [sym_super] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_null] = ACTIONS(2133), - [sym_undefined] = ACTIONS(2133), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_readonly] = ACTIONS(2133), - [anon_sym_get] = ACTIONS(2133), - [anon_sym_set] = ACTIONS(2133), - [anon_sym_declare] = ACTIONS(2133), - [anon_sym_public] = ACTIONS(2133), - [anon_sym_private] = ACTIONS(2133), - [anon_sym_protected] = ACTIONS(2133), - [anon_sym_override] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_any] = ACTIONS(2133), - [anon_sym_number] = ACTIONS(2133), - [anon_sym_boolean] = ACTIONS(2133), - [anon_sym_string] = ACTIONS(2133), - [anon_sym_symbol] = ACTIONS(2133), - [anon_sym_abstract] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - }, - [634] = { + [641] = { [ts_builtin_sym_end] = ACTIONS(2139), [sym_identifier] = ACTIONS(2141), [anon_sym_export] = ACTIONS(2141), @@ -83684,14 +83927,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2141), [anon_sym_LBRACK] = ACTIONS(2139), [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_SLASH] = ACTIONS(2141), [anon_sym_class] = ACTIONS(2141), [anon_sym_async] = ACTIONS(2141), [anon_sym_function] = ACTIONS(2141), [anon_sym_new] = ACTIONS(2141), [anon_sym_PLUS] = ACTIONS(2141), [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_SLASH] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), [anon_sym_TILDE] = ACTIONS(2139), [anon_sym_void] = ACTIONS(2141), [anon_sym_delete] = ACTIONS(2141), @@ -83728,165 +83971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2141), [anon_sym_enum] = ACTIONS(2141), }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [636] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [637] = { + [642] = { [ts_builtin_sym_end] = ACTIONS(2143), [sym_identifier] = ACTIONS(2145), [anon_sym_export] = ACTIONS(2145), @@ -83921,14 +84006,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2145), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), [anon_sym_class] = ACTIONS(2145), [anon_sym_async] = ACTIONS(2145), [anon_sym_function] = ACTIONS(2145), [anon_sym_new] = ACTIONS(2145), [anon_sym_PLUS] = ACTIONS(2145), [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), [anon_sym_TILDE] = ACTIONS(2143), [anon_sym_void] = ACTIONS(2145), [anon_sym_delete] = ACTIONS(2145), @@ -83965,86 +84050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2145), [anon_sym_enum] = ACTIONS(2145), }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [639] = { + [643] = { [ts_builtin_sym_end] = ACTIONS(2147), [sym_identifier] = ACTIONS(2149), [anon_sym_export] = ACTIONS(2149), @@ -84079,14 +84085,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2149), [anon_sym_LBRACK] = ACTIONS(2147), [anon_sym_LTtemplate_GT] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), [anon_sym_class] = ACTIONS(2149), [anon_sym_async] = ACTIONS(2149), [anon_sym_function] = ACTIONS(2149), [anon_sym_new] = ACTIONS(2149), [anon_sym_PLUS] = ACTIONS(2149), [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), [anon_sym_TILDE] = ACTIONS(2147), [anon_sym_void] = ACTIONS(2149), [anon_sym_delete] = ACTIONS(2149), @@ -84123,322 +84129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2149), [anon_sym_enum] = ACTIONS(2149), }, - [640] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - }, - [642] = { - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_export] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym_import] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_await] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_with] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_debugger] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LTtemplate_GT] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_class] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1447), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_delete] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_number] = ACTIONS(1445), - [sym_this] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_undefined] = ACTIONS(1447), - [anon_sym_AT] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_readonly] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_override] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [anon_sym_abstract] = ACTIONS(1447), - [anon_sym_interface] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_namespace] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1588), - [anon_sym_with] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_debugger] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_throw] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_case] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_LTtemplate_GT] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_class] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_function] = ACTIONS(1588), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_delete] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_number] = ACTIONS(1586), - [sym_this] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_true] = ACTIONS(1588), - [sym_false] = ACTIONS(1588), - [sym_null] = ACTIONS(1588), - [sym_undefined] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_readonly] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(1588), - [anon_sym_set] = ACTIONS(1588), - [anon_sym_declare] = ACTIONS(1588), - [anon_sym_public] = ACTIONS(1588), - [anon_sym_private] = ACTIONS(1588), - [anon_sym_protected] = ACTIONS(1588), - [anon_sym_override] = ACTIONS(1588), - [anon_sym_module] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_number] = ACTIONS(1588), - [anon_sym_boolean] = ACTIONS(1588), - [anon_sym_string] = ACTIONS(1588), - [anon_sym_symbol] = ACTIONS(1588), - [anon_sym_abstract] = ACTIONS(1588), - [anon_sym_interface] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - }, [644] = { [ts_builtin_sym_end] = ACTIONS(2151), [sym_identifier] = ACTIONS(2153), @@ -84474,14 +84164,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2151), [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), [anon_sym_class] = ACTIONS(2153), [anon_sym_async] = ACTIONS(2153), [anon_sym_function] = ACTIONS(2153), [anon_sym_new] = ACTIONS(2153), [anon_sym_PLUS] = ACTIONS(2153), [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_SLASH] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), [anon_sym_TILDE] = ACTIONS(2151), [anon_sym_void] = ACTIONS(2153), [anon_sym_delete] = ACTIONS(2153), @@ -84519,6 +84209,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2153), }, [645] = { + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_typeof] = ACTIONS(1505), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_with] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_debugger] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LTtemplate_GT] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_delete] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_number] = ACTIONS(1503), + [sym_this] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_true] = ACTIONS(1505), + [sym_false] = ACTIONS(1505), + [sym_null] = ACTIONS(1505), + [sym_undefined] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_readonly] = ACTIONS(1505), + [anon_sym_get] = ACTIONS(1505), + [anon_sym_set] = ACTIONS(1505), + [anon_sym_declare] = ACTIONS(1505), + [anon_sym_public] = ACTIONS(1505), + [anon_sym_private] = ACTIONS(1505), + [anon_sym_protected] = ACTIONS(1505), + [anon_sym_override] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_number] = ACTIONS(1505), + [anon_sym_boolean] = ACTIONS(1505), + [anon_sym_string] = ACTIONS(1505), + [anon_sym_symbol] = ACTIONS(1505), + [anon_sym_abstract] = ACTIONS(1505), + [anon_sym_interface] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + }, + [646] = { [ts_builtin_sym_end] = ACTIONS(2155), [sym_identifier] = ACTIONS(2157), [anon_sym_export] = ACTIONS(2157), @@ -84553,14 +84322,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2157), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_LTtemplate_GT] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2157), [anon_sym_class] = ACTIONS(2157), [anon_sym_async] = ACTIONS(2157), [anon_sym_function] = ACTIONS(2157), [anon_sym_new] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(2157), [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), [anon_sym_TILDE] = ACTIONS(2155), [anon_sym_void] = ACTIONS(2157), [anon_sym_delete] = ACTIONS(2157), @@ -84597,7 +84366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2157), [anon_sym_enum] = ACTIONS(2157), }, - [646] = { + [647] = { [ts_builtin_sym_end] = ACTIONS(2159), [sym_identifier] = ACTIONS(2161), [anon_sym_export] = ACTIONS(2161), @@ -84632,14 +84401,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2161), [anon_sym_LBRACK] = ACTIONS(2159), [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_SLASH] = ACTIONS(2161), [anon_sym_class] = ACTIONS(2161), [anon_sym_async] = ACTIONS(2161), [anon_sym_function] = ACTIONS(2161), [anon_sym_new] = 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(2159), [anon_sym_void] = ACTIONS(2161), [anon_sym_delete] = ACTIONS(2161), @@ -84676,7 +84445,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2161), [anon_sym_enum] = ACTIONS(2161), }, - [647] = { + [648] = { + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_export] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_namespace] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_typeof] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(1531), + [anon_sym_var] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_await] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_do] = ACTIONS(1531), + [anon_sym_try] = ACTIONS(1531), + [anon_sym_with] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_debugger] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1531), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_LTtemplate_GT] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1531), + [anon_sym_delete] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1529), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1529), + [sym_number] = ACTIONS(1529), + [sym_this] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_undefined] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_readonly] = ACTIONS(1531), + [anon_sym_get] = ACTIONS(1531), + [anon_sym_set] = ACTIONS(1531), + [anon_sym_declare] = ACTIONS(1531), + [anon_sym_public] = ACTIONS(1531), + [anon_sym_private] = ACTIONS(1531), + [anon_sym_protected] = ACTIONS(1531), + [anon_sym_override] = ACTIONS(1531), + [anon_sym_module] = ACTIONS(1531), + [anon_sym_any] = ACTIONS(1531), + [anon_sym_number] = ACTIONS(1531), + [anon_sym_boolean] = ACTIONS(1531), + [anon_sym_string] = ACTIONS(1531), + [anon_sym_symbol] = ACTIONS(1531), + [anon_sym_abstract] = ACTIONS(1531), + [anon_sym_interface] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + }, + [649] = { [ts_builtin_sym_end] = ACTIONS(2163), [sym_identifier] = ACTIONS(2165), [anon_sym_export] = ACTIONS(2165), @@ -84711,14 +84559,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2163), [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2165), [anon_sym_class] = ACTIONS(2165), [anon_sym_async] = ACTIONS(2165), [anon_sym_function] = ACTIONS(2165), [anon_sym_new] = ACTIONS(2165), [anon_sym_PLUS] = ACTIONS(2165), [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), [anon_sym_TILDE] = ACTIONS(2163), [anon_sym_void] = ACTIONS(2165), [anon_sym_delete] = ACTIONS(2165), @@ -84755,7 +84603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2165), [anon_sym_enum] = ACTIONS(2165), }, - [648] = { + [650] = { [ts_builtin_sym_end] = ACTIONS(2167), [sym_identifier] = ACTIONS(2169), [anon_sym_export] = ACTIONS(2169), @@ -84790,14 +84638,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2169), [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2169), [anon_sym_class] = ACTIONS(2169), [anon_sym_async] = ACTIONS(2169), [anon_sym_function] = ACTIONS(2169), [anon_sym_new] = ACTIONS(2169), [anon_sym_PLUS] = ACTIONS(2169), [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_SLASH] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), [anon_sym_TILDE] = ACTIONS(2167), [anon_sym_void] = ACTIONS(2169), [anon_sym_delete] = ACTIONS(2169), @@ -84834,7 +84682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2169), [anon_sym_enum] = ACTIONS(2169), }, - [649] = { + [651] = { [ts_builtin_sym_end] = ACTIONS(2171), [sym_identifier] = ACTIONS(2173), [anon_sym_export] = ACTIONS(2173), @@ -84869,14 +84717,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2173), [anon_sym_LBRACK] = ACTIONS(2171), [anon_sym_LTtemplate_GT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [652] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), [anon_sym_class] = ACTIONS(2173), [anon_sym_async] = ACTIONS(2173), [anon_sym_function] = ACTIONS(2173), [anon_sym_new] = ACTIONS(2173), [anon_sym_PLUS] = ACTIONS(2173), [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), [anon_sym_TILDE] = ACTIONS(2171), [anon_sym_void] = ACTIONS(2173), [anon_sym_delete] = ACTIONS(2173), @@ -84913,7 +84840,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2173), [anon_sym_enum] = ACTIONS(2173), }, - [650] = { + [653] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [654] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [655] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [656] = { [ts_builtin_sym_end] = ACTIONS(2175), [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(2177), @@ -84948,14 +85112,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2177), [anon_sym_LBRACK] = ACTIONS(2175), [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), [anon_sym_class] = ACTIONS(2177), [anon_sym_async] = ACTIONS(2177), [anon_sym_function] = ACTIONS(2177), [anon_sym_new] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(2177), [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_SLASH] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), [anon_sym_TILDE] = ACTIONS(2175), [anon_sym_void] = ACTIONS(2177), [anon_sym_delete] = ACTIONS(2177), @@ -84992,86 +85156,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2177), [anon_sym_enum] = ACTIONS(2177), }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_LTtemplate_GT] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), + [657] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2179), - [sym_number] = ACTIONS(2179), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [652] = { + [658] = { [ts_builtin_sym_end] = ACTIONS(2179), [sym_identifier] = ACTIONS(2181), [anon_sym_export] = ACTIONS(2181), @@ -85106,93 +85270,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2179), [anon_sym_LTtemplate_GT] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), [anon_sym_class] = ACTIONS(2181), [anon_sym_async] = ACTIONS(2181), [anon_sym_function] = ACTIONS(2181), [anon_sym_new] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2181), [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2179), - [sym_number] = ACTIONS(2179), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_LTtemplate_GT] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2181), [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), [anon_sym_TILDE] = ACTIONS(2179), [anon_sym_void] = ACTIONS(2181), [anon_sym_delete] = ACTIONS(2181), @@ -85229,7 +85314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2181), [anon_sym_enum] = ACTIONS(2181), }, - [654] = { + [659] = { [ts_builtin_sym_end] = ACTIONS(2183), [sym_identifier] = ACTIONS(2185), [anon_sym_export] = ACTIONS(2185), @@ -85264,14 +85349,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(2183), [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), [anon_sym_class] = ACTIONS(2185), [anon_sym_async] = ACTIONS(2185), [anon_sym_function] = ACTIONS(2185), [anon_sym_new] = ACTIONS(2185), [anon_sym_PLUS] = ACTIONS(2185), [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), [anon_sym_TILDE] = ACTIONS(2183), [anon_sym_void] = ACTIONS(2185), [anon_sym_delete] = ACTIONS(2185), @@ -85308,32 +85393,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2185), [anon_sym_enum] = ACTIONS(2185), }, - [655] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), + [660] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [661] = { + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), [anon_sym_continue] = ACTIONS(2189), [anon_sym_debugger] = ACTIONS(2189), [anon_sym_return] = ACTIONS(2189), @@ -85343,14 +85507,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2189), [anon_sym_LBRACK] = ACTIONS(2187), [anon_sym_LTtemplate_GT] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), [anon_sym_class] = ACTIONS(2189), [anon_sym_async] = ACTIONS(2189), [anon_sym_function] = ACTIONS(2189), [anon_sym_new] = ACTIONS(2189), [anon_sym_PLUS] = ACTIONS(2189), [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), [anon_sym_TILDE] = ACTIONS(2187), [anon_sym_void] = ACTIONS(2189), [anon_sym_delete] = ACTIONS(2189), @@ -85387,7 +85551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2189), [anon_sym_enum] = ACTIONS(2189), }, - [656] = { + [662] = { [ts_builtin_sym_end] = ACTIONS(2191), [sym_identifier] = ACTIONS(2193), [anon_sym_export] = ACTIONS(2193), @@ -85422,14 +85586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2193), [anon_sym_LBRACK] = ACTIONS(2191), [anon_sym_LTtemplate_GT] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), [anon_sym_class] = ACTIONS(2193), [anon_sym_async] = ACTIONS(2193), [anon_sym_function] = ACTIONS(2193), [anon_sym_new] = 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(2191), [anon_sym_void] = ACTIONS(2193), [anon_sym_delete] = ACTIONS(2193), @@ -85466,7 +85630,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2193), [anon_sym_enum] = ACTIONS(2193), }, - [657] = { + [663] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [664] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [665] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [666] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [667] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + }, + [668] = { [ts_builtin_sym_end] = ACTIONS(2195), [sym_identifier] = ACTIONS(2197), [anon_sym_export] = ACTIONS(2197), @@ -85501,14 +86060,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2197), [anon_sym_LBRACK] = ACTIONS(2195), [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), [anon_sym_class] = ACTIONS(2197), [anon_sym_async] = ACTIONS(2197), [anon_sym_function] = ACTIONS(2197), [anon_sym_new] = 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(2195), [anon_sym_void] = ACTIONS(2197), [anon_sym_delete] = ACTIONS(2197), @@ -85545,7 +86104,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2197), [anon_sym_enum] = ACTIONS(2197), }, - [658] = { + [669] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + }, + [670] = { [ts_builtin_sym_end] = ACTIONS(2199), [sym_identifier] = ACTIONS(2201), [anon_sym_export] = ACTIONS(2201), @@ -85580,14 +86218,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2201), [anon_sym_LBRACK] = ACTIONS(2199), [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_void] = ACTIONS(2201), + [anon_sym_delete] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2199), + [sym_number] = ACTIONS(2199), + [sym_this] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_null] = ACTIONS(2201), + [sym_undefined] = ACTIONS(2201), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_readonly] = ACTIONS(2201), + [anon_sym_get] = ACTIONS(2201), + [anon_sym_set] = ACTIONS(2201), + [anon_sym_declare] = ACTIONS(2201), + [anon_sym_public] = ACTIONS(2201), + [anon_sym_private] = ACTIONS(2201), + [anon_sym_protected] = ACTIONS(2201), + [anon_sym_override] = ACTIONS(2201), + [anon_sym_module] = ACTIONS(2201), + [anon_sym_any] = ACTIONS(2201), + [anon_sym_number] = ACTIONS(2201), + [anon_sym_boolean] = ACTIONS(2201), + [anon_sym_string] = ACTIONS(2201), + [anon_sym_symbol] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + }, + [671] = { + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_namespace] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_typeof] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_var] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_debugger] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_case] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_LTtemplate_GT] = ACTIONS(2199), [anon_sym_class] = ACTIONS(2201), [anon_sym_async] = ACTIONS(2201), [anon_sym_function] = ACTIONS(2201), [anon_sym_new] = ACTIONS(2201), [anon_sym_PLUS] = ACTIONS(2201), [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), [anon_sym_TILDE] = ACTIONS(2199), [anon_sym_void] = ACTIONS(2201), [anon_sym_delete] = ACTIONS(2201), @@ -85624,7 +86341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2201), [anon_sym_enum] = ACTIONS(2201), }, - [659] = { + [672] = { [ts_builtin_sym_end] = ACTIONS(2203), [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(2205), @@ -85659,14 +86376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2205), [anon_sym_LBRACK] = ACTIONS(2203), [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), [anon_sym_class] = ACTIONS(2205), [anon_sym_async] = ACTIONS(2205), [anon_sym_function] = ACTIONS(2205), [anon_sym_new] = 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(2203), [anon_sym_void] = ACTIONS(2205), [anon_sym_delete] = ACTIONS(2205), @@ -85703,86 +86420,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2205), [anon_sym_enum] = ACTIONS(2205), }, - [660] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), + [673] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), }, - [661] = { + [674] = { [ts_builtin_sym_end] = ACTIONS(2207), [sym_identifier] = ACTIONS(2209), [anon_sym_export] = ACTIONS(2209), @@ -85817,14 +86534,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2209), [anon_sym_LBRACK] = ACTIONS(2207), [anon_sym_LTtemplate_GT] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), [anon_sym_class] = ACTIONS(2209), [anon_sym_async] = ACTIONS(2209), [anon_sym_function] = ACTIONS(2209), [anon_sym_new] = 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(2207), [anon_sym_void] = ACTIONS(2209), [anon_sym_delete] = ACTIONS(2209), @@ -85861,3237 +86578,2763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2209), [anon_sym_enum] = ACTIONS(2209), }, - [662] = { - [ts_builtin_sym_end] = ACTIONS(2211), - [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(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_with] = 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(2211), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_LTtemplate_GT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), + [675] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2211), - [sym_number] = ACTIONS(2211), - [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(2211), - [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_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [663] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_typeof] = ACTIONS(2217), - [anon_sym_import] = ACTIONS(2217), - [anon_sym_var] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_with] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_debugger] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_case] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_LTtemplate_GT] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(2217), - [anon_sym_delete] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), + [676] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2215), - [sym_number] = ACTIONS(2215), - [sym_this] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_null] = ACTIONS(2217), - [sym_undefined] = ACTIONS(2217), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_readonly] = ACTIONS(2217), - [anon_sym_get] = ACTIONS(2217), - [anon_sym_set] = ACTIONS(2217), - [anon_sym_declare] = ACTIONS(2217), - [anon_sym_public] = ACTIONS(2217), - [anon_sym_private] = ACTIONS(2217), - [anon_sym_protected] = ACTIONS(2217), - [anon_sym_override] = ACTIONS(2217), - [anon_sym_module] = ACTIONS(2217), - [anon_sym_any] = ACTIONS(2217), - [anon_sym_number] = ACTIONS(2217), - [anon_sym_boolean] = ACTIONS(2217), - [anon_sym_string] = ACTIONS(2217), - [anon_sym_symbol] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_LTtemplate_GT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), + [677] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2219), - [sym_number] = ACTIONS(2219), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(2223), - [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(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_with] = 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(2223), - [anon_sym_case] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), + [678] = { + [ts_builtin_sym_end] = ACTIONS(2211), + [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(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_with] = 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(2211), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_LTtemplate_GT] = ACTIONS(2211), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = 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(2211), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [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(2223), - [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_abstract] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), + [anon_sym_BQUOTE] = ACTIONS(2211), + [sym_number] = ACTIONS(2211), + [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(2211), + [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_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), }, - [666] = { - [ts_builtin_sym_end] = ACTIONS(2227), - [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(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_with] = 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(2227), - [anon_sym_case] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [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(2227), - [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_abstract] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - }, - [667] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_case] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_LTtemplate_GT] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), + [679] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2231), - [sym_number] = ACTIONS(2231), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_namespace] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_typeof] = ACTIONS(1576), - [anon_sym_import] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_else] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_with] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_debugger] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_throw] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_LTtemplate_GT] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_class] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1576), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_delete] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_number] = ACTIONS(1574), - [sym_this] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_true] = ACTIONS(1576), - [sym_false] = ACTIONS(1576), - [sym_null] = ACTIONS(1576), - [sym_undefined] = ACTIONS(1576), - [anon_sym_AT] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_readonly] = ACTIONS(1576), - [anon_sym_get] = ACTIONS(1576), - [anon_sym_set] = ACTIONS(1576), - [anon_sym_declare] = ACTIONS(1576), - [anon_sym_public] = ACTIONS(1576), - [anon_sym_private] = ACTIONS(1576), - [anon_sym_protected] = ACTIONS(1576), - [anon_sym_override] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_number] = ACTIONS(1576), - [anon_sym_boolean] = ACTIONS(1576), - [anon_sym_string] = ACTIONS(1576), - [anon_sym_symbol] = ACTIONS(1576), - [anon_sym_abstract] = ACTIONS(1576), - [anon_sym_interface] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [669] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [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(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_with] = 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(2235), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_LTtemplate_GT] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), + [680] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LTtemplate_GT] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_void] = ACTIONS(2117), + [anon_sym_delete] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2235), - [sym_number] = ACTIONS(2235), - [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(2235), - [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_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), + [anon_sym_BQUOTE] = ACTIONS(2115), + [sym_number] = ACTIONS(2115), + [sym_this] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_undefined] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), }, - [670] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_LTtemplate_GT] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), + [681] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2239), - [sym_number] = ACTIONS(2239), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [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(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_with] = 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(2243), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_LTtemplate_GT] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2243), - [anon_sym_SQUOTE] = ACTIONS(2243), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2243), - [sym_number] = ACTIONS(2243), - [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(2243), - [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_abstract] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(2247), - [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(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_with] = 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(2247), - [anon_sym_case] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LTtemplate_GT] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2247), + [682] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2247), - [sym_number] = ACTIONS(2247), - [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(2247), - [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_abstract] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2251), - [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(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2253), - [anon_sym_import] = ACTIONS(2253), - [anon_sym_var] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_with] = 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(2251), - [anon_sym_case] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_function] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2253), - [anon_sym_delete] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), + [683] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [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(2251), - [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_abstract] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), + [684] = { + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2217), + [anon_sym_import] = ACTIONS(2217), + [anon_sym_var] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_switch] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_with] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_debugger] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_throw] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_function] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2217), + [anon_sym_delete] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_this] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_null] = ACTIONS(2217), + [sym_undefined] = ACTIONS(2217), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_readonly] = ACTIONS(2217), + [anon_sym_get] = ACTIONS(2217), + [anon_sym_set] = ACTIONS(2217), + [anon_sym_declare] = ACTIONS(2217), + [anon_sym_public] = ACTIONS(2217), + [anon_sym_private] = ACTIONS(2217), + [anon_sym_protected] = ACTIONS(2217), + [anon_sym_override] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_any] = ACTIONS(2217), + [anon_sym_number] = ACTIONS(2217), + [anon_sym_boolean] = ACTIONS(2217), + [anon_sym_string] = ACTIONS(2217), + [anon_sym_symbol] = ACTIONS(2217), + [anon_sym_abstract] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), }, - [675] = { - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_export] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(2261), - [anon_sym_var] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_with] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_debugger] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_case] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_SLASH] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2261), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), + [685] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_this] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_null] = ACTIONS(2261), - [sym_undefined] = ACTIONS(2261), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_readonly] = ACTIONS(2261), - [anon_sym_get] = ACTIONS(2261), - [anon_sym_set] = ACTIONS(2261), - [anon_sym_declare] = ACTIONS(2261), - [anon_sym_public] = ACTIONS(2261), - [anon_sym_private] = ACTIONS(2261), - [anon_sym_protected] = ACTIONS(2261), - [anon_sym_override] = ACTIONS(2261), - [anon_sym_module] = ACTIONS(2261), - [anon_sym_any] = ACTIONS(2261), - [anon_sym_number] = ACTIONS(2261), - [anon_sym_boolean] = ACTIONS(2261), - [anon_sym_string] = ACTIONS(2261), - [anon_sym_symbol] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_typeof] = ACTIONS(2265), - [anon_sym_import] = ACTIONS(2265), - [anon_sym_var] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_with] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_debugger] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LTtemplate_GT] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_void] = ACTIONS(2265), - [anon_sym_delete] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2263), - [anon_sym_SQUOTE] = ACTIONS(2263), + [686] = { + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2263), - [sym_number] = ACTIONS(2263), - [sym_this] = ACTIONS(2265), - [sym_super] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_null] = ACTIONS(2265), - [sym_undefined] = ACTIONS(2265), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_readonly] = ACTIONS(2265), - [anon_sym_get] = ACTIONS(2265), - [anon_sym_set] = ACTIONS(2265), - [anon_sym_declare] = ACTIONS(2265), - [anon_sym_public] = ACTIONS(2265), - [anon_sym_private] = ACTIONS(2265), - [anon_sym_protected] = ACTIONS(2265), - [anon_sym_override] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), - [anon_sym_any] = ACTIONS(2265), - [anon_sym_number] = ACTIONS(2265), - [anon_sym_boolean] = ACTIONS(2265), - [anon_sym_string] = ACTIONS(2265), - [anon_sym_symbol] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_export] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_typeof] = ACTIONS(2269), - [anon_sym_import] = ACTIONS(2269), - [anon_sym_var] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_with] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_debugger] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_case] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LTtemplate_GT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_void] = ACTIONS(2269), - [anon_sym_delete] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), + [687] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2267), - [sym_number] = ACTIONS(2267), - [sym_this] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_null] = ACTIONS(2269), - [sym_undefined] = ACTIONS(2269), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_readonly] = ACTIONS(2269), - [anon_sym_get] = ACTIONS(2269), - [anon_sym_set] = ACTIONS(2269), - [anon_sym_declare] = ACTIONS(2269), - [anon_sym_public] = ACTIONS(2269), - [anon_sym_private] = ACTIONS(2269), - [anon_sym_protected] = ACTIONS(2269), - [anon_sym_override] = ACTIONS(2269), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_any] = ACTIONS(2269), - [anon_sym_number] = ACTIONS(2269), - [anon_sym_boolean] = ACTIONS(2269), - [anon_sym_string] = ACTIONS(2269), - [anon_sym_symbol] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [678] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [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(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_typeof] = ACTIONS(2273), - [anon_sym_import] = ACTIONS(2273), - [anon_sym_var] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_with] = 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(2271), - [anon_sym_case] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LTtemplate_GT] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_function] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_void] = ACTIONS(2273), - [anon_sym_delete] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2271), - [sym_number] = ACTIONS(2271), - [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(2271), - [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_abstract] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - }, - [679] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_namespace] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_typeof] = ACTIONS(1576), - [anon_sym_import] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_else] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_with] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_debugger] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_throw] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_LTtemplate_GT] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_class] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1576), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_delete] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_number] = ACTIONS(1574), - [sym_this] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_true] = ACTIONS(1576), - [sym_false] = ACTIONS(1576), - [sym_null] = ACTIONS(1576), - [sym_undefined] = ACTIONS(1576), - [anon_sym_AT] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_readonly] = ACTIONS(1576), - [anon_sym_get] = ACTIONS(1576), - [anon_sym_set] = ACTIONS(1576), - [anon_sym_declare] = ACTIONS(1576), - [anon_sym_public] = ACTIONS(1576), - [anon_sym_private] = ACTIONS(1576), - [anon_sym_protected] = ACTIONS(1576), - [anon_sym_override] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_number] = ACTIONS(1576), - [anon_sym_boolean] = ACTIONS(1576), - [anon_sym_string] = ACTIONS(1576), - [anon_sym_symbol] = ACTIONS(1576), - [anon_sym_abstract] = ACTIONS(1576), - [anon_sym_interface] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [688] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_typeof] = ACTIONS(2277), - [anon_sym_import] = ACTIONS(2277), - [anon_sym_var] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_with] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_debugger] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_case] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LTtemplate_GT] = ACTIONS(2275), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_SLASH] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_function] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(2277), - [anon_sym_delete] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_DASH_DASH] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), + [689] = { + [ts_builtin_sym_end] = ACTIONS(2223), + [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(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_with] = 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(2223), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = 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(2223), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2275), - [sym_number] = ACTIONS(2275), - [sym_this] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [sym_null] = ACTIONS(2277), - [sym_undefined] = ACTIONS(2277), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_readonly] = ACTIONS(2277), - [anon_sym_get] = ACTIONS(2277), - [anon_sym_set] = ACTIONS(2277), - [anon_sym_declare] = ACTIONS(2277), - [anon_sym_public] = ACTIONS(2277), - [anon_sym_private] = ACTIONS(2277), - [anon_sym_protected] = ACTIONS(2277), - [anon_sym_override] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_any] = ACTIONS(2277), - [anon_sym_number] = ACTIONS(2277), - [anon_sym_boolean] = ACTIONS(2277), - [anon_sym_string] = ACTIONS(2277), - [anon_sym_symbol] = ACTIONS(2277), - [anon_sym_abstract] = ACTIONS(2277), - [anon_sym_interface] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [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(2223), + [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_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [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(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_typeof] = ACTIONS(2281), - [anon_sym_import] = ACTIONS(2281), - [anon_sym_var] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_with] = 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(2279), - [anon_sym_case] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LTtemplate_GT] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_void] = ACTIONS(2281), - [anon_sym_delete] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2279), - [anon_sym_SQUOTE] = ACTIONS(2279), + [690] = { + [ts_builtin_sym_end] = ACTIONS(2227), + [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(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_with] = 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(2227), + [anon_sym_case] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_new] = 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(2227), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2279), - [sym_number] = ACTIONS(2279), - [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(2279), - [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_abstract] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [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(2227), + [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_abstract] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_export] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_typeof] = ACTIONS(2285), - [anon_sym_import] = ACTIONS(2285), - [anon_sym_var] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_with] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_debugger] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_case] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LTtemplate_GT] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_void] = ACTIONS(2285), - [anon_sym_delete] = ACTIONS(2285), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2283), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2283), - [sym_number] = ACTIONS(2283), - [sym_this] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_null] = ACTIONS(2285), - [sym_undefined] = ACTIONS(2285), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_readonly] = ACTIONS(2285), - [anon_sym_get] = ACTIONS(2285), - [anon_sym_set] = ACTIONS(2285), - [anon_sym_declare] = ACTIONS(2285), - [anon_sym_public] = ACTIONS(2285), - [anon_sym_private] = ACTIONS(2285), - [anon_sym_protected] = ACTIONS(2285), - [anon_sym_override] = ACTIONS(2285), - [anon_sym_module] = ACTIONS(2285), - [anon_sym_any] = ACTIONS(2285), - [anon_sym_number] = ACTIONS(2285), - [anon_sym_boolean] = ACTIONS(2285), - [anon_sym_string] = ACTIONS(2285), - [anon_sym_symbol] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [691] = { + [ts_builtin_sym_end] = ACTIONS(2107), + [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(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_with] = 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(2107), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LTtemplate_GT] = ACTIONS(2107), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = 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(2107), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2107), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2107), + [sym_number] = ACTIONS(2107), + [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(2107), + [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_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [692] = { + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LTtemplate_GT] = ACTIONS(2231), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2231), + [sym_number] = ACTIONS(2231), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_default] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_typeof] = ACTIONS(2293), - [anon_sym_import] = ACTIONS(2293), - [anon_sym_var] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_with] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_debugger] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_case] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LTtemplate_GT] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_void] = ACTIONS(2293), - [anon_sym_delete] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2291), + [693] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2291), - [sym_number] = ACTIONS(2291), - [sym_this] = ACTIONS(2293), - [sym_super] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_null] = ACTIONS(2293), - [sym_undefined] = ACTIONS(2293), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_readonly] = ACTIONS(2293), - [anon_sym_get] = ACTIONS(2293), - [anon_sym_set] = ACTIONS(2293), - [anon_sym_declare] = ACTIONS(2293), - [anon_sym_public] = ACTIONS(2293), - [anon_sym_private] = ACTIONS(2293), - [anon_sym_protected] = ACTIONS(2293), - [anon_sym_override] = ACTIONS(2293), - [anon_sym_module] = ACTIONS(2293), - [anon_sym_any] = ACTIONS(2293), - [anon_sym_number] = ACTIONS(2293), - [anon_sym_boolean] = ACTIONS(2293), - [anon_sym_string] = ACTIONS(2293), - [anon_sym_symbol] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [694] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_typeof] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_var] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_debugger] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LTtemplate_GT] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_number] = ACTIONS(2171), + [sym_this] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [695] = { + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_case] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [696] = { + [ts_builtin_sym_end] = ACTIONS(2243), + [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(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_with] = 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(2243), + [anon_sym_case] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_new] = 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(2243), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [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(2243), + [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_abstract] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [697] = { + [ts_builtin_sym_end] = ACTIONS(2247), + [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(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_with] = 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(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LTtemplate_GT] = ACTIONS(2247), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_new] = 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(2247), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2247), + [sym_number] = ACTIONS(2247), + [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(2247), + [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_abstract] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), }, - [692] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_LTtemplate_GT] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), + [698] = { + [ts_builtin_sym_end] = ACTIONS(2251), + [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(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_with] = 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(2251), + [anon_sym_case] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LTtemplate_GT] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_new] = 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(2251), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2295), - [sym_number] = ACTIONS(2295), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [anon_sym_BQUOTE] = ACTIONS(2251), + [sym_number] = ACTIONS(2251), + [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(2251), + [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_abstract] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [699] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_export] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_var] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_debugger] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_this] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_null] = ACTIONS(2257), + [sym_undefined] = ACTIONS(2257), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_get] = ACTIONS(2257), + [anon_sym_set] = ACTIONS(2257), + [anon_sym_declare] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_private] = ACTIONS(2257), + [anon_sym_protected] = ACTIONS(2257), + [anon_sym_override] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_any] = ACTIONS(2257), + [anon_sym_number] = ACTIONS(2257), + [anon_sym_boolean] = ACTIONS(2257), + [anon_sym_string] = ACTIONS(2257), + [anon_sym_symbol] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2301), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_typeof] = ACTIONS(2301), - [anon_sym_import] = ACTIONS(2301), - [anon_sym_var] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_with] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_debugger] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_throw] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_case] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LTtemplate_GT] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_SLASH] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_function] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_void] = ACTIONS(2301), - [anon_sym_delete] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2299), - [sym_number] = ACTIONS(2299), - [sym_this] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_true] = ACTIONS(2301), - [sym_false] = ACTIONS(2301), - [sym_null] = ACTIONS(2301), - [sym_undefined] = ACTIONS(2301), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_readonly] = ACTIONS(2301), - [anon_sym_get] = ACTIONS(2301), - [anon_sym_set] = ACTIONS(2301), - [anon_sym_declare] = ACTIONS(2301), - [anon_sym_public] = ACTIONS(2301), - [anon_sym_private] = ACTIONS(2301), - [anon_sym_protected] = ACTIONS(2301), - [anon_sym_override] = ACTIONS(2301), - [anon_sym_module] = ACTIONS(2301), - [anon_sym_any] = ACTIONS(2301), - [anon_sym_number] = ACTIONS(2301), - [anon_sym_boolean] = ACTIONS(2301), - [anon_sym_string] = ACTIONS(2301), - [anon_sym_symbol] = ACTIONS(2301), - [anon_sym_abstract] = ACTIONS(2301), - [anon_sym_interface] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), + [700] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_with] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_debugger] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LTtemplate_GT] = ACTIONS(1591), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_function] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_delete] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_number] = ACTIONS(1591), + [sym_this] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [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_abstract] = ACTIONS(1593), + [anon_sym_interface] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [701] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_else] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_with] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_debugger] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_throw] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LTtemplate_GT] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_class] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_function] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_delete] = ACTIONS(1612), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_number] = ACTIONS(1610), - [sym_this] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_AT] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1612), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_override] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_number] = ACTIONS(1612), - [anon_sym_boolean] = ACTIONS(1612), - [anon_sym_string] = ACTIONS(1612), - [anon_sym_symbol] = ACTIONS(1612), - [anon_sym_abstract] = ACTIONS(1612), - [anon_sym_interface] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, - [697] = { - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2305), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_typeof] = ACTIONS(2305), - [anon_sym_import] = ACTIONS(2305), - [anon_sym_var] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_switch] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_debugger] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_throw] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_case] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_LTtemplate_GT] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_void] = ACTIONS(2305), - [anon_sym_delete] = ACTIONS(2305), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2303), - [anon_sym_SQUOTE] = ACTIONS(2303), + [702] = { + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2265), + [anon_sym_import] = ACTIONS(2265), + [anon_sym_var] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_with] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_debugger] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_case] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_SLASH] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2265), + [anon_sym_delete] = ACTIONS(2265), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2303), - [sym_number] = ACTIONS(2303), - [sym_this] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_null] = ACTIONS(2305), - [sym_undefined] = ACTIONS(2305), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_get] = ACTIONS(2305), - [anon_sym_set] = ACTIONS(2305), - [anon_sym_declare] = ACTIONS(2305), - [anon_sym_public] = ACTIONS(2305), - [anon_sym_private] = ACTIONS(2305), - [anon_sym_protected] = ACTIONS(2305), - [anon_sym_override] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_any] = ACTIONS(2305), - [anon_sym_number] = ACTIONS(2305), - [anon_sym_boolean] = ACTIONS(2305), - [anon_sym_string] = ACTIONS(2305), - [anon_sym_symbol] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_this] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_null] = ACTIONS(2265), + [sym_undefined] = ACTIONS(2265), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_get] = ACTIONS(2265), + [anon_sym_set] = ACTIONS(2265), + [anon_sym_declare] = ACTIONS(2265), + [anon_sym_public] = ACTIONS(2265), + [anon_sym_private] = ACTIONS(2265), + [anon_sym_protected] = ACTIONS(2265), + [anon_sym_override] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_any] = ACTIONS(2265), + [anon_sym_number] = ACTIONS(2265), + [anon_sym_boolean] = ACTIONS(2265), + [anon_sym_string] = ACTIONS(2265), + [anon_sym_symbol] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), }, - [698] = { - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2309), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_typeof] = ACTIONS(2309), - [anon_sym_import] = ACTIONS(2309), - [anon_sym_var] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_with] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_debugger] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_case] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LTtemplate_GT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_void] = ACTIONS(2309), - [anon_sym_delete] = ACTIONS(2309), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_SQUOTE] = ACTIONS(2307), + [703] = { + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_export] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_typeof] = ACTIONS(2269), + [anon_sym_import] = ACTIONS(2269), + [anon_sym_var] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_with] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_debugger] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_case] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_LTtemplate_GT] = ACTIONS(2267), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_void] = ACTIONS(2269), + [anon_sym_delete] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2267), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2307), - [sym_number] = ACTIONS(2307), - [sym_this] = ACTIONS(2309), - [sym_super] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_null] = ACTIONS(2309), - [sym_undefined] = ACTIONS(2309), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_readonly] = ACTIONS(2309), - [anon_sym_get] = ACTIONS(2309), - [anon_sym_set] = ACTIONS(2309), - [anon_sym_declare] = ACTIONS(2309), - [anon_sym_public] = ACTIONS(2309), - [anon_sym_private] = ACTIONS(2309), - [anon_sym_protected] = ACTIONS(2309), - [anon_sym_override] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_any] = ACTIONS(2309), - [anon_sym_number] = ACTIONS(2309), - [anon_sym_boolean] = ACTIONS(2309), - [anon_sym_string] = ACTIONS(2309), - [anon_sym_symbol] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2313), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_typeof] = ACTIONS(2313), - [anon_sym_import] = ACTIONS(2313), - [anon_sym_var] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_with] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_debugger] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_case] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_LTtemplate_GT] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_SLASH] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_void] = ACTIONS(2313), - [anon_sym_delete] = ACTIONS(2313), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2311), - [anon_sym_SQUOTE] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2311), - [sym_number] = ACTIONS(2311), - [sym_this] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_true] = ACTIONS(2313), - [sym_false] = ACTIONS(2313), - [sym_null] = ACTIONS(2313), - [sym_undefined] = ACTIONS(2313), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_readonly] = ACTIONS(2313), - [anon_sym_get] = ACTIONS(2313), - [anon_sym_set] = ACTIONS(2313), - [anon_sym_declare] = ACTIONS(2313), - [anon_sym_public] = ACTIONS(2313), - [anon_sym_private] = ACTIONS(2313), - [anon_sym_protected] = ACTIONS(2313), - [anon_sym_override] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_any] = ACTIONS(2313), - [anon_sym_number] = ACTIONS(2313), - [anon_sym_boolean] = ACTIONS(2313), - [anon_sym_string] = ACTIONS(2313), - [anon_sym_symbol] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), + [anon_sym_BQUOTE] = ACTIONS(2267), + [sym_number] = ACTIONS(2267), + [sym_this] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_undefined] = ACTIONS(2269), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_readonly] = ACTIONS(2269), + [anon_sym_get] = ACTIONS(2269), + [anon_sym_set] = ACTIONS(2269), + [anon_sym_declare] = ACTIONS(2269), + [anon_sym_public] = ACTIONS(2269), + [anon_sym_private] = ACTIONS(2269), + [anon_sym_protected] = ACTIONS(2269), + [anon_sym_override] = ACTIONS(2269), + [anon_sym_module] = ACTIONS(2269), + [anon_sym_any] = ACTIONS(2269), + [anon_sym_number] = ACTIONS(2269), + [anon_sym_boolean] = ACTIONS(2269), + [anon_sym_string] = ACTIONS(2269), + [anon_sym_symbol] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), + [704] = { + [ts_builtin_sym_end] = ACTIONS(2271), + [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(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_with] = 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(2271), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_LTtemplate_GT] = ACTIONS(2271), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_new] = 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(2271), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2271), + [sym_number] = ACTIONS(2271), + [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(2271), + [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_abstract] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), + [705] = { + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_typeof] = ACTIONS(2277), + [anon_sym_import] = ACTIONS(2277), + [anon_sym_var] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_switch] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_with] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_debugger] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_throw] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_case] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LTtemplate_GT] = ACTIONS(2275), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_function] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(2277), + [anon_sym_delete] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2275), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2275), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2275), + [sym_number] = ACTIONS(2275), + [sym_this] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_true] = ACTIONS(2277), + [sym_false] = ACTIONS(2277), + [sym_null] = ACTIONS(2277), + [sym_undefined] = ACTIONS(2277), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_readonly] = ACTIONS(2277), + [anon_sym_get] = ACTIONS(2277), + [anon_sym_set] = ACTIONS(2277), + [anon_sym_declare] = ACTIONS(2277), + [anon_sym_public] = ACTIONS(2277), + [anon_sym_private] = ACTIONS(2277), + [anon_sym_protected] = ACTIONS(2277), + [anon_sym_override] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_any] = ACTIONS(2277), + [anon_sym_number] = ACTIONS(2277), + [anon_sym_boolean] = ACTIONS(2277), + [anon_sym_string] = ACTIONS(2277), + [anon_sym_symbol] = ACTIONS(2277), + [anon_sym_abstract] = ACTIONS(2277), + [anon_sym_interface] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), }, - [702] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [706] = { + [ts_builtin_sym_end] = ACTIONS(2279), + [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(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_with] = 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(2279), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LTtemplate_GT] = ACTIONS(2279), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_new] = 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(2279), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2279), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_BQUOTE] = ACTIONS(2279), + [sym_number] = ACTIONS(2279), + [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(2279), + [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_abstract] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + }, + [707] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + }, + [709] = { + [ts_builtin_sym_end] = ACTIONS(2287), + [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(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_with] = 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(2287), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_LTtemplate_GT] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_new] = 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(2287), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2287), + [sym_number] = ACTIONS(2287), + [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(2287), + [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), @@ -89100,1833 +89343,2070 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2289), [anon_sym_enum] = ACTIONS(2289), }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_identifier] = ACTIONS(2321), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_typeof] = ACTIONS(2321), - [anon_sym_import] = ACTIONS(2321), - [anon_sym_var] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_with] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_debugger] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_LTtemplate_GT] = ACTIONS(2319), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_SLASH] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_void] = ACTIONS(2321), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), + [710] = { + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_typeof] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_var] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_with] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_debugger] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LTtemplate_GT] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_SLASH] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_void] = ACTIONS(2293), + [anon_sym_delete] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2291), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2319), - [sym_number] = ACTIONS(2319), - [sym_this] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), - [sym_true] = ACTIONS(2321), - [sym_false] = ACTIONS(2321), - [sym_null] = ACTIONS(2321), - [sym_undefined] = ACTIONS(2321), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_readonly] = ACTIONS(2321), - [anon_sym_get] = ACTIONS(2321), - [anon_sym_set] = ACTIONS(2321), - [anon_sym_declare] = ACTIONS(2321), - [anon_sym_public] = ACTIONS(2321), - [anon_sym_private] = ACTIONS(2321), - [anon_sym_protected] = ACTIONS(2321), - [anon_sym_override] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_any] = ACTIONS(2321), - [anon_sym_number] = ACTIONS(2321), - [anon_sym_boolean] = ACTIONS(2321), - [anon_sym_string] = ACTIONS(2321), - [anon_sym_symbol] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), + [anon_sym_BQUOTE] = ACTIONS(2291), + [sym_number] = ACTIONS(2291), + [sym_this] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_true] = ACTIONS(2293), + [sym_false] = ACTIONS(2293), + [sym_null] = ACTIONS(2293), + [sym_undefined] = ACTIONS(2293), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_readonly] = ACTIONS(2293), + [anon_sym_get] = ACTIONS(2293), + [anon_sym_set] = ACTIONS(2293), + [anon_sym_declare] = ACTIONS(2293), + [anon_sym_public] = ACTIONS(2293), + [anon_sym_private] = ACTIONS(2293), + [anon_sym_protected] = ACTIONS(2293), + [anon_sym_override] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_any] = ACTIONS(2293), + [anon_sym_number] = ACTIONS(2293), + [anon_sym_boolean] = ACTIONS(2293), + [anon_sym_string] = ACTIONS(2293), + [anon_sym_symbol] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [711] = { + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_typeof] = ACTIONS(2297), + [anon_sym_import] = ACTIONS(2297), + [anon_sym_var] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_with] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_debugger] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LTtemplate_GT] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_void] = ACTIONS(2297), + [anon_sym_delete] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2295), + [sym_number] = ACTIONS(2295), + [sym_this] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_null] = ACTIONS(2297), + [sym_undefined] = ACTIONS(2297), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_readonly] = ACTIONS(2297), + [anon_sym_get] = ACTIONS(2297), + [anon_sym_set] = ACTIONS(2297), + [anon_sym_declare] = ACTIONS(2297), + [anon_sym_public] = ACTIONS(2297), + [anon_sym_private] = ACTIONS(2297), + [anon_sym_protected] = ACTIONS(2297), + [anon_sym_override] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_any] = ACTIONS(2297), + [anon_sym_number] = ACTIONS(2297), + [anon_sym_boolean] = ACTIONS(2297), + [anon_sym_string] = ACTIONS(2297), + [anon_sym_symbol] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2329), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_typeof] = ACTIONS(2329), - [anon_sym_import] = ACTIONS(2329), - [anon_sym_var] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_with] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_debugger] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_LTtemplate_GT] = ACTIONS(2327), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_SLASH] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_void] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), + [712] = { + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_export] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2301), + [anon_sym_var] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_with] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_debugger] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_SLASH] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2301), + [anon_sym_delete] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2327), - [sym_number] = ACTIONS(2327), - [sym_this] = ACTIONS(2329), - [sym_super] = ACTIONS(2329), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [sym_undefined] = ACTIONS(2329), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_readonly] = ACTIONS(2329), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_declare] = ACTIONS(2329), - [anon_sym_public] = ACTIONS(2329), - [anon_sym_private] = ACTIONS(2329), - [anon_sym_protected] = ACTIONS(2329), - [anon_sym_override] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_any] = ACTIONS(2329), - [anon_sym_number] = ACTIONS(2329), - [anon_sym_boolean] = ACTIONS(2329), - [anon_sym_string] = ACTIONS(2329), - [anon_sym_symbol] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_this] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_true] = ACTIONS(2301), + [sym_false] = ACTIONS(2301), + [sym_null] = ACTIONS(2301), + [sym_undefined] = ACTIONS(2301), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_readonly] = ACTIONS(2301), + [anon_sym_get] = ACTIONS(2301), + [anon_sym_set] = ACTIONS(2301), + [anon_sym_declare] = ACTIONS(2301), + [anon_sym_public] = ACTIONS(2301), + [anon_sym_private] = ACTIONS(2301), + [anon_sym_protected] = ACTIONS(2301), + [anon_sym_override] = ACTIONS(2301), + [anon_sym_module] = ACTIONS(2301), + [anon_sym_any] = ACTIONS(2301), + [anon_sym_number] = ACTIONS(2301), + [anon_sym_boolean] = ACTIONS(2301), + [anon_sym_string] = ACTIONS(2301), + [anon_sym_symbol] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2333), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_typeof] = ACTIONS(2333), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_with] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_debugger] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_case] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_LTtemplate_GT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_SLASH] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_void] = ACTIONS(2333), - [anon_sym_delete] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), + [713] = { + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_typeof] = ACTIONS(2305), + [anon_sym_import] = ACTIONS(2305), + [anon_sym_var] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_with] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_debugger] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LTtemplate_GT] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_SLASH] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_void] = ACTIONS(2305), + [anon_sym_delete] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2331), - [sym_number] = ACTIONS(2331), - [sym_this] = ACTIONS(2333), - [sym_super] = ACTIONS(2333), - [sym_true] = ACTIONS(2333), - [sym_false] = ACTIONS(2333), - [sym_null] = ACTIONS(2333), - [sym_undefined] = ACTIONS(2333), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_readonly] = ACTIONS(2333), - [anon_sym_get] = ACTIONS(2333), - [anon_sym_set] = ACTIONS(2333), - [anon_sym_declare] = ACTIONS(2333), - [anon_sym_public] = ACTIONS(2333), - [anon_sym_private] = ACTIONS(2333), - [anon_sym_protected] = ACTIONS(2333), - [anon_sym_override] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_any] = ACTIONS(2333), - [anon_sym_number] = ACTIONS(2333), - [anon_sym_boolean] = ACTIONS(2333), - [anon_sym_string] = ACTIONS(2333), - [anon_sym_symbol] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), + [anon_sym_BQUOTE] = ACTIONS(2303), + [sym_number] = ACTIONS(2303), + [sym_this] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_true] = ACTIONS(2305), + [sym_false] = ACTIONS(2305), + [sym_null] = ACTIONS(2305), + [sym_undefined] = ACTIONS(2305), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_readonly] = ACTIONS(2305), + [anon_sym_get] = ACTIONS(2305), + [anon_sym_set] = ACTIONS(2305), + [anon_sym_declare] = ACTIONS(2305), + [anon_sym_public] = ACTIONS(2305), + [anon_sym_private] = ACTIONS(2305), + [anon_sym_protected] = ACTIONS(2305), + [anon_sym_override] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_any] = ACTIONS(2305), + [anon_sym_number] = ACTIONS(2305), + [anon_sym_boolean] = ACTIONS(2305), + [anon_sym_string] = ACTIONS(2305), + [anon_sym_symbol] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), }, - [707] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2337), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_typeof] = ACTIONS(2337), - [anon_sym_import] = ACTIONS(2337), - [anon_sym_var] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_with] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_debugger] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_LTtemplate_GT] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_void] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), + [714] = { + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_export] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2309), + [anon_sym_import] = ACTIONS(2309), + [anon_sym_var] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_with] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_debugger] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2309), + [anon_sym_delete] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2335), - [sym_number] = ACTIONS(2335), - [sym_this] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_undefined] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_readonly] = ACTIONS(2337), - [anon_sym_get] = ACTIONS(2337), - [anon_sym_set] = ACTIONS(2337), - [anon_sym_declare] = ACTIONS(2337), - [anon_sym_public] = ACTIONS(2337), - [anon_sym_private] = ACTIONS(2337), - [anon_sym_protected] = ACTIONS(2337), - [anon_sym_override] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_any] = ACTIONS(2337), - [anon_sym_number] = ACTIONS(2337), - [anon_sym_boolean] = ACTIONS(2337), - [anon_sym_string] = ACTIONS(2337), - [anon_sym_symbol] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2341), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_typeof] = ACTIONS(2341), - [anon_sym_import] = ACTIONS(2341), - [anon_sym_var] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_with] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_debugger] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_case] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_LTtemplate_GT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_void] = ACTIONS(2341), - [anon_sym_delete] = ACTIONS(2341), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2339), - [anon_sym_SQUOTE] = ACTIONS(2339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2339), - [sym_number] = ACTIONS(2339), - [sym_this] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_true] = ACTIONS(2341), - [sym_false] = ACTIONS(2341), - [sym_null] = ACTIONS(2341), - [sym_undefined] = ACTIONS(2341), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_readonly] = ACTIONS(2341), - [anon_sym_get] = ACTIONS(2341), - [anon_sym_set] = ACTIONS(2341), - [anon_sym_declare] = ACTIONS(2341), - [anon_sym_public] = ACTIONS(2341), - [anon_sym_private] = ACTIONS(2341), - [anon_sym_protected] = ACTIONS(2341), - [anon_sym_override] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_any] = ACTIONS(2341), - [anon_sym_number] = ACTIONS(2341), - [anon_sym_boolean] = ACTIONS(2341), - [anon_sym_string] = ACTIONS(2341), - [anon_sym_symbol] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_this] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [sym_null] = ACTIONS(2309), + [sym_undefined] = ACTIONS(2309), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_readonly] = ACTIONS(2309), + [anon_sym_get] = ACTIONS(2309), + [anon_sym_set] = ACTIONS(2309), + [anon_sym_declare] = ACTIONS(2309), + [anon_sym_public] = ACTIONS(2309), + [anon_sym_private] = ACTIONS(2309), + [anon_sym_protected] = ACTIONS(2309), + [anon_sym_override] = ACTIONS(2309), + [anon_sym_module] = ACTIONS(2309), + [anon_sym_any] = ACTIONS(2309), + [anon_sym_number] = ACTIONS(2309), + [anon_sym_boolean] = ACTIONS(2309), + [anon_sym_string] = ACTIONS(2309), + [anon_sym_symbol] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), }, - [709] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [715] = { + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_typeof] = ACTIONS(2313), + [anon_sym_import] = ACTIONS(2313), + [anon_sym_var] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_with] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_debugger] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LTtemplate_GT] = ACTIONS(2311), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_SLASH] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_void] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2311), + [sym_number] = ACTIONS(2311), + [sym_this] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [sym_null] = ACTIONS(2313), + [sym_undefined] = ACTIONS(2313), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_readonly] = ACTIONS(2313), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), + [anon_sym_declare] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_private] = ACTIONS(2313), + [anon_sym_protected] = ACTIONS(2313), + [anon_sym_override] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_any] = ACTIONS(2313), + [anon_sym_number] = ACTIONS(2313), + [anon_sym_boolean] = ACTIONS(2313), + [anon_sym_string] = ACTIONS(2313), + [anon_sym_symbol] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [716] = { + [ts_builtin_sym_end] = ACTIONS(2315), + [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(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_with] = 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(2315), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LTtemplate_GT] = ACTIONS(2315), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_new] = 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(2315), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2315), + [sym_number] = ACTIONS(2315), + [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(2315), + [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_abstract] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2345), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_typeof] = ACTIONS(2345), - [anon_sym_import] = ACTIONS(2345), - [anon_sym_var] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_switch] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_debugger] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_throw] = ACTIONS(2345), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_case] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LTtemplate_GT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_void] = ACTIONS(2345), - [anon_sym_delete] = ACTIONS(2345), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_DASH_DASH] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_SQUOTE] = ACTIONS(2343), + [717] = { + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_typeof] = ACTIONS(2305), + [anon_sym_import] = ACTIONS(2305), + [anon_sym_var] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_with] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_debugger] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LTtemplate_GT] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_SLASH] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_void] = ACTIONS(2305), + [anon_sym_delete] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2343), - [sym_number] = ACTIONS(2343), - [sym_this] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_true] = ACTIONS(2345), - [sym_false] = ACTIONS(2345), - [sym_null] = ACTIONS(2345), - [sym_undefined] = ACTIONS(2345), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_readonly] = ACTIONS(2345), - [anon_sym_get] = ACTIONS(2345), - [anon_sym_set] = ACTIONS(2345), - [anon_sym_declare] = ACTIONS(2345), - [anon_sym_public] = ACTIONS(2345), - [anon_sym_private] = ACTIONS(2345), - [anon_sym_protected] = ACTIONS(2345), - [anon_sym_override] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_any] = ACTIONS(2345), - [anon_sym_number] = ACTIONS(2345), - [anon_sym_boolean] = ACTIONS(2345), - [anon_sym_string] = ACTIONS(2345), - [anon_sym_symbol] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), + [anon_sym_BQUOTE] = ACTIONS(2303), + [sym_number] = ACTIONS(2303), + [sym_this] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_true] = ACTIONS(2305), + [sym_false] = ACTIONS(2305), + [sym_null] = ACTIONS(2305), + [sym_undefined] = ACTIONS(2305), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_readonly] = ACTIONS(2305), + [anon_sym_get] = ACTIONS(2305), + [anon_sym_set] = ACTIONS(2305), + [anon_sym_declare] = ACTIONS(2305), + [anon_sym_public] = ACTIONS(2305), + [anon_sym_private] = ACTIONS(2305), + [anon_sym_protected] = ACTIONS(2305), + [anon_sym_override] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_any] = ACTIONS(2305), + [anon_sym_number] = ACTIONS(2305), + [anon_sym_boolean] = ACTIONS(2305), + [anon_sym_string] = ACTIONS(2305), + [anon_sym_symbol] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), }, - [712] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [718] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_export] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_typeof] = ACTIONS(2321), + [anon_sym_import] = ACTIONS(2321), + [anon_sym_var] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_debugger] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LTtemplate_GT] = ACTIONS(2319), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_void] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2319), + [sym_number] = ACTIONS(2319), + [sym_this] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_null] = ACTIONS(2321), + [sym_undefined] = ACTIONS(2321), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_readonly] = ACTIONS(2321), + [anon_sym_get] = ACTIONS(2321), + [anon_sym_set] = ACTIONS(2321), + [anon_sym_declare] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_override] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_any] = ACTIONS(2321), + [anon_sym_number] = ACTIONS(2321), + [anon_sym_boolean] = ACTIONS(2321), + [anon_sym_string] = ACTIONS(2321), + [anon_sym_symbol] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), }, - [713] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [719] = { + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2113), + [anon_sym_import] = ACTIONS(2113), + [anon_sym_var] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_switch] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_with] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_debugger] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_throw] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_SLASH] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2113), + [anon_sym_delete] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_this] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_true] = ACTIONS(2113), + [sym_false] = ACTIONS(2113), + [sym_null] = ACTIONS(2113), + [sym_undefined] = ACTIONS(2113), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_readonly] = ACTIONS(2113), + [anon_sym_get] = ACTIONS(2113), + [anon_sym_set] = ACTIONS(2113), + [anon_sym_declare] = ACTIONS(2113), + [anon_sym_public] = ACTIONS(2113), + [anon_sym_private] = ACTIONS(2113), + [anon_sym_protected] = ACTIONS(2113), + [anon_sym_override] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_any] = ACTIONS(2113), + [anon_sym_number] = ACTIONS(2113), + [anon_sym_boolean] = ACTIONS(2113), + [anon_sym_string] = ACTIONS(2113), + [anon_sym_symbol] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), }, - [714] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2349), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_typeof] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2349), - [anon_sym_var] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_with] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_debugger] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_LTtemplate_GT] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_SLASH] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_void] = ACTIONS(2349), - [anon_sym_delete] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), + [720] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2325), + [anon_sym_export] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_typeof] = ACTIONS(2325), + [anon_sym_import] = ACTIONS(2325), + [anon_sym_var] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_with] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_debugger] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_LTtemplate_GT] = ACTIONS(2323), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_SLASH] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_void] = ACTIONS(2325), + [anon_sym_delete] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2347), - [sym_number] = ACTIONS(2347), - [sym_this] = ACTIONS(2349), - [sym_super] = ACTIONS(2349), - [sym_true] = ACTIONS(2349), - [sym_false] = ACTIONS(2349), - [sym_null] = ACTIONS(2349), - [sym_undefined] = ACTIONS(2349), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_readonly] = ACTIONS(2349), - [anon_sym_get] = ACTIONS(2349), - [anon_sym_set] = ACTIONS(2349), - [anon_sym_declare] = ACTIONS(2349), - [anon_sym_public] = ACTIONS(2349), - [anon_sym_private] = ACTIONS(2349), - [anon_sym_protected] = ACTIONS(2349), - [anon_sym_override] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_any] = ACTIONS(2349), - [anon_sym_number] = ACTIONS(2349), - [anon_sym_boolean] = ACTIONS(2349), - [anon_sym_string] = ACTIONS(2349), - [anon_sym_symbol] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), + [anon_sym_BQUOTE] = ACTIONS(2323), + [sym_number] = ACTIONS(2323), + [sym_this] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_true] = ACTIONS(2325), + [sym_false] = ACTIONS(2325), + [sym_null] = ACTIONS(2325), + [sym_undefined] = ACTIONS(2325), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_readonly] = ACTIONS(2325), + [anon_sym_get] = ACTIONS(2325), + [anon_sym_set] = ACTIONS(2325), + [anon_sym_declare] = ACTIONS(2325), + [anon_sym_public] = ACTIONS(2325), + [anon_sym_private] = ACTIONS(2325), + [anon_sym_protected] = ACTIONS(2325), + [anon_sym_override] = ACTIONS(2325), + [anon_sym_module] = ACTIONS(2325), + [anon_sym_any] = ACTIONS(2325), + [anon_sym_number] = ACTIONS(2325), + [anon_sym_boolean] = ACTIONS(2325), + [anon_sym_string] = ACTIONS(2325), + [anon_sym_symbol] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_typeof] = ACTIONS(2353), - [anon_sym_import] = ACTIONS(2353), - [anon_sym_var] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_with] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_debugger] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_LTtemplate_GT] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_void] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2351), - [anon_sym_SQUOTE] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2351), - [sym_number] = ACTIONS(2351), - [sym_this] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [sym_undefined] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(2353), - [anon_sym_set] = ACTIONS(2353), - [anon_sym_declare] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_protected] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_any] = ACTIONS(2353), - [anon_sym_number] = ACTIONS(2353), - [anon_sym_boolean] = ACTIONS(2353), - [anon_sym_string] = ACTIONS(2353), - [anon_sym_symbol] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), + [721] = { + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_namespace] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_debugger] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_throw] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LTtemplate_GT] = ACTIONS(1567), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_function] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_delete] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_number] = ACTIONS(1567), + [sym_this] = ACTIONS(1569), + [sym_super] = ACTIONS(1569), + [sym_true] = ACTIONS(1569), + [sym_false] = ACTIONS(1569), + [sym_null] = ACTIONS(1569), + [sym_undefined] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_get] = ACTIONS(1569), + [anon_sym_set] = ACTIONS(1569), + [anon_sym_declare] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_private] = ACTIONS(1569), + [anon_sym_protected] = ACTIONS(1569), + [anon_sym_override] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_number] = ACTIONS(1569), + [anon_sym_boolean] = ACTIONS(1569), + [anon_sym_string] = ACTIONS(1569), + [anon_sym_symbol] = ACTIONS(1569), + [anon_sym_abstract] = ACTIONS(1569), + [anon_sym_interface] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_var] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_debugger] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_delete] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), + [722] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_export] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2329), + [anon_sym_import] = ACTIONS(2329), + [anon_sym_var] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_with] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_debugger] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_SLASH] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2355), - [sym_number] = ACTIONS(2355), - [sym_this] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_null] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_private] = ACTIONS(2357), - [anon_sym_protected] = ACTIONS(2357), - [anon_sym_override] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_any] = ACTIONS(2357), - [anon_sym_number] = ACTIONS(2357), - [anon_sym_boolean] = ACTIONS(2357), - [anon_sym_string] = ACTIONS(2357), - [anon_sym_symbol] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_this] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_undefined] = ACTIONS(2329), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_readonly] = ACTIONS(2329), + [anon_sym_get] = ACTIONS(2329), + [anon_sym_set] = ACTIONS(2329), + [anon_sym_declare] = ACTIONS(2329), + [anon_sym_public] = ACTIONS(2329), + [anon_sym_private] = ACTIONS(2329), + [anon_sym_protected] = ACTIONS(2329), + [anon_sym_override] = ACTIONS(2329), + [anon_sym_module] = ACTIONS(2329), + [anon_sym_any] = ACTIONS(2329), + [anon_sym_number] = ACTIONS(2329), + [anon_sym_boolean] = ACTIONS(2329), + [anon_sym_string] = ACTIONS(2329), + [anon_sym_symbol] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_identifier] = ACTIONS(2361), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_typeof] = ACTIONS(2361), - [anon_sym_import] = ACTIONS(2361), - [anon_sym_var] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_debugger] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LTtemplate_GT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_SLASH] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_void] = ACTIONS(2361), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_SQUOTE] = ACTIONS(2359), + [723] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_typeof] = ACTIONS(2333), + [anon_sym_import] = ACTIONS(2333), + [anon_sym_var] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_with] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_debugger] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_LTtemplate_GT] = ACTIONS(2331), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_SLASH] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_void] = ACTIONS(2333), + [anon_sym_delete] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2359), - [sym_number] = ACTIONS(2359), - [sym_this] = ACTIONS(2361), - [sym_super] = ACTIONS(2361), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_null] = ACTIONS(2361), - [sym_undefined] = ACTIONS(2361), - [anon_sym_AT] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_readonly] = ACTIONS(2361), - [anon_sym_get] = ACTIONS(2361), - [anon_sym_set] = ACTIONS(2361), - [anon_sym_declare] = ACTIONS(2361), - [anon_sym_public] = ACTIONS(2361), - [anon_sym_private] = ACTIONS(2361), - [anon_sym_protected] = ACTIONS(2361), - [anon_sym_override] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_any] = ACTIONS(2361), - [anon_sym_number] = ACTIONS(2361), - [anon_sym_boolean] = ACTIONS(2361), - [anon_sym_string] = ACTIONS(2361), - [anon_sym_symbol] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), + [anon_sym_BQUOTE] = ACTIONS(2331), + [sym_number] = ACTIONS(2331), + [sym_this] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [sym_null] = ACTIONS(2333), + [sym_undefined] = ACTIONS(2333), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_readonly] = ACTIONS(2333), + [anon_sym_get] = ACTIONS(2333), + [anon_sym_set] = ACTIONS(2333), + [anon_sym_declare] = ACTIONS(2333), + [anon_sym_public] = ACTIONS(2333), + [anon_sym_private] = ACTIONS(2333), + [anon_sym_protected] = ACTIONS(2333), + [anon_sym_override] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_any] = ACTIONS(2333), + [anon_sym_number] = ACTIONS(2333), + [anon_sym_boolean] = ACTIONS(2333), + [anon_sym_string] = ACTIONS(2333), + [anon_sym_symbol] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [724] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_export] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2337), + [anon_sym_import] = ACTIONS(2337), + [anon_sym_var] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_with] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_debugger] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_function] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_this] = ACTIONS(2337), + [sym_super] = ACTIONS(2337), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_undefined] = ACTIONS(2337), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_readonly] = ACTIONS(2337), + [anon_sym_get] = ACTIONS(2337), + [anon_sym_set] = ACTIONS(2337), + [anon_sym_declare] = ACTIONS(2337), + [anon_sym_public] = ACTIONS(2337), + [anon_sym_private] = ACTIONS(2337), + [anon_sym_protected] = ACTIONS(2337), + [anon_sym_override] = ACTIONS(2337), + [anon_sym_module] = ACTIONS(2337), + [anon_sym_any] = ACTIONS(2337), + [anon_sym_number] = ACTIONS(2337), + [anon_sym_boolean] = ACTIONS(2337), + [anon_sym_string] = ACTIONS(2337), + [anon_sym_symbol] = ACTIONS(2337), + [anon_sym_abstract] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), + [725] = { + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_export] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_typeof] = ACTIONS(2341), + [anon_sym_import] = ACTIONS(2341), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_with] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_debugger] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LTtemplate_GT] = ACTIONS(2339), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_void] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(2341), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2339), + [sym_number] = ACTIONS(2339), + [sym_this] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_null] = ACTIONS(2341), + [sym_undefined] = ACTIONS(2341), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_readonly] = ACTIONS(2341), + [anon_sym_get] = ACTIONS(2341), + [anon_sym_set] = ACTIONS(2341), + [anon_sym_declare] = ACTIONS(2341), + [anon_sym_public] = ACTIONS(2341), + [anon_sym_private] = ACTIONS(2341), + [anon_sym_protected] = ACTIONS(2341), + [anon_sym_override] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_any] = ACTIONS(2341), + [anon_sym_number] = ACTIONS(2341), + [anon_sym_boolean] = ACTIONS(2341), + [anon_sym_string] = ACTIONS(2341), + [anon_sym_symbol] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), }, - [721] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), + [726] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), }, - [722] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), + [727] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2365), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_typeof] = ACTIONS(2365), - [anon_sym_import] = ACTIONS(2365), - [anon_sym_var] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_debugger] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_case] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_LTtemplate_GT] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_SLASH] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_void] = ACTIONS(2365), - [anon_sym_delete] = ACTIONS(2365), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), + [728] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2363), - [sym_number] = ACTIONS(2363), - [sym_this] = ACTIONS(2365), - [sym_super] = ACTIONS(2365), - [sym_true] = ACTIONS(2365), - [sym_false] = ACTIONS(2365), - [sym_null] = ACTIONS(2365), - [sym_undefined] = ACTIONS(2365), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_readonly] = ACTIONS(2365), - [anon_sym_get] = ACTIONS(2365), - [anon_sym_set] = ACTIONS(2365), - [anon_sym_declare] = ACTIONS(2365), - [anon_sym_public] = ACTIONS(2365), - [anon_sym_private] = ACTIONS(2365), - [anon_sym_protected] = ACTIONS(2365), - [anon_sym_override] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_any] = ACTIONS(2365), - [anon_sym_number] = ACTIONS(2365), - [anon_sym_boolean] = ACTIONS(2365), - [anon_sym_string] = ACTIONS(2365), - [anon_sym_symbol] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [729] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [730] = { + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_export] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_typeof] = ACTIONS(2345), + [anon_sym_import] = ACTIONS(2345), + [anon_sym_var] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_with] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_debugger] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_LTtemplate_GT] = ACTIONS(2343), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_function] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_SLASH] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_void] = ACTIONS(2345), + [anon_sym_delete] = ACTIONS(2345), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2343), + [sym_number] = ACTIONS(2343), + [sym_this] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [sym_null] = ACTIONS(2345), + [sym_undefined] = ACTIONS(2345), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_readonly] = ACTIONS(2345), + [anon_sym_get] = ACTIONS(2345), + [anon_sym_set] = ACTIONS(2345), + [anon_sym_declare] = ACTIONS(2345), + [anon_sym_public] = ACTIONS(2345), + [anon_sym_private] = ACTIONS(2345), + [anon_sym_protected] = ACTIONS(2345), + [anon_sym_override] = ACTIONS(2345), + [anon_sym_module] = ACTIONS(2345), + [anon_sym_any] = ACTIONS(2345), + [anon_sym_number] = ACTIONS(2345), + [anon_sym_boolean] = ACTIONS(2345), + [anon_sym_string] = ACTIONS(2345), + [anon_sym_symbol] = ACTIONS(2345), + [anon_sym_abstract] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_typeof] = ACTIONS(2369), + [731] = { + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2349), + [anon_sym_export] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_typeof] = ACTIONS(2349), + [anon_sym_import] = ACTIONS(2349), + [anon_sym_var] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_else] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_with] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_debugger] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_case] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_LTtemplate_GT] = ACTIONS(2347), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_SLASH] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_void] = ACTIONS(2349), + [anon_sym_delete] = ACTIONS(2349), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2347), + [sym_number] = ACTIONS(2347), + [sym_this] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_undefined] = ACTIONS(2349), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_readonly] = ACTIONS(2349), + [anon_sym_get] = ACTIONS(2349), + [anon_sym_set] = ACTIONS(2349), + [anon_sym_declare] = ACTIONS(2349), + [anon_sym_public] = ACTIONS(2349), + [anon_sym_private] = ACTIONS(2349), + [anon_sym_protected] = ACTIONS(2349), + [anon_sym_override] = ACTIONS(2349), + [anon_sym_module] = ACTIONS(2349), + [anon_sym_any] = ACTIONS(2349), + [anon_sym_number] = ACTIONS(2349), + [anon_sym_boolean] = ACTIONS(2349), + [anon_sym_string] = ACTIONS(2349), + [anon_sym_symbol] = ACTIONS(2349), + [anon_sym_abstract] = ACTIONS(2349), + [anon_sym_interface] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2353), + [anon_sym_export] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_typeof] = ACTIONS(2353), + [anon_sym_import] = ACTIONS(2353), + [anon_sym_var] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_with] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_debugger] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_LTtemplate_GT] = ACTIONS(2351), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_SLASH] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_void] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2351), + [sym_number] = ACTIONS(2351), + [sym_this] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_true] = ACTIONS(2353), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), + [sym_undefined] = ACTIONS(2353), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_readonly] = ACTIONS(2353), + [anon_sym_get] = ACTIONS(2353), + [anon_sym_set] = ACTIONS(2353), + [anon_sym_declare] = ACTIONS(2353), + [anon_sym_public] = ACTIONS(2353), + [anon_sym_private] = ACTIONS(2353), + [anon_sym_protected] = ACTIONS(2353), + [anon_sym_override] = ACTIONS(2353), + [anon_sym_module] = ACTIONS(2353), + [anon_sym_any] = ACTIONS(2353), + [anon_sym_number] = ACTIONS(2353), + [anon_sym_boolean] = ACTIONS(2353), + [anon_sym_string] = ACTIONS(2353), + [anon_sym_symbol] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [anon_sym_export] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_typeof] = ACTIONS(2357), + [anon_sym_import] = ACTIONS(2357), + [anon_sym_var] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_with] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_debugger] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LTtemplate_GT] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_function] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_SLASH] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_void] = ACTIONS(2357), + [anon_sym_delete] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2355), + [sym_number] = ACTIONS(2355), + [sym_this] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [sym_null] = ACTIONS(2357), + [sym_undefined] = ACTIONS(2357), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_readonly] = ACTIONS(2357), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_declare] = ACTIONS(2357), + [anon_sym_public] = ACTIONS(2357), + [anon_sym_private] = ACTIONS(2357), + [anon_sym_protected] = ACTIONS(2357), + [anon_sym_override] = ACTIONS(2357), + [anon_sym_module] = ACTIONS(2357), + [anon_sym_any] = ACTIONS(2357), + [anon_sym_number] = ACTIONS(2357), + [anon_sym_boolean] = ACTIONS(2357), + [anon_sym_string] = ACTIONS(2357), + [anon_sym_symbol] = ACTIONS(2357), + [anon_sym_abstract] = ACTIONS(2357), + [anon_sym_interface] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2361), + [anon_sym_export] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_typeof] = ACTIONS(2361), + [anon_sym_import] = ACTIONS(2361), + [anon_sym_var] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_debugger] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_LTtemplate_GT] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_SLASH] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_void] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2359), + [sym_number] = ACTIONS(2359), + [sym_this] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_undefined] = ACTIONS(2361), + [anon_sym_AT] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_readonly] = ACTIONS(2361), + [anon_sym_get] = ACTIONS(2361), + [anon_sym_set] = ACTIONS(2361), + [anon_sym_declare] = ACTIONS(2361), + [anon_sym_public] = ACTIONS(2361), + [anon_sym_private] = ACTIONS(2361), + [anon_sym_protected] = ACTIONS(2361), + [anon_sym_override] = ACTIONS(2361), + [anon_sym_module] = ACTIONS(2361), + [anon_sym_any] = ACTIONS(2361), + [anon_sym_number] = ACTIONS(2361), + [anon_sym_boolean] = ACTIONS(2361), + [anon_sym_string] = ACTIONS(2361), + [anon_sym_symbol] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2365), + [anon_sym_export] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_typeof] = ACTIONS(2365), + [anon_sym_import] = ACTIONS(2365), + [anon_sym_var] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_with] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_debugger] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LTtemplate_GT] = ACTIONS(2363), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_SLASH] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_void] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2363), + [sym_number] = ACTIONS(2363), + [sym_this] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [sym_null] = ACTIONS(2365), + [sym_undefined] = ACTIONS(2365), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_readonly] = ACTIONS(2365), + [anon_sym_get] = ACTIONS(2365), + [anon_sym_set] = ACTIONS(2365), + [anon_sym_declare] = ACTIONS(2365), + [anon_sym_public] = ACTIONS(2365), + [anon_sym_private] = ACTIONS(2365), + [anon_sym_protected] = ACTIONS(2365), + [anon_sym_override] = ACTIONS(2365), + [anon_sym_module] = ACTIONS(2365), + [anon_sym_any] = ACTIONS(2365), + [anon_sym_number] = ACTIONS(2365), + [anon_sym_boolean] = ACTIONS(2365), + [anon_sym_string] = ACTIONS(2365), + [anon_sym_symbol] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_typeof] = ACTIONS(2369), [anon_sym_import] = ACTIONS(2369), [anon_sym_var] = ACTIONS(2369), [anon_sym_let] = ACTIONS(2369), @@ -90952,14 +91432,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2369), [anon_sym_LBRACK] = ACTIONS(2367), [anon_sym_LTtemplate_GT] = ACTIONS(2367), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_SLASH] = ACTIONS(2369), [anon_sym_class] = ACTIONS(2369), [anon_sym_async] = ACTIONS(2369), [anon_sym_function] = ACTIONS(2369), [anon_sym_new] = ACTIONS(2369), [anon_sym_PLUS] = ACTIONS(2369), [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_SLASH] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), [anon_sym_TILDE] = ACTIONS(2367), [anon_sym_void] = ACTIONS(2369), [anon_sym_delete] = ACTIONS(2369), @@ -90996,214 +91476,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2369), [anon_sym_enum] = ACTIONS(2369), }, - [727] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [sym_identifier] = ACTIONS(2373), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(2373), - [anon_sym_import] = ACTIONS(2373), - [anon_sym_var] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_with] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_debugger] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2373), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_case] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_LTtemplate_GT] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_function] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_void] = ACTIONS(2373), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), + [737] = { + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_export] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_typeof] = ACTIONS(2373), + [anon_sym_import] = ACTIONS(2373), + [anon_sym_var] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_else] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_debugger] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_LTtemplate_GT] = ACTIONS(2371), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_void] = ACTIONS(2373), + [anon_sym_delete] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2371), [sym_number] = ACTIONS(2371), @@ -91233,7 +91555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2373), [anon_sym_enum] = ACTIONS(2373), }, - [730] = { + [738] = { [ts_builtin_sym_end] = ACTIONS(2375), [sym_identifier] = ACTIONS(2377), [anon_sym_export] = ACTIONS(2377), @@ -91268,14 +91590,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2377), [anon_sym_LBRACK] = ACTIONS(2375), [anon_sym_LTtemplate_GT] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(2377), [anon_sym_class] = ACTIONS(2377), [anon_sym_async] = ACTIONS(2377), [anon_sym_function] = ACTIONS(2377), [anon_sym_new] = ACTIONS(2377), [anon_sym_PLUS] = ACTIONS(2377), [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), [anon_sym_TILDE] = ACTIONS(2375), [anon_sym_void] = ACTIONS(2377), [anon_sym_delete] = ACTIONS(2377), @@ -91312,7 +91634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2377), [anon_sym_enum] = ACTIONS(2377), }, - [731] = { + [739] = { [ts_builtin_sym_end] = ACTIONS(2379), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2381), @@ -91347,14 +91669,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2381), [anon_sym_LBRACK] = ACTIONS(2379), [anon_sym_LTtemplate_GT] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_SLASH] = ACTIONS(2381), [anon_sym_class] = ACTIONS(2381), [anon_sym_async] = ACTIONS(2381), [anon_sym_function] = ACTIONS(2381), [anon_sym_new] = ACTIONS(2381), [anon_sym_PLUS] = ACTIONS(2381), [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), [anon_sym_TILDE] = ACTIONS(2379), [anon_sym_void] = ACTIONS(2381), [anon_sym_delete] = ACTIONS(2381), @@ -91391,639 +91713,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2381), [anon_sym_enum] = ACTIONS(2381), }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_export] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_namespace] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_typeof] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_await] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_try] = ACTIONS(1516), - [anon_sym_with] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_debugger] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_throw] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_LTtemplate_GT] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_function] = ACTIONS(1516), - [anon_sym_new] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_delete] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_number] = ACTIONS(1514), - [sym_this] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [sym_null] = ACTIONS(1516), - [sym_undefined] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_readonly] = ACTIONS(1516), - [anon_sym_get] = ACTIONS(1516), - [anon_sym_set] = ACTIONS(1516), - [anon_sym_declare] = ACTIONS(1516), - [anon_sym_public] = ACTIONS(1516), - [anon_sym_private] = ACTIONS(1516), - [anon_sym_protected] = ACTIONS(1516), - [anon_sym_override] = ACTIONS(1516), - [anon_sym_module] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_number] = ACTIONS(1516), - [anon_sym_boolean] = ACTIONS(1516), - [anon_sym_string] = ACTIONS(1516), - [anon_sym_symbol] = ACTIONS(1516), - [anon_sym_abstract] = ACTIONS(1516), - [anon_sym_interface] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), + [740] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2365), + [anon_sym_export] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_typeof] = ACTIONS(2365), + [anon_sym_import] = ACTIONS(2365), + [anon_sym_var] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_with] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_debugger] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LTtemplate_GT] = ACTIONS(2363), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_SLASH] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_void] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2363), + [sym_number] = ACTIONS(2363), + [sym_this] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [sym_null] = ACTIONS(2365), + [sym_undefined] = ACTIONS(2365), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_readonly] = ACTIONS(2365), + [anon_sym_get] = ACTIONS(2365), + [anon_sym_set] = ACTIONS(2365), + [anon_sym_declare] = ACTIONS(2365), + [anon_sym_public] = ACTIONS(2365), + [anon_sym_private] = ACTIONS(2365), + [anon_sym_protected] = ACTIONS(2365), + [anon_sym_override] = ACTIONS(2365), + [anon_sym_module] = ACTIONS(2365), + [anon_sym_any] = ACTIONS(2365), + [anon_sym_number] = ACTIONS(2365), + [anon_sym_boolean] = ACTIONS(2365), + [anon_sym_string] = ACTIONS(2365), + [anon_sym_symbol] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), + [741] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2365), + [anon_sym_export] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_typeof] = ACTIONS(2365), + [anon_sym_import] = ACTIONS(2365), + [anon_sym_var] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_with] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_debugger] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LTtemplate_GT] = ACTIONS(2363), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_SLASH] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_void] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), + [anon_sym_BQUOTE] = ACTIONS(2363), + [sym_number] = ACTIONS(2363), + [sym_this] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [sym_null] = ACTIONS(2365), + [sym_undefined] = ACTIONS(2365), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_readonly] = ACTIONS(2365), + [anon_sym_get] = ACTIONS(2365), + [anon_sym_set] = ACTIONS(2365), + [anon_sym_declare] = ACTIONS(2365), + [anon_sym_public] = ACTIONS(2365), + [anon_sym_private] = ACTIONS(2365), + [anon_sym_protected] = ACTIONS(2365), + [anon_sym_override] = ACTIONS(2365), + [anon_sym_module] = ACTIONS(2365), + [anon_sym_any] = ACTIONS(2365), + [anon_sym_number] = ACTIONS(2365), + [anon_sym_boolean] = ACTIONS(2365), + [anon_sym_string] = ACTIONS(2365), + [anon_sym_symbol] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_typeof] = ACTIONS(2369), - [anon_sym_import] = ACTIONS(2369), - [anon_sym_var] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_with] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_debugger] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_throw] = ACTIONS(2369), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_case] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_LTtemplate_GT] = ACTIONS(2367), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_SLASH] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_void] = ACTIONS(2369), - [anon_sym_delete] = ACTIONS(2369), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2367), - [anon_sym_SQUOTE] = ACTIONS(2367), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2367), - [sym_number] = ACTIONS(2367), - [sym_this] = ACTIONS(2369), - [sym_super] = ACTIONS(2369), - [sym_true] = ACTIONS(2369), - [sym_false] = ACTIONS(2369), - [sym_null] = ACTIONS(2369), - [sym_undefined] = ACTIONS(2369), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_readonly] = ACTIONS(2369), - [anon_sym_get] = ACTIONS(2369), - [anon_sym_set] = ACTIONS(2369), - [anon_sym_declare] = ACTIONS(2369), - [anon_sym_public] = ACTIONS(2369), - [anon_sym_private] = ACTIONS(2369), - [anon_sym_protected] = ACTIONS(2369), - [anon_sym_override] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_any] = ACTIONS(2369), - [anon_sym_number] = ACTIONS(2369), - [anon_sym_boolean] = ACTIONS(2369), - [anon_sym_string] = ACTIONS(2369), - [anon_sym_symbol] = ACTIONS(2369), - [anon_sym_abstract] = ACTIONS(2369), - [anon_sym_interface] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, - [740] = { + [742] = { [ts_builtin_sym_end] = ACTIONS(2383), [sym_identifier] = ACTIONS(2385), [anon_sym_export] = ACTIONS(2385), @@ -92058,14 +91906,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2385), [anon_sym_LBRACK] = ACTIONS(2383), [anon_sym_LTtemplate_GT] = ACTIONS(2383), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_SLASH] = ACTIONS(2385), [anon_sym_class] = ACTIONS(2385), [anon_sym_async] = ACTIONS(2385), [anon_sym_function] = ACTIONS(2385), [anon_sym_new] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(2385), [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_SLASH] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), [anon_sym_TILDE] = ACTIONS(2383), [anon_sym_void] = ACTIONS(2385), [anon_sym_delete] = ACTIONS(2385), @@ -92102,7 +91950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2385), [anon_sym_enum] = ACTIONS(2385), }, - [741] = { + [743] = { [ts_builtin_sym_end] = ACTIONS(2387), [sym_identifier] = ACTIONS(2389), [anon_sym_export] = ACTIONS(2389), @@ -92137,14 +91985,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(2387), [anon_sym_LTtemplate_GT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_SLASH] = ACTIONS(2389), [anon_sym_class] = ACTIONS(2389), [anon_sym_async] = ACTIONS(2389), [anon_sym_function] = ACTIONS(2389), [anon_sym_new] = ACTIONS(2389), [anon_sym_PLUS] = ACTIONS(2389), [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_SLASH] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), [anon_sym_TILDE] = ACTIONS(2387), [anon_sym_void] = ACTIONS(2389), [anon_sym_delete] = ACTIONS(2389), @@ -92181,7 +92029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2389), [anon_sym_enum] = ACTIONS(2389), }, - [742] = { + [744] = { [ts_builtin_sym_end] = ACTIONS(2391), [sym_identifier] = ACTIONS(2393), [anon_sym_export] = ACTIONS(2393), @@ -92216,14 +92064,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2393), [anon_sym_LBRACK] = ACTIONS(2391), [anon_sym_LTtemplate_GT] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), [anon_sym_class] = ACTIONS(2393), [anon_sym_async] = ACTIONS(2393), [anon_sym_function] = ACTIONS(2393), [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS] = ACTIONS(2393), [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_SLASH] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), [anon_sym_TILDE] = ACTIONS(2391), [anon_sym_void] = ACTIONS(2393), [anon_sym_delete] = ACTIONS(2393), @@ -92260,7 +92108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2393), [anon_sym_enum] = ACTIONS(2393), }, - [743] = { + [745] = { [ts_builtin_sym_end] = ACTIONS(2395), [sym_identifier] = ACTIONS(2397), [anon_sym_export] = ACTIONS(2397), @@ -92295,14 +92143,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(2395), [anon_sym_LTtemplate_GT] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2397), [anon_sym_class] = ACTIONS(2397), [anon_sym_async] = ACTIONS(2397), [anon_sym_function] = ACTIONS(2397), [anon_sym_new] = ACTIONS(2397), [anon_sym_PLUS] = ACTIONS(2397), [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), [anon_sym_TILDE] = ACTIONS(2395), [anon_sym_void] = ACTIONS(2397), [anon_sym_delete] = ACTIONS(2397), @@ -92339,7 +92187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2397), [anon_sym_enum] = ACTIONS(2397), }, - [744] = { + [746] = { [ts_builtin_sym_end] = ACTIONS(2399), [sym_identifier] = ACTIONS(2401), [anon_sym_export] = ACTIONS(2401), @@ -92374,93 +92222,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2401), [anon_sym_LBRACK] = ACTIONS(2399), [anon_sym_LTtemplate_GT] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_SLASH] = ACTIONS(2401), [anon_sym_class] = ACTIONS(2401), [anon_sym_async] = ACTIONS(2401), [anon_sym_function] = ACTIONS(2401), [anon_sym_new] = ACTIONS(2401), [anon_sym_PLUS] = ACTIONS(2401), [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_void] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2399), - [sym_number] = ACTIONS(2399), - [sym_this] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_undefined] = ACTIONS(2401), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_readonly] = ACTIONS(2401), - [anon_sym_get] = ACTIONS(2401), - [anon_sym_set] = ACTIONS(2401), - [anon_sym_declare] = ACTIONS(2401), - [anon_sym_public] = ACTIONS(2401), - [anon_sym_private] = ACTIONS(2401), - [anon_sym_protected] = ACTIONS(2401), - [anon_sym_override] = ACTIONS(2401), - [anon_sym_module] = ACTIONS(2401), - [anon_sym_any] = ACTIONS(2401), - [anon_sym_number] = ACTIONS(2401), - [anon_sym_boolean] = ACTIONS(2401), - [anon_sym_string] = ACTIONS(2401), - [anon_sym_symbol] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - }, - [745] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_typeof] = ACTIONS(2401), - [anon_sym_import] = ACTIONS(2401), - [anon_sym_var] = ACTIONS(2401), - [anon_sym_let] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_with] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_debugger] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LTtemplate_GT] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2401), [anon_sym_SLASH] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), [anon_sym_TILDE] = ACTIONS(2399), [anon_sym_void] = ACTIONS(2401), [anon_sym_delete] = ACTIONS(2401), @@ -92497,7 +92266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2401), [anon_sym_enum] = ACTIONS(2401), }, - [746] = { + [747] = { [ts_builtin_sym_end] = ACTIONS(2403), [sym_identifier] = ACTIONS(2405), [anon_sym_export] = ACTIONS(2405), @@ -92532,14 +92301,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2405), [anon_sym_LBRACK] = ACTIONS(2403), [anon_sym_LTtemplate_GT] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_SLASH] = ACTIONS(2405), [anon_sym_class] = ACTIONS(2405), [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(2405), [anon_sym_new] = ACTIONS(2405), [anon_sym_PLUS] = ACTIONS(2405), [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_SLASH] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), [anon_sym_TILDE] = ACTIONS(2403), [anon_sym_void] = ACTIONS(2405), [anon_sym_delete] = ACTIONS(2405), @@ -92576,85 +92345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2405), [anon_sym_enum] = ACTIONS(2405), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, [748] = { [ts_builtin_sym_end] = ACTIONS(2407), [sym_identifier] = ACTIONS(2409), @@ -92690,14 +92380,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2409), [anon_sym_LBRACK] = ACTIONS(2407), [anon_sym_LTtemplate_GT] = ACTIONS(2407), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2409), [anon_sym_class] = ACTIONS(2409), [anon_sym_async] = ACTIONS(2409), [anon_sym_function] = ACTIONS(2409), [anon_sym_new] = ACTIONS(2409), [anon_sym_PLUS] = ACTIONS(2409), [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_SLASH] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), [anon_sym_TILDE] = ACTIONS(2407), [anon_sym_void] = ACTIONS(2409), [anon_sym_delete] = ACTIONS(2409), @@ -92769,14 +92459,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2413), [anon_sym_LBRACK] = ACTIONS(2411), [anon_sym_LTtemplate_GT] = ACTIONS(2411), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_SLASH] = ACTIONS(2413), [anon_sym_class] = ACTIONS(2413), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2413), [anon_sym_new] = ACTIONS(2413), [anon_sym_PLUS] = ACTIONS(2413), [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_SLASH] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), [anon_sym_TILDE] = ACTIONS(2411), [anon_sym_void] = ACTIONS(2413), [anon_sym_delete] = ACTIONS(2413), @@ -92848,14 +92538,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2413), [anon_sym_LBRACK] = ACTIONS(2411), [anon_sym_LTtemplate_GT] = ACTIONS(2411), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_SLASH] = ACTIONS(2413), [anon_sym_class] = ACTIONS(2413), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2413), [anon_sym_new] = ACTIONS(2413), [anon_sym_PLUS] = ACTIONS(2413), [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_SLASH] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), [anon_sym_TILDE] = ACTIONS(2411), [anon_sym_void] = ACTIONS(2413), [anon_sym_delete] = ACTIONS(2413), @@ -92927,14 +92617,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2417), [anon_sym_LBRACK] = ACTIONS(2415), [anon_sym_LTtemplate_GT] = ACTIONS(2415), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_SLASH] = ACTIONS(2417), [anon_sym_class] = ACTIONS(2417), [anon_sym_async] = ACTIONS(2417), [anon_sym_function] = ACTIONS(2417), [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS] = ACTIONS(2417), [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_SLASH] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), [anon_sym_TILDE] = ACTIONS(2415), [anon_sym_void] = ACTIONS(2417), [anon_sym_delete] = ACTIONS(2417), @@ -92972,6 +92662,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2417), }, [752] = { + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2413), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_typeof] = ACTIONS(2413), + [anon_sym_import] = ACTIONS(2413), + [anon_sym_var] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_with] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_debugger] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LTtemplate_GT] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_SLASH] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2411), + [anon_sym_void] = ACTIONS(2413), + [anon_sym_delete] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2411), + [sym_number] = ACTIONS(2411), + [sym_this] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_true] = ACTIONS(2413), + [sym_false] = ACTIONS(2413), + [sym_null] = ACTIONS(2413), + [sym_undefined] = ACTIONS(2413), + [anon_sym_AT] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + }, + [753] = { [ts_builtin_sym_end] = ACTIONS(2419), [sym_identifier] = ACTIONS(2421), [anon_sym_export] = ACTIONS(2421), @@ -93006,14 +92775,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2421), [anon_sym_LBRACK] = ACTIONS(2419), [anon_sym_LTtemplate_GT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_SLASH] = ACTIONS(2421), [anon_sym_class] = ACTIONS(2421), [anon_sym_async] = ACTIONS(2421), [anon_sym_function] = ACTIONS(2421), [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS] = ACTIONS(2421), [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_SLASH] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), [anon_sym_TILDE] = ACTIONS(2419), [anon_sym_void] = ACTIONS(2421), [anon_sym_delete] = ACTIONS(2421), @@ -93050,7 +92819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2421), [anon_sym_enum] = ACTIONS(2421), }, - [753] = { + [754] = { [ts_builtin_sym_end] = ACTIONS(2423), [sym_identifier] = ACTIONS(2425), [anon_sym_export] = ACTIONS(2425), @@ -93085,14 +92854,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(2423), [anon_sym_LTtemplate_GT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2425), [anon_sym_class] = ACTIONS(2425), [anon_sym_async] = ACTIONS(2425), [anon_sym_function] = ACTIONS(2425), [anon_sym_new] = ACTIONS(2425), [anon_sym_PLUS] = ACTIONS(2425), [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), [anon_sym_TILDE] = ACTIONS(2423), [anon_sym_void] = ACTIONS(2425), [anon_sym_delete] = ACTIONS(2425), @@ -93129,7 +92898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2425), [anon_sym_enum] = ACTIONS(2425), }, - [754] = { + [755] = { [ts_builtin_sym_end] = ACTIONS(2427), [sym_identifier] = ACTIONS(2429), [anon_sym_export] = ACTIONS(2429), @@ -93164,14 +92933,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2429), [anon_sym_LBRACK] = ACTIONS(2427), [anon_sym_LTtemplate_GT] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_SLASH] = ACTIONS(2429), [anon_sym_class] = ACTIONS(2429), [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(2429), [anon_sym_new] = ACTIONS(2429), [anon_sym_PLUS] = ACTIONS(2429), [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), [anon_sym_TILDE] = ACTIONS(2427), [anon_sym_void] = ACTIONS(2429), [anon_sym_delete] = ACTIONS(2429), @@ -93208,7 +92977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2429), [anon_sym_enum] = ACTIONS(2429), }, - [755] = { + [756] = { [ts_builtin_sym_end] = ACTIONS(2431), [sym_identifier] = ACTIONS(2433), [anon_sym_export] = ACTIONS(2433), @@ -93243,14 +93012,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2433), [anon_sym_LBRACK] = ACTIONS(2431), [anon_sym_LTtemplate_GT] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), [anon_sym_class] = ACTIONS(2433), [anon_sym_async] = ACTIONS(2433), [anon_sym_function] = ACTIONS(2433), [anon_sym_new] = ACTIONS(2433), [anon_sym_PLUS] = ACTIONS(2433), [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), [anon_sym_TILDE] = ACTIONS(2431), [anon_sym_void] = ACTIONS(2433), [anon_sym_delete] = ACTIONS(2433), @@ -93287,7 +93056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2433), [anon_sym_enum] = ACTIONS(2433), }, - [756] = { + [757] = { [ts_builtin_sym_end] = ACTIONS(2435), [sym_identifier] = ACTIONS(2437), [anon_sym_export] = ACTIONS(2437), @@ -93322,14 +93091,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2437), [anon_sym_LBRACK] = ACTIONS(2435), [anon_sym_LTtemplate_GT] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_SLASH] = ACTIONS(2437), [anon_sym_class] = ACTIONS(2437), [anon_sym_async] = ACTIONS(2437), [anon_sym_function] = ACTIONS(2437), [anon_sym_new] = ACTIONS(2437), [anon_sym_PLUS] = ACTIONS(2437), [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), [anon_sym_TILDE] = ACTIONS(2435), [anon_sym_void] = ACTIONS(2437), [anon_sym_delete] = ACTIONS(2437), @@ -93366,7 +93135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2437), [anon_sym_enum] = ACTIONS(2437), }, - [757] = { + [758] = { [ts_builtin_sym_end] = ACTIONS(2439), [sym_identifier] = ACTIONS(2441), [anon_sym_export] = ACTIONS(2441), @@ -93401,14 +93170,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2441), [anon_sym_LBRACK] = ACTIONS(2439), [anon_sym_LTtemplate_GT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_SLASH] = ACTIONS(2441), [anon_sym_class] = ACTIONS(2441), [anon_sym_async] = ACTIONS(2441), [anon_sym_function] = ACTIONS(2441), [anon_sym_new] = ACTIONS(2441), [anon_sym_PLUS] = ACTIONS(2441), [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_SLASH] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), [anon_sym_TILDE] = ACTIONS(2439), [anon_sym_void] = ACTIONS(2441), [anon_sym_delete] = ACTIONS(2441), @@ -93445,7 +93214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2441), [anon_sym_enum] = ACTIONS(2441), }, - [758] = { + [759] = { [ts_builtin_sym_end] = ACTIONS(2443), [sym_identifier] = ACTIONS(2445), [anon_sym_export] = ACTIONS(2445), @@ -93480,14 +93249,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2445), [anon_sym_LBRACK] = ACTIONS(2443), [anon_sym_LTtemplate_GT] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_SLASH] = ACTIONS(2445), [anon_sym_class] = ACTIONS(2445), [anon_sym_async] = ACTIONS(2445), [anon_sym_function] = ACTIONS(2445), [anon_sym_new] = ACTIONS(2445), [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), [anon_sym_TILDE] = ACTIONS(2443), [anon_sym_void] = ACTIONS(2445), [anon_sym_delete] = ACTIONS(2445), @@ -93524,7 +93293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2445), [anon_sym_enum] = ACTIONS(2445), }, - [759] = { + [760] = { [ts_builtin_sym_end] = ACTIONS(2447), [sym_identifier] = ACTIONS(2449), [anon_sym_export] = ACTIONS(2449), @@ -93559,14 +93328,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2449), [anon_sym_LBRACK] = ACTIONS(2447), [anon_sym_LTtemplate_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), [anon_sym_class] = ACTIONS(2449), [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2449), [anon_sym_new] = ACTIONS(2449), [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), [anon_sym_TILDE] = ACTIONS(2447), [anon_sym_void] = ACTIONS(2449), [anon_sym_delete] = ACTIONS(2449), @@ -93603,7 +93372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2449), [anon_sym_enum] = ACTIONS(2449), }, - [760] = { + [761] = { [ts_builtin_sym_end] = ACTIONS(2451), [sym_identifier] = ACTIONS(2453), [anon_sym_export] = ACTIONS(2453), @@ -93638,14 +93407,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2453), [anon_sym_LBRACK] = ACTIONS(2451), [anon_sym_LTtemplate_GT] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2453), [anon_sym_class] = ACTIONS(2453), [anon_sym_async] = ACTIONS(2453), [anon_sym_function] = ACTIONS(2453), [anon_sym_new] = ACTIONS(2453), [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), [anon_sym_TILDE] = ACTIONS(2451), [anon_sym_void] = ACTIONS(2453), [anon_sym_delete] = ACTIONS(2453), @@ -93682,57 +93451,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2453), [anon_sym_enum] = ACTIONS(2453), }, - [761] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3588), - [sym_optional_tuple_parameter] = STATE(3588), - [sym_optional_type] = STATE(3588), - [sym_rest_type] = STATE(3588), - [sym__tuple_type_member] = STATE(3588), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [762] = { + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_typeof] = ACTIONS(2457), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_with] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_debugger] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_LTtemplate_GT] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_void] = ACTIONS(2457), + [anon_sym_delete] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2455), + [sym_number] = ACTIONS(2455), + [sym_this] = ACTIONS(2457), + [sym_super] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_null] = ACTIONS(2457), + [sym_undefined] = ACTIONS(2457), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_readonly] = ACTIONS(2457), + [anon_sym_get] = ACTIONS(2457), + [anon_sym_set] = ACTIONS(2457), + [anon_sym_declare] = ACTIONS(2457), + [anon_sym_public] = ACTIONS(2457), + [anon_sym_private] = ACTIONS(2457), + [anon_sym_protected] = ACTIONS(2457), + [anon_sym_override] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_any] = ACTIONS(2457), + [anon_sym_number] = ACTIONS(2457), + [anon_sym_boolean] = ACTIONS(2457), + [anon_sym_string] = ACTIONS(2457), + [anon_sym_symbol] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_with] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_debugger] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LTtemplate_GT] = ACTIONS(1591), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_function] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_delete] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_number] = ACTIONS(1591), + [sym_this] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [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_abstract] = ACTIONS(1593), + [anon_sym_interface] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2461), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_typeof] = ACTIONS(2461), + [anon_sym_import] = ACTIONS(2461), + [anon_sym_var] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_with] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_debugger] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_case] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_LTtemplate_GT] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_SLASH] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_void] = ACTIONS(2461), + [anon_sym_delete] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2459), + [sym_number] = ACTIONS(2459), + [sym_this] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_true] = ACTIONS(2461), + [sym_false] = ACTIONS(2461), + [sym_null] = ACTIONS(2461), + [sym_undefined] = ACTIONS(2461), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_readonly] = ACTIONS(2461), + [anon_sym_get] = ACTIONS(2461), + [anon_sym_set] = ACTIONS(2461), + [anon_sym_declare] = ACTIONS(2461), + [anon_sym_public] = ACTIONS(2461), + [anon_sym_private] = ACTIONS(2461), + [anon_sym_protected] = ACTIONS(2461), + [anon_sym_override] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_any] = ACTIONS(2461), + [anon_sym_number] = ACTIONS(2461), + [anon_sym_boolean] = ACTIONS(2461), + [anon_sym_string] = ACTIONS(2461), + [anon_sym_symbol] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + }, + [765] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3693), + [sym_optional_tuple_parameter] = STATE(3693), + [sym_optional_type] = STATE(3693), + [sym_rest_type] = STATE(3693), + [sym__tuple_type_member] = STATE(3693), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2465), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -93744,71 +93750,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [762] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3772), - [sym_optional_tuple_parameter] = STATE(3772), - [sym_optional_type] = STATE(3772), - [sym_rest_type] = STATE(3772), - [sym__tuple_type_member] = STATE(3772), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [766] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3792), + [sym_optional_tuple_parameter] = STATE(3792), + [sym_optional_type] = STATE(3792), + [sym_rest_type] = STATE(3792), + [sym__tuple_type_member] = STATE(3792), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2473), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -93820,71 +93826,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [763] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3562), - [sym_optional_tuple_parameter] = STATE(3562), - [sym_optional_type] = STATE(3562), - [sym_rest_type] = STATE(3562), - [sym__tuple_type_member] = STATE(3562), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [767] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3637), + [sym_optional_tuple_parameter] = STATE(3637), + [sym_optional_type] = STATE(3637), + [sym_rest_type] = STATE(3637), + [sym__tuple_type_member] = STATE(3637), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2477), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -93896,71 +93902,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [764] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3611), - [sym_optional_tuple_parameter] = STATE(3611), - [sym_optional_type] = STATE(3611), - [sym_rest_type] = STATE(3611), - [sym__tuple_type_member] = STATE(3611), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [768] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3629), + [sym_optional_tuple_parameter] = STATE(3629), + [sym_optional_type] = STATE(3629), + [sym_rest_type] = STATE(3629), + [sym__tuple_type_member] = STATE(3629), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2481), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -93972,71 +93978,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [765] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3766), - [sym_optional_tuple_parameter] = STATE(3766), - [sym_optional_type] = STATE(3766), - [sym_rest_type] = STATE(3766), - [sym__tuple_type_member] = STATE(3766), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [769] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(3743), + [sym_optional_tuple_parameter] = STATE(3743), + [sym_optional_type] = STATE(3743), + [sym_rest_type] = STATE(3743), + [sym__tuple_type_member] = STATE(3743), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2485), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94048,70 +94054,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [766] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [770] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94123,70 +94129,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [767] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [771] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94198,70 +94204,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [768] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [772] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94273,70 +94279,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [769] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [773] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94348,70 +94354,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [770] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [774] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94423,70 +94429,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [771] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [775] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94498,70 +94504,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [772] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [776] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94573,70 +94579,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [773] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [777] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2495), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94648,70 +94654,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [774] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [778] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94723,70 +94729,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [775] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [779] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94798,69 +94804,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [776] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_rest_pattern] = STATE(3904), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3016), - [sym_tuple_parameter] = STATE(3958), - [sym_optional_tuple_parameter] = STATE(3958), - [sym_optional_type] = STATE(3958), - [sym_rest_type] = STATE(3958), - [sym__tuple_type_member] = STATE(3958), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(580), + [780] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_rest_pattern] = STATE(3977), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3056), + [sym_tuple_parameter] = STATE(4026), + [sym_optional_tuple_parameter] = STATE(4026), + [sym_optional_type] = STATE(4026), + [sym_rest_type] = STATE(4026), + [sym__tuple_type_member] = STATE(4026), + [sym_constructor_type] = STATE(3056), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3056), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3056), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3056), + [sym_identifier] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -94872,315 +94878,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [777] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [778] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [779] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [780] = { - [sym_identifier] = ACTIONS(2505), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_typeof] = ACTIONS(2505), - [anon_sym_import] = ACTIONS(2505), - [anon_sym_var] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_debugger] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_LTtemplate_GT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_void] = ACTIONS(2505), - [anon_sym_delete] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2507), - [sym_number] = ACTIONS(2507), - [sym_this] = ACTIONS(2505), - [sym_super] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_null] = ACTIONS(2505), - [sym_undefined] = ACTIONS(2505), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_readonly] = ACTIONS(2505), - [anon_sym_get] = ACTIONS(2505), - [anon_sym_set] = ACTIONS(2505), - [anon_sym_declare] = ACTIONS(2505), - [anon_sym_public] = ACTIONS(2505), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_protected] = ACTIONS(2505), - [anon_sym_override] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_any] = ACTIONS(2505), - [anon_sym_number] = ACTIONS(2505), - [anon_sym_boolean] = ACTIONS(2505), - [anon_sym_string] = ACTIONS(2505), - [anon_sym_symbol] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [781] = { [sym_identifier] = ACTIONS(2509), @@ -95212,14 +94922,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2509), [anon_sym_LBRACK] = ACTIONS(2511), [anon_sym_LTtemplate_GT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), [anon_sym_class] = ACTIONS(2509), [anon_sym_async] = ACTIONS(2509), [anon_sym_function] = ACTIONS(2509), [anon_sym_new] = ACTIONS(2509), [anon_sym_PLUS] = ACTIONS(2509), [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), [anon_sym_TILDE] = ACTIONS(2511), [anon_sym_void] = ACTIONS(2509), [anon_sym_delete] = ACTIONS(2509), @@ -95257,376 +94967,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2509), }, [782] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [783] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [784] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [785] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [786] = { - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - }, - [787] = { [sym_identifier] = ACTIONS(2513), [anon_sym_export] = ACTIONS(2513), [anon_sym_type] = ACTIONS(2513), @@ -95656,14 +94996,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2513), [anon_sym_LBRACK] = ACTIONS(2515), [anon_sym_LTtemplate_GT] = ACTIONS(2515), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), [anon_sym_class] = ACTIONS(2513), [anon_sym_async] = ACTIONS(2513), [anon_sym_function] = ACTIONS(2513), [anon_sym_new] = ACTIONS(2513), [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), [anon_sym_TILDE] = ACTIONS(2515), [anon_sym_void] = ACTIONS(2513), [anon_sym_delete] = ACTIONS(2513), @@ -95700,7 +95040,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2513), [anon_sym_enum] = ACTIONS(2513), }, - [788] = { + [783] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, + [784] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, + [785] = { [sym_identifier] = ACTIONS(2517), [anon_sym_export] = ACTIONS(2517), [anon_sym_type] = ACTIONS(2517), @@ -95730,14 +95218,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2517), [anon_sym_LBRACK] = ACTIONS(2519), [anon_sym_LTtemplate_GT] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_SLASH] = ACTIONS(2517), [anon_sym_class] = ACTIONS(2517), [anon_sym_async] = ACTIONS(2517), [anon_sym_function] = ACTIONS(2517), [anon_sym_new] = ACTIONS(2517), [anon_sym_PLUS] = ACTIONS(2517), [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_SLASH] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2519), [anon_sym_void] = ACTIONS(2517), [anon_sym_delete] = ACTIONS(2517), @@ -95774,7 +95262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2517), [anon_sym_enum] = ACTIONS(2517), }, - [789] = { + [786] = { [sym_identifier] = ACTIONS(2521), [anon_sym_export] = ACTIONS(2521), [anon_sym_type] = ACTIONS(2521), @@ -95804,14 +95292,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(2523), [anon_sym_LTtemplate_GT] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_SLASH] = ACTIONS(2521), [anon_sym_class] = ACTIONS(2521), [anon_sym_async] = ACTIONS(2521), [anon_sym_function] = ACTIONS(2521), [anon_sym_new] = ACTIONS(2521), [anon_sym_PLUS] = ACTIONS(2521), [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_SLASH] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), [anon_sym_TILDE] = ACTIONS(2523), [anon_sym_void] = ACTIONS(2521), [anon_sym_delete] = ACTIONS(2521), @@ -95848,41 +95336,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2521), [anon_sym_enum] = ACTIONS(2521), }, + [787] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, + [788] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, + [789] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, [790] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, + [791] = { [sym_identifier] = ACTIONS(2525), [anon_sym_export] = ACTIONS(2525), [anon_sym_type] = ACTIONS(2525), - [anon_sym_EQ] = ACTIONS(2525), [anon_sym_namespace] = ACTIONS(2525), [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_COMMA] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), [anon_sym_typeof] = ACTIONS(2525), [anon_sym_import] = ACTIONS(2525), + [anon_sym_var] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_RPAREN] = ACTIONS(2527), [anon_sym_await] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_with] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_debugger] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), [anon_sym_yield] = ACTIONS(2525), [anon_sym_LBRACK] = ACTIONS(2527), - [anon_sym_RBRACK] = ACTIONS(2527), [anon_sym_LTtemplate_GT] = ACTIONS(2527), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2527), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_DOT] = ACTIONS(2525), [anon_sym_class] = ACTIONS(2525), [anon_sym_async] = ACTIONS(2525), [anon_sym_function] = ACTIONS(2525), - [anon_sym_EQ_GT] = ACTIONS(2527), - [anon_sym_QMARK_DOT] = ACTIONS(2527), [anon_sym_new] = ACTIONS(2525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2527), [anon_sym_PLUS] = ACTIONS(2525), [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_TILDE] = ACTIONS(2527), [anon_sym_void] = ACTIONS(2525), [anon_sym_delete] = ACTIONS(2525), @@ -95904,7 +95691,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2525), [anon_sym_get] = ACTIONS(2525), [anon_sym_set] = ACTIONS(2525), - [anon_sym_QMARK] = ACTIONS(2525), [anon_sym_declare] = ACTIONS(2525), [anon_sym_public] = ACTIONS(2525), [anon_sym_private] = ACTIONS(2525), @@ -95917,55 +95703,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2525), [anon_sym_symbol] = ACTIONS(2525), [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_extends] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), }, - [791] = { - [sym_identifier] = ACTIONS(2529), - [anon_sym_export] = ACTIONS(2529), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_EQ] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_COMMA] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_typeof] = ACTIONS(2529), - [anon_sym_import] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_COLON] = ACTIONS(2531), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_LBRACK] = ACTIONS(2531), - [anon_sym_RBRACK] = ACTIONS(2531), - [anon_sym_LTtemplate_GT] = ACTIONS(2531), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_GT] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2529), - [anon_sym_DOT] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_EQ_GT] = ACTIONS(2531), - [anon_sym_QMARK_DOT] = ACTIONS(2531), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_void] = ACTIONS(2529), - [anon_sym_delete] = ACTIONS(2529), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2531), - [sym_number] = ACTIONS(2531), - [sym_this] = ACTIONS(2529), - [sym_super] = ACTIONS(2529), + [792] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LTtemplate_GT] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2511), + [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_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + }, + [793] = { + [sym_identifier] = ACTIONS(2529), + [anon_sym_export] = ACTIONS(2529), + [anon_sym_type] = ACTIONS(2529), + [anon_sym_namespace] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_typeof] = ACTIONS(2529), + [anon_sym_import] = ACTIONS(2529), + [anon_sym_var] = ACTIONS(2529), + [anon_sym_let] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_switch] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_await] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_do] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [anon_sym_with] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_debugger] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_throw] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_LTtemplate_GT] = ACTIONS(2531), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_function] = ACTIONS(2529), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_SLASH] = ACTIONS(2529), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_void] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2531), + [sym_number] = ACTIONS(2531), + [sym_this] = ACTIONS(2529), + [sym_super] = ACTIONS(2529), [sym_true] = ACTIONS(2529), [sym_false] = ACTIONS(2529), [sym_null] = ACTIONS(2529), @@ -95975,7 +95839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2529), [anon_sym_get] = ACTIONS(2529), [anon_sym_set] = ACTIONS(2529), - [anon_sym_QMARK] = ACTIONS(2529), [anon_sym_declare] = ACTIONS(2529), [anon_sym_public] = ACTIONS(2529), [anon_sym_private] = ACTIONS(2529), @@ -95988,9 +95851,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2529), [anon_sym_symbol] = ACTIONS(2529), [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_extends] = ACTIONS(2529), + [anon_sym_interface] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), }, - [792] = { + [794] = { [sym_identifier] = ACTIONS(2533), [anon_sym_export] = ACTIONS(2533), [anon_sym_type] = ACTIONS(2533), @@ -96010,9 +95874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2535), [anon_sym_RBRACK] = ACTIONS(2535), [anon_sym_LTtemplate_GT] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2533), [anon_sym_GT] = ACTIONS(2535), - [anon_sym_SLASH] = ACTIONS(2533), [anon_sym_DOT] = ACTIONS(2533), [anon_sym_class] = ACTIONS(2533), [anon_sym_async] = ACTIONS(2533), @@ -96025,6 +95887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2535), [anon_sym_PLUS] = ACTIONS(2533), [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_void] = ACTIONS(2533), [anon_sym_delete] = ACTIONS(2533), @@ -96061,45 +95925,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2533), [anon_sym_extends] = ACTIONS(2533), }, - [793] = { - [sym_nested_identifier] = STATE(139), - [sym_string] = STATE(140), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), + [795] = { [sym_identifier] = ACTIONS(2537), + [anon_sym_export] = ACTIONS(2537), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_EQ] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_COMMA] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_typeof] = ACTIONS(2537), + [anon_sym_import] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_RPAREN] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_COLON] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_RBRACK] = ACTIONS(2539), + [anon_sym_LTtemplate_GT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [anon_sym_DOT] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_function] = ACTIONS(2537), + [anon_sym_EQ_GT] = ACTIONS(2539), + [anon_sym_QMARK_DOT] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_SLASH] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_void] = ACTIONS(2537), + [anon_sym_delete] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2539), + [sym_number] = ACTIONS(2539), + [sym_this] = ACTIONS(2537), + [sym_super] = ACTIONS(2537), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_null] = ACTIONS(2537), + [sym_undefined] = ACTIONS(2537), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_readonly] = ACTIONS(2537), + [anon_sym_get] = ACTIONS(2537), + [anon_sym_set] = ACTIONS(2537), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_declare] = ACTIONS(2537), + [anon_sym_public] = ACTIONS(2537), + [anon_sym_private] = ACTIONS(2537), + [anon_sym_protected] = ACTIONS(2537), + [anon_sym_override] = ACTIONS(2537), + [anon_sym_module] = ACTIONS(2537), + [anon_sym_any] = ACTIONS(2537), + [anon_sym_number] = ACTIONS(2537), + [anon_sym_boolean] = ACTIONS(2537), + [anon_sym_string] = ACTIONS(2537), + [anon_sym_symbol] = ACTIONS(2537), + [anon_sym_abstract] = ACTIONS(2537), + [anon_sym_extends] = ACTIONS(2537), + }, + [796] = { + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_COMMA] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_typeof] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_RPAREN] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2543), + [anon_sym_RBRACK] = ACTIONS(2543), + [anon_sym_LTtemplate_GT] = ACTIONS(2543), + [anon_sym_GT] = ACTIONS(2543), + [anon_sym_DOT] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2543), + [anon_sym_QMARK_DOT] = ACTIONS(2543), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_SLASH] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_void] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2543), + [sym_number] = ACTIONS(2543), + [sym_this] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_undefined] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_readonly] = ACTIONS(2541), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_declare] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_any] = ACTIONS(2541), + [anon_sym_number] = ACTIONS(2541), + [anon_sym_boolean] = ACTIONS(2541), + [anon_sym_string] = ACTIONS(2541), + [anon_sym_symbol] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_extends] = ACTIONS(2541), + }, + [797] = { + [sym_nested_identifier] = STATE(141), + [sym_string] = STATE(140), + [sym__module] = STATE(166), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(2545), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -96110,66 +96114,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2549), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(1813), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [794] = { - [sym_nested_identifier] = STATE(139), - [sym_string] = STATE(140), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(2537), + [798] = { + [sym_nested_identifier] = STATE(591), + [sym_string] = STATE(608), + [sym__module] = STATE(642), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(2551), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -96180,66 +96184,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(1813), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [795] = { - [sym_nested_identifier] = STATE(588), - [sym_string] = STATE(606), - [sym__module] = STATE(729), - [aux_sym_object_repeat1] = STATE(3568), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(2543), + [799] = { + [sym_nested_identifier] = STATE(141), + [sym_string] = STATE(140), + [sym__module] = STATE(166), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(2545), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -96250,66 +96254,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2549), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(1813), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [796] = { - [sym_nested_identifier] = STATE(588), - [sym_string] = STATE(606), - [sym__module] = STATE(729), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(2543), + [800] = { + [sym_nested_identifier] = STATE(141), + [sym_string] = STATE(140), + [sym__module] = STATE(166), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(2545), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -96320,66 +96324,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2549), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(1813), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [797] = { - [sym_nested_identifier] = STATE(588), - [sym_string] = STATE(606), - [sym__module] = STATE(729), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(2543), + [801] = { + [sym_nested_identifier] = STATE(591), + [sym_string] = STATE(608), + [sym__module] = STATE(642), + [aux_sym_object_repeat1] = STATE(3641), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(2551), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -96390,66 +96394,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(1813), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [798] = { - [sym_nested_identifier] = STATE(139), - [sym_string] = STATE(140), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(3596), - [aux_sym_object_pattern_repeat1] = STATE(3640), - [sym_identifier] = ACTIONS(2537), + [802] = { + [sym_nested_identifier] = STATE(591), + [sym_string] = STATE(608), + [sym__module] = STATE(642), + [aux_sym_object_repeat1] = STATE(3631), + [aux_sym_object_pattern_repeat1] = STATE(3642), + [sym_identifier] = ACTIONS(2551), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1895), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(1859), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(149), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -96460,208 +96464,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(149), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(149), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(1813), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(155), - [sym__ternary_qmark] = ACTIONS(155), - }, - [799] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2827), - [sym_constructor_type] = STATE(2827), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2827), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_predicate] = STATE(3125), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2666), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2827), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2827), - [sym_identifier] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_asserts] = ACTIONS(2587), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [sym__automatic_semicolon] = ACTIONS(149), + [sym__ternary_qmark] = ACTIONS(149), }, - [800] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2664), - [sym_constructor_type] = STATE(2664), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2664), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_predicate] = STATE(3107), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2583), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2664), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2664), - [sym_identifier] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(2599), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_asserts] = ACTIONS(2601), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [803] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2822), + [sym_constructor_type] = STATE(2822), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2822), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_predicate] = STATE(3275), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2672), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2822), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2822), + [sym_identifier] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2585), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_asserts] = ACTIONS(2595), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, - [801] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2733), - [sym_constructor_type] = STATE(2733), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2733), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_predicate] = STATE(3828), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2406), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2733), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2733), + [804] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2744), + [sym_constructor_type] = STATE(2744), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2744), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_predicate] = STATE(4081), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2419), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2744), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2744), [sym_identifier] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -96673,70 +96610,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), [anon_sym_asserts] = ACTIONS(2607), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [802] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2606), - [sym_constructor_type] = STATE(2606), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2606), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_predicate] = STATE(2609), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2583), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2606), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2606), - [sym_identifier] = ACTIONS(2595), + [805] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2675), + [sym_constructor_type] = STATE(2675), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2675), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_predicate] = STATE(3069), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2675), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2675), + [sym_identifier] = ACTIONS(2609), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1297), [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(2599), + [sym_this] = ACTIONS(2613), [sym_true] = ACTIONS(1303), [sym_false] = ACTIONS(1303), [sym_null] = ACTIONS(1303), @@ -96749,6 +96686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(750), [anon_sym_symbol] = ACTIONS(750), [anon_sym_abstract] = ACTIONS(744), + [anon_sym_asserts] = ACTIONS(2615), [anon_sym_infer] = ACTIONS(746), [anon_sym_keyof] = ACTIONS(748), [anon_sym_unknown] = ACTIONS(750), @@ -96756,117 +96694,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [803] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3467), - [sym_constructor_type] = STATE(3467), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3467), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3467), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3467), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), + [806] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3086), + [sym_constructor_type] = STATE(3086), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3086), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_predicate] = STATE(2407), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2866), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3086), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3086), + [sym_identifier] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), + [sym_this] = ACTIONS(2629), [sym_true] = ACTIONS(1248), [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, - [804] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3006), - [sym_constructor_type] = STATE(3006), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3006), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3006), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3006), - [sym_identifier] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(580), + [807] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3598), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3598), + [sym_pair] = STATE(3598), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3601), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2641), + [anon_sym_export] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_readonly] = ACTIONS(2669), + [anon_sym_get] = ACTIONS(2671), + [anon_sym_set] = ACTIONS(2671), + [anon_sym_declare] = ACTIONS(2641), + [anon_sym_public] = ACTIONS(2673), + [anon_sym_private] = ACTIONS(2673), + [anon_sym_protected] = ACTIONS(2673), + [anon_sym_override] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2641), + [anon_sym_any] = ACTIONS(2641), + [anon_sym_number] = ACTIONS(2641), + [anon_sym_boolean] = ACTIONS(2641), + [anon_sym_string] = ACTIONS(2641), + [anon_sym_symbol] = ACTIONS(2641), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), + }, + [808] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3062), + [sym_constructor_type] = STATE(3062), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3062), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_predicate] = STATE(2399), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2866), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3062), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3062), + [sym_identifier] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(2629), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [809] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [sym_jsx_identifier] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -96878,131 +96952,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [805] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1694), - [sym_constructor_type] = STATE(1694), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1694), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_predicate] = STATE(1621), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1694), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1694), - [sym_identifier] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [810] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2683), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2643), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_get] = ACTIONS(2695), + [anon_sym_set] = ACTIONS(2695), + [anon_sym_declare] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_protected] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2683), + [anon_sym_number] = ACTIONS(2683), + [anon_sym_boolean] = ACTIONS(2683), + [anon_sym_string] = ACTIONS(2683), + [anon_sym_symbol] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [806] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [811] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2683), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_get] = ACTIONS(2695), + [anon_sym_set] = ACTIONS(2695), + [anon_sym_declare] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_protected] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2683), + [anon_sym_number] = ACTIONS(2683), + [anon_sym_boolean] = ACTIONS(2683), + [anon_sym_string] = ACTIONS(2683), + [anon_sym_symbol] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), + }, + [812] = { + [sym_nested_identifier] = STATE(1257), + [sym_string] = STATE(1234), + [sym__module] = STATE(1434), + [sym_identifier] = ACTIONS(2703), + [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(149), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), + }, + [813] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -97014,63 +97224,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [807] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [814] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3536), + [sym_constructor_type] = STATE(3536), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3536), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3536), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3536), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -97082,131 +97292,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [808] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2779), - [sym_constructor_type] = STATE(2779), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2779), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_predicate] = STATE(2780), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2666), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2779), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2779), - [sym_identifier] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [815] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1332), + [sym_constructor_type] = STATE(1332), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1332), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_predicate] = STATE(1327), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1211), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1332), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1332), + [sym_identifier] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2737), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, - [809] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [816] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3459), + [sym_constructor_type] = STATE(3459), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3459), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3459), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3459), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -97218,63 +97428,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [810] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [817] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -97286,131 +97496,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [811] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2809), - [sym_constructor_type] = STATE(2809), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2809), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_predicate] = STATE(2810), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2666), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2809), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2809), - [sym_identifier] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [812] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3498), - [sym_constructor_type] = STATE(3498), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3498), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3498), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3498), + [818] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -97422,403 +97564,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [813] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2612), - [sym_constructor_type] = STATE(2612), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2612), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_predicate] = STATE(2603), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2583), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2612), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2612), - [sym_identifier] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(2599), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [814] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3534), - [sym_constructor_type] = STATE(3534), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3534), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3534), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3534), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [819] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2498), + [sym_constructor_type] = STATE(2498), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2498), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_predicate] = STATE(2399), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2419), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2498), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2498), + [sym_identifier] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), + [sym_this] = ACTIONS(2605), [sym_true] = ACTIONS(1248), [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [815] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2671), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2699), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2671), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2671), - [anon_sym_any] = ACTIONS(2671), - [anon_sym_number] = ACTIONS(2671), - [anon_sym_boolean] = ACTIONS(2671), - [anon_sym_string] = ACTIONS(2671), - [anon_sym_symbol] = ACTIONS(2671), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [816] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2457), - [sym_constructor_type] = STATE(2457), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2457), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_predicate] = STATE(2376), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2406), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2457), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2457), - [sym_identifier] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(580), + [820] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(2605), + [sym_this] = ACTIONS(1246), [sym_true] = ACTIONS(1248), [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [817] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1624), - [sym_constructor_type] = STATE(1624), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1624), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_predicate] = STATE(1623), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1624), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1624), - [sym_identifier] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2643), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [821] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1250), + [sym_constructor_type] = STATE(1250), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1250), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_predicate] = STATE(1251), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1211), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1250), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1250), + [sym_identifier] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2737), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, - [818] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [822] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -97830,607 +97836,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [819] = { - [sym_export_statement] = STATE(2983), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(2983), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(2983), - [sym_property_signature] = STATE(2983), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(2983), - [sym_index_signature] = STATE(2983), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2671), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2699), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2671), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2671), - [anon_sym_any] = ACTIONS(2671), - [anon_sym_number] = ACTIONS(2671), - [anon_sym_boolean] = ACTIONS(2671), - [anon_sym_string] = ACTIONS(2671), - [anon_sym_symbol] = ACTIONS(2671), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2719), - }, - [820] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2721), - [anon_sym_export] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_readonly] = ACTIONS(2731), - [anon_sym_get] = ACTIONS(2733), - [anon_sym_set] = ACTIONS(2733), - [anon_sym_declare] = ACTIONS(2721), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_override] = ACTIONS(2737), - [anon_sym_module] = ACTIONS(2721), - [anon_sym_any] = ACTIONS(2721), - [anon_sym_number] = ACTIONS(2721), - [anon_sym_boolean] = ACTIONS(2721), - [anon_sym_string] = ACTIONS(2721), - [anon_sym_symbol] = ACTIONS(2721), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [821] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2739), - [anon_sym_export] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_get] = ACTIONS(2751), - [anon_sym_set] = ACTIONS(2751), - [anon_sym_declare] = ACTIONS(2739), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_protected] = ACTIONS(2753), - [anon_sym_override] = ACTIONS(2755), - [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_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [822] = { - [sym_nested_identifier] = STATE(1232), - [sym_string] = STATE(1231), - [sym__module] = STATE(1392), - [sym_identifier] = ACTIONS(2757), - [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(155), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [823] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2671), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2699), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2671), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2671), - [anon_sym_any] = ACTIONS(2671), - [anon_sym_number] = ACTIONS(2671), - [anon_sym_boolean] = ACTIONS(2671), - [anon_sym_string] = ACTIONS(2671), - [anon_sym_symbol] = ACTIONS(2671), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [824] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3070), - [sym_constructor_type] = STATE(3070), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3070), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_predicate] = STATE(2376), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2869), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3070), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3070), - [sym_identifier] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3043), + [sym_constructor_type] = STATE(3043), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3043), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3043), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3043), + [sym_identifier] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [sym_jsx_identifier] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(2771), + [sym_this] = ACTIONS(1246), [sym_true] = ACTIONS(1248), [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [825] = { - [sym_nested_identifier] = STATE(1232), - [sym_string] = STATE(1231), - [sym__module] = STATE(1392), - [sym_identifier] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [824] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2767), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_readonly] = ACTIONS(2777), + [anon_sym_get] = ACTIONS(2779), + [anon_sym_set] = ACTIONS(2779), + [anon_sym_declare] = ACTIONS(2767), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_protected] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2767), + [anon_sym_any] = ACTIONS(2767), + [anon_sym_number] = ACTIONS(2767), + [anon_sym_boolean] = ACTIONS(2767), + [anon_sym_string] = ACTIONS(2767), + [anon_sym_symbol] = ACTIONS(2767), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [826] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2671), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2691), + [825] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2785), + [anon_sym_export] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2699), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2671), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2671), - [anon_sym_any] = ACTIONS(2671), - [anon_sym_number] = ACTIONS(2671), - [anon_sym_boolean] = ACTIONS(2671), - [anon_sym_string] = ACTIONS(2671), - [anon_sym_symbol] = ACTIONS(2671), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_readonly] = ACTIONS(2795), + [anon_sym_get] = ACTIONS(2797), + [anon_sym_set] = ACTIONS(2797), + [anon_sym_declare] = ACTIONS(2785), + [anon_sym_public] = ACTIONS(2799), + [anon_sym_private] = ACTIONS(2799), + [anon_sym_protected] = ACTIONS(2799), + [anon_sym_override] = ACTIONS(2801), + [anon_sym_module] = ACTIONS(2785), + [anon_sym_any] = ACTIONS(2785), + [anon_sym_number] = ACTIONS(2785), + [anon_sym_boolean] = ACTIONS(2785), + [anon_sym_string] = ACTIONS(2785), + [anon_sym_symbol] = ACTIONS(2785), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [827] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [826] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3522), + [sym_constructor_type] = STATE(3522), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3522), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3522), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3522), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -98442,63 +98108,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [827] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2767), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_readonly] = ACTIONS(2777), + [anon_sym_get] = ACTIONS(2779), + [anon_sym_set] = ACTIONS(2779), + [anon_sym_declare] = ACTIONS(2767), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_protected] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2767), + [anon_sym_any] = ACTIONS(2767), + [anon_sym_number] = ACTIONS(2767), + [anon_sym_boolean] = ACTIONS(2767), + [anon_sym_string] = ACTIONS(2767), + [anon_sym_symbol] = ACTIONS(2767), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, [828] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -98510,131 +98244,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [829] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2789), - [anon_sym_export] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2691), + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2807), + [anon_sym_export] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_readonly] = ACTIONS(2799), - [anon_sym_get] = ACTIONS(2801), - [anon_sym_set] = ACTIONS(2801), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2789), - [anon_sym_any] = ACTIONS(2789), - [anon_sym_number] = ACTIONS(2789), - [anon_sym_boolean] = ACTIONS(2789), - [anon_sym_string] = ACTIONS(2789), - [anon_sym_symbol] = ACTIONS(2789), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_get] = ACTIONS(2819), + [anon_sym_set] = ACTIONS(2819), + [anon_sym_declare] = ACTIONS(2807), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_private] = ACTIONS(2821), + [anon_sym_protected] = ACTIONS(2821), + [anon_sym_override] = ACTIONS(2823), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_any] = ACTIONS(2807), + [anon_sym_number] = ACTIONS(2807), + [anon_sym_boolean] = ACTIONS(2807), + [anon_sym_string] = ACTIONS(2807), + [anon_sym_symbol] = ACTIONS(2807), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, [830] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -98646,63 +98380,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [831] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -98714,199 +98448,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [832] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_predicate] = STATE(2407), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2419), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2479), + [sym_identifier] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), + [sym_this] = ACTIONS(2605), [sym_true] = ACTIONS(1248), [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [833] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2739), - [anon_sym_export] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_get] = ACTIONS(2751), - [anon_sym_set] = ACTIONS(2751), - [anon_sym_declare] = ACTIONS(2739), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_protected] = ACTIONS(2753), - [anon_sym_override] = ACTIONS(2755), - [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_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [834] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3437), - [sym_constructor_type] = STATE(3437), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3437), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3437), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3437), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3558), + [sym_constructor_type] = STATE(3558), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3558), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3558), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3558), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -98918,335 +98584,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [835] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3657), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3657), - [sym_pair] = STATE(3657), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3690), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2815), - [anon_sym_export] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_namespace] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_readonly] = ACTIONS(2825), - [anon_sym_get] = ACTIONS(2827), - [anon_sym_set] = ACTIONS(2827), - [anon_sym_declare] = ACTIONS(2815), - [anon_sym_public] = ACTIONS(2829), - [anon_sym_private] = ACTIONS(2829), - [anon_sym_protected] = ACTIONS(2829), - [anon_sym_override] = ACTIONS(2831), - [anon_sym_module] = ACTIONS(2815), - [anon_sym_any] = ACTIONS(2815), - [anon_sym_number] = ACTIONS(2815), - [anon_sym_boolean] = ACTIONS(2815), - [anon_sym_string] = ACTIONS(2815), - [anon_sym_symbol] = ACTIONS(2815), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [836] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1286), - [sym_constructor_type] = STATE(1286), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1286), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_predicate] = STATE(1287), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1223), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1286), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1286), - [sym_identifier] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2861), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [837] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3042), - [sym_constructor_type] = STATE(3042), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3042), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_predicate] = STATE(2404), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2869), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3042), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3042), - [sym_identifier] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(2771), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [838] = { - [sym_nested_identifier] = STATE(1232), - [sym_string] = STATE(1231), - [sym__module] = STATE(1392), - [sym_identifier] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [834] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1676), + [sym_constructor_type] = STATE(1676), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1676), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_predicate] = STATE(1675), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1598), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1676), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1676), + [sym_identifier] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_QMARK] = ACTIONS(2003), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2859), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [839] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [835] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -99258,335 +98720,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [840] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3657), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3657), - [sym_pair] = STATE(3657), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3690), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2815), - [anon_sym_export] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_namespace] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), + [836] = { + [sym_export_statement] = STATE(3015), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3015), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3015), + [sym_property_signature] = STATE(3015), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3015), + [sym_index_signature] = STATE(3015), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2767), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2877), [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_readonly] = ACTIONS(2825), - [anon_sym_get] = ACTIONS(2827), - [anon_sym_set] = ACTIONS(2827), - [anon_sym_declare] = ACTIONS(2815), - [anon_sym_public] = ACTIONS(2829), - [anon_sym_private] = ACTIONS(2829), - [anon_sym_protected] = ACTIONS(2829), - [anon_sym_override] = ACTIONS(2831), - [anon_sym_module] = ACTIONS(2815), - [anon_sym_any] = ACTIONS(2815), - [anon_sym_number] = ACTIONS(2815), - [anon_sym_boolean] = ACTIONS(2815), - [anon_sym_string] = ACTIONS(2815), - [anon_sym_symbol] = ACTIONS(2815), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [841] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [842] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2789), - [anon_sym_export] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_readonly] = ACTIONS(2799), - [anon_sym_get] = ACTIONS(2801), - [anon_sym_set] = ACTIONS(2801), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2789), - [anon_sym_any] = ACTIONS(2789), - [anon_sym_number] = ACTIONS(2789), - [anon_sym_boolean] = ACTIONS(2789), - [anon_sym_string] = ACTIONS(2789), - [anon_sym_symbol] = ACTIONS(2789), - [anon_sym_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_readonly] = ACTIONS(2777), + [anon_sym_get] = ACTIONS(2779), + [anon_sym_set] = ACTIONS(2779), + [anon_sym_declare] = ACTIONS(2767), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_protected] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2767), + [anon_sym_any] = ACTIONS(2767), + [anon_sym_number] = ACTIONS(2767), + [anon_sym_boolean] = ACTIONS(2767), + [anon_sym_string] = ACTIONS(2767), + [anon_sym_symbol] = ACTIONS(2767), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2883), }, - [843] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [837] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [844] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3547), - [sym_constructor_type] = STATE(3547), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3547), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3547), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3547), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -99598,407 +98856,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [845] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2447), - [sym_constructor_type] = STATE(2447), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2447), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_predicate] = STATE(2404), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2406), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2447), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2447), - [sym_identifier] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(2605), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [846] = { - [sym_export_statement] = STATE(3086), - [sym_object_pattern] = STATE(4103), - [sym_object_assignment_pattern] = STATE(3649), - [sym_array_pattern] = STATE(4103), - [sym__call_signature] = STATE(3214), - [sym__destructuring_pattern] = STATE(4103), - [sym_spread_element] = STATE(3718), - [sym_string] = STATE(2496), - [sym_decorator] = STATE(1150), - [sym_formal_parameters] = STATE(2672), - [sym_rest_pattern] = STATE(3649), - [sym_method_definition] = STATE(3718), - [sym_pair] = STATE(3718), - [sym_pair_pattern] = STATE(3649), - [sym__property_name] = STATE(2496), - [sym_computed_property_name] = STATE(2496), - [sym_method_signature] = STATE(3086), - [sym_accessibility_modifier] = STATE(2253), - [sym_override_modifier] = STATE(2288), - [sym_call_signature] = STATE(3086), - [sym_property_signature] = STATE(3086), - [sym_type_parameters] = STATE(4053), - [sym_construct_signature] = STATE(3086), - [sym_index_signature] = STATE(3086), - [aux_sym_export_statement_repeat1] = STATE(3488), - [aux_sym_object_repeat1] = STATE(3720), - [aux_sym_object_pattern_repeat1] = STATE(3693), - [sym_identifier] = ACTIONS(2739), - [anon_sym_export] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2691), + [838] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2683), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_get] = ACTIONS(2751), - [anon_sym_set] = ACTIONS(2751), - [anon_sym_declare] = ACTIONS(2739), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_protected] = ACTIONS(2753), - [anon_sym_override] = ACTIONS(2755), - [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_abstract] = ACTIONS(2707), - [anon_sym_PIPE_RBRACE] = ACTIONS(2709), - }, - [847] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1349), - [sym_constructor_type] = STATE(1349), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1349), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_predicate] = STATE(1350), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1223), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1349), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1349), - [sym_identifier] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2861), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_get] = ACTIONS(2695), + [anon_sym_set] = ACTIONS(2695), + [anon_sym_declare] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_protected] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2683), + [anon_sym_number] = ACTIONS(2683), + [anon_sym_boolean] = ACTIONS(2683), + [anon_sym_string] = ACTIONS(2683), + [anon_sym_symbol] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [848] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [839] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1758), + [sym_constructor_type] = STATE(1758), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1758), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_predicate] = STATE(1746), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1598), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1758), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1758), + [sym_identifier] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [849] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2687), - [sym_constructor_type] = STATE(2687), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2687), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2687), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2687), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2859), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [850] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2821), - [sym_constructor_type] = STATE(2821), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2821), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2821), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2821), - [sym_identifier] = ACTIONS(1273), + [840] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2657), + [sym_constructor_type] = STATE(2657), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2657), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_predicate] = STATE(2639), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2657), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2657), + [sym_identifier] = ACTIONS(2609), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1297), [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), + [sym_this] = ACTIONS(2613), [sym_true] = ACTIONS(1303), [sym_false] = ACTIONS(1303), [sym_null] = ACTIONS(1303), @@ -100018,255 +99074,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [851] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1269), - [sym_constructor_type] = STATE(1269), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1269), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1269), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1269), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [852] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3486), - [sym_constructor_type] = STATE(3486), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3486), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3486), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3486), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [853] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1688), - [sym_constructor_type] = STATE(1688), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1688), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1688), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1688), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), - }, - [854] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3257), - [sym_constructor_type] = STATE(3257), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3257), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3257), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3257), - [sym_identifier] = ACTIONS(1273), + [841] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2656), + [sym_constructor_type] = STATE(2656), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2656), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_predicate] = STATE(2643), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2656), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2656), + [sym_identifier] = ACTIONS(2609), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1297), [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), + [sym_this] = ACTIONS(2613), [sym_true] = ACTIONS(1303), [sym_false] = ACTIONS(1303), [sym_null] = ACTIONS(1303), @@ -100286,115 +99142,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [855] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3121), - [sym_constructor_type] = STATE(3121), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3121), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3121), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3121), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), + [842] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3598), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3598), + [sym_pair] = STATE(3598), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3601), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2641), + [anon_sym_export] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_readonly] = ACTIONS(2669), + [anon_sym_get] = ACTIONS(2671), + [anon_sym_set] = ACTIONS(2671), + [anon_sym_declare] = ACTIONS(2641), + [anon_sym_public] = ACTIONS(2673), + [anon_sym_private] = ACTIONS(2673), + [anon_sym_protected] = ACTIONS(2673), + [anon_sym_override] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2641), + [anon_sym_any] = ACTIONS(2641), + [anon_sym_number] = ACTIONS(2641), + [anon_sym_boolean] = ACTIONS(2641), + [anon_sym_string] = ACTIONS(2641), + [anon_sym_symbol] = ACTIONS(2641), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [856] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2450), - [sym_constructor_type] = STATE(2450), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2450), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2450), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2450), + [843] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -100406,62 +99264,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [857] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2413), - [sym_constructor_type] = STATE(2413), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2413), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2413), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2413), + [844] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -100473,330 +99332,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [858] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1235), - [sym_constructor_type] = STATE(1235), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1235), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1235), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1235), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [859] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1234), - [sym_constructor_type] = STATE(1234), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1234), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1234), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1234), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [860] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3502), - [sym_constructor_type] = STATE(3502), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3502), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3502), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3502), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [845] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2767), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [861] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1346), - [sym_constructor_type] = STATE(1346), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1346), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1346), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1346), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_readonly] = ACTIONS(2777), + [anon_sym_get] = ACTIONS(2779), + [anon_sym_set] = ACTIONS(2779), + [anon_sym_declare] = ACTIONS(2767), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_protected] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2767), + [anon_sym_any] = ACTIONS(2767), + [anon_sym_number] = ACTIONS(2767), + [anon_sym_boolean] = ACTIONS(2767), + [anon_sym_string] = ACTIONS(2767), + [anon_sym_symbol] = ACTIONS(2767), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [862] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3021), - [sym_constructor_type] = STATE(3021), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3021), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3021), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3021), + [846] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -100808,62 +99468,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [863] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3097), - [sym_constructor_type] = STATE(3097), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3097), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3097), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3097), + [847] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3471), + [sym_constructor_type] = STATE(3471), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3471), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3471), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3471), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(2897), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -100875,530 +99536,468 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [864] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1663), - [sym_constructor_type] = STATE(1663), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1663), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1663), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1663), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [865] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1662), - [sym_constructor_type] = STATE(1662), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1662), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1662), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1662), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [848] = { + [sym_export_statement] = STATE(3057), + [sym_object_pattern] = STATE(4262), + [sym_object_assignment_pattern] = STATE(3597), + [sym_array_pattern] = STATE(4262), + [sym__call_signature] = STATE(3290), + [sym__destructuring_pattern] = STATE(4262), + [sym_spread_element] = STATE(3599), + [sym_string] = STATE(2510), + [sym_decorator] = STATE(1152), + [sym_formal_parameters] = STATE(2693), + [sym_rest_pattern] = STATE(3597), + [sym_method_definition] = STATE(3599), + [sym_pair] = STATE(3599), + [sym_pair_pattern] = STATE(3597), + [sym__property_name] = STATE(2510), + [sym_computed_property_name] = STATE(2510), + [sym_method_signature] = STATE(3057), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2298), + [sym_call_signature] = STATE(3057), + [sym_property_signature] = STATE(3057), + [sym_type_parameters] = STATE(3935), + [sym_construct_signature] = STATE(3057), + [sym_index_signature] = STATE(3057), + [aux_sym_export_statement_repeat1] = STATE(3521), + [aux_sym_object_repeat1] = STATE(3603), + [aux_sym_object_pattern_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(2807), + [anon_sym_export] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_get] = ACTIONS(2819), + [anon_sym_set] = ACTIONS(2819), + [anon_sym_declare] = ACTIONS(2807), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_private] = ACTIONS(2821), + [anon_sym_protected] = ACTIONS(2821), + [anon_sym_override] = ACTIONS(2823), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_any] = ACTIONS(2807), + [anon_sym_number] = ACTIONS(2807), + [anon_sym_boolean] = ACTIONS(2807), + [anon_sym_string] = ACTIONS(2807), + [anon_sym_symbol] = ACTIONS(2807), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_PIPE_RBRACE] = ACTIONS(2679), }, - [866] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1658), - [sym_constructor_type] = STATE(1658), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1658), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1658), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1658), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [849] = { + [sym_nested_identifier] = STATE(1257), + [sym_string] = STATE(1234), + [sym__module] = STATE(1434), + [sym_identifier] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(2013), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), }, - [867] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1721), - [sym_constructor_type] = STATE(1721), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1721), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1721), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1721), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [850] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2787), + [sym_constructor_type] = STATE(2787), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2787), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_predicate] = STATE(2788), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2672), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2787), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2787), + [sym_identifier] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2585), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, - [868] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1748), - [sym_constructor_type] = STATE(1748), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1748), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1748), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1748), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [851] = { + [sym_nested_identifier] = STATE(1257), + [sym_string] = STATE(1234), + [sym__module] = STATE(1434), + [sym_identifier] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(212), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), }, - [869] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1750), - [sym_constructor_type] = STATE(1750), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1750), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1750), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1750), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [852] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2817), + [sym_constructor_type] = STATE(2817), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2817), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_predicate] = STATE(2818), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2672), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2817), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2817), + [sym_identifier] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2585), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, - [870] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(3770), - [sym_constructor_type] = STATE(3770), - [sym__primary_type] = STATE(1657), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(3770), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(3770), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(3770), + [853] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2739), + [sym_constructor_type] = STATE(2739), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2739), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2739), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2739), [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, - [871] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2830), - [sym_constructor_type] = STATE(2830), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2830), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2830), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2830), + [854] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2667), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2667), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -101425,48 +100024,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [872] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2455), - [sym_constructor_type] = STATE(2455), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2455), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2455), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2455), + [855] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3494), + [sym_constructor_type] = STATE(3494), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3494), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3494), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3494), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -101478,196 +100077,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [873] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1322), - [sym_constructor_type] = STATE(1322), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1322), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1322), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1322), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [874] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1301), - [sym_constructor_type] = STATE(1301), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1301), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1301), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1301), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [875] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2387), - [sym_constructor_type] = STATE(2387), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2387), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2387), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2387), + [856] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2397), + [sym_constructor_type] = STATE(2397), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2397), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2397), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2397), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -101679,262 +100144,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [876] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1299), - [sym_constructor_type] = STATE(1299), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1299), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1299), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1299), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [857] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1743), + [sym_constructor_type] = STATE(1743), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1743), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1743), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1743), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [877] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3217), - [sym_constructor_type] = STATE(3217), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3217), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3217), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3217), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), + [858] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2396), + [sym_constructor_type] = STATE(2396), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2396), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2396), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2396), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [878] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(3770), - [sym_constructor_type] = STATE(3770), - [sym__primary_type] = STATE(1655), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(3770), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(3770), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(3770), + [859] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2711), + [sym_constructor_type] = STATE(2711), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2711), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2711), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2711), [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [860] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1742), + [sym_constructor_type] = STATE(1742), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1742), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1742), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1742), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), + }, + [861] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2747), + [sym_constructor_type] = STATE(2747), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2747), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2747), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2747), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [862] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1336), + [sym_constructor_type] = STATE(1336), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1336), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1336), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1336), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [863] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2748), + [sym_constructor_type] = STATE(2748), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2748), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2748), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2748), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [864] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1342), + [sym_constructor_type] = STATE(1342), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1342), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1342), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1342), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [865] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(3620), + [sym_constructor_type] = STATE(3620), + [sym__primary_type] = STATE(1273), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(3620), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(3620), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(3620), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, - [879] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3133), - [sym_constructor_type] = STATE(3133), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3133), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3133), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3133), + [866] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1264), + [sym_constructor_type] = STATE(1264), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1264), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1264), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1264), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [867] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1317), + [sym_constructor_type] = STATE(1317), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1317), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1317), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1317), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [868] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3387), + [sym_constructor_type] = STATE(3387), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3387), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3387), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3387), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -101961,50 +100962,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [880] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2398), - [sym_constructor_type] = STATE(2398), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2398), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2398), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2398), + [869] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2409), + [sym_constructor_type] = STATE(2409), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2409), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2409), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2409), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -102013,63 +101014,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, - [881] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2448), - [sym_constructor_type] = STATE(2448), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2448), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2448), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2448), + [870] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3085), + [sym_constructor_type] = STATE(3085), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3085), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3085), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3085), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [871] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1315), + [sym_constructor_type] = STATE(1315), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1315), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1315), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1315), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [872] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2813), + [sym_constructor_type] = STATE(2813), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2813), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2813), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2813), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [873] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3102), + [sym_constructor_type] = STATE(3102), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3102), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3102), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3102), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102081,64 +101283,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [882] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3068), - [sym_constructor_type] = STATE(3068), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3068), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3068), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3068), + [874] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2397), + [sym_constructor_type] = STATE(2397), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2397), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2397), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2397), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -102147,63 +101349,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [875] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(3620), + [sym_constructor_type] = STATE(3620), + [sym__primary_type] = STATE(1287), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(3620), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(3620), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(3620), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, - [883] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3418), - [sym_constructor_type] = STATE(3418), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3418), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3418), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3418), + [876] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2477), + [sym_constructor_type] = STATE(2477), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2477), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2477), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2477), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102215,64 +101484,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [884] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3145), - [sym_constructor_type] = STATE(3145), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3145), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), + [877] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3077), + [sym_constructor_type] = STATE(3077), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3077), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3077), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3077), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [878] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2718), + [sym_constructor_type] = STATE(2718), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2718), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2718), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2718), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [879] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3076), + [sym_constructor_type] = STATE(3076), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3076), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3076), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3076), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [880] = { + [sym_nested_identifier] = STATE(1257), + [sym_string] = STATE(1234), + [sym__module] = STATE(1434), + [sym_identifier] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), + }, + [881] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3051), + [sym_constructor_type] = STATE(3051), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3051), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3051), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3051), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [882] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2412), + [sym_constructor_type] = STATE(2412), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2412), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3145), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3145), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2412), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2412), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -102281,63 +101885,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [883] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2790), + [sym_constructor_type] = STATE(2790), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2790), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2790), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2790), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [884] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2789), + [sym_constructor_type] = STATE(2789), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2789), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2789), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2789), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, [885] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3420), - [sym_constructor_type] = STATE(3420), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3420), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3420), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3420), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3491), + [sym_constructor_type] = STATE(3491), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3491), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3491), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3491), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102349,62 +102087,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [886] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3468), - [sym_constructor_type] = STATE(3468), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3468), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3468), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3468), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3508), + [sym_constructor_type] = STATE(3508), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3508), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3508), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3508), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102416,62 +102154,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [887] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3742), - [sym_constructor_type] = STATE(3742), - [sym__primary_type] = STATE(2407), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3742), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3742), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3742), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3474), + [sym_constructor_type] = STATE(3474), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3474), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3474), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3474), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102483,129 +102221,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [888] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1684), - [sym_constructor_type] = STATE(1684), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1684), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1684), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1684), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), - }, - [889] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2481), - [sym_constructor_type] = STATE(2481), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2481), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2481), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2481), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3473), + [sym_constructor_type] = STATE(3473), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3473), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3473), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3473), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102617,263 +102288,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [889] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1291), + [sym_constructor_type] = STATE(1291), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1291), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1291), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1291), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, [890] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(3582), - [sym_constructor_type] = STATE(3582), - [sym__primary_type] = STATE(1264), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(3582), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(3582), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(3582), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1682), + [sym_constructor_type] = STATE(1682), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1682), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1682), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1682), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, [891] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1313), - [sym_constructor_type] = STATE(1313), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1313), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1313), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1313), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1340), + [sym_constructor_type] = STATE(1340), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1340), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1340), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1340), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, [892] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(3582), - [sym_constructor_type] = STATE(3582), - [sym__primary_type] = STATE(1261), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(3582), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(3582), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(3582), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [893] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2480), - [sym_constructor_type] = STATE(2480), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2480), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2480), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2480), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3518), + [sym_constructor_type] = STATE(3518), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3518), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3518), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3518), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102885,62 +102556,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [894] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3350), - [sym_constructor_type] = STATE(3350), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3350), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3350), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3350), + [893] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2996), + [sym_constructor_type] = STATE(2996), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2996), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2996), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2996), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -102952,263 +102623,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [895] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2750), - [sym_constructor_type] = STATE(2750), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2750), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2750), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2750), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, - [896] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2751), - [sym_constructor_type] = STATE(2751), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2751), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2751), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2751), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, - [897] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2755), - [sym_constructor_type] = STATE(2755), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2755), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2755), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2755), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [894] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2830), + [sym_constructor_type] = STATE(2830), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2830), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2830), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2830), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [898] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3484), - [sym_constructor_type] = STATE(3484), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3484), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3484), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3484), + [895] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3530), + [sym_constructor_type] = STATE(3530), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3530), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3530), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3530), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -103220,128 +102757,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [899] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(3615), - [sym_constructor_type] = STATE(3615), - [sym__primary_type] = STATE(2756), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(3615), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(3615), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(3615), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), + [896] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(3572), + [sym_constructor_type] = STATE(3572), + [sym__primary_type] = STATE(2767), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(3572), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(3572), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(3572), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [897] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(3572), + [sym_constructor_type] = STATE(3572), + [sym__primary_type] = STATE(2765), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(3572), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(3572), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(3572), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [898] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2764), + [sym_constructor_type] = STATE(2764), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2764), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2764), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2764), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [899] = { + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2760), + [sym_constructor_type] = STATE(2760), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2760), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2760), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2760), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, [900] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2587), - [sym_constructor_type] = STATE(2587), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2587), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2587), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2587), + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2831), + [sym_constructor_type] = STATE(2831), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2831), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2831), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2831), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -103369,46 +103107,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, [901] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2642), - [sym_constructor_type] = STATE(2642), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2642), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2642), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2642), + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2759), + [sym_constructor_type] = STATE(2759), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2759), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2759), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2759), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), + }, + [902] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2675), + [sym_constructor_type] = STATE(2675), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2675), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2675), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2675), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -103435,115 +103240,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [902] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(3615), - [sym_constructor_type] = STATE(3615), - [sym__primary_type] = STATE(2758), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(3615), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(3615), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(3615), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, [903] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3509), - [sym_constructor_type] = STATE(3509), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3509), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3509), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3509), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2410), + [sym_constructor_type] = STATE(2410), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2410), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2410), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2410), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [904] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2989), + [sym_constructor_type] = STATE(2989), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2989), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2989), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2989), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -103555,263 +103360,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [904] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1260), - [sym_constructor_type] = STATE(1260), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1260), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1260), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1260), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [905] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1255), - [sym_constructor_type] = STATE(1255), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1255), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1255), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1255), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1266), + [sym_constructor_type] = STATE(1266), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1266), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1266), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1266), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, [906] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1254), - [sym_constructor_type] = STATE(1254), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1254), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1254), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1254), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + [sym_nested_identifier] = STATE(4193), + [sym_string] = STATE(2728), + [sym_formal_parameters] = STATE(4181), + [sym_nested_type_identifier] = STATE(2661), + [sym__type] = STATE(2709), + [sym_constructor_type] = STATE(2709), + [sym__primary_type] = STATE(2735), + [sym_template_literal_type] = STATE(2736), + [sym_infer_type] = STATE(2709), + [sym_conditional_type] = STATE(2736), + [sym_generic_type] = STATE(2736), + [sym_type_query] = STATE(2736), + [sym_index_type_query] = STATE(2736), + [sym_lookup_type] = STATE(2736), + [sym_literal_type] = STATE(2736), + [sym__number] = STATE(2737), + [sym_existential_type] = STATE(2736), + [sym_flow_maybe_type] = STATE(2736), + [sym_parenthesized_type] = STATE(2736), + [sym_predefined_type] = STATE(2736), + [sym_object_type] = STATE(2736), + [sym_type_parameters] = STATE(4005), + [sym_array_type] = STATE(2736), + [sym_tuple_type] = STATE(2736), + [sym_readonly_type] = STATE(2709), + [sym_union_type] = STATE(2736), + [sym_intersection_type] = STATE(2736), + [sym_function_type] = STATE(2709), + [sym_identifier] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2583), + [sym_this] = ACTIONS(2903), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_infer] = ACTIONS(2597), + [anon_sym_keyof] = ACTIONS(2599), + [anon_sym_unknown] = ACTIONS(2575), + [anon_sym_never] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_LBRACE_PIPE] = ACTIONS(2601), }, [907] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3512), - [sym_constructor_type] = STATE(3512), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3512), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3512), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3512), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3488), + [sym_constructor_type] = STATE(3488), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3488), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3488), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3488), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -103823,129 +103561,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [908] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2643), - [sym_constructor_type] = STATE(2643), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2643), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2643), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2643), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3446), + [sym_constructor_type] = STATE(3446), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3446), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3446), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3446), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [909] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3120), - [sym_constructor_type] = STATE(3120), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3120), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3120), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3120), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3554), + [sym_constructor_type] = STATE(3554), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3554), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3554), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3554), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -103957,64 +103695,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [910] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3031), - [sym_constructor_type] = STATE(3031), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3031), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3031), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3031), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2476), + [sym_constructor_type] = STATE(2476), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2476), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2476), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2476), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -104023,65 +103761,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, [911] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2413), - [sym_constructor_type] = STATE(2413), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2413), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2413), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2413), + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1271), + [sym_constructor_type] = STATE(1271), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1271), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1271), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1271), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [912] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2977), + [sym_constructor_type] = STATE(2977), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2977), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2977), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2977), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -104090,62 +103895,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [912] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2639), - [sym_constructor_type] = STATE(2639), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2639), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2639), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2639), + [913] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3212), + [sym_constructor_type] = STATE(3212), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3212), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3212), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3212), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -104172,117 +103977,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [913] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2397), - [sym_constructor_type] = STATE(2397), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2397), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2397), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2397), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), - }, [914] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), [sym__type] = STATE(2396), [sym_constructor_type] = STATE(2396), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), [sym_infer_type] = STATE(2396), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), [sym_readonly_type] = STATE(2396), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), [sym_function_type] = STATE(2396), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -104291,63 +104029,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, [915] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3006), - [sym_constructor_type] = STATE(3006), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3006), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3006), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3006), + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1278), + [sym_constructor_type] = STATE(1278), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1278), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1278), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1278), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [916] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3497), + [sym_constructor_type] = STATE(3497), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3497), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3497), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3497), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -104359,61 +104164,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [916] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2626), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2626), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2626), + [917] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2616), + [sym_constructor_type] = STATE(2616), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2616), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2616), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2616), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -104440,117 +104245,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [917] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2781), - [sym_constructor_type] = STATE(2781), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2781), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2781), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2781), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, [918] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2398), - [sym_constructor_type] = STATE(2398), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2398), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2398), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2398), + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1249), + [sym_constructor_type] = STATE(1249), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1249), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1249), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1249), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [919] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2744), + [sym_constructor_type] = STATE(2744), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2744), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2744), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2744), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -104559,63 +104364,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [919] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2397), - [sym_constructor_type] = STATE(2397), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2397), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2397), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2397), + [920] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3500), + [sym_constructor_type] = STATE(3500), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3500), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3500), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3500), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -104627,61 +104432,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [920] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3781), - [sym_constructor_type] = STATE(3781), - [sym__primary_type] = STATE(2620), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3781), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3781), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3781), + [921] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3501), + [sym_constructor_type] = STATE(3501), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3501), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3501), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3501), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [922] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3226), + [sym_constructor_type] = STATE(3226), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3226), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3226), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3226), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -104693,62 +104565,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1303), [sym_null] = ACTIONS(1303), [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1305), [anon_sym_QMARK] = ACTIONS(740), [anon_sym_any] = ACTIONS(750), [anon_sym_number] = ACTIONS(750), [anon_sym_boolean] = ACTIONS(750), [anon_sym_string] = ACTIONS(750), [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), [anon_sym_keyof] = ACTIONS(748), [anon_sym_unknown] = ACTIONS(750), [anon_sym_never] = ACTIONS(750), [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [921] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3781), - [sym_constructor_type] = STATE(3781), - [sym__primary_type] = STATE(2615), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3781), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3781), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3781), + [923] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2611), + [sym_constructor_type] = STATE(2611), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2611), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2611), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2611), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -104760,464 +104632,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1303), [sym_null] = ACTIONS(1303), [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1305), [anon_sym_QMARK] = ACTIONS(740), [anon_sym_any] = ACTIONS(750), [anon_sym_number] = ACTIONS(750), [anon_sym_boolean] = ACTIONS(750), [anon_sym_string] = ACTIONS(750), [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), [anon_sym_keyof] = ACTIONS(748), [anon_sym_unknown] = ACTIONS(750), [anon_sym_never] = ACTIONS(750), [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [922] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3059), - [sym_constructor_type] = STATE(3059), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3059), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3059), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3059), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), - }, - [923] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3063), - [sym_constructor_type] = STATE(3063), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3063), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3063), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3063), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), - }, [924] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3090), - [sym_constructor_type] = STATE(3090), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3090), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3090), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3090), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [925] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2782), - [sym_constructor_type] = STATE(2782), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2782), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2782), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2782), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, - [926] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3466), - [sym_constructor_type] = STATE(3466), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3466), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3466), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3466), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [927] = { - [sym_nested_identifier] = STATE(1232), - [sym_string] = STATE(1231), - [sym__module] = STATE(1392), - [sym_identifier] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(155), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), - }, - [928] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2627), - [sym_constructor_type] = STATE(2627), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2627), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2627), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2627), + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2632), + [sym_constructor_type] = STATE(2632), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2632), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2632), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2632), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -105244,248 +104714,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [929] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2987), - [sym_constructor_type] = STATE(2987), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2987), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2987), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2987), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [930] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2805), - [sym_constructor_type] = STATE(2805), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2805), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2805), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2805), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, - [931] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3742), - [sym_constructor_type] = STATE(3742), - [sym__primary_type] = STATE(2401), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3742), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3742), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3742), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [932] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2624), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2624), + [925] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2631), + [sym_constructor_type] = STATE(2631), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2631), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2631), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2631), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -105512,181 +104781,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [933] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3069), - [sym_constructor_type] = STATE(3069), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3069), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3069), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3069), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [926] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1638), + [sym_constructor_type] = STATE(1638), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1638), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1638), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1638), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [934] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2380), - [sym_constructor_type] = STATE(2380), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2380), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2380), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2380), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [927] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1639), + [sym_constructor_type] = STATE(1639), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1639), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1639), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1639), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [935] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2598), - [sym_constructor_type] = STATE(2598), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2598), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2598), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2598), + [928] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2659), + [sym_constructor_type] = STATE(2659), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2659), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2659), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2659), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -105713,182 +104982,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [936] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1636), - [sym_constructor_type] = STATE(1636), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1636), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1636), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1636), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), + [929] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3773), + [sym_constructor_type] = STATE(3773), + [sym__primary_type] = STATE(2400), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3773), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3773), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3773), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(2619), [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), - }, - [937] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2720), - [sym_constructor_type] = STATE(2720), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2720), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2720), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2720), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, - [938] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3432), - [sym_constructor_type] = STATE(3432), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3432), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3432), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3432), + [930] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2429), + [sym_constructor_type] = STATE(2429), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2429), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2429), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2429), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -105900,129 +105102,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [939] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2719), - [sym_constructor_type] = STATE(2719), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2719), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2719), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2719), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [931] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1353), + [sym_constructor_type] = STATE(1353), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1353), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1353), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1353), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), }, - [940] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2396), - [sym_constructor_type] = STATE(2396), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2396), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2396), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2396), + [932] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2452), + [sym_constructor_type] = STATE(2452), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2452), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2452), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2452), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -106034,195 +105236,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [941] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2762), - [sym_constructor_type] = STATE(2762), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2762), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2762), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2762), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - }, - [942] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1695), - [sym_constructor_type] = STATE(1695), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1695), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1695), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1695), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [943] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2596), - [sym_constructor_type] = STATE(2596), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2596), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2596), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2596), + [933] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3343), + [sym_constructor_type] = STATE(3343), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3343), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3343), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3343), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -106249,48 +105317,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [944] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3473), - [sym_constructor_type] = STATE(3473), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3473), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3473), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3473), + [934] = { + [sym_nested_identifier] = STATE(1257), + [sym_string] = STATE(1234), + [sym__module] = STATE(1434), + [sym_identifier] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(149), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(153), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(149), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(149), + }, + [935] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2436), + [sym_constructor_type] = STATE(2436), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2436), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2436), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2436), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -106302,64 +105437,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [945] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3656), - [sym_constructor_type] = STATE(3656), - [sym__primary_type] = STATE(2407), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3656), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3656), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3656), + [936] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3746), + [sym_constructor_type] = STATE(3746), + [sym__primary_type] = STATE(2392), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3746), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3746), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3746), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -106369,64 +105504,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [946] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3656), - [sym_constructor_type] = STATE(3656), - [sym__primary_type] = STATE(2401), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3656), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3656), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3656), + [937] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3773), + [sym_constructor_type] = STATE(3773), + [sym__primary_type] = STATE(2392), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3773), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3773), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3773), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -106436,198 +105571,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), - }, - [947] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3049), - [sym_constructor_type] = STATE(3049), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3049), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3049), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3049), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), - }, - [948] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3055), - [sym_constructor_type] = STATE(3055), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3055), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3055), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3055), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, - [949] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4447), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2387), - [sym_constructor_type] = STATE(2387), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2387), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3971), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2387), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2387), + [938] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3746), + [sym_constructor_type] = STATE(3746), + [sym__primary_type] = STATE(2400), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3746), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3746), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3746), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_typeof] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -106636,130 +105637,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [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_abstract] = ACTIONS(2777), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(2779), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [950] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3194), - [sym_constructor_type] = STATE(3194), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3194), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3194), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3194), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), + [939] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1713), + [sym_constructor_type] = STATE(1713), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1713), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1713), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1713), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [951] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3445), - [sym_constructor_type] = STATE(3445), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3445), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3445), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3445), + [940] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2465), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2465), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2465), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -106771,129 +105772,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [952] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2631), - [sym_constructor_type] = STATE(2631), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2631), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2631), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2631), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [953] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3536), - [sym_constructor_type] = STATE(3536), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3536), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3536), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3536), + [941] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3093), + [sym_constructor_type] = STATE(3093), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3093), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3093), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3093), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -106905,62 +105839,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [954] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3528), - [sym_constructor_type] = STATE(3528), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3528), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3528), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3528), + [942] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3563), + [sym_constructor_type] = STATE(3563), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3563), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3563), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3563), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -106972,62 +105906,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [955] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2733), - [sym_constructor_type] = STATE(2733), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2733), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2733), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2733), + [943] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3566), + [sym_constructor_type] = STATE(3566), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3566), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3566), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3566), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -107039,196 +105973,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [956] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(3191), - [sym_constructor_type] = STATE(3191), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(3191), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(3191), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(3191), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [957] = { - [sym_nested_identifier] = STATE(1232), - [sym_string] = STATE(1231), - [sym__module] = STATE(1392), - [sym_identifier] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(155), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(155), - [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_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(155), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), + [944] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1656), + [sym_constructor_type] = STATE(1656), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1656), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1656), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1656), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(155), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(155), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [958] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3532), - [sym_constructor_type] = STATE(3532), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3532), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3532), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3532), + [945] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3108), + [sym_constructor_type] = STATE(3108), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3108), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3108), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3108), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -107240,61 +106107,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [959] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2664), - [sym_constructor_type] = STATE(2664), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2664), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2664), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2664), + [946] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2652), + [sym_constructor_type] = STATE(2652), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2652), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2652), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2652), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -107321,115 +106188,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [960] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1792), - [sym_constructor_type] = STATE(1792), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1792), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1792), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1792), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), + [947] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1659), + [sym_constructor_type] = STATE(1659), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1659), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1659), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1659), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [961] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3046), - [sym_constructor_type] = STATE(3046), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3046), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3046), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3046), + [948] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2410), + [sym_constructor_type] = STATE(2410), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2410), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2410), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2410), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -107441,196 +106308,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [962] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1791), - [sym_constructor_type] = STATE(1791), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1791), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1791), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1791), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), + [949] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1712), + [sym_constructor_type] = STATE(1712), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1712), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1712), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1712), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), - }, - [963] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3447), - [sym_constructor_type] = STATE(3447), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3447), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3447), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3447), - [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1242), - [sym_number] = ACTIONS(1244), - [sym_this] = ACTIONS(1246), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [964] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2954), - [sym_constructor_type] = STATE(2954), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2954), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2954), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2954), + [950] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3535), + [sym_constructor_type] = STATE(3535), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3535), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3535), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3535), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -107642,196 +106442,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [965] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1274), - [sym_constructor_type] = STATE(1274), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1274), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1274), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1274), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [966] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1319), - [sym_constructor_type] = STATE(1319), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1319), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1319), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1319), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [967] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3422), - [sym_constructor_type] = STATE(3422), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3422), + [951] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2979), + [sym_constructor_type] = STATE(2979), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2979), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2979), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2979), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -107843,195 +106509,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), - }, - [968] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2697), - [sym_constructor_type] = STATE(2697), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2697), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2697), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2697), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [969] = { - [sym_nested_identifier] = STATE(4131), - [sym_string] = STATE(1292), - [sym_formal_parameters] = STATE(4120), - [sym_nested_type_identifier] = STATE(1210), - [sym__type] = STATE(1296), - [sym_constructor_type] = STATE(1296), - [sym__primary_type] = STATE(1283), - [sym_template_literal_type] = STATE(1281), - [sym_infer_type] = STATE(1296), - [sym_conditional_type] = STATE(1281), - [sym_generic_type] = STATE(1281), - [sym_type_query] = STATE(1281), - [sym_index_type_query] = STATE(1281), - [sym_lookup_type] = STATE(1281), - [sym_literal_type] = STATE(1281), - [sym__number] = STATE(1238), - [sym_existential_type] = STATE(1281), - [sym_flow_maybe_type] = STATE(1281), - [sym_parenthesized_type] = STATE(1281), - [sym_predefined_type] = STATE(1281), - [sym_object_type] = STATE(1281), - [sym_type_parameters] = STATE(4060), - [sym_array_type] = STATE(1281), - [sym_tuple_type] = STATE(1281), - [sym_readonly_type] = STATE(1296), - [sym_union_type] = STATE(1281), - [sym_intersection_type] = STATE(1281), - [sym_function_type] = STATE(1296), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_typeof] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_infer] = ACTIONS(2871), - [anon_sym_keyof] = ACTIONS(2873), - [anon_sym_unknown] = ACTIONS(2855), - [anon_sym_never] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_LBRACE_PIPE] = ACTIONS(2875), - }, - [970] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2625), - [sym_constructor_type] = STATE(2625), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2625), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2625), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2625), + [952] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2651), + [sym_constructor_type] = STATE(2651), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2651), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2651), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2651), [sym_identifier] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(708), [anon_sym_LBRACE] = ACTIONS(1277), [anon_sym_typeof] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), [anon_sym_new] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2611), [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), [anon_sym_void] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), @@ -108058,115 +106590,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(750), [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, - [971] = { - [sym_nested_identifier] = STATE(4159), - [sym_string] = STATE(2623), - [sym_formal_parameters] = STATE(4123), - [sym_nested_type_identifier] = STATE(2498), - [sym__type] = STATE(2601), - [sym_constructor_type] = STATE(2601), - [sym__primary_type] = STATE(2628), - [sym_template_literal_type] = STATE(2621), - [sym_infer_type] = STATE(2601), - [sym_conditional_type] = STATE(2621), - [sym_generic_type] = STATE(2621), - [sym_type_query] = STATE(2621), - [sym_index_type_query] = STATE(2621), - [sym_lookup_type] = STATE(2621), - [sym_literal_type] = STATE(2621), - [sym__number] = STATE(2618), - [sym_existential_type] = STATE(2621), - [sym_flow_maybe_type] = STATE(2621), - [sym_parenthesized_type] = STATE(2621), - [sym_predefined_type] = STATE(2621), - [sym_object_type] = STATE(2621), - [sym_type_parameters] = STATE(4042), - [sym_array_type] = STATE(2621), - [sym_tuple_type] = STATE(2621), - [sym_readonly_type] = STATE(2601), - [sym_union_type] = STATE(2621), - [sym_intersection_type] = STATE(2621), - [sym_function_type] = STATE(2601), - [sym_identifier] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_typeof] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), + [953] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(3694), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(1782), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1297), - [sym_number] = ACTIONS(1299), - [sym_this] = ACTIONS(1301), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [sym_undefined] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_any] = ACTIONS(750), - [anon_sym_number] = ACTIONS(750), - [anon_sym_boolean] = ACTIONS(750), - [anon_sym_string] = ACTIONS(750), - [anon_sym_symbol] = ACTIONS(750), - [anon_sym_abstract] = ACTIONS(744), - [anon_sym_infer] = ACTIONS(746), - [anon_sym_keyof] = ACTIONS(748), - [anon_sym_unknown] = ACTIONS(750), - [anon_sym_never] = ACTIONS(750), - [anon_sym_object] = ACTIONS(750), - [anon_sym_LBRACE_PIPE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [972] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3527), - [sym_constructor_type] = STATE(3527), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3527), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3527), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3527), + [954] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3034), + [sym_constructor_type] = STATE(3034), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3034), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3034), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3034), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [955] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3537), + [sym_constructor_type] = STATE(3537), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3537), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3537), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3537), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -108178,62 +106777,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [973] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3496), - [sym_constructor_type] = STATE(3496), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3496), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3496), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3496), + [956] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3319), + [sym_constructor_type] = STATE(3319), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3319), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3319), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3319), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -108245,62 +106844,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [974] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2441), - [sym_constructor_type] = STATE(2441), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2441), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2441), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2441), + [957] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3746), + [sym_constructor_type] = STATE(3746), + [sym__primary_type] = STATE(3391), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3465), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3746), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3746), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -108312,62 +106911,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [975] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3742), - [sym_constructor_type] = STATE(3742), - [sym__primary_type] = STATE(3180), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3742), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3742), + [958] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2412), + [sym_constructor_type] = STATE(2412), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2412), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2412), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2412), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -108379,62 +106978,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [976] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(2380), - [sym_constructor_type] = STATE(2380), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(2380), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(2380), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(2380), + [959] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3043), + [sym_constructor_type] = STATE(3043), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3043), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3043), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3043), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1224), [anon_sym_typeof] = ACTIONS(1226), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), [anon_sym_DQUOTE] = ACTIONS(1238), [anon_sym_SQUOTE] = ACTIONS(1240), [sym_comment] = ACTIONS(3), @@ -108446,131 +107045,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), }, - [977] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1718), - [sym_constructor_type] = STATE(1718), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1718), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1718), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1718), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), + [960] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(3694), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(1803), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), }, - [978] = { - [sym_nested_identifier] = STATE(4364), - [sym_string] = STATE(2378), - [sym_formal_parameters] = STATE(4365), - [sym_nested_type_identifier] = STATE(2371), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(2385), - [sym_template_literal_type] = STATE(2386), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(2386), - [sym_generic_type] = STATE(2386), - [sym_type_query] = STATE(2386), - [sym_index_type_query] = STATE(2386), - [sym_lookup_type] = STATE(2386), - [sym_literal_type] = STATE(2386), - [sym__number] = STATE(2391), - [sym_existential_type] = STATE(2386), - [sym_flow_maybe_type] = STATE(2386), - [sym_parenthesized_type] = STATE(2386), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2386), - [sym_type_parameters] = STATE(3869), - [sym_array_type] = STATE(2386), - [sym_tuple_type] = STATE(2386), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(2386), - [sym_intersection_type] = STATE(2386), - [sym_function_type] = STATE(3064), + [961] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3232), + [sym_constructor_type] = STATE(3232), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3232), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3232), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3232), [sym_identifier] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1242), [sym_number] = ACTIONS(1244), @@ -108579,193 +107178,3256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1248), [sym_null] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(628), - [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_abstract] = ACTIONS(203), - [anon_sym_infer] = ACTIONS(205), - [anon_sym_keyof] = ACTIONS(207), - [anon_sym_unknown] = ACTIONS(209), - [anon_sym_never] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, - [979] = { - [sym_nested_identifier] = STATE(4448), - [sym_string] = STATE(1730), - [sym_formal_parameters] = STATE(4322), - [sym_nested_type_identifier] = STATE(1526), - [sym__type] = STATE(1689), - [sym_constructor_type] = STATE(1689), - [sym__primary_type] = STATE(1727), - [sym_template_literal_type] = STATE(1726), - [sym_infer_type] = STATE(1689), - [sym_conditional_type] = STATE(1726), - [sym_generic_type] = STATE(1726), - [sym_type_query] = STATE(1726), - [sym_index_type_query] = STATE(1726), - [sym_lookup_type] = STATE(1726), - [sym_literal_type] = STATE(1726), - [sym__number] = STATE(1724), - [sym_existential_type] = STATE(1726), - [sym_flow_maybe_type] = STATE(1726), - [sym_parenthesized_type] = STATE(1726), - [sym_predefined_type] = STATE(1726), - [sym_object_type] = STATE(1726), - [sym_type_parameters] = STATE(3824), - [sym_array_type] = STATE(1726), - [sym_tuple_type] = STATE(1726), - [sym_readonly_type] = STATE(1689), - [sym_union_type] = STATE(1726), - [sym_intersection_type] = STATE(1726), - [sym_function_type] = STATE(1689), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), + [962] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1802), + [sym_constructor_type] = STATE(1802), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1802), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1802), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1802), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [sym_null] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2651), - [anon_sym_infer] = ACTIONS(2653), - [anon_sym_keyof] = ACTIONS(2655), - [anon_sym_unknown] = ACTIONS(2637), - [anon_sym_never] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_LBRACE_PIPE] = ACTIONS(2657), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), + }, + [963] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1314), + [sym_constructor_type] = STATE(1314), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1314), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1314), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1314), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [964] = { + [sym_nested_identifier] = STATE(4123), + [sym_string] = STATE(1305), + [sym_formal_parameters] = STATE(4266), + [sym_nested_type_identifier] = STATE(1226), + [sym__type] = STATE(1308), + [sym_constructor_type] = STATE(1308), + [sym__primary_type] = STATE(1335), + [sym_template_literal_type] = STATE(1337), + [sym_infer_type] = STATE(1308), + [sym_conditional_type] = STATE(1337), + [sym_generic_type] = STATE(1337), + [sym_type_query] = STATE(1337), + [sym_index_type_query] = STATE(1337), + [sym_lookup_type] = STATE(1337), + [sym_literal_type] = STATE(1337), + [sym__number] = STATE(1345), + [sym_existential_type] = STATE(1337), + [sym_flow_maybe_type] = STATE(1337), + [sym_parenthesized_type] = STATE(1337), + [sym_predefined_type] = STATE(1337), + [sym_object_type] = STATE(1337), + [sym_type_parameters] = STATE(4041), + [sym_array_type] = STATE(1337), + [sym_tuple_type] = STATE(1337), + [sym_readonly_type] = STATE(1308), + [sym_union_type] = STATE(1337), + [sym_intersection_type] = STATE(1337), + [sym_function_type] = STATE(1308), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(182), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2731), + [anon_sym_number] = ACTIONS(2731), + [anon_sym_boolean] = ACTIONS(2731), + [anon_sym_string] = ACTIONS(2731), + [anon_sym_symbol] = ACTIONS(2731), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_infer] = ACTIONS(2747), + [anon_sym_keyof] = ACTIONS(2749), + [anon_sym_unknown] = ACTIONS(2731), + [anon_sym_never] = ACTIONS(2731), + [anon_sym_object] = ACTIONS(2731), + [anon_sym_LBRACE_PIPE] = ACTIONS(2751), + }, + [965] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1791), + [sym_constructor_type] = STATE(1791), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1791), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1791), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1791), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), + }, + [966] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1790), + [sym_constructor_type] = STATE(1790), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1790), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1790), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1790), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), + }, + [967] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3017), + [sym_constructor_type] = STATE(3017), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3017), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3017), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3017), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [968] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3548), + [sym_constructor_type] = STATE(3548), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3548), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3548), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3548), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [969] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2619), + [sym_constructor_type] = STATE(2619), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2619), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2619), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2619), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [970] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2997), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [971] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2409), + [sym_constructor_type] = STATE(2409), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2409), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2409), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2409), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [972] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2458), + [sym_constructor_type] = STATE(2458), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2458), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2458), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2458), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [973] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3519), + [sym_constructor_type] = STATE(3519), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3519), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3519), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3519), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(602), + [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_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + }, + [974] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2655), + [sym_constructor_type] = STATE(2655), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2655), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2655), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2655), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [975] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2625), + [sym_constructor_type] = STATE(2625), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2625), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2625), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2625), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [976] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3795), + [sym_constructor_type] = STATE(3795), + [sym__primary_type] = STATE(2626), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3795), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3795), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3795), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [977] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4141), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3795), + [sym_constructor_type] = STATE(3795), + [sym__primary_type] = STATE(2628), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3795), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4019), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3795), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3795), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [978] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1710), + [sym_constructor_type] = STATE(1710), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1710), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1710), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1710), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), + }, + [979] = { + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(2429), + [sym_constructor_type] = STATE(2429), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(2429), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(2429), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(2429), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), }, [980] = { - [sym_nested_identifier] = STATE(4204), - [sym_string] = STATE(2721), - [sym_formal_parameters] = STATE(4305), - [sym_nested_type_identifier] = STATE(2605), - [sym__type] = STATE(2696), - [sym_constructor_type] = STATE(2696), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2729), - [sym_infer_type] = STATE(2696), - [sym_conditional_type] = STATE(2729), - [sym_generic_type] = STATE(2729), - [sym_type_query] = STATE(2729), - [sym_index_type_query] = STATE(2729), - [sym_lookup_type] = STATE(2729), - [sym_literal_type] = STATE(2729), - [sym__number] = STATE(2730), - [sym_existential_type] = STATE(2729), - [sym_flow_maybe_type] = STATE(2729), - [sym_parenthesized_type] = STATE(2729), - [sym_predefined_type] = STATE(2729), - [sym_object_type] = STATE(2729), - [sym_type_parameters] = STATE(4024), - [sym_array_type] = STATE(2729), - [sym_tuple_type] = STATE(2729), - [sym_readonly_type] = STATE(2696), - [sym_union_type] = STATE(2729), - [sym_intersection_type] = STATE(2729), - [sym_function_type] = STATE(2696), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_typeof] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2575), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2579), - [sym_false] = ACTIONS(2579), - [sym_null] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2567), - [anon_sym_number] = ACTIONS(2567), - [anon_sym_boolean] = ACTIONS(2567), - [anon_sym_string] = ACTIONS(2567), - [anon_sym_symbol] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_infer] = ACTIONS(2589), - [anon_sym_keyof] = ACTIONS(2591), - [anon_sym_unknown] = ACTIONS(2567), - [anon_sym_never] = ACTIONS(2567), - [anon_sym_object] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), + [sym_nested_identifier] = STATE(4142), + [sym_string] = STATE(2422), + [sym_formal_parameters] = STATE(4424), + [sym_nested_type_identifier] = STATE(2382), + [sym__type] = STATE(3033), + [sym_constructor_type] = STATE(3033), + [sym__primary_type] = STATE(2413), + [sym_template_literal_type] = STATE(2389), + [sym_infer_type] = STATE(3033), + [sym_conditional_type] = STATE(2389), + [sym_generic_type] = STATE(2389), + [sym_type_query] = STATE(2389), + [sym_index_type_query] = STATE(2389), + [sym_lookup_type] = STATE(2389), + [sym_literal_type] = STATE(2389), + [sym__number] = STATE(2430), + [sym_existential_type] = STATE(2389), + [sym_flow_maybe_type] = STATE(2389), + [sym_parenthesized_type] = STATE(2389), + [sym_predefined_type] = STATE(2389), + [sym_object_type] = STATE(2389), + [sym_type_parameters] = STATE(3971), + [sym_array_type] = STATE(2389), + [sym_tuple_type] = STATE(2389), + [sym_readonly_type] = STATE(3033), + [sym_union_type] = STATE(2389), + [sym_intersection_type] = STATE(2389), + [sym_function_type] = STATE(3033), + [sym_identifier] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_typeof] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(208), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_number] = ACTIONS(1244), + [sym_this] = ACTIONS(1246), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [sym_undefined] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2633), + [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_abstract] = ACTIONS(2635), + [anon_sym_infer] = ACTIONS(204), + [anon_sym_keyof] = ACTIONS(2637), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(2639), + }, + [981] = { + [sym_nested_identifier] = STATE(4425), + [sym_string] = STATE(1673), + [sym_formal_parameters] = STATE(4254), + [sym_nested_type_identifier] = STATE(1624), + [sym__type] = STATE(1689), + [sym_constructor_type] = STATE(1689), + [sym__primary_type] = STATE(1662), + [sym_template_literal_type] = STATE(1661), + [sym_infer_type] = STATE(1689), + [sym_conditional_type] = STATE(1661), + [sym_generic_type] = STATE(1661), + [sym_type_query] = STATE(1661), + [sym_index_type_query] = STATE(1661), + [sym_lookup_type] = STATE(1661), + [sym_literal_type] = STATE(1661), + [sym__number] = STATE(1660), + [sym_existential_type] = STATE(1661), + [sym_flow_maybe_type] = STATE(1661), + [sym_parenthesized_type] = STATE(1661), + [sym_predefined_type] = STATE(1661), + [sym_object_type] = STATE(1661), + [sym_type_parameters] = STATE(3842), + [sym_array_type] = STATE(1661), + [sym_tuple_type] = STATE(1661), + [sym_readonly_type] = STATE(1689), + [sym_union_type] = STATE(1661), + [sym_intersection_type] = STATE(1661), + [sym_function_type] = STATE(1689), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2857), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_infer] = ACTIONS(2869), + [anon_sym_keyof] = ACTIONS(2871), + [anon_sym_unknown] = ACTIONS(2853), + [anon_sym_never] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_LBRACE_PIPE] = ACTIONS(2873), + }, + [982] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3160), + [sym_constructor_type] = STATE(3160), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3160), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3160), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3160), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [983] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(2660), + [sym_constructor_type] = STATE(2660), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(2660), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(2660), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(2660), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), + }, + [984] = { + [sym_nested_identifier] = STATE(4124), + [sym_string] = STATE(2613), + [sym_formal_parameters] = STATE(4359), + [sym_nested_type_identifier] = STATE(2505), + [sym__type] = STATE(3276), + [sym_constructor_type] = STATE(3276), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2658), + [sym_infer_type] = STATE(3276), + [sym_conditional_type] = STATE(2658), + [sym_generic_type] = STATE(2658), + [sym_type_query] = STATE(2658), + [sym_index_type_query] = STATE(2658), + [sym_lookup_type] = STATE(2658), + [sym_literal_type] = STATE(2658), + [sym__number] = STATE(2653), + [sym_existential_type] = STATE(2658), + [sym_flow_maybe_type] = STATE(2658), + [sym_parenthesized_type] = STATE(2658), + [sym_predefined_type] = STATE(2658), + [sym_object_type] = STATE(2658), + [sym_type_parameters] = STATE(4046), + [sym_array_type] = STATE(2658), + [sym_tuple_type] = STATE(2658), + [sym_readonly_type] = STATE(3276), + [sym_union_type] = STATE(2658), + [sym_intersection_type] = STATE(2658), + [sym_function_type] = STATE(3276), + [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_number] = ACTIONS(1299), + [sym_this] = ACTIONS(1301), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_infer] = ACTIONS(746), + [anon_sym_keyof] = ACTIONS(748), + [anon_sym_unknown] = ACTIONS(750), + [anon_sym_never] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(752), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 12, + [0] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1905), 1, + anon_sym_COLON, + ACTIONS(2913), 1, + sym_identifier, + STATE(1225), 1, + sym_string, + STATE(1227), 1, + sym_nested_identifier, + STATE(1420), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [91] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1907), 1, + anon_sym_COLON, + ACTIONS(2551), 1, + sym_identifier, + STATE(591), 1, + sym_nested_identifier, + STATE(608), 1, + sym_string, + STATE(642), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [182] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1907), 1, + anon_sym_COLON, + ACTIONS(2545), 1, + sym_identifier, + ACTIONS(2547), 1, + anon_sym_DQUOTE, + ACTIONS(2549), 1, + anon_sym_SQUOTE, + STATE(140), 1, + sym_string, + STATE(141), 1, + sym_nested_identifier, + STATE(166), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [273] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(218), 1, + anon_sym_EQ_GT, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(1264), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(149), 11, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 15, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [455] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(1252), 1, + anon_sym_EQ, + ACTIONS(1254), 1, + anon_sym_EQ_GT, + ACTIONS(2913), 1, + sym_identifier, + STATE(1225), 1, + sym_string, + STATE(1227), 1, + sym_nested_identifier, + STATE(1420), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 26, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [544] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1905), 1, + anon_sym_COLON, + ACTIONS(2551), 1, + sym_identifier, + STATE(591), 1, + sym_nested_identifier, + STATE(608), 1, + sym_string, + STATE(642), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [635] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1254), 1, + anon_sym_EQ_GT, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 26, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [724] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(2913), 1, + sym_identifier, + STATE(1225), 1, + sym_string, + STATE(1227), 1, + sym_nested_identifier, + STATE(1420), 1, + sym__module, + ACTIONS(149), 15, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [813] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(2027), 1, + anon_sym_in, + ACTIONS(2030), 1, + anon_sym_of, + ACTIONS(2913), 1, + sym_identifier, + STATE(1225), 1, + sym_string, + STATE(1227), 1, + sym_nested_identifier, + STATE(1420), 1, + sym__module, + ACTIONS(149), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 24, + anon_sym_STAR, + anon_sym_as, + 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, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [906] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1810), 1, + anon_sym_LT, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(1895), 1, + anon_sym_EQ, + ACTIONS(2915), 1, + sym_identifier, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(149), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [998] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 14, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1086] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1311), 1, + anon_sym_EQ_GT, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 13, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 26, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [1174] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1810), 1, + anon_sym_LT, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1895), 1, + anon_sym_EQ, + ACTIONS(2915), 1, + sym_identifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(149), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1266] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(124), 1, + anon_sym_COMMA, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(215), 1, + anon_sym_RBRACK, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2036), 1, + anon_sym_EQ, + ACTIONS(2039), 1, + anon_sym_COLON, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 11, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1360] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(180), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(182), 1, anon_sym_SQUOTE, + ACTIONS(1309), 1, + anon_sym_EQ, + ACTIONS(1311), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 13, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 26, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [1448] = 14, + ACTIONS(3), 1, + sym_comment, ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1810), 1, + anon_sym_LT, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_RBRACE, + ACTIONS(1895), 1, + anon_sym_EQ, + ACTIONS(2915), 1, + sym_identifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(149), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1540] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(2757), 1, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, sym_identifier, - STATE(1231), 1, + STATE(1234), 1, sym_string, - STATE(1232), 1, + STATE(1257), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(1434), 1, sym__module, - ACTIONS(155), 14, - sym__automatic_semicolon, + ACTIONS(149), 14, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 24, + 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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(2919), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1697] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1260), 1, + anon_sym_EQ, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2039), 1, + anon_sym_COLON, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 24, + 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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(2923), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 24, + 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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(2927), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + anon_sym_implements, + [1924] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_RBRACE, + ACTIONS(2931), 1, + anon_sym_EQ, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108781,15 +110443,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(118), 26, - anon_sym_STAR, + ACTIONS(2933), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108800,40 +110475,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [89] = 14, + [2013] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(181), 1, + ACTIONS(124), 1, + anon_sym_COMMA, + ACTIONS(180), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(182), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(215), 1, + anon_sym_RBRACK, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2036), 1, anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_COLON, - ACTIONS(2757), 1, + ACTIONS(2703), 1, sym_identifier, - STATE(1231), 1, + STATE(1234), 1, sym_string, - STATE(1232), 1, + STATE(1257), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(1434), 1, sym__module, - ACTIONS(1264), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(155), 11, + ACTIONS(149), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -108845,7 +110517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108866,9 +110538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108879,39 +110549,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [182] = 13, + [2104] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(1252), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1271), 1, anon_sym_EQ_GT, - ACTIONS(1899), 1, - anon_sym_COLON, - ACTIONS(2543), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2945), 1, sym_identifier, - STATE(588), 1, + STATE(2839), 1, sym_nested_identifier, - STATE(606), 1, + STATE(2846), 1, sym_string, - STATE(729), 1, + STATE(3125), 1, sym__module, - ACTIONS(155), 14, + ACTIONS(149), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -108923,7 +110592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108944,9 +110613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108957,49 +110624,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [273] = 12, + [2191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1256), 1, + ACTIONS(2947), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1258), 1, - anon_sym_EQ_GT, - ACTIONS(2905), 1, - sym_identifier, - STATE(1207), 1, - sym_nested_identifier, - STATE(1215), 1, - sym_string, - STATE(1467), 1, - sym__module, - ACTIONS(155), 14, - sym__automatic_semicolon, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(2949), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109015,15 +110691,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), 26, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [2260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 24, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109034,50 +110719,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [362] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(2905), 1, - sym_identifier, - STATE(1207), 1, - sym_nested_identifier, - STATE(1215), 1, - sym_string, - STATE(1467), 1, - sym__module, - ACTIONS(155), 15, - sym__automatic_semicolon, + anon_sym_QMARK, + ACTIONS(2953), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + anon_sym_implements, + [2329] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(2931), 1, + anon_sym_EQ, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109093,14 +110803,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(118), 25, - anon_sym_STAR, + ACTIONS(2933), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109111,51 +110835,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [451] = 13, + [2418] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(1901), 1, - anon_sym_COLON, - ACTIONS(2537), 1, - sym_identifier, - ACTIONS(2539), 1, - anon_sym_DQUOTE, - ACTIONS(2541), 1, - anon_sym_SQUOTE, - STATE(139), 1, - sym_nested_identifier, - STATE(140), 1, - sym_string, - STATE(174), 1, - sym__module, - ACTIONS(155), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1798), 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_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1810), 1, + anon_sym_LT, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1895), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109171,14 +110879,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(118), 25, - anon_sym_STAR, + ACTIONS(149), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109189,51 +110911,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [542] = 13, + [2507] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(1899), 1, - anon_sym_COLON, - ACTIONS(2905), 1, - sym_identifier, - STATE(1207), 1, - sym_nested_identifier, - STATE(1215), 1, - sym_string, - STATE(1467), 1, - sym__module, - ACTIONS(155), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1798), 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_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1810), 1, + anon_sym_LT, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_RBRACE, + ACTIONS(1895), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109249,14 +110955,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(118), 25, - anon_sym_STAR, + ACTIONS(149), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109267,41 +110987,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [633] = 12, + [2596] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(180), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(182), 1, anon_sym_SQUOTE, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(2757), 1, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2055), 1, + anon_sym_COLON, + ACTIONS(2703), 1, sym_identifier, - STATE(1231), 1, + STATE(1234), 1, sym_string, - STATE(1232), 1, + STATE(1257), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(1434), 1, sym__module, - ACTIONS(155), 15, - sym__automatic_semicolon, + ACTIONS(149), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109310,7 +111028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109331,9 +111049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109344,41 +111060,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [722] = 14, + [2685] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2645), 1, + anon_sym_STAR, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2657), 1, + anon_sym_LBRACK, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(2957), 1, + anon_sym_export, + ACTIONS(2962), 1, + anon_sym_async, + ACTIONS(2964), 1, + anon_sym_static, + ACTIONS(2966), 1, + anon_sym_readonly, + ACTIONS(2972), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2298), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(2665), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2968), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2970), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3948), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3950), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(3001), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2955), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2818] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_DQUOTE, ACTIONS(85), 1, anon_sym_SQUOTE, - ACTIONS(1252), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1271), 1, anon_sym_EQ_GT, - ACTIONS(2019), 1, - anon_sym_in, - ACTIONS(2022), 1, - anon_sym_of, - ACTIONS(2905), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(1207), 1, - sym_nested_identifier, - STATE(1215), 1, + STATE(1225), 1, sym_string, - STATE(1467), 1, + STATE(1227), 1, + sym_nested_identifier, + STATE(1420), 1, sym__module, - ACTIONS(155), 14, + ACTIONS(149), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -109390,7 +111201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109406,13 +111217,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), 24, + ACTIONS(118), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109423,39 +111233,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [815] = 13, + [2905] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(1252), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1271), 1, anon_sym_EQ_GT, - ACTIONS(1901), 1, - anon_sym_COLON, - ACTIONS(2543), 1, + ACTIONS(2545), 1, sym_identifier, - STATE(588), 1, - sym_nested_identifier, - STATE(606), 1, + ACTIONS(2547), 1, + anon_sym_DQUOTE, + ACTIONS(2549), 1, + anon_sym_SQUOTE, + STATE(140), 1, sym_string, - STATE(729), 1, + STATE(141), 1, + sym_nested_identifier, + STATE(166), 1, sym__module, - ACTIONS(155), 14, + ACTIONS(149), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -109467,7 +111276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109488,9 +111297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109501,52 +111308,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [906] = 14, + [2992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1832), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1838), 1, + ACTIONS(2974), 24, + 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, - ACTIONS(1847), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, - anon_sym_EQ, - ACTIONS(2907), 1, - sym_identifier, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(155), 13, - sym__automatic_semicolon, + ACTIONS(2976), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109562,13 +111375,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), 24, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [3061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 24, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109579,52 +111403,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [998] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1832), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1838), 1, - anon_sym_LT, - ACTIONS(1847), 1, anon_sym_QMARK, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, - anon_sym_EQ, - ACTIONS(2907), 1, - sym_identifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(155), 13, - sym__automatic_semicolon, + ACTIONS(2980), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + anon_sym_implements, + [3130] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(2931), 1, + anon_sym_EQ, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109640,13 +111487,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(118), 24, - anon_sym_STAR, + ACTIONS(2933), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109657,48 +111519,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [1090] = 12, + [3219] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1309), 1, - anon_sym_EQ, - ACTIONS(1311), 1, - anon_sym_EQ_GT, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 13, - sym__ternary_qmark, + ACTIONS(2645), 1, + anon_sym_STAR, + ACTIONS(2647), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2653), 1, anon_sym_LPAREN, + ACTIONS(2657), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(2957), 1, + anon_sym_export, + ACTIONS(2962), 1, + anon_sym_async, + ACTIONS(2964), 1, + anon_sym_static, + ACTIONS(2966), 1, + anon_sym_readonly, + ACTIONS(2972), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2298), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(2665), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2968), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2970), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3948), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3950), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(3005), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2955), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [3352] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_COLON, + ACTIONS(1810), 1, + anon_sym_LT, + ACTIONS(1813), 1, + anon_sym_QMARK, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(1895), 1, + anon_sym_EQ, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109714,14 +111661,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(118), 26, - anon_sym_STAR, + ACTIONS(149), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109732,41 +111693,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [1178] = 12, + [3441] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(1262), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(2757), 1, + ACTIONS(1271), 1, + anon_sym_EQ_GT, + ACTIONS(2551), 1, sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, + STATE(591), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(608), 1, + sym_string, + STATE(642), 1, sym__module, - ACTIONS(155), 14, + ACTIONS(149), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109775,7 +111733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109796,9 +111754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109809,41 +111765,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1266] = 14, + [3528] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1271), 1, anon_sym_EQ_GT, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1832), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1838), 1, - anon_sym_LT, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(1889), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(2907), 1, + ACTIONS(2703), 1, sym_identifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(155), 13, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -109854,7 +111808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109870,13 +111824,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), 24, + ACTIONS(118), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109887,40 +111840,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1358] = 12, + [3615] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(147), 1, + anon_sym_EQ_GT, + ACTIONS(180), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(182), 1, anon_sym_SQUOTE, - ACTIONS(1260), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(1262), 1, - anon_sym_EQ_GT, - ACTIONS(2757), 1, + ACTIONS(2027), 1, + anon_sym_in, + ACTIONS(2030), 1, + anon_sym_of, + ACTIONS(2703), 1, sym_identifier, - STATE(1231), 1, + STATE(1234), 1, sym_string, - STATE(1232), 1, + STATE(1257), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(1434), 1, sym__module, - ACTIONS(155), 14, + ACTIONS(149), 11, sym__ternary_qmark, - 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, @@ -109929,7 +111885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109945,14 +111901,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), 25, + ACTIONS(118), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109963,48 +111916,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1446] = 12, + [3705] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 13, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2986), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2990), 1, anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(2994), 1, anon_sym_QMARK_DOT, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2988), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 14, + 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_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110020,59 +111980,46 @@ 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), 26, + ACTIONS(2929), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [1534] = 15, + [3791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(181), 1, + ACTIONS(180), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(182), 1, anon_sym_SQUOTE, - ACTIONS(216), 1, - anon_sym_COMMA, - ACTIONS(1262), 1, - anon_sym_EQ_GT, - ACTIONS(2044), 1, + ACTIONS(1315), 1, anon_sym_EQ, - ACTIONS(2047), 1, - anon_sym_COLON, - ACTIONS(2757), 1, + ACTIONS(1317), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, sym_identifier, - STATE(1231), 1, + STATE(1234), 1, sym_string, - STATE(1232), 1, + STATE(1257), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(1434), 1, sym__module, - ACTIONS(155), 11, + ACTIONS(149), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -110084,7 +112031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110100,14 +112047,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), 25, + ACTIONS(118), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110118,56 +112064,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1628] = 3, + [3877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 24, - anon_sym_STAR, + ACTIONS(2982), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2996), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2999), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2911), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_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(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110183,170 +112112,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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1697] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2675), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2687), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(2915), 1, - anon_sym_export, - ACTIONS(2920), 1, - anon_sym_async, - ACTIONS(2922), 1, - anon_sym_static, - ACTIONS(2924), 1, - anon_sym_readonly, - ACTIONS(2930), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2253), 1, - sym_accessibility_modifier, - STATE(2288), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(2695), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2917), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2926), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2928), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2496), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3808), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4070), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(2978), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2913), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [1830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2932), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2934), 37, + ACTIONS(2933), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -110355,33 +112129,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [1899] = 13, + ACTIONS(2929), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + [3963] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(180), 1, anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(182), 1, anon_sym_SQUOTE, - ACTIONS(1260), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(1262), 1, + ACTIONS(1317), 1, anon_sym_EQ_GT, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(2757), 1, + ACTIONS(2703), 1, sym_identifier, - STATE(1231), 1, + STATE(1234), 1, sym_string, - STATE(1232), 1, + STATE(1257), 1, sym_nested_identifier, - STATE(1392), 1, + STATE(1434), 1, sym__module, - ACTIONS(155), 12, + ACTIONS(149), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -110390,7 +112179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110406,14 +112195,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), 25, + ACTIONS(118), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110424,36 +112212,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1988] = 13, + [4049] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1835), 1, + ACTIONS(147), 1, + anon_sym_EQ_GT, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1267), 1, anon_sym_COLON, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(2938), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(2942), 1, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 11, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(2945), 1, - anon_sym_LT, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2950), 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110469,29 +112271,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(2940), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 21, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110502,23 +112287,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [2077] = 3, + anon_sym_satisfies, + [4137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 24, + ACTIONS(2525), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110529,14 +112316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2954), 37, + ACTIONS(2527), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -110574,28 +112362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2146] = 13, + [4205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1832), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1838), 1, - anon_sym_LT, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(1889), 1, + ACTIONS(3010), 1, anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110611,29 +112383,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(155), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110644,41 +112398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [2235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2956), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2958), 37, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -110692,21 +112420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -110716,41 +112429,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2304] = 13, + [4277] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(1260), 1, - anon_sym_EQ, - ACTIONS(1262), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - ACTIONS(2047), 1, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + ACTIONS(3012), 1, + anon_sym_EQ, + ACTIONS(3019), 1, anon_sym_COLON, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 12, + ACTIONS(3021), 1, + anon_sym_QMARK, + STATE(2427), 1, + sym_type_arguments, + STATE(3898), 1, + sym_type_annotation, + ACTIONS(2999), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3015), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2933), 12, 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_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110766,43 +112487,35 @@ 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), 25, + ACTIONS(2929), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [2393] = 3, + [4371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 24, + ACTIONS(2521), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110813,14 +112526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2962), 37, + ACTIONS(2523), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -110858,51 +112572,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2462] = 13, + [4439] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(2938), 1, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, anon_sym_EQ, - ACTIONS(2942), 1, - anon_sym_LPAREN, - ACTIONS(2945), 1, + ACTIONS(3024), 1, + anon_sym_DOT, + ACTIONS(3027), 1, anon_sym_LT, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 16, + STATE(2624), 1, + sym_type_arguments, + ACTIONS(2999), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3015), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3008), 4, sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2933), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -110912,50 +112611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [2551] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1832), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1838), 1, - anon_sym_LT, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, - anon_sym_EQ, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110971,154 +112627,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(155), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [2640] = 12, + [4527] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(1271), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - ACTIONS(2905), 1, - sym_identifier, - STATE(1207), 1, - sym_nested_identifier, - STATE(1215), 1, - sym_string, - STATE(1467), 1, - sym__module, - ACTIONS(155), 13, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3030), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3032), 1, anon_sym_DOT, + ACTIONS(3034), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - 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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + STATE(2524), 1, + sym_arguments, + ACTIONS(2988), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [2727] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1269), 1, - anon_sym_EQ, - ACTIONS(1271), 1, - anon_sym_EQ_GT, - ACTIONS(2537), 1, - sym_identifier, - ACTIONS(2539), 1, - anon_sym_DQUOTE, - ACTIONS(2541), 1, - anon_sym_SQUOTE, - STATE(139), 1, - sym_nested_identifier, - STATE(140), 1, - sym_string, - STATE(174), 1, - sym__module, - ACTIONS(155), 13, + ACTIONS(2984), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2933), 10, + 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_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111134,66 +112700,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 25, + ACTIONS(2929), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [2814] = 12, + [4613] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, - anon_sym_EQ, - ACTIONS(1271), 1, + ACTIONS(2938), 1, anon_sym_EQ_GT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2964), 1, - sym_identifier, - STATE(2833), 1, - sym_nested_identifier, - STATE(2862), 1, - sym_string, - STATE(3328), 1, - sym__module, - ACTIONS(155), 13, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + ACTIONS(3036), 1, + anon_sym_EQ, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2996), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2999), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 15, sym__automatic_semicolon, 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111209,56 +112775,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 25, + ACTIONS(2929), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [2901] = 12, + [4698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(1271), 1, + ACTIONS(3040), 1, anon_sym_EQ_GT, - ACTIONS(2543), 1, - sym_identifier, - STATE(588), 1, - sym_nested_identifier, - STATE(606), 1, - sym_string, - STATE(729), 1, - sym__module, - ACTIONS(155), 13, - sym__automatic_semicolon, + ACTIONS(3042), 1, + anon_sym_QMARK, + ACTIONS(3038), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2933), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -111266,9 +112820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111284,14 +112840,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), 25, + ACTIONS(2929), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111302,71 +112855,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [2988] = 3, + [4775] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 24, - anon_sym_STAR, + ACTIONS(2982), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + STATE(2385), 1, + sym_arguments, + ACTIONS(2988), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2968), 37, + ACTIONS(2984), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2933), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -111375,29 +112899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3057] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(2938), 1, - anon_sym_EQ, - ACTIONS(2942), 1, - anon_sym_LPAREN, - ACTIONS(2945), 1, - anon_sym_LT, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111413,168 +112915,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(2940), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 21, + ACTIONS(2929), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_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_DASH_DASH, - [3146] = 35, + [4860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2675), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2687), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(2915), 1, - anon_sym_export, - ACTIONS(2920), 1, - anon_sym_async, - ACTIONS(2922), 1, - anon_sym_static, - ACTIONS(2924), 1, - anon_sym_readonly, - ACTIONS(2930), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2253), 1, - sym_accessibility_modifier, - STATE(2288), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(2695), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2917), 2, + ACTIONS(147), 1, + anon_sym_EQ_GT, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_QMARK, + ACTIONS(1267), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2926), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2928), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2496), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3808), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4070), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(3095), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2913), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [3279] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(124), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(216), 1, - anon_sym_COMMA, - ACTIONS(1262), 1, - anon_sym_EQ_GT, - ACTIONS(2044), 1, - anon_sym_EQ, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 11, + ACTIONS(149), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -111583,9 +112962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111601,14 +112982,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), 25, + ACTIONS(118), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111619,56 +112997,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [3370] = 3, + [4937] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3008), 1, + anon_sym_extends, + ACTIONS(3012), 1, + anon_sym_EQ, + ACTIONS(3015), 1, + anon_sym_RPAREN, + ACTIONS(3047), 1, + anon_sym_QMARK, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2999), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2972), 37, + ACTIONS(3044), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2933), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111684,37 +113061,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3439] = 13, + ACTIONS(2929), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + [5028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, + ACTIONS(218), 1, anon_sym_EQ_GT, - ACTIONS(1832), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_COLON, - ACTIONS(1838), 1, - anon_sym_LT, - ACTIONS(1847), 1, - anon_sym_QMARK, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, + ACTIONS(1222), 1, anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(159), 15, + ACTIONS(1383), 1, + anon_sym_extends, + ACTIONS(3049), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3052), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111730,13 +113113,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(155), 16, - sym__automatic_semicolon, + ACTIONS(149), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, @@ -111747,52 +113131,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_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_DASH_DASH, - [3528] = 12, + [5107] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(1271), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(212), 1, anon_sym_EQ, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 13, - sym__automatic_semicolon, + ACTIONS(218), 1, + anon_sym_EQ_GT, + ACTIONS(630), 1, + anon_sym_QMARK, + ACTIONS(215), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(149), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -111800,9 +113177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111818,14 +113197,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), 25, + ACTIONS(118), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111836,35 +113212,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [3615] = 12, + [5184] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(1313), 1, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(1315), 1, + ACTIONS(147), 1, anon_sym_EQ_GT, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 11, + ACTIONS(630), 1, + anon_sym_QMARK, + ACTIONS(124), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(149), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -111873,9 +113246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111891,15 +113266,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), 26, + ACTIONS(118), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111910,37 +113281,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [3701] = 12, + [5261] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3055), 1, + anon_sym_EQ, + ACTIONS(3057), 1, anon_sym_EQ_GT, - ACTIONS(2990), 1, - anon_sym_extends, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2976), 2, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2982), 3, + anon_sym_extends, + ACTIONS(2988), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2950), 15, + ACTIONS(2933), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111956,28 +113342,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(2940), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 18, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111986,35 +113354,32 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [3787] = 13, + [5346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_COLON, - ACTIONS(1317), 1, + ACTIONS(3012), 1, anon_sym_EQ, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 11, + ACTIONS(3047), 1, + anon_sym_QMARK, + ACTIONS(3044), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2933), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -112023,9 +113388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112041,14 +113408,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), 25, + ACTIONS(2929), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112059,25 +113423,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [3875] = 3, + [5423] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 23, - anon_sym_STAR, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + ACTIONS(3047), 1, + anon_sym_QMARK, + ACTIONS(3059), 1, anon_sym_EQ, + ACTIONS(3062), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2933), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2929), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112088,26 +113492,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2507), 37, + [5500] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 1, + anon_sym_EQ_GT, + ACTIONS(180), 1, + anon_sym_DQUOTE, + ACTIONS(182), 1, + anon_sym_SQUOTE, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + sym_identifier, + STATE(1234), 1, + sym_string, + STATE(1257), 1, + sym_nested_identifier, + STATE(1434), 1, + sym__module, + ACTIONS(149), 11, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112123,51 +113547,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(118), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [3943] = 14, + [5585] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + ACTIONS(3064), 1, anon_sym_EQ, - ACTIONS(2019), 1, - anon_sym_in, - ACTIONS(2022), 1, - anon_sym_of, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 11, + ACTIONS(3066), 1, + anon_sym_EQ_GT, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2996), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2999), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 15, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - 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_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112183,61 +113627,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(118), 24, + ACTIONS(2929), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + 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, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [4033] = 12, + [5670] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3055), 1, anon_sym_EQ, - ACTIONS(2988), 1, + ACTIONS(3057), 1, anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 3, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(3008), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2996), 3, + ACTIONS(2999), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 14, + ACTIONS(2933), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_RPAREN, + 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, @@ -112246,7 +113684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112262,12 +113700,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(2936), 19, + ACTIONS(2929), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112276,46 +113712,42 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4119] = 16, + [5755] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3064), 1, + anon_sym_EQ, + ACTIONS(3066), 1, anon_sym_EQ_GT, - ACTIONS(2990), 1, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(3011), 1, - anon_sym_QMARK, - STATE(2399), 1, - sym_type_arguments, - STATE(3959), 1, - sym_type_annotation, - ACTIONS(2982), 2, + ACTIONS(2988), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3005), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2940), 12, + ACTIONS(2933), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112324,7 +113756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112340,12 +113772,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(2936), 19, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112354,39 +113784,42 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4213] = 13, + [5840] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_EQ_GT, ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(3014), 1, - anon_sym_LT, - ACTIONS(3017), 1, anon_sym_DOT, - STATE(2632), 1, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + ACTIONS(3047), 1, + anon_sym_QMARK, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(3068), 1, + anon_sym_RPAREN, + STATE(2427), 1, sym_type_arguments, - ACTIONS(2982), 2, + ACTIONS(2999), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3005), 2, + ACTIONS(3062), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2990), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2940), 12, + anon_sym_COLON, + ACTIONS(2933), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -112399,7 +113832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112415,12 +113848,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(2936), 19, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112429,44 +113861,47 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4301] = 12, + [5931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(212), 1, anon_sym_EQ, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 11, + ACTIONS(218), 1, + anon_sym_EQ_GT, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3052), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1383), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(149), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112482,39 +113917,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 26, + ACTIONS(118), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [4387] = 5, + [6010] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(2950), 15, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2988), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 13, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112530,81 +113991,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2940), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [4459] = 12, + [6095] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(2988), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - ACTIONS(3022), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3026), 1, - anon_sym_QMARK_DOT, - STATE(2501), 1, - sym_arguments, - ACTIONS(2996), 2, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + ACTIONS(3038), 1, + anon_sym_COLON, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2999), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2992), 7, - sym__automatic_semicolon, + ACTIONS(3071), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2940), 10, + anon_sym_RBRACK, + ACTIONS(2933), 12, 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, @@ -112613,7 +114049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112629,13 +114065,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(2936), 20, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112644,23 +114078,61 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4545] = 3, + [6183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 23, - anon_sym_STAR, + ACTIONS(2982), 1, anon_sym_EQ, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(2940), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2933), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112671,26 +114143,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2523), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [6255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(218), 1, + anon_sym_EQ_GT, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112706,43 +114174,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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [4613] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2988), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2996), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2992), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2940), 12, + ACTIONS(149), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112751,62 +114194,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 20, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [4698] = 8, + [6327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(3030), 1, + ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(3032), 1, - anon_sym_QMARK, - ACTIONS(3028), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1907), 1, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2940), 14, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(149), 14, + 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, @@ -112814,11 +114241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112834,13 +114259,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(2936), 22, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112851,53 +114275,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [4775] = 15, + anon_sym_satisfies, + [6403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(2990), 1, - anon_sym_extends, - ACTIONS(3030), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - ACTIONS(3034), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(3039), 1, - anon_sym_RPAREN, - ACTIONS(3042), 1, - anon_sym_QMARK, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2982), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3037), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2940), 12, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112913,58 +114308,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 19, + ACTIONS(2933), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_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_DASH_DASH, - [4866] = 12, + [6475] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_SQUOTE, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(2757), 1, - sym_identifier, - STATE(1231), 1, - sym_string, - STATE(1232), 1, - sym_nested_identifier, - STATE(1392), 1, - sym__module, - ACTIONS(155), 11, + ACTIONS(3038), 1, + anon_sym_COLON, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2999), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3008), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2933), 12, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112980,48 +114404,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), 25, + ACTIONS(2929), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [4951] = 8, + [6561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(213), 1, + ACTIONS(3012), 1, anon_sym_EQ, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(574), 1, + ACTIONS(3047), 1, anon_sym_QMARK, - ACTIONS(216), 5, + ACTIONS(3044), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(155), 14, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -113036,7 +114452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113052,13 +114468,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), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113069,28 +114483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5028] = 8, + [6635] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, - anon_sym_EQ_GT, - ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(3047), 1, anon_sym_QMARK, - ACTIONS(3044), 5, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(3062), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2940), 14, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -113105,7 +114519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113121,13 +114535,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(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113138,29 +114550,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5105] = 9, + [6709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, + ACTIONS(218), 1, anon_sym_EQ_GT, - ACTIONS(1222), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(1381), 1, - anon_sym_extends, - ACTIONS(3047), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113176,13 +114581,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(155), 17, + ACTIONS(149), 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, @@ -113194,64 +114601,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 19, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5184] = 12, + [6781] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3053), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(3055), 1, + ACTIONS(1258), 1, anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 13, + ACTIONS(1905), 1, + anon_sym_COLON, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(149), 14, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113267,54 +114666,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(2936), 19, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [5269] = 12, + anon_sym_satisfies, + [6857] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, + ACTIONS(2986), 1, anon_sym_LPAREN, - ACTIONS(2998), 1, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(3000), 1, + ACTIONS(2994), 1, anon_sym_QMARK_DOT, - ACTIONS(3057), 1, + ACTIONS(3075), 1, anon_sym_EQ, - STATE(2372), 1, + ACTIONS(3077), 1, + anon_sym_EQ_GT, + STATE(2385), 1, sym_arguments, - ACTIONS(2992), 3, + ACTIONS(2984), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2996), 3, + ACTIONS(2988), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 13, + ACTIONS(2933), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -113324,7 +114728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113340,12 +114744,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(2936), 19, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113354,53 +114756,31 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5354] = 15, + [6941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(1256), 1, + anon_sym_EQ, + ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(2990), 1, + ACTIONS(1383), 1, anon_sym_extends, - ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(3005), 1, - anon_sym_RPAREN, - ACTIONS(3042), 1, - anon_sym_QMARK, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2982), 2, + ACTIONS(3049), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3052), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3044), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2940), 12, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113416,12 +114796,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(2936), 19, + ACTIONS(149), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113430,41 +114825,41 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5445] = 12, + [7019] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(2990), 1, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, anon_sym_extends, - ACTIONS(3053), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3055), 1, + ACTIONS(3081), 1, anon_sym_EQ_GT, - STATE(2399), 1, + STATE(2427), 1, sym_type_arguments, - ACTIONS(2976), 2, + ACTIONS(2996), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2982), 3, + ACTIONS(2999), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 15, - sym__automatic_semicolon, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -113474,7 +114869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + anon_sym_implements, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113490,11 +114886,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(2936), 18, + ACTIONS(2929), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113503,41 +114898,40 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5530] = 12, + [7103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(2986), 1, anon_sym_LPAREN, - ACTIONS(2998), 1, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(3000), 1, + ACTIONS(2994), 1, anon_sym_QMARK_DOT, - ACTIONS(3059), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(3081), 1, anon_sym_EQ_GT, - STATE(2372), 1, + STATE(2385), 1, sym_arguments, - ACTIONS(2992), 3, + ACTIONS(2984), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2996), 3, + ACTIONS(2988), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 13, + ACTIONS(2933), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113546,7 +114940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + anon_sym_implements, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113562,12 +114957,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(2936), 19, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113576,32 +114969,38 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5615] = 8, + [7187] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(2003), 1, + ACTIONS(147), 1, + anon_sym_EQ_GT, + ACTIONS(630), 1, anon_sym_QMARK, - ACTIONS(1267), 5, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(124), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(155), 14, + ACTIONS(1383), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3052), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(149), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113612,7 +115011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113628,59 +115027,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(118), 22, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5692] = 12, + [7269] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(3059), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2992), 1, anon_sym_EQ_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + STATE(2385), 1, + sym_arguments, + ACTIONS(2988), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 15, + anon_sym_QMARK, + ACTIONS(2984), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2933), 10, 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, @@ -113689,7 +115083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113705,11 +115099,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(2936), 18, + ACTIONS(2929), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113718,46 +115112,31 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5777] = 9, + [7353] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(153), 1, + ACTIONS(1262), 1, anon_sym_EQ_GT, - ACTIONS(3047), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3050), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1381), 6, - sym__automatic_semicolon, + ACTIONS(1383), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(155), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(3052), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113773,47 +115152,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), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [5856] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(574), 1, - anon_sym_QMARK, - ACTIONS(124), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(155), 14, + ACTIONS(149), 16, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113824,84 +115169,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - 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), 22, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5933] = 12, + [7431] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(1252), 1, + anon_sym_EQ, + ACTIONS(1254), 1, anon_sym_EQ_GT, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(2990), 1, + ACTIONS(1383), 1, anon_sym_extends, - ACTIONS(3057), 1, - anon_sym_EQ, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2976), 2, + ACTIONS(3049), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2982), 3, + ACTIONS(3052), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 15, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113917,11 +115221,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(2936), 18, + ACTIONS(149), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113930,28 +115250,28 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6018] = 8, + [7509] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, - anon_sym_EQ_GT, - ACTIONS(3034), 1, + ACTIONS(3010), 1, anon_sym_EQ, ACTIONS(3042), 1, anon_sym_QMARK, - ACTIONS(3037), 5, + ACTIONS(3038), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2940), 14, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -113966,7 +115286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113982,13 +115302,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(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113999,33 +115317,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6095] = 11, + [7583] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(213), 1, + ACTIONS(212), 1, anon_sym_EQ, ACTIONS(218), 1, anon_sym_EQ_GT, - ACTIONS(574), 1, + ACTIONS(630), 1, anon_sym_QMARK, - ACTIONS(3047), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(216), 2, + ACTIONS(215), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1381), 2, + ACTIONS(1383), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3050), 2, + ACTIONS(3052), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(155), 13, + ACTIONS(149), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -114039,7 +115359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114059,9 +115379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114070,174 +115388,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [6177] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1899), 1, - anon_sym_COLON, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(155), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - 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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [6253] = 9, + [7665] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, - anon_sym_EQ, - ACTIONS(1262), 1, - anon_sym_EQ_GT, - ACTIONS(3047), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(1381), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - 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(155), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3002), 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3005), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [6331] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(153), 1, + ACTIONS(3077), 1, anon_sym_EQ_GT, - ACTIONS(574), 1, - anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(124), 2, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(3008), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1381), 2, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3050), 2, + ACTIONS(2999), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(155), 13, + ACTIONS(2933), 14, + 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, @@ -114247,7 +115433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114263,13 +115449,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(2929), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114278,32 +115461,40 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6413] = 7, + [7749] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3083), 1, anon_sym_EQ, - ACTIONS(3032), 1, - anon_sym_QMARK, - ACTIONS(3028), 5, + ACTIONS(3085), 1, + anon_sym_EQ_GT, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2940), 14, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2988), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114312,7 +115503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114328,46 +115519,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(2936), 22, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6487] = 9, + [7832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(1258), 1, + ACTIONS(3066), 1, anon_sym_EQ_GT, - ACTIONS(1381), 1, - anon_sym_extends, - ACTIONS(3047), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114383,13 +115562,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(155), 16, + ACTIONS(2933), 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, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114400,34 +115581,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 19, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6565] = 6, + [7903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114443,7 +115625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(155), 19, + ACTIONS(2933), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -114463,13 +115645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114480,20 +115660,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6637] = 6, + [7972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2921), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2988), 1, - anon_sym_EQ_GT, - ACTIONS(2950), 15, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + ACTIONS(2923), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -114509,18 +115722,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(2940), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114529,58 +115730,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [6709] = 14, + [8037] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(1271), 1, anon_sym_EQ_GT, - ACTIONS(2990), 1, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(1383), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3028), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2982), 2, + ACTIONS(3052), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3063), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2940), 12, + ACTIONS(149), 15, + 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, @@ -114590,7 +115762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114606,12 +115778,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(2936), 19, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114620,20 +115790,53 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6797] = 6, + [8114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(1222), 1, + ACTIONS(2917), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(159), 15, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + ACTIONS(2919), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -114649,18 +115852,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(155), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114669,13 +115860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + [8179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114686,49 +115879,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6869] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2994), 1, + ACTIONS(2927), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2998), 1, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3000), 1, anon_sym_QMARK_DOT, - ACTIONS(3067), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 12, - 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2950), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114744,55 +115914,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(2936), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [6953] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_COLON, - ACTIONS(3030), 1, - anon_sym_EQ_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2982), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2990), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2940), 12, - 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, @@ -114801,7 +115922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + [8244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114817,43 +115945,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 19, + ACTIONS(2933), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_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_DASH_DASH, - [7039] = 9, + [8315] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(1381), 1, - anon_sym_extends, - ACTIONS(3047), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(159), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114869,13 +116010,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(155), 16, + ACTIONS(149), 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114886,62 +116029,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 19, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7117] = 12, + [8386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(2988), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2996), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(2992), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2940), 10, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114957,47 +116073,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 20, + ACTIONS(2933), 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, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7201] = 7, + [8455] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_QMARK, - ACTIONS(3037), 5, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + STATE(2385), 1, + sym_arguments, + ACTIONS(2988), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2984), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2940), 14, + anon_sym_extends, + ACTIONS(2933), 10, 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, @@ -115006,7 +116150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115022,79 +116166,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, + ACTIONS(2929), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7275] = 6, + [8538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, - anon_sym_EQ_GT, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(2947), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115105,39 +116206,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7347] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1901), 1, - anon_sym_COLON, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(155), 14, + ACTIONS(2949), 34, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + 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_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115153,14 +116241,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(118), 25, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115171,51 +116268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [7423] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3071), 1, - anon_sym_EQ, - ACTIONS(3073), 1, - anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 12, + ACTIONS(2953), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115230,46 +116302,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [7507] = 7, + 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_BQUOTE, + anon_sym_satisfies, + [8668] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(2996), 1, + anon_sym_LBRACK, ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3083), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_QMARK, - ACTIONS(3044), 5, + ACTIONS(3085), 1, + anon_sym_EQ_GT, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(3008), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2940), 14, + anon_sym_extends, + ACTIONS(2999), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -115279,7 +116347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115295,57 +116363,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, + ACTIONS(2929), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [7581] = 12, + [8751] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(3071), 1, + ACTIONS(1309), 1, anon_sym_EQ, - ACTIONS(3073), 1, + ACTIONS(1311), 1, anon_sym_EQ_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_COMMA, + ACTIONS(1383), 1, anon_sym_extends, - ACTIONS(2982), 3, + ACTIONS(3049), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3052), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 14, - sym__automatic_semicolon, + ACTIONS(149), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -115355,7 +116413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + anon_sym_implements, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115371,11 +116430,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(2936), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115384,39 +116442,33 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [7665] = 12, + [8828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(2990), 1, - anon_sym_extends, - ACTIONS(3067), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(218), 1, anon_sym_EQ_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2976), 2, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(1264), 3, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 14, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(149), 14, 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, @@ -115426,8 +116478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115443,58 +116494,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(2936), 18, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7749] = 9, + [8903] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, - anon_sym_EQ, - ACTIONS(1271), 1, + ACTIONS(2938), 1, anon_sym_EQ_GT, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(1381), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(155), 15, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(3087), 1, + anon_sym_in, + ACTIONS(3090), 1, + anon_sym_of, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115510,36 +116544,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(118), 19, + ACTIONS(2933), 17, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7826] = 7, + [8978] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_COLON, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(2027), 1, + anon_sym_in, + ACTIONS(3092), 1, + anon_sym_of, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115555,7 +116611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 17, + ACTIONS(149), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115573,13 +116629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115590,18 +116643,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7899] = 5, + [9053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(1252), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(1254), 1, + anon_sym_EQ_GT, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115617,16 +116674,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(2940), 19, + ACTIONS(149), 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_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -115637,13 +116693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115654,32 +116708,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7968] = 9, + [9124] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1309), 1, + ACTIONS(212), 1, anon_sym_EQ, - ACTIONS(1311), 1, + ACTIONS(218), 1, anon_sym_EQ_GT, - ACTIONS(1381), 1, - anon_sym_extends, - ACTIONS(3047), 2, - anon_sym_COMMA, + ACTIONS(1385), 1, + anon_sym_QMARK, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3050), 3, - anon_sym_GT, + ACTIONS(3052), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(155), 15, + ACTIONS(1383), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(149), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -115691,8 +116748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115708,12 +116764,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), 19, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115722,20 +116777,22 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [8045] = 6, + [9203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(2938), 1, anon_sym_EQ_GT, - ACTIONS(159), 15, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115751,7 +116808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(155), 18, + ACTIONS(2933), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115770,13 +116827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115787,20 +116842,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8116] = 6, + [9274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(3064), 1, anon_sym_EQ, - ACTIONS(3055), 1, + ACTIONS(3066), 1, anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115816,7 +116873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 18, + ACTIONS(2933), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115835,13 +116892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115852,155 +116907,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [8187] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [8270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2956), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - ACTIONS(2958), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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_BQUOTE, - anon_sym_satisfies, - [8335] = 7, + [9345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1901), 1, + ACTIONS(1905), 1, anon_sym_COLON, - ACTIONS(159), 15, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116016,7 +116940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(155), 17, + ACTIONS(2933), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -116034,13 +116958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116051,20 +116973,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8408] = 6, + [9418] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(159), 15, + ACTIONS(1258), 1, + anon_sym_EQ_GT, + ACTIONS(1905), 1, + anon_sym_COLON, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116080,12 +117006,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(155), 18, + ACTIONS(149), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -116103,9 +117028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116116,31 +117039,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8479] = 8, + [9491] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(1222), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_COLON, - ACTIONS(1264), 3, - anon_sym_COMMA, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_extends, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(2996), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(155), 14, + anon_sym_LBRACK, + ACTIONS(2999), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 13, 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, @@ -116150,7 +117082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116166,115 +117098,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(118), 22, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [8554] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3079), 1, - anon_sym_in, - ACTIONS(3082), 1, - anon_sym_of, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 17, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [8629] = 10, + [9574] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(218), 1, + ACTIONS(147), 1, anon_sym_EQ_GT, ACTIONS(1267), 1, anon_sym_COLON, - ACTIONS(1317), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(3047), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3050), 2, + ACTIONS(3052), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1381), 3, + ACTIONS(1383), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(155), 13, + ACTIONS(149), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -116288,7 +117150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116308,9 +117170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116319,20 +117179,24 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [8708] = 6, + [9653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 1, + ACTIONS(1907), 1, + anon_sym_COLON, + ACTIONS(2938), 1, anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116348,13 +117212,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(155), 18, + ACTIONS(2933), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -116367,13 +117230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116384,89 +117245,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8779] = 10, + [9726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(1383), 1, - anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3050), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1381), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(155), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - 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), 20, + ACTIONS(2521), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3055), 1, - anon_sym_EQ_GT, - ACTIONS(2950), 15, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + ACTIONS(2523), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -116482,17 +117307,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(2940), 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, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -116501,13 +117315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + [9791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2974), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116518,18 +117334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8929] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(2976), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -116545,18 +117369,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(2940), 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, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -116565,40 +117377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [8998] = 3, + [9856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 23, + ACTIONS(2525), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116609,13 +117396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2507), 34, + ACTIONS(2527), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -116650,17 +117439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9063] = 3, + [9921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 23, + ACTIONS(2978), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116671,13 +117458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2968), 34, + ACTIONS(2980), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -116712,18 +117501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9128] = 8, + [9986] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(2019), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(159), 15, + ACTIONS(1907), 1, + anon_sym_COLON, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116739,7 +117526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(155), 17, + ACTIONS(149), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -116757,12 +117544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116773,20 +117559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9203] = 6, + [10059] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1256), 1, anon_sym_EQ, ACTIONS(1258), 1, anon_sym_EQ_GT, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116802,13 +117590,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(155), 18, + ACTIONS(149), 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, @@ -116825,9 +117613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116838,51 +117624,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9274] = 3, + [10130] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 23, - anon_sym_STAR, + ACTIONS(218), 1, + anon_sym_EQ_GT, + ACTIONS(1222), 1, anon_sym_EQ, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(1383), 1, + anon_sym_extends, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3052), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3094), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(149), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2934), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [10211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + anon_sym_EQ_GT, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116898,6 +117725,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(149), 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, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -116906,33 +117744,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9339] = 12, + ACTIONS(118), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [10282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2979), 1, + ACTIONS(3102), 1, + anon_sym_AT, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + ACTIONS(3100), 12, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + ACTIONS(3098), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(2985), 1, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [10352] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(3040), 1, anon_sym_EQ_GT, - ACTIONS(2990), 1, - anon_sym_extends, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2976), 2, - anon_sym_RBRACE, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2982), 2, + anon_sym_extends, + ACTIONS(2988), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 13, + ACTIONS(2933), 10, 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, @@ -116941,7 +117865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116957,12 +117881,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(2936), 19, + ACTIONS(2929), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116971,23 +117893,60 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [9422] = 3, + [10434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 23, - anon_sym_STAR, + ACTIONS(3010), 1, anon_sym_EQ, + ACTIONS(3057), 1, + anon_sym_EQ_GT, + ACTIONS(2940), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2933), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2929), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116998,24 +117957,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2962), 34, - sym__automatic_semicolon, + [10504] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3005), 1, + anon_sym_LT, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(3008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2999), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2933), 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117031,53 +118016,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_BQUOTE, - anon_sym_satisfies, - [9487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2970), 23, + ACTIONS(2929), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - ACTIONS(2972), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [10586] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, + anon_sym_EQ, + ACTIONS(3057), 1, + anon_sym_EQ_GT, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117093,6 +118058,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(2933), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -117101,32 +118076,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9552] = 12, + ACTIONS(2929), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [10656] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3030), 1, + ACTIONS(218), 1, anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2996), 2, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(1383), 1, + anon_sym_extends, + ACTIONS(3049), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3052), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2992), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2940), 10, + ACTIONS(149), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -117135,7 +118129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117151,13 +118145,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(2936), 20, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117166,51 +118158,24 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [9635] = 3, + [10732] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 23, - anon_sym_STAR, + ACTIONS(3036), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(3087), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(2911), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(3090), 1, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117226,6 +118191,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(2933), 17, + 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, @@ -117234,43 +118209,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9700] = 12, + ACTIONS(2929), 21, + 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, + anon_sym_DASH_DASH, + [10804] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(3075), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(3077), 1, + ACTIONS(1271), 1, anon_sym_EQ_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 13, + ACTIONS(3105), 1, + sym_identifier, + ACTIONS(149), 13, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117286,35 +118270,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(2936), 18, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [9783] = 7, + anon_sym_satisfies, + [10876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, - anon_sym_COLON, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, + ACTIONS(3064), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117330,12 +118317,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(2940), 17, + ACTIONS(2933), 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, @@ -117348,13 +118336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117365,22 +118351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9856] = 7, + [10944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(1254), 1, + ACTIONS(1262), 1, anon_sym_EQ_GT, - ACTIONS(1899), 1, - anon_sym_COLON, - ACTIONS(159), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117396,14 +118382,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(155), 17, - sym__automatic_semicolon, + ACTIONS(149), 17, 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, @@ -117418,9 +118404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117431,20 +118415,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9929] = 6, + [11014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(3081), 1, + anon_sym_EQ_GT, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117460,14 +118446,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(2940), 18, - sym__automatic_semicolon, + ACTIONS(2933), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -117479,13 +118463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + anon_sym_implements, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117496,20 +118479,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10000] = 6, + [11084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_EQ_GT, - ACTIONS(3020), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(3081), 1, + anon_sym_EQ_GT, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117525,14 +118510,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(2940), 18, - sym__automatic_semicolon, + ACTIONS(2933), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -117544,13 +118527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + anon_sym_implements, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117561,23 +118543,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10071] = 3, + [11154] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 23, - anon_sym_STAR, + ACTIONS(124), 1, + anon_sym_COMMA, + ACTIONS(215), 1, + anon_sym_RBRACK, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2036), 1, anon_sym_EQ, + ACTIONS(2039), 1, + anon_sym_COLON, + ACTIONS(149), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(153), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117588,24 +118610,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2523), 34, + [11230] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + anon_sym_EQ, + ACTIONS(1271), 1, + anon_sym_EQ_GT, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(149), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117621,39 +118657,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(118), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + anon_sym_DASH_DASH, anon_sym_satisfies, - [10136] = 11, + [11302] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(1222), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_COLON, - ACTIONS(1381), 1, - anon_sym_extends, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3050), 2, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + STATE(2385), 1, + sym_arguments, + ACTIONS(2988), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3086), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(155), 13, + ACTIONS(2984), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2933), 10, 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, @@ -117662,7 +118716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117678,13 +118732,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), 20, + ACTIONS(2929), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117693,51 +118745,84 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [10217] = 3, + [11384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 23, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_DOT, + STATE(1162), 1, + sym_arguments, + ACTIONS(3109), 12, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3107), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, anon_sym_DASH_DASH, - ACTIONS(2954), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [11454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117753,35 +118838,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_BQUOTE, - anon_sym_satisfies, - [10282] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_EQ, - ACTIONS(1315), 1, - anon_sym_EQ_GT, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(1381), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(155), 14, + ACTIONS(2933), 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, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -117792,54 +118857,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - 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), 19, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10358] = 7, + [11522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3044), 1, + anon_sym_RBRACK, + ACTIONS(3057), 1, + anon_sym_EQ_GT, + ACTIONS(3062), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(3116), 1, + anon_sym_in, + ACTIONS(3118), 1, anon_sym_COLON, - ACTIONS(3090), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2940), 14, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -117854,7 +118910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117870,13 +118926,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(2936), 22, + ACTIONS(2929), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117887,38 +118940,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10430] = 12, + [11600] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2979), 1, - anon_sym_LT, - ACTIONS(2985), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3030), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2990), 2, + ACTIONS(3120), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2940), 12, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2933), 14, 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, @@ -117928,7 +118974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117944,33 +118990,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(2936), 18, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10512] = 6, + [11672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, - anon_sym_EQ, - ACTIONS(1262), 1, + ACTIONS(1311), 1, anon_sym_EQ_GT, - ACTIONS(159), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117986,14 +119036,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(155), 17, + ACTIONS(149), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118004,13 +119053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118021,43 +119069,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10582] = 9, + [11742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(1222), 1, + ACTIONS(1309), 1, anon_sym_EQ, - ACTIONS(1381), 1, - anon_sym_extends, - ACTIONS(3047), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3050), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(155), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(1311), 1, + anon_sym_EQ_GT, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118073,99 +119100,74 @@ 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, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [10658] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_AT, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - ACTIONS(3095), 12, + ACTIONS(149), 17, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - anon_sym_BANG, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - ACTIONS(3093), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [10728] = 6, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(118), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [11812] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(159), 15, + ACTIONS(3038), 1, + anon_sym_COLON, + ACTIONS(3120), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2933), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118181,31 +119183,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(155), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118216,18 +119198,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10798] = 5, + [11884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118243,15 +119229,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(2940), 18, - sym__automatic_semicolon, + ACTIONS(149), 17, 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, @@ -118262,13 +119247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118279,38 +119262,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10866] = 12, + [11954] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3020), 1, + ACTIONS(1315), 1, anon_sym_EQ, - ACTIONS(3030), 1, + ACTIONS(1317), 1, anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 3, - anon_sym_COMMA, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(1383), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(2996), 3, + ACTIONS(3052), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2940), 10, + ACTIONS(149), 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, anon_sym_BANG_EQ_EQ, @@ -118319,7 +119301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118335,12 +119317,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(2936), 19, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118349,20 +119329,20 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [10948] = 6, + [12030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3055), 1, anon_sym_EQ, - ACTIONS(3061), 1, - anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118378,7 +119358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 17, + ACTIONS(2933), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -118396,13 +119376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118413,28 +119391,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11018] = 7, + [12097] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(1260), 1, anon_sym_EQ, - ACTIONS(2988), 1, + ACTIONS(1262), 1, anon_sym_EQ_GT, - ACTIONS(3090), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2940), 14, + ACTIONS(2039), 1, + anon_sym_COLON, + ACTIONS(149), 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, @@ -118445,7 +119424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118461,13 +119440,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(2936), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118478,22 +119455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11090] = 7, + [12168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(3079), 1, - anon_sym_in, - ACTIONS(3082), 1, - anon_sym_of, - ACTIONS(2950), 15, + ACTIONS(3077), 1, + anon_sym_EQ_GT, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118509,11 +119486,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(2940), 17, + ACTIONS(2933), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -118527,12 +119503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 21, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118543,28 +119518,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11162] = 10, + [12237] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(124), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(215), 1, anon_sym_RBRACK, - ACTIONS(3061), 1, + ACTIONS(1262), 1, anon_sym_EQ_GT, - ACTIONS(3100), 1, + ACTIONS(2036), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_in, - ACTIONS(3105), 1, - anon_sym_COLON, - ACTIONS(2940), 14, + ACTIONS(149), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -118579,7 +119552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118595,12 +119568,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(2936), 21, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118611,26 +119583,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11240] = 9, + [12310] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, + ACTIONS(3044), 1, anon_sym_RBRACK, - ACTIONS(216), 1, - anon_sym_COMMA, - ACTIONS(1262), 1, + ACTIONS(3057), 1, anon_sym_EQ_GT, - ACTIONS(2044), 1, + ACTIONS(3062), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, anon_sym_EQ, - ACTIONS(2047), 1, - anon_sym_COLON, - ACTIONS(155), 14, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -118645,7 +119617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118661,13 +119633,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), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118678,20 +119648,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11316] = 6, + [12383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(147), 1, anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(1383), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3052), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(149), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118707,53 +119702,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(2940), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11386] = 5, + [12458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(1271), 1, + anon_sym_EQ_GT, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118769,12 +119745,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(2940), 18, + ACTIONS(149), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -118788,13 +119762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118805,36 +119777,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11454] = 7, + [12527] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, + ACTIONS(3055), 1, anon_sym_EQ, - ACTIONS(1271), 1, + ACTIONS(3057), 1, anon_sym_EQ_GT, - ACTIONS(3107), 1, - sym_identifier, - ACTIONS(155), 13, - sym__automatic_semicolon, + ACTIONS(3116), 1, + anon_sym_in, + ACTIONS(3123), 1, + anon_sym_COLON, + ACTIONS(2933), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118850,14 +119828,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), 25, + ACTIONS(2929), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118868,92 +119842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [11526] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3030), 1, - anon_sym_EQ_GT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2996), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2992), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2940), 10, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [11608] = 6, + [12600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118969,7 +119871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 17, + ACTIONS(2933), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118987,13 +119889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119004,84 +119904,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11678] = 6, + [12667] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(1260), 1, + anon_sym_EQ, + ACTIONS(1262), 1, + anon_sym_EQ_GT, + ACTIONS(2055), 1, + anon_sym_COLON, + ACTIONS(149), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3113), 1, - anon_sym_DOT, - STATE(1157), 1, - sym_arguments, - ACTIONS(3111), 12, - anon_sym_LBRACE, - anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3109), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [11748] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1311), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, - anon_sym_EQ, - ACTIONS(159), 15, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119097,31 +119953,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(155), 17, - 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119132,20 +119968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11818] = 6, + [12738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119161,12 +119999,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(2940), 17, + ACTIONS(2933), 16, + 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, @@ -119178,14 +120016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119196,20 +120031,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11888] = 6, + [12807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1309), 1, - anon_sym_EQ, - ACTIONS(1311), 1, + ACTIONS(1271), 1, anon_sym_EQ_GT, - ACTIONS(159), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119225,12 +120062,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(155), 17, + ACTIONS(149), 16, + 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, @@ -119242,14 +120079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119260,87 +120094,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11958] = 7, + [12876] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, - anon_sym_EQ, - ACTIONS(1271), 1, - anon_sym_EQ_GT, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(155), 13, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3102), 1, + anon_sym_AT, + ACTIONS(3125), 1, + anon_sym_class, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + ACTIONS(3100), 12, + anon_sym_LBRACE, + anon_sym_BANG, 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_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - 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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + ACTIONS(3098), 39, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, anon_sym_DASH_DASH, - anon_sym_satisfies, - [12030] = 7, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [12947] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, + ACTIONS(3055), 1, anon_sym_EQ, - ACTIONS(1262), 1, + ACTIONS(3057), 1, anon_sym_EQ_GT, - ACTIONS(2047), 1, + ACTIONS(3116), 1, + anon_sym_in, + ACTIONS(3118), 1, anon_sym_COLON, - ACTIONS(155), 15, + ACTIONS(2933), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119356,7 +120193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119372,13 +120209,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), 22, + ACTIONS(2929), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119389,24 +120223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12101] = 7, + [13020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_AT, - ACTIONS(3115), 1, - anon_sym_class, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - ACTIONS(3095), 12, + ACTIONS(3130), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -119419,7 +120247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, - ACTIONS(3093), 39, + anon_sym_AT, + ACTIONS(3128), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -119427,13 +120256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_await, anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_void, anon_sym_delete, anon_sym_DASH_DASH, @@ -119459,21 +120290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [12172] = 8, + anon_sym_abstract, + [13083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RBRACK, - ACTIONS(3061), 1, - anon_sym_EQ_GT, - ACTIONS(3100), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(2940), 14, + ACTIONS(1317), 1, + anon_sym_EQ_GT, + ACTIONS(149), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119485,7 +120314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119501,13 +120330,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(2936), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119518,20 +120345,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12245] = 6, + [13151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, + ACTIONS(3134), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3132), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [13213] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(1271), 1, + ACTIONS(3040), 1, anon_sym_EQ_GT, - ACTIONS(159), 15, + ACTIONS(3087), 1, + anon_sym_in, + ACTIONS(3090), 1, + anon_sym_of, + ACTIONS(2933), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119547,30 +120454,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(155), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2929), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119581,32 +120468,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12314] = 9, + [13285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(3083), 1, anon_sym_EQ, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(1381), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3050), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(155), 13, + ACTIONS(3085), 1, + anon_sym_EQ_GT, + ACTIONS(2933), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -119617,7 +120499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119633,41 +120515,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12389] = 7, + [13353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, + ACTIONS(1315), 1, anon_sym_EQ, - ACTIONS(1262), 1, + ACTIONS(1317), 1, anon_sym_EQ_GT, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(155), 15, + ACTIONS(149), 15, 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, @@ -119678,7 +120561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119698,9 +120581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119711,18 +120592,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12460] = 5, + [13421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119738,14 +120621,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(2940), 17, + ACTIONS(2933), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -119756,13 +120638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119773,78 +120653,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12527] = 3, + [13487] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 13, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(3044), 1, + anon_sym_RBRACK, + ACTIONS(3062), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, + anon_sym_EQ, + ACTIONS(2933), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3118), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [12590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_EQ, - ACTIONS(2950), 15, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119860,31 +120701,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(2940), 17, - 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119895,24 +120716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12657] = 8, + [13557] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(216), 1, - anon_sym_COMMA, - ACTIONS(1262), 1, + ACTIONS(147), 1, anon_sym_EQ_GT, - ACTIONS(2044), 1, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(155), 14, + ACTIONS(149), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119927,7 +120748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(159), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119947,9 +120768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119960,20 +120779,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12730] = 6, + [13627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_EQ, - ACTIONS(3073), 1, + ACTIONS(147), 1, anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(2027), 1, + anon_sym_in, + ACTIONS(3092), 1, + anon_sym_of, + ACTIONS(149), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119989,30 +120829,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(2940), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120023,20 +120843,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12799] = 6, + [13699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(159), 15, + ACTIONS(3085), 1, + anon_sym_EQ_GT, + ACTIONS(2933), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120052,12 +120890,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(155), 16, - sym__automatic_semicolon, + ACTIONS(2929), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [13767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3109), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3107), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [13829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3138), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3136), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [13891] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(3040), 1, + anon_sym_EQ_GT, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -120069,13 +121053,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2940), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120086,29 +121084,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12868] = 8, + [13958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(147), 1, anon_sym_EQ_GT, - ACTIONS(3103), 1, - anon_sym_in, - ACTIONS(3105), 1, - anon_sym_COLON, - ACTIONS(2940), 15, + ACTIONS(1313), 1, + anon_sym_EQ, + ACTIONS(149), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -120119,7 +121114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(153), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120135,12 +121130,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(2936), 21, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120151,20 +121145,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12941] = 6, + [14025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3083), 1, anon_sym_EQ, - ACTIONS(3073), 1, - anon_sym_EQ_GT, - ACTIONS(2950), 15, + ACTIONS(2933), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120180,30 +121190,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(2940), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 22, + ACTIONS(2929), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120214,29 +121205,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13010] = 8, + [14090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(3061), 1, - anon_sym_EQ_GT, - ACTIONS(3103), 1, + ACTIONS(3087), 1, anon_sym_in, - ACTIONS(3122), 1, - anon_sym_COLON, - ACTIONS(2940), 15, + ACTIONS(3090), 1, + anon_sym_of, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -120247,7 +121237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120263,12 +121253,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(2936), 21, + ACTIONS(2929), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120279,22 +121267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13083] = 7, + [14159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RBRACK, - ACTIONS(3100), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(2940), 14, + ACTIONS(3038), 1, + anon_sym_COLON, + ACTIONS(2933), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -120309,7 +121297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2950), 15, + ACTIONS(2940), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120325,1086 +121313,1429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, + ACTIONS(2929), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [14226] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3146), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3148), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2978), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14342] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3166), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3168), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2990), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14458] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(2881), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2883), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3015), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14574] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3170), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3172), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3120), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14690] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3174), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3176), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2976), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14806] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(2655), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2679), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3057), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14922] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(3178), 1, + sym_identifier, + ACTIONS(3180), 1, anon_sym_STAR, + ACTIONS(3182), 1, + anon_sym_type, + ACTIONS(3186), 1, + anon_sym_LBRACE, + ACTIONS(3190), 1, + anon_sym_typeof, + STATE(3879), 1, + sym_import_clause, + STATE(3883), 1, + sym_string, + STATE(3884), 1, + sym__import_identifier, + STATE(3885), 1, + sym_import_require_clause, + STATE(4358), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(3184), 16, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [13153] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_EQ_GT, - ACTIONS(2940), 15, + anon_sym_satisfies, + ACTIONS(3188), 22, + 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13221] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, - anon_sym_EQ, - ACTIONS(2019), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(155), 14, - 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_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - 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), 21, + [15005] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3192), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3297), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15117] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(1813), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(1949), 1, + anon_sym_namespace, + ACTIONS(1951), 1, + anon_sym_import, + ACTIONS(1953), 1, + anon_sym_var, + ACTIONS(1955), 1, + anon_sym_let, + ACTIONS(1957), 1, + anon_sym_const, + ACTIONS(1959), 1, + anon_sym_class, + ACTIONS(1961), 1, + anon_sym_async, + ACTIONS(1963), 1, + anon_sym_function, + ACTIONS(1965), 1, + anon_sym_declare, + ACTIONS(1969), 1, + anon_sym_abstract, + ACTIONS(1973), 1, + anon_sym_interface, + ACTIONS(1975), 1, + anon_sym_enum, + ACTIONS(3194), 1, + anon_sym_STAR, + ACTIONS(3196), 1, + anon_sym_default, + ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3200), 1, + anon_sym_EQ, + ACTIONS(3202), 1, + anon_sym_as, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3207), 1, + anon_sym_RBRACE, + ACTIONS(3212), 1, + anon_sym_module, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3129), 1, + sym_declaration, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, + sym_export_clause, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + STATE(3867), 1, + sym_namespace_export, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3131), 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, + [15237] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13293] = 3, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3214), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3297), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15349] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3216), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3297), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15461] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1949), 1, + anon_sym_namespace, + ACTIONS(1951), 1, + anon_sym_import, + ACTIONS(1953), 1, + anon_sym_var, + ACTIONS(1955), 1, + anon_sym_let, + ACTIONS(1957), 1, + anon_sym_const, + ACTIONS(1959), 1, + anon_sym_class, + ACTIONS(1961), 1, + anon_sym_async, + ACTIONS(1963), 1, + anon_sym_function, + ACTIONS(1965), 1, + anon_sym_declare, + ACTIONS(1969), 1, + anon_sym_abstract, + ACTIONS(1973), 1, + anon_sym_interface, + ACTIONS(1975), 1, + anon_sym_enum, + ACTIONS(3194), 1, + anon_sym_STAR, + ACTIONS(3196), 1, + anon_sym_default, + ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3200), 1, + anon_sym_EQ, + ACTIONS(3202), 1, + anon_sym_as, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3212), 1, + anon_sym_module, + ACTIONS(3218), 1, + anon_sym_RBRACE, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3129), 1, + sym_declaration, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, + sym_export_clause, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + STATE(3867), 1, + sym_namespace_export, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3131), 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, + [15581] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1949), 1, + anon_sym_namespace, + ACTIONS(1951), 1, + anon_sym_import, + ACTIONS(1953), 1, + anon_sym_var, + ACTIONS(1955), 1, + anon_sym_let, + ACTIONS(1957), 1, + anon_sym_const, + ACTIONS(1959), 1, + anon_sym_class, + ACTIONS(1961), 1, + anon_sym_async, + ACTIONS(1963), 1, + anon_sym_function, + ACTIONS(1965), 1, + anon_sym_declare, + ACTIONS(1969), 1, + anon_sym_abstract, + ACTIONS(1973), 1, + anon_sym_interface, + ACTIONS(1975), 1, + anon_sym_enum, + ACTIONS(3194), 1, + anon_sym_STAR, + ACTIONS(3196), 1, + anon_sym_default, + ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3200), 1, + anon_sym_EQ, + ACTIONS(3202), 1, + anon_sym_as, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3212), 1, + anon_sym_module, + ACTIONS(3221), 1, + anon_sym_RBRACE, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3129), 1, + sym_declaration, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, + sym_export_clause, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + STATE(3867), 1, + sym_namespace_export, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3131), 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, + [15701] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, + ACTIONS(95), 1, anon_sym_AT, - ACTIONS(3124), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, + ACTIONS(1236), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, anon_sym_new, - anon_sym_PLUS, + ACTIONS(2663), 1, anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, anon_sym_static, + ACTIONS(3158), 1, anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(3224), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3297), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + 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_abstract, - [13355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_EQ_GT, - ACTIONS(2940), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13423] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_EQ, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2940), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13489] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, - anon_sym_EQ, - ACTIONS(155), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - 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), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13557] = 8, + [15813] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3030), 1, - anon_sym_EQ_GT, - ACTIONS(3079), 1, - anon_sym_in, - ACTIONS(3082), 1, - anon_sym_of, - ACTIONS(2940), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 21, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_EQ, - ACTIONS(1315), 1, - anon_sym_EQ_GT, - ACTIONS(155), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, 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_BQUOTE, - anon_sym_satisfies, - 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), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13697] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_COLON, - ACTIONS(1317), 1, - anon_sym_EQ, - ACTIONS(155), 14, - 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_BQUOTE, - anon_sym_satisfies, - 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), 22, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, + ACTIONS(3150), 1, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3128), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, + ACTIONS(3152), 1, anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, + ACTIONS(3156), 1, anon_sym_static, + ACTIONS(3158), 1, anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(3226), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3297), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + 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_abstract, - [13829] = 3, + [15925] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, + ACTIONS(95), 1, anon_sym_AT, - ACTIONS(3109), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, + ACTIONS(1236), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, anon_sym_new, - anon_sym_PLUS, + ACTIONS(2663), 1, anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, anon_sym_static, + ACTIONS(3158), 1, anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(3228), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3297), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + 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_abstract, - [13891] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_COLON, - ACTIONS(2940), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3030), 1, - anon_sym_EQ_GT, - ACTIONS(2940), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14025] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(2940), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14090] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(218), 1, - anon_sym_EQ_GT, - ACTIONS(1317), 1, - anon_sym_EQ, - ACTIONS(155), 14, - 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_BQUOTE, - anon_sym_satisfies, - 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), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14157] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3079), 1, - anon_sym_in, - ACTIONS(3082), 1, - anon_sym_of, - ACTIONS(2940), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2950), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2936), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14226] = 31, + [16037] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(2685), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2709), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3230), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3086), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121415,81 +122746,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14342] = 31, + [16149] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1949), 1, + anon_sym_namespace, + ACTIONS(1951), 1, + anon_sym_import, + ACTIONS(1953), 1, + anon_sym_var, + ACTIONS(1955), 1, + anon_sym_let, + ACTIONS(1957), 1, + anon_sym_const, + ACTIONS(1959), 1, + anon_sym_class, + ACTIONS(1961), 1, + anon_sym_async, + ACTIONS(1963), 1, + anon_sym_function, + ACTIONS(1965), 1, + anon_sym_declare, + ACTIONS(1969), 1, + anon_sym_abstract, + ACTIONS(1973), 1, + anon_sym_interface, + ACTIONS(1975), 1, + anon_sym_enum, + ACTIONS(3194), 1, + anon_sym_STAR, + ACTIONS(3196), 1, + anon_sym_default, + ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3200), 1, + anon_sym_EQ, + ACTIONS(3202), 1, + anon_sym_as, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3212), 1, + anon_sym_module, + ACTIONS(3232), 1, + anon_sym_RBRACE, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3129), 1, + sym_declaration, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, + sym_export_clause, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + STATE(3867), 1, + sym_namespace_export, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3131), 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, + [16269] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3156), 2, + ACTIONS(3235), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3117), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121500,81 +122914,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14458] = 31, + [16381] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3158), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3160), 2, + ACTIONS(3237), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3022), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121585,81 +122996,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14574] = 31, + [16493] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3162), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3164), 2, + ACTIONS(3239), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3073), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121670,81 +123078,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14690] = 31, + [16605] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3166), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3168), 2, + ACTIONS(3241), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2976), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121755,81 +123160,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14806] = 31, + [16717] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(2717), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3243), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2983), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121840,146 +123242,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14922] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(3170), 1, - sym_identifier, - ACTIONS(3172), 1, - anon_sym_STAR, - ACTIONS(3174), 1, - anon_sym_type, - ACTIONS(3178), 1, - anon_sym_LBRACE, - ACTIONS(3182), 1, - anon_sym_typeof, - STATE(3932), 1, - sym_string, - STATE(3933), 1, - sym__import_identifier, - STATE(3934), 1, - sym_import_require_clause, - STATE(4018), 1, - sym_import_clause, - STATE(4308), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(3176), 16, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(3180), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [15005] = 30, + [16829] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3184), 2, + ACTIONS(3245), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121990,78 +123324,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15117] = 30, + [16941] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3186), 2, + ACTIONS(3247), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122072,78 +123406,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15229] = 30, + [17053] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3188), 2, + ACTIONS(3249), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122154,164 +123488,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15341] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - ACTIONS(3190), 1, - anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 1, - anon_sym_as, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(3208), 1, - anon_sym_module, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3384), 1, - sym_declaration, - STATE(3511), 1, - sym_export_clause, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - STATE(3829), 1, - sym_namespace_export, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3391), 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, - [15461] = 30, + [17165] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3210), 2, + ACTIONS(3251), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122322,78 +123570,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15573] = 30, + [17277] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3212), 2, + ACTIONS(3253), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122404,78 +123652,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15685] = 30, + [17389] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3214), 2, + ACTIONS(3255), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122486,78 +123734,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15797] = 30, + [17501] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1949), 1, + anon_sym_namespace, + ACTIONS(1951), 1, + anon_sym_import, + ACTIONS(1953), 1, + anon_sym_var, + ACTIONS(1955), 1, + anon_sym_let, + ACTIONS(1957), 1, + anon_sym_const, + ACTIONS(1959), 1, + anon_sym_class, + ACTIONS(1961), 1, + anon_sym_async, + ACTIONS(1963), 1, + anon_sym_function, + ACTIONS(1965), 1, + anon_sym_declare, + ACTIONS(1969), 1, + anon_sym_abstract, + ACTIONS(1973), 1, + anon_sym_interface, + ACTIONS(1975), 1, + anon_sym_enum, + ACTIONS(3194), 1, + anon_sym_STAR, + ACTIONS(3196), 1, + anon_sym_default, + ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3200), 1, + anon_sym_EQ, + ACTIONS(3202), 1, + anon_sym_as, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3212), 1, + anon_sym_module, + ACTIONS(3257), 1, + anon_sym_RBRACE, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3129), 1, + sym_declaration, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, + sym_export_clause, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + STATE(3867), 1, + sym_namespace_export, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3131), 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, + [17621] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3216), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(2968), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122568,164 +123899,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15909] = 34, + [17729] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1820), 1, + ACTIONS(1786), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1943), 1, + ACTIONS(1949), 1, anon_sym_namespace, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_import, - ACTIONS(1947), 1, + ACTIONS(1953), 1, anon_sym_var, - ACTIONS(1949), 1, + ACTIONS(1955), 1, anon_sym_let, - ACTIONS(1951), 1, + ACTIONS(1957), 1, anon_sym_const, - ACTIONS(1953), 1, + ACTIONS(1959), 1, anon_sym_class, - ACTIONS(1955), 1, + ACTIONS(1961), 1, anon_sym_async, - ACTIONS(1957), 1, + ACTIONS(1963), 1, anon_sym_function, - ACTIONS(1959), 1, + ACTIONS(1965), 1, anon_sym_declare, - ACTIONS(1963), 1, + ACTIONS(1969), 1, anon_sym_abstract, - ACTIONS(1967), 1, + ACTIONS(1973), 1, anon_sym_interface, - ACTIONS(1969), 1, + ACTIONS(1975), 1, anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(3194), 1, anon_sym_STAR, - ACTIONS(3192), 1, + ACTIONS(3196), 1, anon_sym_default, - ACTIONS(3194), 1, + ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3200), 1, + anon_sym_EQ, + ACTIONS(3202), 1, + anon_sym_as, + ACTIONS(3212), 1, + anon_sym_module, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3129), 1, + sym_declaration, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, + sym_export_clause, + STATE(3867), 1, + sym_namespace_export, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3131), 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, + [17841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1513), 15, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1511), 33, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [17897] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_new, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(2677), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1152), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2295), 1, + sym_override_modifier, + STATE(2693), 1, + sym_formal_parameters, + STATE(3290), 1, + sym__call_signature, + STATE(3521), 1, + aux_sym_export_statement_repeat1, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2982), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 1, - anon_sym_as, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3208), 1, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, anon_sym_module, - ACTIONS(3218), 1, - anon_sym_RBRACE, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3384), 1, - sym_declaration, - STATE(3511), 1, - sym_export_clause, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - STATE(3829), 1, - sym_namespace_export, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3391), 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, - [16029] = 30, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18005] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3221), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3001), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122736,79 +124191,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16141] = 34, + [18113] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1820), 1, + ACTIONS(1786), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1943), 1, + ACTIONS(1949), 1, anon_sym_namespace, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_import, - ACTIONS(1947), 1, + ACTIONS(1953), 1, anon_sym_var, - ACTIONS(1949), 1, + ACTIONS(1955), 1, anon_sym_let, - ACTIONS(1951), 1, + ACTIONS(1957), 1, anon_sym_const, - ACTIONS(1953), 1, + ACTIONS(1959), 1, anon_sym_class, - ACTIONS(1955), 1, + ACTIONS(1961), 1, anon_sym_async, - ACTIONS(1957), 1, + ACTIONS(1963), 1, anon_sym_function, - ACTIONS(1959), 1, + ACTIONS(1965), 1, anon_sym_declare, - ACTIONS(1963), 1, + ACTIONS(1969), 1, anon_sym_abstract, - ACTIONS(1967), 1, + ACTIONS(1973), 1, anon_sym_interface, - ACTIONS(1969), 1, + ACTIONS(1975), 1, anon_sym_enum, - ACTIONS(3190), 1, - anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, ACTIONS(3194), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(3196), 1, - anon_sym_EQ, + anon_sym_default, ACTIONS(3198), 1, + anon_sym_type, + ACTIONS(3202), 1, anon_sym_as, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3208), 1, + ACTIONS(3212), 1, anon_sym_module, - ACTIONS(3223), 1, - anon_sym_RBRACE, - STATE(1150), 1, + ACTIONS(3264), 1, + anon_sym_EQ, + STATE(1152), 1, sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, + STATE(3128), 1, sym_internal_module, - STATE(3384), 1, + STATE(3129), 1, sym_declaration, - STATE(3511), 1, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3565), 1, sym_export_clause, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - STATE(3829), 1, + STATE(3867), 1, sym_namespace_export, - ACTIONS(3206), 6, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3391), 13, + STATE(3131), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -122822,78 +124271,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [16261] = 30, + [18223] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3226), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3089), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122904,78 +124350,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16373] = 30, + [18331] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3228), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3297), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122986,78 +124429,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16485] = 30, + [18439] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3230), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(2992), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123068,164 +124508,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16597] = 34, + [18547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(1545), 15, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 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, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1543), 33, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3200), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3232), 1, anon_sym_RBRACE, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3384), 1, - sym_declaration, - STATE(3511), 1, - sym_export_clause, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - STATE(3829), 1, - sym_namespace_export, - ACTIONS(3206), 6, - sym__automatic_semicolon, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, anon_sym_COLON, - 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, anon_sym_PIPE_RBRACE, - STATE(3391), 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, - [16717] = 30, + [18603] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2661), 1, anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(2707), 1, + ACTIONS(2677), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(2257), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2295), 1, sym_override_modifier, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3214), 1, + STATE(3290), 1, sym__call_signature, - STATE(3488), 1, + STATE(3521), 1, aux_sym_export_statement_repeat1, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(3142), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3235), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2521), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, + STATE(3005), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123236,160 +124640,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16829] = 30, + [18711] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, - anon_sym_async, - ACTIONS(3144), 1, - anon_sym_static, - ACTIONS(3146), 1, - anon_sym_readonly, - ACTIONS(3152), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3237), 2, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3276), 1, + anon_sym_QMARK_DOT, + ACTIONS(3278), 1, + anon_sym_LT, + STATE(1281), 1, + sym_type_arguments, + STATE(1405), 1, + sym_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3266), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_DASH_DASH, + ACTIONS(3268), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [16941] = 30, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [18782] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(3278), 1, anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3284), 1, + anon_sym_is, + STATE(1237), 1, + sym_type_arguments, + ACTIONS(3280), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_DASH_DASH, + ACTIONS(3008), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [18845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 1, + anon_sym_is, + ACTIONS(3286), 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(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3288), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [18901] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(224), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3294), 1, + anon_sym_RBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3298), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3300), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3302), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3308), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, + STATE(2272), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2300), 1, sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(3601), 1, + aux_sym_object_repeat1, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3304), 2, anon_sym_get, anon_sym_set, - ACTIONS(3239), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3306), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3598), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3292), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123400,246 +124881,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17053] = 34, + [18999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1385), 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, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - ACTIONS(3190), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(1383), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + anon_sym_is, + [19053] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3314), 1, + anon_sym_DOT, + STATE(1313), 1, + sym_arguments, + ACTIONS(3310), 14, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 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, + anon_sym_DASH_DASH, + ACTIONS(3312), 29, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3200), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3241), 1, anon_sym_RBRACE, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3384), 1, - sym_declaration, - STATE(3511), 1, - sym_export_clause, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - STATE(3829), 1, - sym_namespace_export, - ACTIONS(3206), 6, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(3316), 1, sym__automatic_semicolon, + ACTIONS(1351), 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_DASH_DASH, + ACTIONS(1349), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3391), 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, - [17173] = 30, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [19171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(3284), 1, + anon_sym_is, + ACTIONS(3318), 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, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3320), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3140), 1, - anon_sym_async, - ACTIONS(3144), 1, - anon_sym_static, - ACTIONS(3146), 1, - anon_sym_readonly, - ACTIONS(3152), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3244), 2, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19227] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3326), 1, + anon_sym_DOT, + STATE(1252), 1, + sym_arguments, + ACTIONS(3322), 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_DASH_DASH, + ACTIONS(3324), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [17285] = 30, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(3278), 1, anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(3282), 1, + anon_sym_DOT, + STATE(1237), 1, + sym_type_arguments, + ACTIONS(3280), 13, + anon_sym_STAR, + anon_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(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3008), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19347] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(224), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3330), 1, + anon_sym_RBRACE, + ACTIONS(3332), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3334), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3336), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3342), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, + STATE(2272), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2300), 1, sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + STATE(3603), 1, + aux_sym_object_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3338), 2, anon_sym_get, anon_sym_set, - ACTIONS(3246), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3340), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3599), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3328), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123650,78 +125272,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17397] = 30, + [19445] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, + ACTIONS(224), 1, + anon_sym_STAR, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3346), 1, + anon_sym_RBRACE, + ACTIONS(3348), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3350), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3352), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3358), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(2272), 1, + sym_accessibility_modifier, + STATE(2300), 1, + sym_override_modifier, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + STATE(3603), 1, + aux_sym_object_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3354), 2, anon_sym_get, anon_sym_set, - ACTIONS(3248), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3356), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3599), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3344), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123732,78 +125345,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17509] = 30, + [19543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(3360), 1, + anon_sym_DOT, + STATE(1358), 1, + sym_arguments, + ACTIONS(2988), 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(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2984), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19603] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(224), 1, anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3364), 1, + anon_sym_RBRACE, + ACTIONS(3366), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3368), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3370), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3376), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, + STATE(2272), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2300), 1, sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + STATE(3603), 1, + aux_sym_object_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3372), 2, anon_sym_get, anon_sym_set, - ACTIONS(3250), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3150), 3, + ACTIONS(3374), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3599), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3362), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123814,156 +125472,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17621] = 31, + [19701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1820), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(3380), 1, + anon_sym_DOT, + STATE(1424), 1, + sym_statement_block, + ACTIONS(1399), 14, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 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, + anon_sym_DASH_DASH, + ACTIONS(1397), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3208), 1, - anon_sym_module, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3384), 1, - sym_declaration, - STATE(3511), 1, - sym_export_clause, - STATE(3829), 1, - sym_namespace_export, - ACTIONS(3252), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 6, - sym__automatic_semicolon, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + 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_BQUOTE, + anon_sym_satisfies, anon_sym_PIPE_RBRACE, - STATE(3391), 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, - [17733] = 29, + [19761] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, + ACTIONS(224), 1, + anon_sym_STAR, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3384), 1, + anon_sym_RBRACE, + ACTIONS(3386), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3388), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3390), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3396), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, + STATE(2272), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2300), 1, sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + STATE(3603), 1, + aux_sym_object_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3392), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3394), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3247), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3599), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3382), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123974,155 +125599,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17841] = 30, + [19859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1820), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + STATE(1424), 1, + sym_statement_block, + ACTIONS(1399), 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, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - ACTIONS(3190), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(1397), 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_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [19917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_LT, + STATE(1298), 1, + sym_type_arguments, + ACTIONS(3286), 13, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3198), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3288), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19975] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3398), 1, + anon_sym_DOT, + STATE(1424), 1, + sym_statement_block, + ACTIONS(1399), 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_DASH_DASH, + ACTIONS(1397), 29, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [20035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1545), 15, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1543), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1513), 15, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1511), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3256), 1, - anon_sym_EQ, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3384), 1, - sym_declaration, - STATE(3511), 1, - sym_export_clause, - STATE(3829), 1, - sym_namespace_export, - ACTIONS(3206), 8, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3391), 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, - [17951] = 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20143] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, + ACTIONS(224), 1, + anon_sym_STAR, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3402), 1, + anon_sym_RBRACE, + ACTIONS(3404), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3406), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3408), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3414), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, + STATE(2272), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2300), 1, sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + STATE(3603), 1, + aux_sym_object_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3410), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3412), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2966), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3599), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3400), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -124133,75 +125934,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18059] = 29, + [20241] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(1293), 1, + ACTIONS(224), 1, + anon_sym_STAR, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3418), 1, + anon_sym_RBRACE, + ACTIONS(3420), 1, anon_sym_async, - ACTIONS(3144), 1, + ACTIONS(3422), 1, anon_sym_static, - ACTIONS(3146), 1, + ACTIONS(3424), 1, anon_sym_readonly, - ACTIONS(3152), 1, + ACTIONS(3430), 1, anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, + STATE(2272), 1, sym_accessibility_modifier, - STATE(2286), 1, + STATE(2300), 1, sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, + STATE(3601), 1, + aux_sym_object_repeat1, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(242), 2, sym_number, sym_private_property_identifier, - ACTIONS(3148), 2, + ACTIONS(3426), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3428), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2506), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3079), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3598), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3416), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -124212,39 +126007,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18167] = 3, + [20339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 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_DASH_DASH, + ACTIONS(3434), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3436), 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_DASH_DASH, + ACTIONS(3438), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1422), 1, + sym_statement_block, + ACTIONS(1399), 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_DASH_DASH, + ACTIONS(1397), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [20502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3446), 1, + anon_sym_DOT, + ACTIONS(3442), 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_DASH_DASH, + ACTIONS(3444), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20557] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3453), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 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_DASH_DASH, + ACTIONS(3501), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 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_DASH_DASH, + ACTIONS(3505), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 15, + ACTIONS(3507), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1582), 33, - sym__automatic_semicolon, + ACTIONS(3509), 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, @@ -124264,119 +126439,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [18223] = 29, + anon_sym_implements, + [20829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(3511), 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, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3513), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3140), 1, - anon_sym_async, - ACTIONS(3144), 1, - anon_sym_static, - ACTIONS(3146), 1, - anon_sym_readonly, - ACTIONS(3152), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2950), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18331] = 3, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 15, + ACTIONS(3515), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1556), 33, - sym__automatic_semicolon, + ACTIONS(3517), 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, @@ -124396,287 +126539,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [18387] = 29, + anon_sym_implements, + [20935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(3511), 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, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3513), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3140), 1, - anon_sym_async, - ACTIONS(3144), 1, - anon_sym_static, - ACTIONS(3146), 1, - anon_sym_readonly, - ACTIONS(3152), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2978), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18495] = 29, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(3515), 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, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3517), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3138), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3140), 1, - anon_sym_async, - ACTIONS(3144), 1, - anon_sym_static, - ACTIONS(3146), 1, - anon_sym_readonly, - ACTIONS(3152), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3076), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18603] = 29, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [21041] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1232), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, anon_sym_LT, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2683), 1, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3519), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [21154] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_new, - ACTIONS(2693), 1, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3525), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, + anon_sym_STAR, + anon_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(2707), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3523), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_satisfies, + [21225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 14, anon_sym_STAR, - ACTIONS(3138), 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, + anon_sym_DASH_DASH, + ACTIONS(3530), 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(3140), 1, - anon_sym_async, - ACTIONS(3144), 1, - anon_sym_static, - ACTIONS(3146), 1, - anon_sym_readonly, - ACTIONS(3152), 1, - anon_sym_override, - STATE(1150), 1, - sym_decorator, - STATE(2257), 1, - sym_accessibility_modifier, - STATE(2286), 1, - sym_override_modifier, - STATE(2672), 1, - sym_formal_parameters, - STATE(3214), 1, - sym__call_signature, - STATE(3488), 1, - aux_sym_export_statement_repeat1, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(3142), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3095), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18711] = 11, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [21278] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3266), 1, - anon_sym_LT, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3270), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - STATE(1289), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3536), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(1470), 1, - sym_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3258), 13, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3532), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3534), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [21359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3539), 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_DASH_DASH, - ACTIONS(3260), 26, + ACTIONS(3541), 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, @@ -124693,33 +126941,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [18782] = 7, + [21412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_LT, - ACTIONS(3274), 1, - anon_sym_DOT, - ACTIONS(3276), 1, - anon_sym_is, - STATE(1259), 1, - sym_type_arguments, - ACTIONS(3272), 13, + ACTIONS(3543), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2990), 30, + ACTIONS(3545), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124731,6 +126973,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, @@ -124750,42 +126993,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [18845] = 6, + [21465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - ACTIONS(3280), 1, - anon_sym_DOT, - STATE(1509), 1, - sym_statement_block, - ACTIONS(1389), 14, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3553), 1, + anon_sym_PIPE, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(3547), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 29, - sym__automatic_semicolon, + ACTIONS(3549), 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, anon_sym_PIPE_PIPE, @@ -124803,42 +127045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [18905] = 6, + anon_sym_implements, + [21524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3286), 1, - anon_sym_DOT, - STATE(1275), 1, - sym_arguments, - ACTIONS(3282), 14, + ACTIONS(3547), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3284), 29, + ACTIONS(3549), 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, @@ -124858,101 +127096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [18965] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3290), 1, - anon_sym_RBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3294), 1, - anon_sym_async, - ACTIONS(3296), 1, - anon_sym_static, - ACTIONS(3298), 1, - anon_sym_readonly, - ACTIONS(3304), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3690), 1, - aux_sym_object_repeat1, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3300), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3302), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3657), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3288), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19063] = 5, + [21577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_LT, - STATE(1266), 1, - sym_type_arguments, - ACTIONS(3306), 13, + ACTIONS(3557), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3308), 31, + ACTIONS(3559), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124984,332 +127146,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [19121] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3312), 1, - anon_sym_RBRACE, - ACTIONS(3314), 1, - anon_sym_async, - ACTIONS(3316), 1, - anon_sym_static, - ACTIONS(3318), 1, - anon_sym_readonly, - ACTIONS(3324), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - STATE(3720), 1, - aux_sym_object_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3322), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3718), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3310), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19219] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3328), 1, - anon_sym_RBRACE, - ACTIONS(3330), 1, - anon_sym_async, - ACTIONS(3332), 1, - anon_sym_static, - ACTIONS(3334), 1, - anon_sym_readonly, - ACTIONS(3340), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - STATE(3720), 1, - aux_sym_object_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3336), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3338), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3718), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3326), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19317] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3344), 1, - anon_sym_RBRACE, - ACTIONS(3346), 1, - anon_sym_async, - ACTIONS(3348), 1, - anon_sym_static, - ACTIONS(3350), 1, - anon_sym_readonly, - ACTIONS(3356), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3690), 1, - aux_sym_object_repeat1, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3352), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3354), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3657), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3342), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19415] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3360), 1, - anon_sym_RBRACE, - ACTIONS(3362), 1, - anon_sym_async, - ACTIONS(3364), 1, - anon_sym_static, - ACTIONS(3366), 1, - anon_sym_readonly, - ACTIONS(3372), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - STATE(3720), 1, - aux_sym_object_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3370), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3718), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3358), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19513] = 5, + [21630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(1509), 1, - sym_statement_block, - ACTIONS(1389), 14, + ACTIONS(3503), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 30, - sym__automatic_semicolon, + ACTIONS(3505), 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, @@ -125328,104 +127194,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [19571] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3376), 1, - anon_sym_RBRACE, - ACTIONS(3378), 1, - anon_sym_async, - ACTIONS(3380), 1, - anon_sym_static, - ACTIONS(3382), 1, - anon_sym_readonly, - ACTIONS(3388), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - STATE(3720), 1, - aux_sym_object_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3384), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3386), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3718), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3374), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19669] = 6, + anon_sym_extends, + anon_sym_implements, + [21683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_LT, - ACTIONS(3274), 1, - anon_sym_DOT, - STATE(1259), 1, - sym_type_arguments, - ACTIONS(3272), 13, + ACTIONS(1987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2990), 30, + ACTIONS(1985), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125437,6 +127226,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, @@ -125456,41 +127246,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [19729] = 6, + [21736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_DOT, - STATE(1276), 1, - sym_arguments, - ACTIONS(3390), 14, + ACTIONS(3561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3392), 29, + ACTIONS(3563), 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, @@ -125510,25 +127296,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [19789] = 3, + [21789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 14, + ACTIONS(3565), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1381), 32, + ACTIONS(3567), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125560,27 +127346,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [19843] = 3, + [21842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 15, + ACTIONS(3440), 1, + anon_sym_LBRACE, + ACTIONS(3569), 1, + anon_sym_DOT, + STATE(1422), 1, + sym_statement_block, + ACTIONS(1399), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + ACTIONS(1397), 28, + 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_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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [21901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 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_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1556), 31, + ACTIONS(3573), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125612,27 +127449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [19897] = 4, + [21954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 1, - anon_sym_is, - ACTIONS(3396), 14, + ACTIONS(3565), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3398), 31, + ACTIONS(3567), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125664,100 +127499,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [19953] = 25, + [22007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(224), 1, + ACTIONS(3440), 1, + anon_sym_LBRACE, + ACTIONS(3575), 1, + anon_sym_DOT, + STATE(1422), 1, + sym_statement_block, + ACTIONS(1399), 14, anon_sym_STAR, - ACTIONS(230), 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, + anon_sym_DASH_DASH, + ACTIONS(1397), 28, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(3402), 1, anon_sym_RBRACE, - ACTIONS(3404), 1, - anon_sym_async, - ACTIONS(3406), 1, - anon_sym_static, - ACTIONS(3408), 1, - anon_sym_readonly, - ACTIONS(3414), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - STATE(3693), 1, - aux_sym_object_pattern_repeat1, - STATE(3720), 1, - aux_sym_object_repeat1, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3410), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3412), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3718), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3400), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [20051] = 4, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [22066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_is, - ACTIONS(3306), 14, + ACTIONS(3577), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3308), 31, + ACTIONS(3579), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125789,26 +127602,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20107] = 3, + [22119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 15, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1582), 31, + ACTIONS(2933), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125838,31 +127652,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [20161] = 5, + [22174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(3418), 1, - sym__automatic_semicolon, - ACTIONS(1397), 14, + ACTIONS(3581), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1395), 30, + ACTIONS(3583), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125892,42 +127701,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [20219] = 6, + [22227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3585), 13, + 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, + anon_sym_DASH_DASH, + ACTIONS(3587), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3420), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - STATE(1273), 1, - sym_arguments, - ACTIONS(2996), 14, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [22282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2992), 29, + ACTIONS(3567), 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, @@ -125947,25 +127804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20279] = 3, + [22335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3589), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 31, + ACTIONS(3591), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125997,25 +127854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20332] = 3, + [22388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 14, + ACTIONS(3593), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3398), 31, + ACTIONS(3595), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126047,25 +127904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20385] = 3, + [22441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 14, + ACTIONS(3597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3428), 31, + ACTIONS(3599), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126097,27 +127954,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20438] = 4, + [22494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 1, - sym__automatic_semicolon, - ACTIONS(1397), 14, + ACTIONS(3601), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1395), 30, + ACTIONS(3603), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126147,32 +128002,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [20493] = 5, + [22547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(1380), 1, - sym_statement_block, - ACTIONS(1389), 14, + ACTIONS(3605), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 29, + ACTIONS(3607), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -126199,34 +128052,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [20550] = 6, + [22600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_DOT, - STATE(1380), 1, - sym_statement_block, - ACTIONS(1389), 14, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3553), 1, + anon_sym_PIPE, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(3609), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 28, + ACTIONS(3611), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -126235,6 +128088,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, @@ -126253,25 +128107,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [20609] = 3, + [22659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 14, + ACTIONS(3571), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3436), 31, + ACTIONS(3573), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126303,29 +128157,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20662] = 6, + [22712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_extends, + ACTIONS(3619), 2, anon_sym_AMP, - ACTIONS(3444), 1, anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3438), 12, + ACTIONS(3613), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3440), 30, + ACTIONS(3615), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126335,7 +128190,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, @@ -126356,29 +128210,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [20721] = 6, + [22771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3448), 12, + ACTIONS(3316), 1, + sym__automatic_semicolon, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3450), 30, + ACTIONS(1349), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126409,38 +128261,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [20780] = 3, + [22826] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3627), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3454), 31, + ACTIONS(3625), 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, @@ -126454,30 +128321,26 @@ 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20833] = 3, + [22901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 14, + ACTIONS(3630), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3458), 31, + ACTIONS(3632), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126509,25 +128372,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20886] = 3, + [22954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 14, + ACTIONS(3597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3462), 31, + ACTIONS(3599), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126559,25 +128422,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20939] = 3, + [23007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 14, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3553), 1, + anon_sym_PIPE, + ACTIONS(3634), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3466), 31, + ACTIONS(3636), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126609,25 +128474,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20992] = 3, + [23064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 14, + ACTIONS(3638), 1, + anon_sym_DOT, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3458), 31, + ACTIONS(3444), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126639,7 +128506,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, @@ -126659,25 +128525,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21045] = 3, + [23119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 14, + ACTIONS(3641), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3466), 31, + ACTIONS(3643), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126709,31 +128575,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21098] = 3, + [23172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 14, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(1499), 1, + sym_arguments, + ACTIONS(3645), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3470), 31, + ACTIONS(3647), 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, @@ -126757,35 +128626,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21151] = 7, + [23229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3270), 1, - anon_sym_QMARK_DOT, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(1578), 14, + ACTIONS(3649), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1580), 27, + ACTIONS(3651), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126795,7 +128655,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, @@ -126812,39 +128675,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [21212] = 3, + [23282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 14, + ACTIONS(3657), 1, + anon_sym_DOT, + ACTIONS(3653), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1490), 31, - sym__automatic_semicolon, + ACTIONS(3655), 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, @@ -126862,26 +128726,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [21265] = 3, + anon_sym_extends, + anon_sym_implements, + [23337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 14, + ACTIONS(3659), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3466), 31, + ACTIONS(3661), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126913,25 +128778,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21318] = 3, + [23390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 14, + ACTIONS(3663), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1987), 31, + ACTIONS(3665), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126963,27 +128828,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21371] = 4, + [23443] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3667), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [23556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3669), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 30, + ACTIONS(3671), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126993,7 +128938,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, @@ -127013,47 +128957,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [21426] = 14, + [23611] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3476), 1, - anon_sym_LT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - STATE(3535), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3673), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [23724] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3679), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3472), 12, + ACTIONS(3675), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3474), 21, + ACTIONS(3677), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -127067,7 +129094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -127075,27 +129101,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [21501] = 4, + [23801] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3485), 14, - anon_sym_STAR, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3682), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [23914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, anon_sym_AMP, + ACTIONS(3553), 1, anon_sym_PIPE, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(3684), 12, + 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, anon_sym_DASH_DASH, - ACTIONS(3487), 30, + ACTIONS(3686), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127107,6 +129215,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, @@ -127124,27 +129233,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21556] = 3, + [23973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 14, + ACTIONS(3597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3493), 31, + ACTIONS(3599), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127176,25 +129284,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21609] = 3, + [24026] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3690), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [24141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 14, + ACTIONS(2541), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3493), 31, + ACTIONS(2543), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127226,25 +129415,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21662] = 3, + [24194] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 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(3677), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [24281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3692), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3497), 31, + ACTIONS(3694), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127276,57 +129532,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21715] = 17, + [24334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3507), 1, - anon_sym_LT, - ACTIONS(3510), 1, - anon_sym_satisfies, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 11, + ACTIONS(3507), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 19, + anon_sym_DASH_DASH, + ACTIONS(3509), 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, @@ -127340,25 +129577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21796] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [24387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 14, + ACTIONS(3696), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3514), 31, + ACTIONS(3698), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127390,26 +129632,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21849] = 4, + [24440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3516), 13, + ACTIONS(3692), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3518), 31, + ACTIONS(3694), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127441,155 +129682,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21904] = 33, + [24493] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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, - ACTIONS(3530), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [24594] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3522), 5, + ACTIONS(3677), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [22017] = 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [24697] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3679), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3560), 31, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [22070] = 3, + [24780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 14, + ACTIONS(1979), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3564), 31, + ACTIONS(1977), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127621,79 +129946,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22123] = 3, + [24833] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3568), 31, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3675), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [22176] = 6, + [24928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3570), 12, + ACTIONS(3700), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3572), 30, + ACTIONS(3702), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127723,31 +130065,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22235] = 6, + [24981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - anon_sym_LBRACK, - ACTIONS(3582), 1, - anon_sym_extends, - ACTIONS(3580), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3574), 12, + ACTIONS(3692), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3576), 29, + ACTIONS(3694), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127757,6 +130095,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, @@ -127776,51 +130115,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22294] = 12, + [25034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3588), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, + ACTIONS(3704), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3586), 22, + ACTIONS(3706), 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, @@ -127835,26 +130163,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [22365] = 3, + anon_sym_extends, + anon_sym_implements, + [25087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 14, + ACTIONS(3708), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3593), 31, + ACTIONS(3710), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127886,27 +130217,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22418] = 4, + [25140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - anon_sym_LBRACK, - ACTIONS(3595), 14, + ACTIONS(3712), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3597), 30, + ACTIONS(3714), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127916,6 +130245,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, @@ -127937,25 +130267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22473] = 3, + [25193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 14, + ACTIONS(3716), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3493), 31, + ACTIONS(3718), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127987,25 +130317,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22526] = 3, + [25246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 14, + ACTIONS(3318), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3601), 31, + ACTIONS(3320), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128037,25 +130367,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22579] = 3, + [25299] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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, + [25396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 14, + ACTIONS(3720), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3605), 31, + ACTIONS(3722), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128087,25 +130489,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22632] = 3, + [25449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1985), 14, + ACTIONS(3724), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1983), 31, + ACTIONS(3726), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128137,25 +130539,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22685] = 3, + [25502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 14, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3728), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3609), 31, + ACTIONS(3730), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128187,27 +130590,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22738] = 4, + [25557] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 1, - sym__automatic_semicolon, - ACTIONS(1486), 14, + ACTIONS(3577), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3579), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2933), 28, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [25614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(1484), 30, + ACTIONS(3734), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128237,26 +130690,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22793] = 3, + [25667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 14, + ACTIONS(1991), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1971), 31, + ACTIONS(1989), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128288,115 +130742,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22846] = 33, + [25720] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3613), 5, + ACTIONS(3677), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [22959] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [25819] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 14, + ACTIONS(3632), 1, + anon_sym_extends, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3745), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3736), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3617), 31, + ACTIONS(3740), 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, @@ -128416,18 +130868,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [23012] = 3, + [25880] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3679), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -128435,114 +130913,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3621), 31, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [23065] = 3, + [25961] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 14, - anon_sym_STAR, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3679), 1, anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3625), 31, + ACTIONS(3677), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [23118] = 3, + [26044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 14, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(2385), 1, + sym_arguments, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3629), 31, + ACTIONS(2933), 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, @@ -128566,157 +131049,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [23171] = 33, + [26101] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3631), 5, + ACTIONS(3748), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [23284] = 3, + [26214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 14, + ACTIONS(3750), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3635), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [23337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3639), 31, + ACTIONS(3752), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128748,35 +131180,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23390] = 3, + [26267] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 14, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1981), 1, + anon_sym_extends, + ACTIONS(3754), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3757), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1353), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3643), 31, + ACTIONS(1357), 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, @@ -128796,27 +131233,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [23443] = 3, + [26328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 14, + ACTIONS(3760), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3308), 31, + ACTIONS(3762), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128848,25 +131284,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23496] = 3, + [26381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 14, + ACTIONS(3764), 1, + sym__automatic_semicolon, + ACTIONS(1549), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3647), 31, + ACTIONS(1547), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128896,29 +131334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [23549] = 4, + [26436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - anon_sym_LBRACK, - ACTIONS(3580), 14, + ACTIONS(2533), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3582), 30, + ACTIONS(2535), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128928,6 +131363,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, @@ -128949,27 +131385,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23604] = 4, + [26489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_DOT, - ACTIONS(3649), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3651), 30, + ACTIONS(3768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128981,6 +131415,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, @@ -129000,25 +131435,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23659] = 3, + [26542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 31, + ACTIONS(3768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129050,29 +131485,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23712] = 6, + [26595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3551), 1, anon_sym_AMP, - ACTIONS(3444), 1, + ACTIONS(3553), 1, anon_sym_PIPE, - ACTIONS(3446), 1, + ACTIONS(3555), 1, anon_sym_extends, - ACTIONS(3656), 12, + ACTIONS(3760), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3658), 30, + ACTIONS(3762), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129103,25 +131538,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [23771] = 3, + [26654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3658), 31, + ACTIONS(3768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129153,114 +131588,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23824] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3660), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [23937] = 5, + [26707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - STATE(1382), 1, - sym_arguments, - ACTIONS(3662), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3664), 29, + ACTIONS(3772), 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, @@ -129284,26 +131636,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [23994] = 3, + [26760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3619), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 31, + ACTIONS(3621), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129313,7 +131668,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, @@ -129335,105 +131689,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24047] = 33, + [26815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3551), 1, anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3553), 1, anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3666), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [24160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3668), 14, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(3774), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3670), 31, + ACTIONS(3776), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129463,27 +131741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [24213] = 3, + [26874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 14, + ACTIONS(3286), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3674), 31, + ACTIONS(3288), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129515,301 +131792,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24266] = 33, + [26927] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3676), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [24379] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3682), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 12, - anon_sym_STAR, + ACTIONS(3675), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3680), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_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, - [24456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, anon_sym_AMP, - ACTIONS(3444), 1, anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3685), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3687), 30, + ACTIONS(3677), 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_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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [24515] = 34, + [27018] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3691), 4, + ACTIONS(3677), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [24630] = 3, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [27123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 14, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3553), 1, + anon_sym_PIPE, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(3778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2531), 31, + ACTIONS(3780), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129839,27 +131989,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [24683] = 3, + [27182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 14, + ACTIONS(3782), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3695), 31, + ACTIONS(3784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129891,25 +132040,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24736] = 3, + [27235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 14, + ACTIONS(3551), 1, + anon_sym_AMP, + ACTIONS(3553), 1, + anon_sym_PIPE, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(3786), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3674), 31, + ACTIONS(3788), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129939,28 +132092,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [24789] = 4, + [27294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3697), 13, + ACTIONS(3782), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3699), 31, + ACTIONS(3784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129992,92 +132143,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24844] = 20, + [27347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(1983), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 17, + anon_sym_DASH_DASH, + ACTIONS(1981), 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_BQUOTE, anon_sym_satisfies, - [24931] = 3, + anon_sym_extends, + anon_sym_implements, + [27400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 14, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3703), 31, + ACTIONS(3792), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130109,25 +132243,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24984] = 3, + [27453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 14, + ACTIONS(3649), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3674), 31, + ACTIONS(3651), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130159,174 +132293,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25037] = 27, + [27506] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3532), 1, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3678), 1, - anon_sym_BANG, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3794), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [27619] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - [25138] = 28, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3796), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [27732] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3532), 1, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3678), 1, - anon_sym_BANG, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3798), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [27845] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - [25241] = 3, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3800), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [27958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 14, + ACTIONS(3782), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1975), 31, + ACTIONS(3784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130358,233 +132663,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25294] = 18, + [28011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3682), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(1995), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 19, + anon_sym_DASH_DASH, + ACTIONS(1993), 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_BQUOTE, anon_sym_satisfies, - [25377] = 24, + anon_sym_extends, + anon_sym_implements, + [28064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3802), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3680), 12, + anon_sym_DASH_DASH, + ACTIONS(3804), 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_BQUOTE, anon_sym_satisfies, - [25472] = 25, + anon_sym_extends, + anon_sym_implements, + [28117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3770), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 12, + anon_sym_DASH_DASH, + ACTIONS(3772), 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_BQUOTE, anon_sym_satisfies, - [25569] = 3, + anon_sym_extends, + anon_sym_implements, + [28170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3707), 31, + ACTIONS(3772), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130616,100 +132863,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25622] = 26, + [28223] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3532), 1, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3544), 1, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3806), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [25721] = 5, + [28336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3709), 12, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3276), 1, + anon_sym_QMARK_DOT, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(1595), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3711), 31, + ACTIONS(1597), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130719,10 +132979,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, @@ -130739,42 +132996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [25778] = 17, + [28397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3682), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3808), 14, anon_sym_STAR, - anon_sym_SLASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -130783,257 +133010,242 @@ 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(3680), 19, + anon_sym_DASH_DASH, + ACTIONS(3810), 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_BQUOTE, anon_sym_satisfies, - [25859] = 18, + anon_sym_extends, + anon_sym_implements, + [28450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3682), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(1517), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 18, + anon_sym_DASH_DASH, + ACTIONS(1515), 31, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25942] = 22, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [28503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(2537), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3678), 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(3680), 14, + anon_sym_DASH_DASH, + ACTIONS(2539), 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_BQUOTE, anon_sym_satisfies, - [26033] = 29, + anon_sym_extends, + anon_sym_implements, + [28556] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3678), 1, - anon_sym_BANG, - STATE(3535), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3812), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [26138] = 3, + [28669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 14, + ACTIONS(3814), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3715), 31, + ACTIONS(3816), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131065,40 +133277,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26191] = 6, + [28722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3717), 12, + ACTIONS(1555), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3719), 30, + ACTIONS(1553), 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, @@ -131117,296 +133326,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [26250] = 33, + anon_sym_PIPE_RBRACE, + [28775] = 36, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3019), 1, + anon_sym_COLON, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(3818), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + STATE(4349), 1, + sym_type_annotation, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3721), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [26363] = 33, + [28893] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3824), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3848), 1, + anon_sym_LT, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(2842), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3524), 1, + aux_sym_extends_clause_repeat1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3822), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3723), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [26476] = 3, + [29009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3727), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2533), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(3863), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2535), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 14, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 31, + ACTIONS(2933), 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, @@ -131426,168 +133541,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26635] = 33, + [29067] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3733), 5, + ACTIONS(3812), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [26748] = 3, + anon_sym_SEMI, + [29179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3737), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3920), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3924), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3739), 14, + ACTIONS(3918), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3741), 31, + ACTIONS(3922), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -131606,27 +133672,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26854] = 3, + [29235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 14, + ACTIONS(3927), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3458), 31, + ACTIONS(3929), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131656,37 +133720,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26907] = 3, + [29287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 14, + ACTIONS(3320), 1, + anon_sym_extends, + ACTIONS(3931), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3934), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 31, + ACTIONS(2933), 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, @@ -131706,40 +133772,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26960] = 3, + [29345] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3937), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3737), 31, + ACTIONS(3625), 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, @@ -131753,30 +133832,26 @@ 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27013] = 3, + [29419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 14, + ACTIONS(3940), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3745), 31, + ACTIONS(3942), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131806,27 +133881,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27066] = 3, + [29471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 14, + ACTIONS(3944), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3749), 31, + ACTIONS(3946), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131856,136 +133930,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27119] = 3, + [29523] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3745), 31, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, anon_sym_PERCENT, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 14, + ACTIONS(3916), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3874), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3749), 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(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27225] = 5, + ACTIONS(3453), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [29635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(2372), 1, - sym_arguments, - ACTIONS(2936), 14, + ACTIONS(3948), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 29, + ACTIONS(3950), 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, @@ -132010,116 +134059,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27282] = 33, + [29687] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3751), 5, + ACTIONS(3682), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27395] = 3, + anon_sym_SEMI, + [29799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(1531), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3755), 31, + ACTIONS(1529), 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, @@ -132138,42 +134186,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27448] = 7, + anon_sym_PIPE_RBRACE, + [29851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_extends, - ACTIONS(3757), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3760), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1399), 11, + ACTIONS(1497), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(1403), 27, + ACTIONS(1499), 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, @@ -132194,25 +134236,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27509] = 3, + [29903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 14, + ACTIONS(1523), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3765), 31, + ACTIONS(1525), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132242,27 +134284,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27562] = 3, + [29955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(1575), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3755), 31, + ACTIONS(1577), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132292,27 +134333,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27615] = 3, + [30007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 14, + ACTIONS(3952), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3765), 31, + ACTIONS(3954), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132342,120 +134382,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27668] = 33, + [30059] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3767), 5, + ACTIONS(3519), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27781] = 5, + anon_sym_SEMI, + [30171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3560), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2936), 11, + ACTIONS(3956), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2940), 28, + ACTIONS(3958), 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, @@ -132476,25 +134511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27838] = 3, + [30223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 14, + ACTIONS(1431), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2527), 31, + ACTIONS(1433), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132524,27 +134559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27891] = 3, + [30275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 14, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3771), 31, + ACTIONS(1539), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132574,27 +134608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27944] = 3, + [30327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 14, + ACTIONS(3960), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3775), 31, + ACTIONS(3962), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132624,27 +134657,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27997] = 3, + [30379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 14, + ACTIONS(3964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3779), 31, + ACTIONS(3806), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132674,27 +134706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28050] = 3, + [30431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 14, + ACTIONS(3966), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3741), 31, + ACTIONS(3968), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132724,31 +134755,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28103] = 6, + [30483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3781), 12, + ACTIONS(3970), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3783), 30, + ACTIONS(3972), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132779,25 +134805,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28162] = 3, + [30535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 14, + ACTIONS(1509), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3783), 31, + ACTIONS(1507), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132827,40 +134853,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28215] = 3, + [30587] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3974), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1979), 31, + ACTIONS(3523), 21, + 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, @@ -132875,44 +134911,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [28268] = 7, + [30657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_extends, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3794), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3785), 11, + ACTIONS(3977), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3789), 27, + ACTIONS(3979), 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, @@ -132933,25 +134961,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28329] = 3, + [30709] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3019), 1, + anon_sym_COLON, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(3981), 1, + anon_sym_RPAREN, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(4176), 1, + sym_type_annotation, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 14, + ACTIONS(3983), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3799), 31, + ACTIONS(3985), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132981,27 +135091,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28382] = 3, + [30879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 14, + ACTIONS(1487), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3741), 31, + ACTIONS(1489), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133031,186 +135140,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28435] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3801), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28548] = 33, + [30931] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(4003), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(4021), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3767), 4, + ACTIONS(3812), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [28660] = 3, + [31043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 14, + ACTIONS(1477), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3857), 30, + ACTIONS(1479), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133241,74 +135269,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28712] = 3, + [31095] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1538), 30, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, anon_sym_PERCENT, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [28764] = 3, + ACTIONS(3748), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [31207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(4023), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 30, + ACTIONS(4025), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133339,25 +135397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28816] = 3, + [31259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(4027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 30, + ACTIONS(3673), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133388,25 +135446,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28868] = 3, + [31311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(4029), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 30, + ACTIONS(4031), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133437,36 +135495,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28920] = 3, + [31363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 14, + ACTIONS(1505), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3865), 30, + ACTIONS(1503), 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, @@ -133485,26 +135543,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28972] = 3, + anon_sym_PIPE_RBRACE, + [31415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(4033), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 30, + ACTIONS(4035), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133535,25 +135593,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29024] = 3, + [31467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 14, + ACTIONS(4037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3869), 30, + ACTIONS(4039), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133584,25 +135642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29076] = 3, + [31519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 14, + ACTIONS(4041), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1455), 30, + ACTIONS(4043), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133633,25 +135691,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29128] = 3, + [31571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 14, + ACTIONS(4045), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1431), 30, + ACTIONS(4047), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133682,25 +135740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29180] = 3, + [31623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 14, + ACTIONS(4049), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1441), 30, + ACTIONS(4051), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133731,25 +135789,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29232] = 3, + [31675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 14, + ACTIONS(4053), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1534), 30, + ACTIONS(4055), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133780,52 +135838,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29284] = 14, + [31727] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3880), 1, + anon_sym_AMP_AMP, + ACTIONS(3882), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, + anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3871), 1, - anon_sym_LT, - STATE(3494), 1, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - STATE(1827), 2, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3472), 12, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3806), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [31839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 20, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4059), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -133839,83 +135962,108 @@ 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_BQUOTE, anon_sym_satisfies, - [29358] = 11, + anon_sym_implements, + [31891] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, + anon_sym_AMP_AMP, + ACTIONS(3993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, + anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, anon_sym_LT, - ACTIONS(3876), 1, - anon_sym_QMARK_DOT, - STATE(1703), 1, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(1905), 1, - sym_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3258), 13, + ACTIONS(3987), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3260), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [29426] = 3, + ACTIONS(3796), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [32003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 14, + ACTIONS(4061), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3880), 30, + ACTIONS(4063), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133946,134 +136094,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29478] = 3, + [32055] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, + anon_sym_AMP_AMP, + ACTIONS(3993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3995), 1, anon_sym_GT_GT, + ACTIONS(3999), 1, anon_sym_AMP, + ACTIONS(4001), 1, + anon_sym_CARET, + ACTIONS(4003), 1, anon_sym_PIPE, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3884), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3798), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + [32167] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, anon_sym_AMP_AMP, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, anon_sym_PERCENT, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [29530] = 12, + ACTIONS(3800), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [32279] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3886), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, + ACTIONS(3987), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3675), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3586), 21, + ACTIONS(3677), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, anon_sym_satisfies, - [29600] = 4, + [32369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1399), 14, + ACTIONS(3184), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 29, + ACTIONS(3188), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134081,6 +136346,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, @@ -134103,38 +136369,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29654] = 3, + [32421] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4065), 1, anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3532), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3891), 30, + ACTIONS(3534), 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, @@ -134148,42 +136432,35 @@ 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [29706] = 6, + [32501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - anon_sym_extends, - ACTIONS(3897), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3900), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3893), 11, + ACTIONS(1549), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3895), 27, + ACTIONS(1547), 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, @@ -134204,117 +136481,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29764] = 35, + [32553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3920), 1, + anon_sym_EQ, + ACTIONS(3918), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3827), 1, anon_sym_AMP, - ACTIONS(3829), 1, - anon_sym_CARET, - ACTIONS(3831), 1, anon_sym_PIPE, - ACTIONS(3835), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3922), 29, sym__ternary_qmark, - ACTIONS(3903), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3906), 1, anon_sym_RBRACE, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3666), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3825), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3841), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3843), 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(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [29880] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [32607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 14, + ACTIONS(1569), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1484), 30, + ACTIONS(1567), 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, @@ -134333,28 +136579,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29932] = 4, + anon_sym_PIPE_RBRACE, + [32659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, - anon_sym_EQ, - ACTIONS(3908), 14, + ACTIONS(4068), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3912), 29, + ACTIONS(4070), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134362,6 +136606,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, @@ -134384,25 +136629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29986] = 3, + [32711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 14, + ACTIONS(1441), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1514), 30, + ACTIONS(1439), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134433,37 +136678,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30038] = 4, + [32763] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3785), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, + anon_sym_AMP_AMP, + ACTIONS(3882), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, + anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, + sym__ternary_qmark, + ACTIONS(4072), 1, + anon_sym_COMMA, + ACTIONS(4075), 1, + anon_sym_RBRACE, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3667), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 29, + ACTIONS(1439), 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_COLON, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -134482,26 +136807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30092] = 3, + anon_sym_PIPE_RBRACE, + [32931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 14, + ACTIONS(4077), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3916), 30, + ACTIONS(4079), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134532,36 +136857,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30144] = 3, + [32983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 14, + ACTIONS(1509), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3920), 30, + ACTIONS(1507), 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, @@ -134580,26 +136905,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30196] = 3, + anon_sym_PIPE_RBRACE, + [33035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 14, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3736), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3767), 30, + ACTIONS(3740), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134607,7 +136934,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, @@ -134630,25 +136956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30248] = 3, + [33089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 14, + ACTIONS(1531), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3751), 30, + ACTIONS(1529), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134679,36 +137005,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30300] = 3, + [33141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 14, + ACTIONS(4081), 1, + sym__automatic_semicolon, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3928), 30, + ACTIONS(1349), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -134727,26 +137054,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30352] = 3, + anon_sym_PIPE_RBRACE, + [33195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 14, + ACTIONS(4083), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3801), 30, + ACTIONS(4085), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134777,25 +137104,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30404] = 3, + [33247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 14, + ACTIONS(4087), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3934), 30, + ACTIONS(3453), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134826,188 +137153,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30456] = 35, + [33299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(4089), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3827), 1, anon_sym_AMP, - ACTIONS(3829), 1, - anon_sym_CARET, - ACTIONS(3831), 1, anon_sym_PIPE, - ACTIONS(3835), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(3939), 1, - anon_sym_RBRACE, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3666), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + anon_sym_DASH_DASH, + ACTIONS(4091), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30572] = 36, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33351] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, + ACTIONS(4093), 1, anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - STATE(4128), 1, - sym_type_annotation, - ACTIONS(3520), 2, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3625), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30690] = 3, + anon_sym_satisfies, + [33425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 14, + ACTIONS(1569), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1490), 30, + ACTIONS(1567), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135038,25 +137311,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30742] = 3, + [33477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1612), 14, + ACTIONS(1585), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1610), 30, + ACTIONS(1587), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135087,275 +137360,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30794] = 20, + [33529] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4096), 1, anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3951), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 7, - anon_sym_BANG, + ACTIONS(3532), 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(3680), 16, + ACTIONS(3534), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [30880] = 33, + [33609] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3522), 4, + ACTIONS(3667), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [30992] = 35, + [33721] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(3979), 1, - anon_sym_COMMA, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3631), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31108] = 12, + ACTIONS(3673), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [33833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, + ACTIONS(1517), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3586), 21, - sym__automatic_semicolon, + ACTIONS(1515), 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_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, @@ -135370,344 +137627,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [31178] = 33, + anon_sym_implements, + [33885] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, - anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4099), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3801), 4, + ACTIONS(3677), 19, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [31290] = 33, + anon_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, + [33961] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3613), 4, + ACTIONS(3800), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [31402] = 33, + [34073] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(4003), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(4021), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3631), 4, + ACTIONS(3794), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [31514] = 35, + [34185] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(4102), 1, + anon_sym_DOT, + ACTIONS(4104), 1, + anon_sym_LT, + ACTIONS(4106), 1, + anon_sym_is, + STATE(1800), 1, + sym_type_arguments, + ACTIONS(3280), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3008), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3819), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3821), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(3979), 1, - anon_sym_COMMA, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, + anon_sym_extends, + [34245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + anon_sym_DASH_DASH, + ACTIONS(4110), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(3985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31630] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 14, + ACTIONS(1555), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 30, + ACTIONS(1553), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135738,117 +138000,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31682] = 33, + [34349] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3989), 1, + anon_sym_GT, + ACTIONS(3991), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(4003), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(4021), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4114), 1, + anon_sym_in, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3751), 4, + ACTIONS(4112), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [31794] = 3, + [34463] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(4117), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3989), 30, + ACTIONS(3523), 21, + 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, @@ -135863,189 +138137,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_satisfies, + [34533] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 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(3677), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [31846] = 33, + [34619] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, + anon_sym_AMP_AMP, + ACTIONS(3993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, + anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3453), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [34731] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(4003), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(4021), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3723), 4, + ACTIONS(3748), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [31958] = 36, + [34843] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_RPAREN, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - STATE(4329), 1, - sym_type_annotation, - ACTIONS(3520), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32076] = 3, + ACTIONS(3798), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [34955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 14, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1580), 30, + ACTIONS(1469), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136076,85 +138490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32128] = 14, + [35007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3993), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3472), 12, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [32202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1586), 30, + ACTIONS(1563), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136185,25 +138539,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32254] = 3, + [35059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 14, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3998), 30, + ACTIONS(1459), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136234,74 +138588,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32306] = 3, + [35111] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4002), 30, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, anon_sym_AMP_AMP, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, anon_sym_PERCENT, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [32358] = 3, + ACTIONS(3682), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 14, + ACTIONS(1447), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4006), 30, + ACTIONS(1449), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136332,183 +138716,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32410] = 33, + [35275] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3721), 4, + ACTIONS(3796), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [32522] = 33, + [35387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1505), 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_DASH_DASH, + ACTIONS(1503), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3268), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 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, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [35439] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3991), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4003), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4021), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4008), 4, + ACTIONS(3806), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [32634] = 3, + anon_sym_of, + anon_sym_SEMI, + [35551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1594), 14, + ACTIONS(4120), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1596), 30, + ACTIONS(4122), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136539,123 +138972,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32686] = 3, + [35603] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, + anon_sym_AMP_AMP, + ACTIONS(3993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3995), 1, anon_sym_GT_GT, + ACTIONS(3999), 1, anon_sym_AMP, + ACTIONS(4001), 1, + anon_sym_CARET, + ACTIONS(4003), 1, anon_sym_PIPE, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1538), 30, + ACTIONS(4017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3519), 4, 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, + [35715] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, anon_sym_LBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, anon_sym_PERCENT, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 14, + ACTIONS(3916), 1, + sym__ternary_qmark, + ACTIONS(4124), 1, + anon_sym_COMMA, + ACTIONS(4127), 1, + anon_sym_RBRACE, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3667), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3866), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3874), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4012), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [32790] = 3, + [35831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 14, + ACTIONS(4129), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4016), 30, + ACTIONS(4131), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136686,25 +139181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32842] = 3, + [35883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 14, + ACTIONS(4133), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4020), 30, + ACTIONS(4135), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136735,215 +139230,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32894] = 33, + [35935] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3733), 4, + ACTIONS(3677), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [33006] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36035] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3678), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 8, + ACTIONS(3677), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [33110] = 22, + [36137] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - STATE(3494), 1, + ACTIONS(4099), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3678), 5, + ACTIONS(3675), 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(3680), 13, + ACTIONS(3677), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136952,30 +139431,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_LT_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, - [33200] = 3, + [36219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3176), 14, + ACTIONS(4137), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3180), 30, + ACTIONS(4139), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137006,25 +139490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33252] = 3, + [36271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 14, + ACTIONS(4141), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4024), 30, + ACTIONS(4143), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137055,25 +139539,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33304] = 3, + [36323] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(224), 1, + anon_sym_STAR, + ACTIONS(238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, + anon_sym_LBRACK, + ACTIONS(4147), 1, + anon_sym_async, + ACTIONS(4149), 1, + anon_sym_static, + ACTIONS(4151), 1, + anon_sym_readonly, + ACTIONS(4157), 1, + anon_sym_override, + STATE(2272), 1, + sym_accessibility_modifier, + STATE(2300), 1, + sym_override_modifier, + ACTIONS(242), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4153), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4155), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2959), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3948), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3950), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4145), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [36413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 14, + ACTIONS(4159), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3721), 30, + ACTIONS(4161), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137104,74 +139656,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33356] = 3, + [36465] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3675), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4030), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3991), 1, anon_sym_AMP_AMP, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, anon_sym_PERCENT, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4011), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3677), 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, - anon_sym_implements, - [33408] = 3, + [36569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 14, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1353), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4034), 30, + ACTIONS(1357), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137179,7 +139759,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, @@ -137202,84 +139781,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33460] = 3, + [36623] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3884), 1, anon_sym_GT_GT, + ACTIONS(3888), 1, anon_sym_AMP, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3675), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4038), 30, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [33512] = 3, + [36719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 14, + ACTIONS(3530), 1, + anon_sym_extends, + ACTIONS(4163), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4166), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4083), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4042), 30, + ACTIONS(4085), 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, @@ -137300,115 +139904,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33564] = 18, + [36777] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(4044), 1, + ACTIONS(3991), 1, + anon_sym_AMP_AMP, + ACTIONS(3993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, + anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, anon_sym_LT, - STATE(3494), 1, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(3987), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 17, + ACTIONS(4017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3667), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + [36889] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3991), 1, anon_sym_AMP_AMP, + ACTIONS(3993), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, + anon_sym_LT, + ACTIONS(4019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4021), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4013), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33646] = 17, + ACTIONS(3673), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [37001] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3835), 1, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, + anon_sym_CARET, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4044), 1, - anon_sym_LT, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 10, - anon_sym_BANG, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 18, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137417,255 +140132,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_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, - [33726] = 36, + [37099] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(3689), 1, + ACTIONS(4075), 1, + anon_sym_RBRACE, + ACTIONS(4169), 1, anon_sym_COMMA, - ACTIONS(4047), 1, - anon_sym_RPAREN, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - STATE(4179), 1, - sym_type_annotation, - ACTIONS(3520), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + ACTIONS(4172), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33844] = 3, + [37215] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4049), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4174), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4051), 30, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [33896] = 3, + [37291] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1522), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1524), 30, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, anon_sym_PERCENT, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, anon_sym_satisfies, - anon_sym_implements, - [33948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1546), 14, + ACTIONS(3916), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3874), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1548), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4075), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4177), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37405] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3896), 1, anon_sym_PERCENT, + ACTIONS(3898), 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(3910), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [34000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 14, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(4099), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -137673,265 +140400,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1510), 30, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34052] = 3, + [37485] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1465), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3878), 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, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [34104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1473), 14, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1475), 30, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34156] = 34, + [37571] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3957), 1, - anon_sym_GT, - ACTIONS(3959), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(4055), 1, - anon_sym_in, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3971), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4053), 4, + ACTIONS(3794), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [34270] = 17, + [37683] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4058), 1, + ACTIONS(3995), 1, + anon_sym_GT_GT, + ACTIONS(3999), 1, + anon_sym_AMP, + ACTIONS(4001), 1, + anon_sym_CARET, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4011), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - STATE(1827), 2, + ACTIONS(3987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 11, + ACTIONS(4013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [37783] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(4104), 1, + anon_sym_LT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + STATE(1657), 1, + sym_type_arguments, + STATE(1918), 1, + sym_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3266), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3503), 18, + anon_sym_DASH_DASH, + ACTIONS(3268), 23, 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, @@ -137946,522 +140691,589 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34350] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [37851] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3019), 1, + anon_sym_COLON, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4181), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3803), 2, + STATE(4238), 1, + sym_type_annotation, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3522), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [34462] = 5, + [37969] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4061), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3785), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4099), 1, anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3789), 23, + ACTIONS(3677), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_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_BQUOTE, - anon_sym_satisfies, - [34518] = 26, + [38051] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3823), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3991), 1, + anon_sym_AMP_AMP, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3835), 1, + ACTIONS(4003), 1, + anon_sym_PIPE, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - STATE(3494), 1, + ACTIONS(4011), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3803), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 10, + ACTIONS(3677), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [34616] = 25, + [38153] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3019), 1, + anon_sym_COLON, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3823), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3835), 1, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - STATE(3494), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4183), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3803), 2, + STATE(4275), 1, + sym_type_annotation, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 11, - sym__automatic_semicolon, + [38271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4185), 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_DASH_DASH, + ACTIONS(4187), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [34712] = 24, + anon_sym_implements, + [38323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3835), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3738), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4189), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3736), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 11, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(3740), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + 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_BQUOTE, anon_sym_satisfies, - [34806] = 18, + [38379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3835), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(4044), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(4192), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3833), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 18, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4194), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [34888] = 28, + anon_sym_implements, + [38431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, + ACTIONS(4192), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 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, + anon_sym_DASH_DASH, + ACTIONS(4194), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3819), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 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, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 9, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4194), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [34990] = 7, + anon_sym_implements, + [38535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, - anon_sym_LT, - ACTIONS(4064), 1, - anon_sym_DOT, - ACTIONS(4066), 1, - anon_sym_is, - STATE(1659), 1, - sym_type_arguments, - ACTIONS(3272), 13, + ACTIONS(4196), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2990), 27, - sym__automatic_semicolon, + ACTIONS(4198), 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_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, @@ -138479,26 +141291,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [35050] = 3, + anon_sym_implements, + [38587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 14, + ACTIONS(4192), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4070), 30, + ACTIONS(4194), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138529,38 +141341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35102] = 6, + [38639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, - anon_sym_extends, - ACTIONS(4072), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4075), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(4200), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2940), 27, + ACTIONS(4202), 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, @@ -138581,111 +141390,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35160] = 27, + [38691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, + ACTIONS(4204), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3823), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3827), 1, anon_sym_AMP, - ACTIONS(3829), 1, - anon_sym_CARET, - ACTIONS(3831), 1, anon_sym_PIPE, - ACTIONS(3835), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 10, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4206), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [35260] = 6, + anon_sym_implements, + [38743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(4208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2940), 27, + ACTIONS(4210), 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, @@ -138706,235 +141488,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35318] = 3, + [38795] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(4007), 1, + anon_sym_PERCENT, + ACTIONS(4009), 1, + anon_sym_STAR_STAR, + ACTIONS(4174), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3987), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1586), 30, + ACTIONS(3677), 18, 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_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [35370] = 33, + [38877] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, - anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4011), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3675), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3660), 4, + ACTIONS(3677), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [35482] = 36, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [38971] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4084), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4011), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - STATE(4220), 1, - sym_type_annotation, - ACTIONS(3520), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35600] = 3, + ACTIONS(3677), 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, + [39067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 14, + ACTIONS(4212), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3895), 30, + ACTIONS(3796), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138965,25 +141742,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35652] = 3, + [39119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 14, + ACTIONS(1355), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4214), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1353), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + ACTIONS(1357), 23, + 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_BQUOTE, + anon_sym_satisfies, + [39175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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_DASH_DASH, - ACTIONS(4088), 30, + ACTIONS(3798), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139014,25 +141842,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35704] = 3, + [39227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 14, + ACTIONS(4219), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4092), 30, + ACTIONS(4221), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139063,105 +141891,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35756] = 34, + [39279] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3995), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3999), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4001), 1, anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4011), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3906), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4094), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35870] = 3, + ACTIONS(3677), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [39377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1604), 14, + ACTIONS(4223), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1606), 30, + ACTIONS(3800), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139192,25 +142012,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35922] = 3, + [39429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 14, + ACTIONS(4225), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1500), 30, + ACTIONS(4227), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139241,56 +142061,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35974] = 17, + [39481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(4229), 1, + sym__automatic_semicolon, + ACTIONS(1549), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 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, + anon_sym_DASH_DASH, + ACTIONS(1547), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3847), 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, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4096), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 11, + anon_sym_PIPE_RBRACE, + [39535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 18, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(1597), 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_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, @@ -139304,95 +142156,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36054] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39587] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, + ACTIONS(4007), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(3959), 1, - anon_sym_AMP_AMP, - ACTIONS(3961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, - anon_sym_AMP, - ACTIONS(3965), 1, - anon_sym_CARET, - ACTIONS(3967), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4174), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3951), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3973), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3613), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [36166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 14, - anon_sym_STAR, + ACTIONS(3675), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -139400,68 +142204,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3676), 30, + ACTIONS(3677), 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_satisfies, + [39667] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, + anon_sym_AMP_AMP, + ACTIONS(3882), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3888), 1, + anon_sym_AMP, + ACTIONS(3890), 1, + anon_sym_CARET, + ACTIONS(3892), 1, + anon_sym_PIPE, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, anon_sym_satisfies, - anon_sym_implements, - [36218] = 3, + ACTIONS(3916), 1, + sym__ternary_qmark, + ACTIONS(4075), 1, + anon_sym_RBRACE, + ACTIONS(4169), 1, + anon_sym_COMMA, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3682), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 14, + ACTIONS(4231), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1445), 30, - sym__automatic_semicolon, + ACTIONS(4233), 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, @@ -139480,26 +142352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [36270] = 3, + anon_sym_implements, + [39835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4103), 30, + ACTIONS(2933), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139530,186 +142402,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36322] = 35, + [39887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(4109), 1, - anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_AMP_AMP, - ACTIONS(4117), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, - anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(4009), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - STATE(2815), 1, + ACTIONS(4174), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3429), 1, - aux_sym_extends_clause_repeat1, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4107), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4135), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1612), 14, + ACTIONS(3675), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1610), 30, + ACTIONS(3677), 17, 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_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [36490] = 20, + [39969] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3825), 2, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 7, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3675), 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(3680), 16, + ACTIONS(3677), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139719,93 +142530,115 @@ 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, - [36576] = 4, + [40059] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 1, - sym__automatic_semicolon, - ACTIONS(1397), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3675), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, + anon_sym_AMP_AMP, + ACTIONS(3882), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3884), 1, anon_sym_GT_GT, + ACTIONS(3888), 1, anon_sym_AMP, + ACTIONS(3890), 1, + anon_sym_CARET, + ACTIONS(3892), 1, anon_sym_PIPE, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3874), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1395), 29, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 8, + 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_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [36630] = 3, + [40163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 14, + ACTIONS(1549), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4149), 30, + ACTIONS(1547), 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, @@ -139824,88 +142657,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36682] = 3, + anon_sym_PIPE_RBRACE, + [40215] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3884), 1, + anon_sym_GT_GT, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3866), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3874), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3886), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4153), 30, + ACTIONS(3906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 11, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [40309] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3272), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36734] = 3, + ACTIONS(4235), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [40421] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4237), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4157), 30, + ACTIONS(3625), 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, @@ -139919,903 +142864,799 @@ 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_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36786] = 33, + [40494] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3826), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3794), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3631), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [36898] = 33, + [40605] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3826), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3796), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3733), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37010] = 33, + [40716] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3826), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3798), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3660), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37122] = 3, + [40827] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4161), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3272), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3828), 1, anon_sym_AMP_AMP, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, + anon_sym_AMP, + ACTIONS(3838), 1, anon_sym_CARET, + ACTIONS(3840), 1, + anon_sym_PIPE, + ACTIONS(3844), 1, anon_sym_PERCENT, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 14, + ACTIONS(3858), 1, + sym__ternary_qmark, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3820), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3826), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4165), 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, + ACTIONS(3834), 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(3842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3800), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37226] = 33, + [40938] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3767), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37338] = 33, + ACTIONS(3677), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [41041] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3826), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3812), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3751), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37450] = 15, + [41152] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3837), 1, - anon_sym_STAR_STAR, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4044), 1, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 12, + ACTIONS(4242), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4268), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3675), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 19, - sym__automatic_semicolon, + ACTIONS(3677), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [37526] = 33, + [41241] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4274), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + STATE(3699), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3666), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37638] = 33, + [41356] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3961), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4276), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + STATE(3649), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3801), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37750] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(4169), 1, - anon_sym_async, - ACTIONS(4171), 1, - anon_sym_static, - ACTIONS(4173), 1, - anon_sym_readonly, - ACTIONS(4179), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - ACTIONS(242), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2917), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4175), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4177), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3808), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4070), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4167), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [37840] = 33, + [41471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3959), 1, - anon_sym_AMP_AMP, - ACTIONS(3961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, - anon_sym_AMP, - ACTIONS(3965), 1, - anon_sym_CARET, - ACTIONS(3967), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4278), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3951), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3971), 2, + 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(3973), 2, + ACTIONS(3677), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3969), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3676), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37952] = 15, + [41552] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3955), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4181), 1, + ACTIONS(4278), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1827), 2, + ACTIONS(4242), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 12, - anon_sym_STAR, + ACTIONS(3675), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -140823,19 +143664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 19, - sym__automatic_semicolon, + ACTIONS(3677), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140843,744 +143682,663 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [38028] = 3, + [41631] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(4281), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1445), 30, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38080] = 33, + [41706] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, - anon_sym_AMP_AMP, - ACTIONS(3961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3967), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3723), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [38192] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3677), 9, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(3961), 1, anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, - anon_sym_AMP, - ACTIONS(3965), 1, - anon_sym_CARET, - ACTIONS(3967), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, anon_sym_QMARK_QMARK, - ACTIONS(3977), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3951), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3973), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3969), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3721), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [38304] = 29, + anon_sym_satisfies, + [41803] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3953), 1, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3959), 1, - anon_sym_AMP_AMP, - ACTIONS(3961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3963), 1, - anon_sym_AMP, - ACTIONS(3965), 1, - anon_sym_CARET, - ACTIONS(3967), 1, - anon_sym_PIPE, - STATE(3494), 1, + ACTIONS(4266), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 8, - sym__automatic_semicolon, + ACTIONS(3677), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [38408] = 33, + [41898] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3748), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3676), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + [42009] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, + anon_sym_STAR, + ACTIONS(4286), 1, anon_sym_RBRACE, - anon_sym_SEMI, - [38520] = 22, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1626), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [42104] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3953), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(4266), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - STATE(1827), 2, + ACTIONS(4270), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4272), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3678), 5, + ACTIONS(3675), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3680), 13, - sym__automatic_semicolon, + ACTIONS(4268), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [38610] = 3, + [42197] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4184), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4186), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3272), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3459), 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(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4262), 1, anon_sym_PERCENT, + ACTIONS(4264), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [38662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4188), 14, + ACTIONS(4278), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4242), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4260), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4190), 30, + ACTIONS(3677), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38714] = 33, + [42278] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4266), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3666), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [38826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4194), 30, + ACTIONS(3677), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38878] = 3, + [42379] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4198), 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, + ACTIONS(3150), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [38930] = 5, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, + anon_sym_STAR, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + ACTIONS(4304), 1, + anon_sym_RBRACE, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1550), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [42474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4200), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1399), 14, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(4306), 1, + anon_sym_DOT, + STATE(1764), 1, + sym_arguments, + ACTIONS(3310), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 23, + ACTIONS(3312), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141598,38 +144356,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [38986] = 4, + anon_sym_extends, + [42531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym__automatic_semicolon, - ACTIONS(1486), 14, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(4308), 1, + anon_sym_DOT, + STATE(1765), 1, + sym_arguments, + ACTIONS(3322), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1484), 29, + ACTIONS(3324), 26, + 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, @@ -141647,38 +144407,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39040] = 3, + anon_sym_extends, + [42588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 14, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(4310), 1, + anon_sym_DOT, + STATE(1766), 1, + sym_arguments, + ACTIONS(2988), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4207), 30, + ACTIONS(2984), 26, + 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, @@ -141696,259 +144458,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39092] = 27, + anon_sym_extends, + [42645] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3963), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - STATE(3494), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 10, - sym__automatic_semicolon, + ACTIONS(3677), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [39192] = 3, + [42744] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4211), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3272), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39244] = 28, + ACTIONS(4312), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [42855] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3959), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3963), 1, + ACTIONS(3830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3965), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3967), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - STATE(3494), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(3856), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3858), 1, + sym__ternary_qmark, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3826), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3806), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 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, - [39346] = 18, + [42966] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, + anon_sym_STAR, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + ACTIONS(4314), 1, + anon_sym_RBRACE, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1563), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [43061] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3953), 1, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4181), 1, + ACTIONS(4266), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3951), 2, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 8, + ACTIONS(3675), 7, 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(3680), 18, - sym__automatic_semicolon, + ACTIONS(3677), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141957,943 +144822,1054 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [39428] = 24, + [43146] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(3828), 1, + anon_sym_AMP_AMP, + ACTIONS(3830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(3953), 1, + ACTIONS(3836), 1, + anon_sym_AMP, + ACTIONS(3838), 1, + anon_sym_CARET, + ACTIONS(3840), 1, + anon_sym_PIPE, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3826), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3969), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 11, - sym__automatic_semicolon, + ACTIONS(3677), 7, 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_QMARK_QMARK, anon_sym_satisfies, - [39522] = 25, + anon_sym_implements, + [43249] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3953), 1, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3963), 1, - anon_sym_AMP, - STATE(3494), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(4316), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3576), 1, + aux_sym_array_repeat1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3943), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 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, - [39618] = 3, + [43364] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4278), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1484), 30, - sym__automatic_semicolon, + ACTIONS(3677), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39670] = 5, + [43439] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4213), 5, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3908), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3912), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [39726] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3945), 1, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_GT_GT, - ACTIONS(3953), 1, - anon_sym_PERCENT, - ACTIONS(3955), 1, - anon_sym_STAR_STAR, - ACTIONS(3963), 1, - anon_sym_AMP, - ACTIONS(3965), 1, - anon_sym_CARET, - STATE(3494), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(4318), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3943), 2, + STATE(3688), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3949), 2, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3951), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3971), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3973), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3969), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [39824] = 3, + [43554] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1514), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, anon_sym_AMP_AMP, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4256), 1, anon_sym_CARET, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, anon_sym_PERCENT, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4322), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4242), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4270), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3673), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39876] = 18, + [43665] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3955), 1, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4256), 1, + anon_sym_CARET, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4181), 1, + ACTIONS(4266), 1, anon_sym_LT, - STATE(3494), 1, + ACTIONS(4320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4322), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(4242), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3680), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4252), 2, 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, - [39958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4216), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3613), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4272), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3748), 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, + ACTIONS(4268), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [40010] = 17, + [43776] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3953), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4256), 1, + anon_sym_CARET, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3955), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4181), 1, + ACTIONS(4266), 1, anon_sym_LT, - STATE(3494), 1, + ACTIONS(4320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4322), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3943), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 10, - anon_sym_BANG, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3667), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [40090] = 4, + [43887] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 1, - anon_sym_is, - ACTIONS(3306), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3308), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - anon_sym_extends, - [40143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1383), 14, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1381), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4112), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + [43998] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, anon_sym_AMP_AMP, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4256), 1, anon_sym_CARET, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, anon_sym_PERCENT, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [40194] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4220), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3785), 14, + ACTIONS(4322), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4242), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4244), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3789), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3519), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [40249] = 33, + [44109] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4115), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3723), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, + ACTIONS(3682), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40360] = 17, + [44220] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4226), 1, - anon_sym_LT, - ACTIONS(4229), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4256), 1, + anon_sym_CARET, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4322), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 10, - anon_sym_BANG, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 17, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4272), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3453), 3, 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, + ACTIONS(4268), 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, - [40439] = 7, + [44331] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 1, + ACTIONS(4327), 1, + anon_sym_STAR, + ACTIONS(4330), 1, + anon_sym_RBRACE, + ACTIONS(4332), 1, anon_sym_LBRACK, - ACTIONS(3497), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3794), 3, - anon_sym_GT, + ACTIONS(4335), 1, + anon_sym_async, + ACTIONS(4338), 1, + anon_sym_DASH, + ACTIONS(4341), 1, + anon_sym_DQUOTE, + ACTIONS(4344), 1, + anon_sym_SQUOTE, + ACTIONS(4350), 1, + anon_sym_AT, + ACTIONS(4353), 1, + anon_sym_static, + ACTIONS(4356), 1, + anon_sym_readonly, + ACTIONS(4362), 1, + anon_sym_declare, + ACTIONS(4368), 1, + anon_sym_override, + ACTIONS(4371), 1, + anon_sym_abstract, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4359), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4365), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1563), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4324), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [44426] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, anon_sym_AMP, + ACTIONS(4256), 1, + anon_sym_CARET, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3785), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, anon_sym_LT, + ACTIONS(4320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4322), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4242), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3789), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4272), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3800), 3, 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, + ACTIONS(4268), 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_BQUOTE, - anon_sym_satisfies, - [40498] = 25, + [44537] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4233), 1, + ACTIONS(4284), 1, anon_sym_STAR, - ACTIONS(4235), 1, - anon_sym_RBRACE, - ACTIONS(4237), 1, + ACTIONS(4288), 1, anon_sym_async, - ACTIONS(4241), 1, + ACTIONS(4292), 1, anon_sym_AT, - ACTIONS(4243), 1, + ACTIONS(4294), 1, anon_sym_static, - ACTIONS(4245), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4249), 1, + ACTIONS(4300), 1, anon_sym_declare, - ACTIONS(4251), 1, + ACTIONS(4302), 1, anon_sym_abstract, - STATE(2206), 1, + ACTIONS(4374), 1, + anon_sym_RBRACE, + STATE(2228), 1, sym_method_definition, - STATE(2250), 1, + STATE(2247), 1, sym_accessibility_modifier, - STATE(2284), 1, + STATE(2292), 1, sym_override_modifier, - STATE(3522), 1, + STATE(3556), 1, sym_method_signature, - ACTIONS(4239), 2, + ACTIONS(4290), 2, sym_number, sym_private_property_identifier, - ACTIONS(4247), 2, + ACTIONS(4298), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1520), 3, + STATE(1566), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2433), 3, + STATE(2469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3586), 3, + STATE(3692), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142904,66 +145880,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [40593] = 25, + [44632] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4233), 1, + ACTIONS(4284), 1, anon_sym_STAR, - ACTIONS(4237), 1, + ACTIONS(4288), 1, anon_sym_async, - ACTIONS(4241), 1, + ACTIONS(4292), 1, anon_sym_AT, - ACTIONS(4243), 1, + ACTIONS(4294), 1, anon_sym_static, - ACTIONS(4245), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4249), 1, + ACTIONS(4300), 1, anon_sym_declare, - ACTIONS(4251), 1, + ACTIONS(4302), 1, anon_sym_abstract, - ACTIONS(4253), 1, + ACTIONS(4376), 1, anon_sym_RBRACE, - STATE(2206), 1, + STATE(2228), 1, sym_method_definition, - STATE(2250), 1, + STATE(2247), 1, sym_accessibility_modifier, - STATE(2284), 1, + STATE(2292), 1, sym_override_modifier, - STATE(3522), 1, + STATE(3556), 1, sym_method_signature, - ACTIONS(4239), 2, + ACTIONS(4290), 2, sym_number, sym_private_property_identifier, - ACTIONS(4247), 2, + ACTIONS(4298), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1552), 3, + STATE(1563), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2433), 3, + STATE(2469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3586), 3, + STATE(3692), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142974,530 +145950,486 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [40688] = 35, + [44727] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(4255), 1, + ACTIONS(4378), 1, anon_sym_RPAREN, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(3618), 1, + STATE(3645), 1, aux_sym_array_repeat1, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40803] = 33, + [44842] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3723), 3, + ACTIONS(3798), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4277), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40914] = 33, + [44953] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, + anon_sym_STAR, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_RBRACE, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1616), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [45048] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4240), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3721), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_LT, - ACTIONS(4064), 1, - anon_sym_DOT, - STATE(1659), 1, - sym_type_arguments, - ACTIONS(3272), 13, - anon_sym_STAR, + ACTIONS(3675), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2990), 27, - sym__automatic_semicolon, + ACTIONS(3677), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41082] = 34, + anon_sym_implements, + [45137] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(3494), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3691), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3803), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_LT, - STATE(1653), 1, - sym_type_arguments, - ACTIONS(3306), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3308), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3796), 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_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [41250] = 35, + [45248] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4289), 1, - anon_sym_RPAREN, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(3776), 1, - aux_sym_array_repeat1, - ACTIONS(3520), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3812), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41365] = 5, + [45359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 2, - anon_sym_EQ, + ACTIONS(3047), 1, anon_sym_QMARK, - ACTIONS(4291), 5, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(3062), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1399), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -143520,959 +146452,719 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [41420] = 33, + [45416] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4293), 3, + ACTIONS(4112), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [41531] = 12, + anon_sym_SEMI, + [45527] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(4295), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3586), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1622), 1, 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_satisfies, - anon_sym_implements, - [41600] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, + ACTIONS(4382), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4105), 2, + STATE(3799), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3522), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41711] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4298), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1552), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [41806] = 35, + [45642] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(4300), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4384), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(3790), 1, + STATE(3688), 1, aux_sym_array_repeat1, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41921] = 33, + [45757] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4115), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3721), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, + ACTIONS(3806), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42032] = 33, + [45868] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, - anon_sym_AMP_AMP, - ACTIONS(4117), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3632), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3745), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4125), 1, - anon_sym_CARET, - ACTIONS(4127), 1, anon_sym_PIPE, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3736), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_DASH_DASH, + ACTIONS(3740), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3801), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42143] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [45927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(3754), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(1981), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3757), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(1353), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, + anon_sym_DASH_DASH, + ACTIONS(1357), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4277), 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42254] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [45986] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4386), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + anon_sym_DASH_DASH, + ACTIONS(3523), 20, + 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, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3631), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42365] = 33, + anon_sym_PLUS_PLUS, + anon_sym_satisfies, + anon_sym_implements, + [46055] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4389), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, + ACTIONS(3625), 19, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4277), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42476] = 33, + anon_sym_satisfies, + [46128] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4392), 1, + anon_sym_COMMA, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + ACTIONS(4394), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3666), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42587] = 33, + [46241] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1981), 1, + anon_sym_extends, + ACTIONS(3754), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3757), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(1353), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3676), 3, + anon_sym_DASH_DASH, + ACTIONS(1357), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, + 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, - [42698] = 15, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46300] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4226), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4396), 1, anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 12, + ACTIONS(3532), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3680), 18, + ACTIONS(3534), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, @@ -144482,565 +147174,623 @@ 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_satisfies, - [42773] = 20, + [46379] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4229), 1, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(3481), 1, anon_sym_LT, - ACTIONS(4265), 1, - anon_sym_GT_GT, - STATE(3535), 1, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(4399), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + STATE(3715), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4267), 2, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [42858] = 34, + [46494] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(4287), 1, + ACTIONS(4392), 1, anon_sym_COMMA, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4302), 2, + ACTIONS(4401), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42971] = 27, + [46607] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4265), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - STATE(3535), 1, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4403), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43070] = 28, + [46718] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3882), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - STATE(3535), 1, + ACTIONS(3896), 1, + anon_sym_PERCENT, + ACTIONS(3898), 1, + anon_sym_STAR_STAR, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, + sym__ternary_qmark, + ACTIONS(4392), 1, + anon_sym_COMMA, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + ACTIONS(4405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43171] = 18, + [46831] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3012), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4226), 1, - anon_sym_LT, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3702), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2929), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 17, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - 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_BQUOTE, anon_sym_satisfies, - [43252] = 33, + [46890] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3794), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4304), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43363] = 29, + [47001] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3632), 1, + anon_sym_extends, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4115), 1, - anon_sym_AMP_AMP, - ACTIONS(4117), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3745), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4125), 1, - anon_sym_CARET, - ACTIONS(4127), 1, anon_sym_PIPE, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3736), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4135), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 7, + anon_sym_DASH_DASH, + ACTIONS(3740), 25, + 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43466] = 17, + [47060] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, + anon_sym_STAR, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + ACTIONS(4407), 1, + anon_sym_RBRACE, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1563), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [47155] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4306), 1, + ACTIONS(4409), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 11, + ACTIONS(3521), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3503), 17, + anon_sym_DASH_DASH, + ACTIONS(3523), 20, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -145054,13 +147804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [43545] = 6, + anon_sym_PLUS_PLUS, + anon_sym_satisfies, + [47224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 1, + ACTIONS(3012), 1, anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(3047), 1, anon_sym_QMARK, ACTIONS(3044), 5, anon_sym_COMMA, @@ -145068,22 +147819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2936), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145106,48 +147857,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [43602] = 14, + [47281] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4309), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4412), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3472), 12, + ACTIONS(3532), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3474), 19, + ACTIONS(3534), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -145163,786 +147918,800 @@ 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, - [43675] = 25, + [47360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 1, - anon_sym_STAR, - ACTIONS(4318), 1, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(3042), 1, + anon_sym_QMARK, + ACTIONS(3038), 5, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4320), 1, - anon_sym_LBRACK, - ACTIONS(4323), 1, - anon_sym_async, - ACTIONS(4326), 1, - anon_sym_DASH, - ACTIONS(4329), 1, - anon_sym_DQUOTE, - ACTIONS(4332), 1, - anon_sym_SQUOTE, - ACTIONS(4338), 1, - anon_sym_AT, - ACTIONS(4341), 1, - anon_sym_static, - ACTIONS(4344), 1, - anon_sym_readonly, - ACTIONS(4350), 1, - anon_sym_declare, - ACTIONS(4356), 1, - anon_sym_override, - ACTIONS(4359), 1, - anon_sym_abstract, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4335), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4347), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4353), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1552), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4312), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [43770] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4265), 1, - anon_sym_GT_GT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2929), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 10, + anon_sym_DASH_DASH, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [43863] = 25, + [47417] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4229), 1, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(3481), 1, anon_sym_LT, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - STATE(3535), 1, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(4415), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4224), 2, + STATE(3757), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 10, + [47532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 1, + anon_sym_is, + ACTIONS(3286), 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_DASH_DASH, + ACTIONS(3288), 28, + sym__automatic_semicolon, 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_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [43958] = 26, + anon_sym_extends, + [47585] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4281), 1, anon_sym_LT, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4224), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3677), 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(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3680), 9, + anon_sym_implements, + [47666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4106), 1, + anon_sym_is, + ACTIONS(3318), 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_DASH_DASH, + ACTIONS(3320), 28, + sym__automatic_semicolon, 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, - [44055] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3751), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44166] = 34, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [47719] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(3821), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(3831), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(3835), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3853), 1, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(4287), 1, + ACTIONS(4392), 1, anon_sym_COMMA, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3803), 2, + ACTIONS(3690), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3811), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3833), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4362), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [44279] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 25, - 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_AMP_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(3902), 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_BQUOTE, - anon_sym_satisfies, - [44338] = 22, + [47832] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4119), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(4131), 1, + ACTIONS(3836), 1, + anon_sym_AMP, + ACTIONS(3838), 1, + anon_sym_CARET, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4222), 1, + ACTIONS(4240), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, + ACTIONS(3852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3854), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4135), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3678), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3680), 12, + ACTIONS(3677), 9, 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, - [44427] = 18, + [47929] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4226), 1, - anon_sym_LT, - ACTIONS(4231), 1, + ACTIONS(3828), 1, + anon_sym_AMP_AMP, + ACTIONS(3830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, + anon_sym_AMP, + ACTIONS(3838), 1, + anon_sym_CARET, + ACTIONS(3840), 1, + anon_sym_PIPE, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(3848), 1, + anon_sym_LT, + ACTIONS(3856), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3858), 1, + sym__ternary_qmark, + STATE(2849), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(3820), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3834), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 16, - sym__ternary_qmark, - 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(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3850), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44508] = 22, + ACTIONS(4419), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [48040] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4229), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3836), 1, + anon_sym_AMP, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4240), 1, anon_sym_LT, - ACTIONS(4265), 1, - anon_sym_GT_GT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, + ACTIONS(3852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3854), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3678), 5, - anon_sym_BANG, + ACTIONS(3677), 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, + [48135] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3863), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2929), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 12, + anon_sym_DASH_DASH, + ACTIONS(2933), 25, 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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [44597] = 18, + [48194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(1355), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4421), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1353), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 16, + anon_sym_DASH_DASH, + ACTIONS(1357), 22, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [44678] = 4, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [48249] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_is, - ACTIONS(3396), 14, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, + anon_sym_STAR, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + ACTIONS(4423), 1, + anon_sym_RBRACE, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1592), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [48344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3920), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4425), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3918), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3398), 28, - sym__automatic_semicolon, + ACTIONS(3922), 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, @@ -145962,188 +148731,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [44731] = 29, + [48399] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4229), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4240), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(3675), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 7, + ACTIONS(3677), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [44834] = 33, + anon_sym_implements, + [48492] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(4281), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3820), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3842), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 8, anon_sym_BANG, - ACTIONS(3510), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3677), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(4115), 1, + anon_sym_implements, + [48573] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3682), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, + ACTIONS(3882), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, + ACTIONS(3884), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3888), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(3890), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(3892), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(3896), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3898), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + ACTIONS(3900), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(3916), 1, sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3874), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3886), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(3904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(3906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + ACTIONS(4172), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3676), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, + ACTIONS(3902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44945] = 6, + [48686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3738), 2, anon_sym_EQ, - ACTIONS(3032), 1, anon_sym_QMARK, - ACTIONS(3028), 5, + ACTIONS(4427), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2936), 14, + ACTIONS(3736), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(3740), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146166,257 +148992,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [45002] = 33, + [48741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(1385), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 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, + anon_sym_DASH_DASH, + ACTIONS(1383), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3819), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3821), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, + anon_sym_extends, + anon_sym_is, + [48792] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3745), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4429), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3632), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3736), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, + anon_sym_DASH_DASH, + ACTIONS(3740), 21, + 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(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4053), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [45113] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [48853] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4115), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - ACTIONS(4222), 1, + ACTIONS(4240), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3767), 3, + ACTIONS(3453), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4135), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45224] = 17, + [48964] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(2663), 1, + anon_sym_DASH, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4284), 1, anon_sym_STAR, - anon_sym_SLASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [45303] = 6, + ACTIONS(4288), 1, + anon_sym_async, + ACTIONS(4292), 1, + anon_sym_AT, + ACTIONS(4294), 1, + anon_sym_static, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4300), 1, + anon_sym_declare, + ACTIONS(4302), 1, + anon_sym_abstract, + ACTIONS(4433), 1, + anon_sym_RBRACE, + STATE(2228), 1, + sym_method_definition, + STATE(2247), 1, + sym_accessibility_modifier, + STATE(2292), 1, + sym_override_modifier, + STATE(3556), 1, + sym_method_signature, + ACTIONS(4290), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4298), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1563), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3692), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [49059] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(1355), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_QMARK, - ACTIONS(3037), 5, + ACTIONS(3754), 1, + anon_sym_LBRACK, + ACTIONS(3757), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4435), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2936), 14, + ACTIONS(1981), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(1357), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -146435,865 +149294,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [45360] = 33, + [49120] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(3844), 1, + anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_STAR_STAR, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3801), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, + ACTIONS(3682), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45471] = 33, + [49231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(4102), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4104), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, + STATE(1800), 1, sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3280), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3751), 3, + anon_sym_DASH_DASH, + ACTIONS(3008), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45582] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 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(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3767), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45693] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [49288] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4439), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + STATE(3742), 1, + aux_sym_array_repeat1, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3733), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45804] = 26, + [49403] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4119), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(3828), 1, + anon_sym_AMP_AMP, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(4131), 1, + ACTIONS(3840), 1, + anon_sym_PIPE, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4222), 1, + ACTIONS(4240), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4105), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4135), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 9, + ACTIONS(3677), 8, 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, - [45901] = 25, + [49504] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4119), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(4131), 1, + ACTIONS(3838), 1, + anon_sym_CARET, + ACTIONS(3840), 1, + anon_sym_PIPE, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4222), 1, + ACTIONS(4240), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4105), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4135), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 10, + ACTIONS(3677), 9, 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, - [45996] = 35, + [49603] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(4367), 1, - anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(3751), 1, - aux_sym_array_repeat1, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46111] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4369), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1552), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46206] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4115), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - ACTIONS(4222), 1, + ACTIONS(4240), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3733), 3, + ACTIONS(3519), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4135), 3, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46317] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4371), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1605), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46412] = 14, + [49714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4373), 1, + ACTIONS(4104), 1, anon_sym_LT, - STATE(3535), 1, + STATE(1784), 1, sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3472), 12, + ACTIONS(3286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3474), 19, + anon_sym_DASH_DASH, + ACTIONS(3288), 28, + sym__automatic_semicolon, 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, - anon_sym_satisfies, - [46485] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 17, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147307,201 +149772,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46564] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [49769] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, + ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4240), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3522), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46675] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(4379), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3584), 13, - anon_sym_STAR, + ACTIONS(3675), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3586), 20, + ACTIONS(3677), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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_satisfies, - [46744] = 25, + anon_sym_implements, + [49854] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2693), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4233), 1, + ACTIONS(4284), 1, anon_sym_STAR, - ACTIONS(4237), 1, + ACTIONS(4288), 1, anon_sym_async, - ACTIONS(4241), 1, + ACTIONS(4292), 1, anon_sym_AT, - ACTIONS(4243), 1, + ACTIONS(4294), 1, anon_sym_static, - ACTIONS(4245), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4249), 1, + ACTIONS(4300), 1, anon_sym_declare, - ACTIONS(4251), 1, + ACTIONS(4302), 1, anon_sym_abstract, - ACTIONS(4382), 1, + ACTIONS(4441), 1, anon_sym_RBRACE, - STATE(2206), 1, + STATE(2228), 1, sym_method_definition, - STATE(2250), 1, + STATE(2247), 1, sym_accessibility_modifier, - STATE(2284), 1, + STATE(2292), 1, sym_override_modifier, - STATE(3522), 1, + STATE(3556), 1, sym_method_signature, - ACTIONS(4239), 2, + ACTIONS(4290), 2, sym_number, sym_private_property_identifier, - ACTIONS(4247), 2, + ACTIONS(4298), 2, anon_sym_get, anon_sym_set, - ACTIONS(3150), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1578), 3, + STATE(1563), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2433), 3, + STATE(2469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3586), 3, + STATE(3692), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -147512,100 +149911,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [46839] = 33, + [49949] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4281), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4053), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [46950] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(4384), 1, - anon_sym_DOT, - STATE(1632), 1, - sym_arguments, - ACTIONS(2996), 14, - anon_sym_STAR, + ACTIONS(3675), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -147613,297 +149955,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2992), 26, - sym__automatic_semicolon, + ACTIONS(3677), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [47007] = 35, + anon_sym_implements, + [50028] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - ACTIONS(4386), 1, - anon_sym_RBRACK, - STATE(3535), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3553), 1, - aux_sym_array_repeat1, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3673), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47122] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4388), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1532), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [47217] = 35, + [50139] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3828), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3830), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3832), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3836), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3838), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3840), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3844), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3846), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3856), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3858), 1, sym__ternary_qmark, - ACTIONS(4390), 1, - anon_sym_RBRACK, - STATE(3535), 1, + ACTIONS(4240), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(3647), 1, - aux_sym_array_repeat1, - ACTIONS(3520), 2, + ACTIONS(3820), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3826), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3854), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3667), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3850), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47332] = 6, + [50250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(4392), 1, - anon_sym_DOT, - STATE(1631), 1, - sym_arguments, - ACTIONS(3282), 14, + ACTIONS(3597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3284), 26, + ACTIONS(3599), 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, @@ -147922,39 +150176,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [47389] = 6, + [50300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(4394), 1, - anon_sym_DOT, - STATE(1630), 1, - sym_arguments, - ACTIONS(3390), 14, + ACTIONS(3597), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3392), 26, + ACTIONS(3599), 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, @@ -147973,655 +150223,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [47446] = 35, + [50350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3692), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3536), 1, anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(4396), 1, - anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(3713), 1, - aux_sym_array_repeat1, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47561] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(3694), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - STATE(2894), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4398), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [47672] = 35, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3597), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3536), 1, anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(4400), 1, - anon_sym_RBRACK, - STATE(3535), 1, - sym_type_arguments, - STATE(3553), 1, - aux_sym_array_repeat1, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47787] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(3599), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3613), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47898] = 18, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3565), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 17, + anon_sym_DASH_DASH, + ACTIONS(3567), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [47979] = 33, + anon_sym_extends, + [50500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3692), 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_DASH_DASH, + ACTIONS(3694), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3631), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48090] = 34, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3631), 1, - anon_sym_COMMA, - ACTIONS(3805), 1, + ACTIONS(3692), 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_DASH_DASH, + ACTIONS(3694), 28, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3819), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3821), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, + anon_sym_extends, + [50600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3704), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3841), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3843), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 2, + anon_sym_DASH_DASH, + ACTIONS(3706), 28, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48203] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48314] = 8, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 1, - anon_sym_LBRACK, - ACTIONS(3794), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4402), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3497), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3785), 12, + ACTIONS(3708), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 21, + ACTIONS(3710), 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, @@ -148640,41 +150551,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48375] = 8, + anon_sym_extends, + [50700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_LBRACK, - ACTIONS(3760), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4406), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1987), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1399), 12, + ACTIONS(3724), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 21, + ACTIONS(3726), 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, @@ -148693,40 +150598,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48436] = 7, + anon_sym_extends, + [50750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_extends, - ACTIONS(3757), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3760), 3, - anon_sym_GT, + ACTIONS(4166), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1399), 11, + ACTIONS(4163), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3530), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4083), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(1403), 25, - sym__automatic_semicolon, + ACTIONS(4085), 21, 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, @@ -148745,40 +150649,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48495] = 7, + [50806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_extends, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3794), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3785), 11, + ACTIONS(1991), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3789), 25, + ACTIONS(1989), 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, @@ -148797,418 +150695,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48554] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4410), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1552), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48649] = 28, + anon_sym_extends, + [50856] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4115), 1, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(4119), 1, + ACTIONS(4449), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4123), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4131), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4222), 1, + ACTIONS(4467), 1, anon_sym_LT, - STATE(3535), 1, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3519), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4129), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4135), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 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, - [48750] = 35, + [50966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(1616), 1, + ACTIONS(3565), 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_DASH_DASH, + ACTIONS(3567), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3262), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(4412), 1, - anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(3576), 1, - aux_sym_array_repeat1, - ACTIONS(3520), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48865] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(1616), 1, + anon_sym_DASH_DASH, + ACTIONS(3567), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3262), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(4414), 1, - anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(3686), 1, - aux_sym_array_repeat1, - ACTIONS(3520), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48980] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(3752), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4115), 1, anon_sym_AMP_AMP, - ACTIONS(4117), 1, anon_sym_PIPE_PIPE, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4141), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4143), 1, - sym__ternary_qmark, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3666), 3, - anon_sym_LBRACE, + anon_sym_DASH_DASH, + ACTIONS(3768), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4135), 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, - [49091] = 5, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4416), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3908), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3912), 22, + ACTIONS(3768), 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, @@ -149228,525 +151007,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49146] = 15, + anon_sym_extends, + [51216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 12, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 18, + anon_sym_DASH_DASH, + ACTIONS(3768), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49221] = 20, + anon_sym_extends, + [51266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3782), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 15, + anon_sym_DASH_DASH, + ACTIONS(3784), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [49306] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3815), 1, - anon_sym_LT, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3819), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3821), 1, anon_sym_PIPE_PIPE, - ACTIONS(3823), 1, - anon_sym_GT_GT, - ACTIONS(3827), 1, - anon_sym_AMP, - ACTIONS(3829), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3835), 1, anon_sym_PERCENT, - ACTIONS(3837), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(3853), 1, - sym__ternary_qmark, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3825), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3833), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3841), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3843), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3839), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49419] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4420), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1552), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49514] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(2693), 1, - anon_sym_DASH, - ACTIONS(3138), 1, - anon_sym_LBRACK, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_STAR, - ACTIONS(4237), 1, - anon_sym_async, - ACTIONS(4241), 1, - anon_sym_AT, - ACTIONS(4243), 1, - anon_sym_static, - ACTIONS(4245), 1, - anon_sym_readonly, - ACTIONS(4249), 1, - anon_sym_declare, - ACTIONS(4251), 1, - anon_sym_abstract, - ACTIONS(4422), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym_method_definition, - STATE(2250), 1, - sym_accessibility_modifier, - STATE(2284), 1, - sym_override_modifier, - STATE(3522), 1, - sym_method_signature, - ACTIONS(4239), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4247), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1614), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3586), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49609] = 24, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4131), 1, - anon_sym_PERCENT, - ACTIONS(4133), 1, - anon_sym_STAR_STAR, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, + ACTIONS(3782), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 10, + anon_sym_DASH_DASH, + ACTIONS(3784), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [49702] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4119), 1, - anon_sym_GT_GT, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4127), 1, - anon_sym_PIPE, - ACTIONS(4131), 1, anon_sym_PERCENT, - ACTIONS(4133), 1, anon_sym_STAR_STAR, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4105), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4121), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4129), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4137), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4135), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49801] = 7, + anon_sym_extends, + [51366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3670), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2936), 12, + ACTIONS(4483), 1, + sym_regex_flags, + ACTIONS(4479), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_instanceof, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + anon_sym_satisfies, + ACTIONS(4481), 24, 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, @@ -149761,44 +151195,36 @@ 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_BQUOTE, - anon_sym_satisfies, - [49860] = 7, + [51418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_LBRACK, - ACTIONS(1987), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3760), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1399), 11, + ACTIONS(3782), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(1403), 25, + ACTIONS(3784), 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, @@ -149817,25 +151243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49919] = 3, + anon_sym_extends, + [51468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 28, + ACTIONS(3772), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149864,25 +151291,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49969] = 3, + [51518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3783), 28, + ACTIONS(3772), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149911,89 +151338,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50019] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4434), 1, - anon_sym_readonly, - STATE(2279), 1, - sym_override_modifier, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [50103] = 3, + [51568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3658), 28, + ACTIONS(3772), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150022,29 +151385,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50153] = 6, + [51618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3656), 12, + ACTIONS(3802), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3658), 27, + ACTIONS(3804), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150072,36 +151431,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [50209] = 4, + anon_sym_extends, + [51668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_DOT, - ACTIONS(3649), 14, + ACTIONS(3872), 1, + anon_sym_LPAREN, + STATE(1838), 1, + sym_arguments, + ACTIONS(3645), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3651), 27, + ACTIONS(3647), 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, anon_sym_PIPE_PIPE, @@ -150119,35 +151481,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50261] = 3, + [51722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 14, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3860), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3702), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3647), 28, - sym__automatic_semicolon, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150166,35 +151531,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50311] = 5, + [51778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(2372), 1, - sym_arguments, - ACTIONS(2936), 14, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(3634), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 26, + ACTIONS(3636), 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, @@ -150216,25 +151579,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [50365] = 3, + anon_sym_extends, + [51832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 14, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3639), 28, + ACTIONS(3792), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150263,25 +151627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50415] = 3, + [51882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 14, + ACTIONS(3286), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3635), 28, + ACTIONS(3288), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150310,25 +151674,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50465] = 3, + [51932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 14, + ACTIONS(4489), 1, + anon_sym_LBRACK, + ACTIONS(3619), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3629), 28, + ACTIONS(3621), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150337,7 +151703,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, @@ -150357,25 +151722,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50515] = 3, + [51984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 14, + ACTIONS(3561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3625), 28, + ACTIONS(3563), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150404,25 +151769,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50565] = 3, + [52034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 14, + ACTIONS(1987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3617), 28, + ACTIONS(1985), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150451,38 +151816,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50615] = 9, + [52084] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, + ACTIONS(3320), 1, anon_sym_extends, - ACTIONS(3791), 1, + ACTIONS(3931), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4495), 1, anon_sym_RPAREN, - ACTIONS(3787), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3794), 2, + ACTIONS(3934), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4061), 2, + ACTIONS(4491), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4493), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3785), 12, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 21, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150504,26 +151869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [50677] = 3, + [52146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 14, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(4081), 1, + sym__automatic_semicolon, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1971), 28, - sym__automatic_semicolon, + ACTIONS(1349), 26, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -150550,102 +151918,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50727] = 20, + [52200] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3241), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4434), 1, - anon_sym_readonly, - STATE(2279), 1, - sym_override_modifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [50811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(3697), 13, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(4498), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3699), 28, + ACTIONS(3625), 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, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -150659,42 +151975,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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50863] = 9, + [52272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, - anon_sym_extends, - ACTIONS(3757), 1, - anon_sym_LBRACK, - ACTIONS(4406), 1, - anon_sym_RPAREN, - ACTIONS(1401), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3760), 2, + ACTIONS(3934), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4200), 2, + ACTIONS(3931), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1399), 12, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3320), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 21, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150716,25 +152026,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [50925] = 3, + [52328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 14, + ACTIONS(3601), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3703), 28, + ACTIONS(3603), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150763,39 +152073,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50975] = 5, + [52378] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3560), 3, - anon_sym_COMMA, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2936), 11, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4501), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3532), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, - anon_sym_DASH_DASH, - ACTIONS(2940), 25, + ACTIONS(3534), 16, 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, @@ -150809,36 +152134,25 @@ 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_BQUOTE, - anon_sym_satisfies, - [51029] = 7, + [52456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3876), 1, - anon_sym_QMARK_DOT, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(1578), 14, + ACTIONS(3318), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1580), 24, + ACTIONS(3320), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150847,6 +152161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -150863,102 +152180,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [51087] = 33, + anon_sym_extends, + [52506] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4477), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4444), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1493), 2, + ACTIONS(4504), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51197] = 3, + [52616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 14, + ACTIONS(3700), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3470), 28, + ACTIONS(3702), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150987,25 +152305,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51247] = 3, + [52666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 14, + ACTIONS(2537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2535), 28, + ACTIONS(2539), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151034,25 +152352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51297] = 3, + [52716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 14, + ACTIONS(3547), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3454), 28, + ACTIONS(3549), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151081,38 +152399,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51347] = 6, + [52766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - anon_sym_extends, - ACTIONS(3897), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3900), 3, - anon_sym_GT, + ACTIONS(4485), 1, anon_sym_AMP, + ACTIONS(4487), 1, anon_sym_PIPE, - ACTIONS(3893), 11, + ACTIONS(4506), 1, + anon_sym_extends, + ACTIONS(3547), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(3895), 25, + ACTIONS(3549), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151131,119 +152449,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [51403] = 20, + [52822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(3432), 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, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(3200), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3434), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3232), 1, anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4434), 1, - anon_sym_readonly, - STATE(2279), 1, - sym_override_modifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [51487] = 20, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52872] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(3200), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(3218), 1, + ACTIONS(3207), 1, anon_sym_RBRACE, - ACTIONS(4424), 1, + ACTIONS(4508), 1, anon_sym_STAR, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4430), 1, + ACTIONS(4514), 1, anon_sym_async, - ACTIONS(4434), 1, + ACTIONS(4518), 1, anon_sym_readonly, - STATE(2279), 1, + STATE(2296), 1, sym_override_modifier, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, + ACTIONS(4516), 2, sym_number, sym_private_property_identifier, - ACTIONS(4436), 2, + ACTIONS(4520), 2, anon_sym_get, anon_sym_set, - STATE(2505), 3, + STATE(2515), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -151259,36 +152560,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [51571] = 3, + [52956] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(4522), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1975), 28, + ACTIONS(3523), 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, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -151303,200 +152615,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51621] = 34, + [53024] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4446), 1, - anon_sym_RBRACK, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + ACTIONS(4075), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51733] = 3, + [53134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 14, + ACTIONS(3436), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3707), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3715), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 28, + ACTIONS(3438), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151525,25 +152740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51883] = 3, + [53184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 14, + ACTIONS(3543), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3601), 28, + ACTIONS(3545), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151572,25 +152787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51933] = 3, + [53234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 14, + ACTIONS(3539), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3737), 28, + ACTIONS(3541), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151619,27 +152834,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51983] = 4, + [53284] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3595), 14, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4525), 1, + anon_sym_RBRACE, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3515), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3597), 27, + ACTIONS(3517), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151648,6 +152939,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, @@ -151667,25 +152959,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52035] = 3, + [53446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 14, + ACTIONS(3511), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3593), 28, + ACTIONS(3513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151714,38 +153006,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52085] = 6, + [53496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, - anon_sym_extends, - ACTIONS(4448), 1, + ACTIONS(3931), 1, anon_sym_LBRACK, - ACTIONS(3580), 2, + ACTIONS(3320), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3934), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3574), 12, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3576), 26, - sym__automatic_semicolon, + ACTIONS(2933), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151764,29 +153056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52141] = 6, + [53552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3570), 12, + ACTIONS(3515), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3572), 27, + ACTIONS(3517), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151814,25 +153102,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52197] = 3, + anon_sym_extends, + [53602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 14, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_extends, + ACTIONS(3684), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3568), 28, + ACTIONS(3686), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151860,26 +153153,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52247] = 3, + [53658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 14, + ACTIONS(3511), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3564), 28, + ACTIONS(3513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151908,25 +153200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52297] = 3, + [53708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 14, + ACTIONS(3507), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3560), 28, + ACTIONS(3509), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151955,26 +153247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52347] = 4, + [53758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(3516), 13, + ACTIONS(3503), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3518), 28, + ACTIONS(3505), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152003,25 +153294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52399] = 3, + [53808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 14, + ACTIONS(3507), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3514), 28, + ACTIONS(3509), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152050,25 +153341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52449] = 3, + [53858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 14, + ACTIONS(2541), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2527), 28, + ACTIONS(2543), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152097,25 +153388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52499] = 3, + [53908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 14, + ACTIONS(3503), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3497), 28, + ACTIONS(3505), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152144,116 +153435,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52549] = 34, + [53958] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(3689), 1, + ACTIONS(3688), 1, anon_sym_COMMA, - ACTIONS(4450), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4527), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52661] = 9, + [54070] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(3630), 1, anon_sym_QMARK, - ACTIONS(4078), 1, + ACTIONS(3632), 1, + anon_sym_extends, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3044), 2, - anon_sym_COMMA, + ACTIONS(4427), 1, anon_sym_COLON, - ACTIONS(3670), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4081), 2, + ACTIONS(3745), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 12, + ACTIONS(4429), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3736), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(3740), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152275,38 +153567,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52723] = 9, + [54134] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1981), 1, anon_sym_extends, - ACTIONS(4072), 1, + ACTIONS(1983), 1, + anon_sym_QMARK, + ACTIONS(3754), 1, anon_sym_LBRACK, - ACTIONS(4457), 1, - anon_sym_RPAREN, - ACTIONS(4075), 2, + ACTIONS(4421), 1, + anon_sym_COLON, + ACTIONS(3757), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4452), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4454), 2, + ACTIONS(4435), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2936), 12, + anon_sym_RBRACK, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(1357), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152328,82 +153621,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52785] = 4, + [54198] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_DOT, - ACTIONS(3485), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(1981), 1, + anon_sym_extends, + ACTIONS(3754), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_RPAREN, + ACTIONS(1355), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3757), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3487), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4421), 2, 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [52837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 14, + anon_sym_COLON, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3737), 28, - sym__automatic_semicolon, + ACTIONS(1357), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152422,82 +153674,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52887] = 3, + [54260] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1987), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3218), 1, anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4518), 1, + anon_sym_readonly, + STATE(2296), 1, + sym_override_modifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [52937] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [54344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 14, + ACTIONS(3632), 1, + anon_sym_extends, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(4532), 1, + anon_sym_RPAREN, + ACTIONS(3738), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3745), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4427), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3736), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3745), 28, - sym__automatic_semicolon, + ACTIONS(3740), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152516,295 +153791,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52987] = 3, + [54406] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3749), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - anon_sym_extends, - [53037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 14, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4535), 1, + anon_sym_RPAREN, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3745), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [53087] = 3, + [54518] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3749), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 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, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [53137] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, - anon_sym_LT, - STATE(3494), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4537), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3472), 12, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [53209] = 17, + [54630] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4466), 1, - anon_sym_LT, - STATE(3494), 1, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4539), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 11, + ACTIONS(3449), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 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(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53287] = 3, + [54742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3863), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3755), 28, + ACTIONS(2933), 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, @@ -152823,103 +154075,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53337] = 33, + [54798] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4541), 1, + anon_sym_COLON, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3522), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53447] = 3, + [54910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 14, + ACTIONS(3571), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3765), 28, + ACTIONS(3573), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152948,34 +154200,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53497] = 3, + [54960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(3320), 1, + anon_sym_extends, + ACTIONS(3931), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3934), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3755), 28, + ACTIONS(2933), 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, @@ -152994,35 +154250,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53547] = 3, + [55016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 14, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3863), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3765), 28, + ACTIONS(2933), 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, @@ -153041,26 +154301,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53597] = 3, + [55074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 14, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_extends, + ACTIONS(3778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3771), 28, + ACTIONS(3780), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153088,35 +154351,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53647] = 3, + [55130] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 14, + ACTIONS(3064), 1, + anon_sym_EQ, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3863), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3775), 28, + ACTIONS(2933), 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, @@ -153135,48 +154402,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53697] = 12, + [55188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(4505), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_extends, + ACTIONS(3774), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3586), 19, + ACTIONS(3776), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -153191,26 +154450,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [53765] = 3, + [55244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 14, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_extends, + ACTIONS(3786), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3779), 28, + ACTIONS(3788), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153238,218 +154502,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53815] = 34, + [55300] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(3689), 1, + ACTIONS(3688), 1, anon_sym_COMMA, - ACTIONS(4508), 1, + ACTIONS(4543), 1, anon_sym_RBRACE, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53927] = 6, + [55412] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3717), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3719), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - [53983] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3685), 12, + ACTIONS(3497), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3687), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4127), 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(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 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_BQUOTE, - anon_sym_satisfies, - [54039] = 7, + [55522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 2, - anon_sym_COMMA, + ACTIONS(4163), 1, anon_sym_LBRACK, - ACTIONS(4081), 3, + ACTIONS(3530), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4166), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(4083), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 24, - sym__automatic_semicolon, + ACTIONS(4085), 25, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -153468,317 +154707,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54097] = 6, + [55578] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, - anon_sym_extends, - ACTIONS(4072), 2, - anon_sym_COMMA, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(4075), 3, - anon_sym_GT, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, anon_sym_AMP, + ACTIONS(4457), 1, + anon_sym_CARET, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(2936), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4463), 1, + anon_sym_PERCENT, + ACTIONS(4465), 1, + anon_sym_STAR_STAR, + ACTIONS(4467), 1, anon_sym_LT, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3667), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55688] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - [54153] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 2, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(4545), 1, + anon_sym_RBRACK, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [54209] = 34, + [55800] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(4510), 1, - anon_sym_SEMI, - ACTIONS(4512), 1, - sym__automatic_semicolon, - STATE(3494), 1, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4547), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54321] = 6, + [55912] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3781), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3783), 27, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3876), 1, anon_sym_LBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [54377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 14, + ACTIONS(4477), 1, + sym__ternary_qmark, + ACTIONS(4549), 1, + anon_sym_SEMI, + ACTIONS(4551), 1, + sym__automatic_semicolon, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(4443), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4445), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3695), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [54427] = 10, + [56024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_extends, - ACTIONS(1989), 1, - anon_sym_QMARK, - ACTIONS(3757), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4291), 1, - anon_sym_COLON, - ACTIONS(3760), 2, + ACTIONS(3702), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3863), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4406), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1399), 12, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 21, + ACTIONS(2933), 25, 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, @@ -153797,103 +155068,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54491] = 34, + [56080] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(3689), 1, + ACTIONS(3688), 1, anon_sym_COMMA, - ACTIONS(4514), 1, + ACTIONS(4553), 1, anon_sym_RBRACK, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54603] = 3, + [56192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 14, + ACTIONS(3649), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2531), 28, + ACTIONS(3651), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153922,25 +155193,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54653] = 3, + [56242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 14, + ACTIONS(3571), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3436), 28, + ACTIONS(3573), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153969,114 +155240,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54703] = 34, + [56292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4516), 1, - anon_sym_RBRACE, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54815] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_EQ, - ACTIONS(3670), 1, anon_sym_extends, - ACTIONS(4078), 2, + ACTIONS(4163), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4081), 3, + ACTIONS(4166), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(4083), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 24, + ACTIONS(4085), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -154098,42 +155290,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54873] = 10, + [56348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_QMARK, - ACTIONS(3497), 1, - anon_sym_extends, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_COLON, - ACTIONS(3794), 2, + ACTIONS(3577), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4402), 2, + ACTIONS(3579), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3785), 12, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 21, + ACTIONS(2933), 25, + 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, @@ -154152,34 +155339,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54937] = 5, + [56402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - STATE(1883), 1, - sym_arguments, - ACTIONS(3662), 14, + ACTIONS(3649), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3664), 26, + ACTIONS(3651), 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, @@ -154201,39 +155385,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54991] = 7, + anon_sym_extends, + [56452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - anon_sym_EQ, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(3670), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(3659), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2940), 24, + ACTIONS(3661), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154252,25 +155432,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [55049] = 3, + anon_sym_extends, + [56502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 14, + ACTIONS(3663), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1979), 28, + ACTIONS(3665), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154299,31 +155480,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55099] = 3, + [56552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 14, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(2385), 1, + sym_arguments, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3799), 28, + ACTIONS(2933), 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, @@ -154345,26 +155529,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55149] = 3, + [56606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 14, + ACTIONS(1979), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3458), 28, + ACTIONS(1977), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154393,25 +155576,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55199] = 3, + [56656] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 14, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4518), 1, + anon_sym_readonly, + STATE(2296), 1, + sym_override_modifier, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [56740] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, + anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, + anon_sym_PERCENT, + ACTIONS(4465), 1, + anon_sym_STAR_STAR, + ACTIONS(4467), 1, anon_sym_LT, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3673), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4445), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56850] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, + anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, + anon_sym_PERCENT, + ACTIONS(4465), 1, + anon_sym_STAR_STAR, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3794), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(2929), 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_DASH_DASH, - ACTIONS(3458), 28, + ACTIONS(2933), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154439,26 +155842,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55249] = 3, + [57012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 14, + ACTIONS(3814), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3458), 28, + ACTIONS(3816), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154487,25 +155889,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55299] = 3, + [57062] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, + anon_sym_PERCENT, + ACTIONS(3479), 1, + anon_sym_STAR_STAR, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4555), 1, + anon_sym_RPAREN, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3457), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 14, + ACTIONS(2533), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3674), 28, + ACTIONS(2535), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154534,25 +156014,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55349] = 3, + [57224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 14, + ACTIONS(3716), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3674), 28, + ACTIONS(3718), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154581,25 +156061,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55399] = 3, + [57274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 14, + ACTIONS(3641), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3674), 28, + ACTIONS(3643), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154628,25 +156108,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55449] = 3, + [57324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3920), 1, + anon_sym_EQ, + ACTIONS(3918), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 28, + ACTIONS(3922), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154674,26 +156156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55499] = 3, + [57376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(3728), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 28, + ACTIONS(3730), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154722,25 +156204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55549] = 3, + [57428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3732), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 28, + ACTIONS(3734), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154769,102 +156251,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55599] = 33, + [57478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3577), 2, anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3579), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2929), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3906), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55709] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 14, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3736), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3643), 28, + ACTIONS(3740), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154892,26 +156348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55759] = 3, + [57584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 14, + ACTIONS(3760), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3621), 28, + ACTIONS(3762), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154940,553 +156395,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55809] = 33, + [57634] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3939), 2, + ACTIONS(4557), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55919] = 33, + [57744] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4559), 1, + anon_sym_RPAREN, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4094), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3607), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3609), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4078), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3670), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2936), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3483), 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_BQUOTE, - anon_sym_satisfies, - [56135] = 34, + [57856] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(3689), 1, + ACTIONS(3688), 1, anon_sym_COMMA, - ACTIONS(4518), 1, + ACTIONS(4561), 1, anon_sym_RPAREN, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56247] = 3, + [57968] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3462), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3876), 1, anon_sym_LBRACK, + ACTIONS(3878), 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, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3785), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3789), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, anon_sym_AMP_AMP, + ACTIONS(4449), 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_BQUOTE, - anon_sym_satisfies, - [56349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4451), 1, anon_sym_GT_GT, + ACTIONS(4455), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3308), 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, + ACTIONS(4457), 1, anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, + ACTIONS(4465), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56399] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_LBRACK, - ACTIONS(3580), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4467), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3582), 27, - sym__automatic_semicolon, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3682), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4453), 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(4461), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56451] = 3, + [58078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1985), 14, + ACTIONS(3047), 1, + anon_sym_QMARK, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3062), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3702), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1983), 28, - sym__automatic_semicolon, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155505,35 +156758,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56501] = 3, + [58140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 14, + ACTIONS(3320), 1, + anon_sym_extends, + ACTIONS(3931), 1, + anon_sym_LBRACK, + ACTIONS(4567), 1, + anon_sym_RPAREN, + ACTIONS(3934), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4563), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4565), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3398), 28, - sym__automatic_semicolon, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155552,324 +156811,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56551] = 3, + [58202] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3670), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - anon_sym_extends, - [56601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 14, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4570), 1, + anon_sym_RPAREN, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3605), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58314] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3876), 1, anon_sym_LBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3900), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3897), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3564), 4, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3453), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3893), 12, + ACTIONS(4443), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4445), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3895), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58424] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3465), 1, + anon_sym_GT_GT, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, anon_sym_satisfies, - [56707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 14, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, + anon_sym_RPAREN, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3449), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3457), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3493), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3487), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3483), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58536] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3876), 1, anon_sym_LBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 14, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(4443), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4445), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3493), 28, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4574), 2, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_SEMI, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58646] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3876), 1, anon_sym_LBRACK, + ACTIONS(3878), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, anon_sym_AMP_AMP, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 14, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3812), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4445), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3428), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56857] = 6, + [58756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 2, + ACTIONS(4485), 1, anon_sym_AMP, + ACTIONS(4487), 1, anon_sym_PIPE, - ACTIONS(4072), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3398), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4506), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2936), 12, + ACTIONS(3760), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(3762), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155888,25 +157248,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [56913] = 3, + [58812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 14, + ACTIONS(3446), 1, + anon_sym_DOT, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3493), 28, + ACTIONS(3444), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155916,7 +157278,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, @@ -155935,39 +157296,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56963] = 4, + [58864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 1, - sym_regex_flags, - ACTIONS(4520), 17, + ACTIONS(3638), 1, + anon_sym_DOT, + ACTIONS(3442), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4522), 24, + ACTIONS(3444), 27, + 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, anon_sym_PIPE_PIPE, @@ -155981,105 +157339,30 @@ 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_BQUOTE, - [57015] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4526), 1, - anon_sym_COLON, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57127] = 3, + anon_sym_extends, + [58916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 14, + ACTIONS(3605), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3466), 28, + ACTIONS(3607), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156108,25 +157391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57177] = 3, + [58966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 14, + ACTIONS(3593), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3466), 28, + ACTIONS(3595), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156155,25 +157438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57227] = 3, + [59016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 14, + ACTIONS(3581), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3466), 28, + ACTIONS(3583), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156202,103 +157485,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57277] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4528), 1, - anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3550), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57389] = 3, + [59066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 14, + ACTIONS(3720), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3741), 28, + ACTIONS(3722), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156327,25 +157532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57439] = 3, + [59116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 14, + ACTIONS(3557), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3741), 28, + ACTIONS(3559), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156374,25 +157579,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57489] = 3, + [59166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 14, + ACTIONS(3808), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3741), 28, + ACTIONS(3810), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156421,103 +157626,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57539] = 34, + [59216] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4477), 1, sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4530), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4576), 1, + anon_sym_SEMI, + ACTIONS(4578), 1, + sym__automatic_semicolon, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57651] = 3, + [59328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 14, + ACTIONS(1981), 1, + anon_sym_extends, + ACTIONS(3754), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, + anon_sym_RPAREN, + ACTIONS(1355), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3757), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4214), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, 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, + anon_sym_DASH_DASH, + ACTIONS(1357), 21, + 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_BQUOTE, + anon_sym_satisfies, + [59390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 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_DASH_DASH, - ACTIONS(3727), 28, + ACTIONS(1993), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156546,114 +157804,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57701] = 34, + [59440] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(3463), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(3471), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(3473), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, sym__ternary_qmark, - ACTIONS(3689), 1, + ACTIONS(3688), 1, anon_sym_COMMA, - ACTIONS(4532), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4580), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57813] = 5, + [59552] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(3632), 1, + anon_sym_extends, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(4429), 1, + anon_sym_RPAREN, + ACTIONS(3738), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3745), 2, anon_sym_AMP, - ACTIONS(4440), 1, anon_sym_PIPE, - ACTIONS(3709), 12, + ACTIONS(4189), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3736), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3711), 28, - sym__automatic_semicolon, + ACTIONS(3740), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -156672,113 +157935,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57867] = 33, + [59614] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(4477), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3733), 2, + ACTIONS(4177), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57977] = 5, + [59724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, + ACTIONS(1355), 1, anon_sym_EQ, - ACTIONS(4145), 1, + ACTIONS(1359), 1, sym__automatic_semicolon, - ACTIONS(1397), 14, + ACTIONS(1349), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1353), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1395), 26, + ACTIONS(1357), 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_DOT, @@ -156799,243 +158062,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [58031] = 34, + [59780] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - ACTIONS(4534), 1, - anon_sym_SEMI, - ACTIONS(4536), 1, - sym__automatic_semicolon, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(4469), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4497), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4499), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58143] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, + ACTIONS(4467), 1, anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, - anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4477), 1, sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4538), 1, - anon_sym_RBRACK, - STATE(3535), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3796), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58255] = 6, + [59890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - anon_sym_LBRACK, - ACTIONS(3564), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3900), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3893), 11, + ACTIONS(3712), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3895), 25, + ACTIONS(3714), 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [58311] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3560), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2936), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -157054,272 +158185,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [58365] = 33, + anon_sym_extends, + [59940] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(4477), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3767), 2, + ACTIONS(3798), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58475] = 33, + [60050] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3868), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3870), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3914), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(4477), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3751), 2, + ACTIONS(3800), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58585] = 33, + [60160] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4518), 1, + anon_sym_readonly, + STATE(2296), 1, + sym_override_modifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [60244] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, - anon_sym_AMP_AMP, - ACTIONS(4477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4483), 1, - anon_sym_AMP, - ACTIONS(4485), 1, - anon_sym_CARET, - ACTIONS(4487), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3801), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(1595), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, + anon_sym_DASH_DASH, + ACTIONS(1597), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58695] = 9, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [60302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, - anon_sym_extends, - ACTIONS(4072), 1, - anon_sym_LBRACK, - ACTIONS(4544), 1, - anon_sym_RPAREN, - ACTIONS(4075), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4540), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4542), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2936), 12, + ACTIONS(1983), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(1981), 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, @@ -157338,104 +158501,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [58757] = 33, + anon_sym_extends, + [60352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, - anon_sym_AMP_AMP, - ACTIONS(4477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4483), 1, - anon_sym_AMP, - ACTIONS(4485), 1, - anon_sym_CARET, - ACTIONS(4487), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3723), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(3653), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + anon_sym_DASH_DASH, + ACTIONS(3655), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58867] = 4, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [60404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(4489), 1, + anon_sym_LBRACK, + ACTIONS(3669), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 27, + ACTIONS(3671), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -157444,7 +158579,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, @@ -157463,36 +158597,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [58919] = 6, + anon_sym_extends, + [60456] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(3055), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3398), 2, + ACTIONS(3702), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4075), 3, + ACTIONS(3863), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 25, + ACTIONS(2933), 24, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, @@ -157513,396 +158649,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [58975] = 33, + [60514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3696), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 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, + anon_sym_DASH_DASH, + ACTIONS(3698), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4477), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4483), 1, - anon_sym_AMP, - ACTIONS(4485), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4487), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4497), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4499), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59085] = 34, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [60564] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, - anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4547), 1, - anon_sym_RBRACE, - STATE(3535), 1, + ACTIONS(4584), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(3677), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59197] = 29, + anon_sym_satisfies, + [60638] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, + ACTIONS(3320), 1, + anon_sym_extends, + ACTIONS(3931), 1, + anon_sym_LBRACK, + ACTIONS(4590), 1, + anon_sym_RPAREN, + ACTIONS(3934), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4563), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4587), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2929), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4477), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4483), 1, - anon_sym_AMP, - ACTIONS(4485), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4487), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, anon_sym_STAR_STAR, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(4469), 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_BQUOTE, + anon_sym_satisfies, + [60700] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 1, + anon_sym_EQ, + ACTIONS(3047), 1, + anon_sym_QMARK, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3044), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3702), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, + 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(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [59299] = 22, + [60762] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(4473), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4518), 1, + anon_sym_readonly, + STATE(2296), 1, + sym_override_modifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [60846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3630), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3632), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3678), 5, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [60896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3589), 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(3680), 11, + anon_sym_DASH_DASH, + ACTIONS(3591), 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_BQUOTE, anon_sym_satisfies, - [59387] = 18, + anon_sym_extends, + [60946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(3585), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 1, + 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, + anon_sym_DASH_DASH, + ACTIONS(3587), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3813), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3817), 1, anon_sym_DOT, - ACTIONS(3847), 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, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - ACTIONS(4549), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + anon_sym_extends, + [60998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(2929), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 15, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(2933), 27, sym__ternary_qmark, - anon_sym_SEMI, + 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59467] = 17, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - ACTIONS(4549), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(3577), 14, anon_sym_STAR, - anon_sym_SLASH, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -157911,464 +159128,592 @@ 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(3680), 16, + anon_sym_DASH_DASH, + ACTIONS(3579), 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_BQUOTE, anon_sym_satisfies, - [59545] = 26, + anon_sym_extends, + [61100] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4491), 1, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4469), 2, + ACTIONS(3748), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 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, - [59641] = 25, + [61210] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4447), 1, + anon_sym_AMP_AMP, + ACTIONS(4449), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4491), 1, + ACTIONS(4457), 1, + anon_sym_CARET, + ACTIONS(4459), 1, + anon_sym_PIPE, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(4467), 1, + anon_sym_LT, + ACTIONS(4475), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4477), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4469), 2, + ACTIONS(3806), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 9, + [61320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 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_DASH_DASH, + ACTIONS(3530), 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_BQUOTE, anon_sym_satisfies, - [59735] = 24, + anon_sym_extends, + [61370] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3465), 1, anon_sym_GT_GT, - ACTIONS(4491), 1, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_CARET, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3477), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(3479), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(3481), 1, + anon_sym_LT, + ACTIONS(3489), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3497), 1, + sym__ternary_qmark, + ACTIONS(3688), 1, + anon_sym_COMMA, + ACTIONS(4594), 1, + anon_sym_RBRACE, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(3457), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(3467), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(3475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4495), 3, + ACTIONS(3483), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 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, - [59827] = 33, + [61482] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4449), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4467), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4552), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59937] = 18, + ACTIONS(3677), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [61584] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4491), 1, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4549), 1, + ACTIONS(4467), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4489), 2, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 8, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3675), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3677), 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, + [61672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 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(3680), 16, + anon_sym_DASH_DASH, + ACTIONS(3501), 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_BQUOTE, anon_sym_satisfies, - [60017] = 28, + anon_sym_extends, + [61722] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, - anon_sym_AMP_AMP, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, - anon_sym_AMP, - ACTIONS(4485), 1, - anon_sym_CARET, - ACTIONS(4487), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(4467), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4499), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 7, + ACTIONS(3675), 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(3677), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [60117] = 4, + [61806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, - anon_sym_EQ, - ACTIONS(3908), 14, + ACTIONS(4485), 1, + anon_sym_AMP, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_extends, + ACTIONS(3609), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3912), 27, + ACTIONS(3611), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158396,112 +159741,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [60169] = 27, + [61862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3621), 1, + anon_sym_extends, + ACTIONS(4489), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(3619), 2, anon_sym_AMP, - ACTIONS(4485), 1, - anon_sym_CARET, - ACTIONS(4487), 1, anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(3613), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 8, + anon_sym_DASH_DASH, + ACTIONS(3615), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [60267] = 9, + [61918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, - anon_sym_extends, - ACTIONS(3757), 1, - anon_sym_LBRACK, - ACTIONS(4554), 1, - anon_sym_RPAREN, - ACTIONS(1401), 2, + ACTIONS(1355), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3760), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4291), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1399), 12, + ACTIONS(1353), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 21, + ACTIONS(1357), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158520,251 +159839,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [60329] = 20, + [61970] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3868), 1, + anon_sym_as, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(3914), 1, + anon_sym_satisfies, + ACTIONS(4465), 1, + anon_sym_STAR_STAR, + ACTIONS(4584), 1, anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 11, anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4434), 1, - anon_sym_readonly, - STATE(2279), 1, - sym_override_modifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, + anon_sym_in, + 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(3677), 15, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [60413] = 9, + anon_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, + [62050] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_extends, - ACTIONS(3791), 1, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(4557), 1, - anon_sym_RPAREN, - ACTIONS(3787), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3794), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4220), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3785), 12, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(4463), 1, + anon_sym_PERCENT, + ACTIONS(4465), 1, + anon_sym_STAR_STAR, + ACTIONS(4584), 1, + anon_sym_LT, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(4443), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3789), 21, + ACTIONS(3677), 16, + 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_BQUOTE, anon_sym_satisfies, - [60475] = 34, + [62128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, + ACTIONS(4451), 1, + anon_sym_GT_GT, + ACTIONS(4455), 1, + anon_sym_AMP, + ACTIONS(4457), 1, + anon_sym_CARET, + ACTIONS(4463), 1, + anon_sym_PERCENT, + ACTIONS(4465), 1, + anon_sym_STAR_STAR, + ACTIONS(4467), 1, anon_sym_LT, - ACTIONS(3528), 1, + STATE(3462), 1, + sym_type_arguments, + STATE(3664), 1, + sym_optional_chain, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4453), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4461), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(3530), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62224] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(3910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3912), 1, + anon_sym_DASH_DASH, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(3538), 1, - anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4560), 1, - anon_sym_RBRACK, - STATE(3535), 1, + ACTIONS(4467), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60587] = 20, + ACTIONS(3677), 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, + [62318] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - STATE(3494), 1, + ACTIONS(4467), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4481), 2, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1827), 2, + ACTIONS(4471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 7, + ACTIONS(3675), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3680), 14, + ACTIONS(4469), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158772,55 +160167,54 @@ 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, - [60671] = 15, + [62410] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(4493), 1, + ACTIONS(4463), 1, + anon_sym_PERCENT, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4549), 1, + ACTIONS(4584), 1, anon_sym_LT, - STATE(3494), 1, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - STATE(1827), 2, + ACTIONS(4443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 12, - anon_sym_STAR, + ACTIONS(3675), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 17, + ACTIONS(3677), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158830,7 +160224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -158838,503 +160231,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [60745] = 34, + [62490] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(4447), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4562), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4467), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60857] = 33, + ACTIONS(3677), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62590] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3878), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3910), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3912), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, - anon_sym_AMP_AMP, - ACTIONS(4477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4451), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4455), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4457), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4459), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4463), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4465), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4467), 1, + anon_sym_LT, + STATE(3462), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(3676), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(4443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4445), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4453), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4461), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4473), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1844), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4469), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60967] = 34, + ACTIONS(3677), 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, + [62688] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(3536), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(3538), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(3540), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(3544), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(4564), 1, - anon_sym_RPAREN, - STATE(3535), 1, + ACTIONS(4596), 1, + anon_sym_COLON, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3520), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3524), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3542), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3548), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61079] = 33, + [62797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(4159), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, - anon_sym_AMP_AMP, - ACTIONS(4477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4483), 1, anon_sym_AMP, - ACTIONS(4485), 1, - anon_sym_CARET, - ACTIONS(4487), 1, anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3666), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61189] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(4161), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4600), 3, anon_sym_COMMA, - ACTIONS(4566), 1, anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61301] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(2933), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3264), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3526), 1, - anon_sym_LT, - ACTIONS(3528), 1, anon_sym_AMP_AMP, - ACTIONS(3530), 1, anon_sym_PIPE_PIPE, - ACTIONS(3532), 1, - anon_sym_GT_GT, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3538), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, anon_sym_PERCENT, - ACTIONS(3546), 1, anon_sym_STAR_STAR, - ACTIONS(3554), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3556), 1, - sym__ternary_qmark, - ACTIONS(3689), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4600), 3, anon_sym_COMMA, - ACTIONS(4568), 1, anon_sym_RPAREN, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3520), 2, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3524), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3534), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3542), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3550), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3552), 2, + anon_sym_DASH_DASH, + ACTIONS(2933), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3548), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61413] = 6, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, + ACTIONS(4598), 2, anon_sym_EQ, - ACTIONS(1405), 1, - sym__automatic_semicolon, - ACTIONS(1395), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1399), 14, + anon_sym_QMARK, + ACTIONS(4600), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 24, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -159354,29 +160640,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61469] = 6, + [63005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_AMP, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3438), 12, + ACTIONS(4108), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3440), 27, + ACTIONS(4110), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -159404,38 +160686,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61525] = 6, + [63054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(3530), 1, + anon_sym_extends, + ACTIONS(4166), 2, anon_sym_AMP, - ACTIONS(4440), 1, anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(3448), 12, + ACTIONS(4163), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4083), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3450), 27, - sym__automatic_semicolon, + ACTIONS(4085), 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_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159454,38 +160735,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61581] = 6, + [63109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(3670), 2, - anon_sym_COMMA, + ACTIONS(3702), 1, anon_sym_extends, - ACTIONS(4081), 3, - anon_sym_GT, + ACTIONS(3863), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(3860), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(2940), 25, + ACTIONS(2933), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159504,118 +160784,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61637] = 33, + [63164] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4602), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3660), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61747] = 9, + [63273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, - anon_sym_extends, - ACTIONS(4072), 1, - anon_sym_LBRACK, - ACTIONS(4572), 1, - anon_sym_RPAREN, - ACTIONS(4075), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4452), 2, + ACTIONS(1355), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2936), 12, + ACTIONS(4421), 1, + anon_sym_of, + ACTIONS(4604), 1, + anon_sym_in, + ACTIONS(1353), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(1357), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159634,36 +160909,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61809] = 4, + [63328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3920), 1, anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(4425), 1, + anon_sym_of, + ACTIONS(4607), 1, + anon_sym_in, + ACTIONS(3918), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 27, + ACTIONS(3922), 25, + 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_AMP_AMP, @@ -159682,34 +160958,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61861] = 4, + [63383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1399), 14, + ACTIONS(1591), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1595), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 27, + ACTIONS(1597), 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, @@ -159730,41 +161005,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61913] = 9, + [63434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3738), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_QMARK, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(3037), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3670), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 12, + ACTIONS(4427), 1, + anon_sym_of, + ACTIONS(4610), 1, + anon_sym_in, + ACTIONS(3736), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(3740), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159783,256 +161054,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61975] = 33, + [63489] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, - anon_sym_DASH_DASH, - ACTIONS(3851), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, - anon_sym_AMP_AMP, - ACTIONS(4477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, - anon_sym_GT_GT, - ACTIONS(4483), 1, - anon_sym_AMP, - ACTIONS(4485), 1, - anon_sym_CARET, - ACTIONS(4487), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_PERCENT, - ACTIONS(4493), 1, - anon_sym_STAR_STAR, - ACTIONS(4501), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, - sym__ternary_qmark, - STATE(3494), 1, - sym_type_arguments, - STATE(3650), 1, - sym_optional_chain, - ACTIONS(3631), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4489), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4497), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4499), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1827), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62085] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, + ACTIONS(3451), 1, anon_sym_as, - ACTIONS(3807), 1, + ACTIONS(3455), 1, anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4613), 1, + anon_sym_COLON, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3613), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4469), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62195] = 33, + [63598] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_as, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3847), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3849), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4477), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4479), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4483), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4485), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4487), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4493), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4501), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4503), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3494), 1, + ACTIONS(4615), 1, + anon_sym_COLON, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4469), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4489), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4497), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4495), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62305] = 3, + [63707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 14, + ACTIONS(1585), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1548), 27, + ACTIONS(1587), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160060,227 +161252,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62354] = 27, + [63756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, + ACTIONS(4077), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4587), 1, anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 7, + anon_sym_DASH_DASH, + ACTIONS(4079), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [62451] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3203), 1, anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4609), 2, - anon_sym_get, - anon_sym_set, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [62526] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4611), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3680), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [62599] = 9, + [63805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_COLON, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4614), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2936), 12, + ACTIONS(4185), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(4187), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -160299,113 +161344,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62660] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3666), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62769] = 6, + [63854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - anon_sym_extends, - ACTIONS(3900), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3897), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3893), 12, + ACTIONS(4225), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3895), 23, + ACTIONS(4227), 27, + 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, @@ -160424,35 +161390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62824] = 4, + [63903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - sym_regex_flags, - ACTIONS(4520), 18, + ACTIONS(4223), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4522), 22, + ACTIONS(3800), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -160469,27 +161432,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - [62875] = 3, + anon_sym_satisfies, + [63952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 14, + ACTIONS(4219), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 27, + ACTIONS(4221), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160517,109 +161482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62924] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4008), 1, - anon_sym_RBRACE, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63033] = 4, + [64001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(4217), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 26, + ACTIONS(3798), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -160640,34 +161528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63084] = 5, + [64050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1526), 1, - sym__automatic_semicolon, - ACTIONS(1518), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1522), 14, + ACTIONS(4212), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1524), 24, + ACTIONS(3796), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -160688,35 +161574,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63137] = 5, + [64099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4630), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(4120), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(4122), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160736,35 +161620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63190] = 5, + [64148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4630), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(4208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(4210), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160784,25 +161666,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63243] = 3, + [64197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 14, + ACTIONS(4204), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4207), 27, + ACTIONS(4206), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160830,34 +161712,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63292] = 4, + [64246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1498), 14, + ACTIONS(4200), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1500), 22, + ACTIONS(4202), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160877,34 +161758,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63343] = 5, + [64295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, - sym__automatic_semicolon, - ACTIONS(1600), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1604), 14, + ACTIONS(4192), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1606), 24, + ACTIONS(4194), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -160925,94 +161804,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63396] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3241), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4609), 2, - anon_sym_get, - anon_sym_set, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [63471] = 5, + [64344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, - sym__automatic_semicolon, - ACTIONS(1600), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1604), 14, + ACTIONS(3940), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1606), 22, + ACTIONS(3942), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161032,237 +161850,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63524] = 33, + [64393] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3660), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, + anon_sym_COLON, ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_QMARK, + ACTIONS(4089), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63633] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3241), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, + anon_sym_DASH_DASH, + ACTIONS(4091), 24, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [63710] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - ACTIONS(4636), 1, - anon_sym_COLON, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 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(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63819] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 14, + ACTIONS(4196), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4024), 27, + ACTIONS(4198), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161290,35 +161946,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63868] = 5, + [64499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4630), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(3956), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(3958), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161338,32 +161992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63921] = 5, + [64548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 2, + ACTIONS(4563), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4640), 3, + ACTIONS(4565), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -161386,25 +162040,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63974] = 3, + [64601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 14, + ACTIONS(4192), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4190), 27, + ACTIONS(4194), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161432,110 +162086,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64023] = 33, + [64650] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3631), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4587), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4589), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4591), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4595), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4627), 1, + anon_sym_RBRACK, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4579), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64132] = 4, + [64759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1578), 14, + ACTIONS(4629), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4631), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1580), 25, - sym__automatic_semicolon, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161555,34 +162210,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64183] = 5, + [64812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 1, - sym__automatic_semicolon, - ACTIONS(1494), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1498), 14, + ACTIONS(4192), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1500), 24, + ACTIONS(4194), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -161603,81 +162256,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64236] = 4, + [64861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1473), 14, + ACTIONS(4192), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1475), 22, + ACTIONS(4194), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [64287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 5, - sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1463), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1465), 22, - 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, @@ -161697,25 +162302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64338] = 3, + [64910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(4068), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 27, + ACTIONS(4070), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161743,111 +162348,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64387] = 33, + [64959] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - ACTIONS(4642), 1, - anon_sym_COLON, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64496] = 5, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4637), 2, + anon_sym_get, + anon_sym_set, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [65034] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, - sym__automatic_semicolon, - ACTIONS(1504), 4, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3221), 1, anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_LBRACK, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1508), 14, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [65111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1510), 22, + ACTIONS(4047), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161867,81 +162513,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64549] = 5, + [65160] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - sym__automatic_semicolon, - ACTIONS(1542), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1546), 14, - anon_sym_STAR, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4112), 1, + anon_sym_of, + ACTIONS(4643), 1, anon_sym_in, - anon_sym_LT, + ACTIONS(4646), 1, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, anon_sym_GT_GT, + ACTIONS(4656), 1, anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, anon_sym_PIPE, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1548), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [64602] = 7, + [65271] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(4078), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3670), 2, + ACTIONS(3702), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4081), 3, + ACTIONS(3863), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 23, + ACTIONS(2933), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161965,25 +162640,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64659] = 3, + [65328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4049), 14, + ACTIONS(4141), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4051), 27, + ACTIONS(4143), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162011,32 +162686,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64708] = 5, + [65377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 1, - sym__automatic_semicolon, - ACTIONS(1449), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1453), 14, + ACTIONS(4680), 1, + sym_regex_flags, + ACTIONS(4479), 18, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(1455), 24, + anon_sym_satisfies, + ACTIONS(4481), 22, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -162055,29 +162731,27 @@ 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_BQUOTE, - anon_sym_satisfies, - [64761] = 3, + [65428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(4133), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 27, + ACTIONS(4135), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162105,34 +162779,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64810] = 4, + [65477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1522), 14, + ACTIONS(4129), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1524), 22, + ACTIONS(4131), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162152,25 +162825,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64861] = 3, + [65526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(3964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 27, + ACTIONS(3806), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162198,102 +162871,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64910] = 34, + [65575] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3453), 1, + anon_sym_of, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4053), 1, - anon_sym_of, - ACTIONS(4579), 1, - anon_sym_GT, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, anon_sym_GT_GT, - ACTIONS(4587), 1, + ACTIONS(4656), 1, anon_sym_AMP, - ACTIONS(4589), 1, + ACTIONS(4658), 1, anon_sym_CARET, - ACTIONS(4591), 1, + ACTIONS(4660), 1, anon_sym_PIPE, - ACTIONS(4595), 1, + ACTIONS(4664), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, + ACTIONS(4678), 1, sym__ternary_qmark, - ACTIONS(4648), 1, - anon_sym_in, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4641), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 2, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, + ACTIONS(4670), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65021] = 3, + [65684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 14, + ACTIONS(3960), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3865), 27, + ACTIONS(3962), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162321,25 +162993,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65070] = 3, + [65733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 14, + ACTIONS(3952), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3861), 27, + ACTIONS(3954), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162367,34 +163039,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65119] = 4, + [65782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1453), 14, + ACTIONS(4137), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1455), 22, + ACTIONS(4139), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162414,25 +163085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65170] = 3, + [65831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 14, + ACTIONS(3948), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3934), 27, + ACTIONS(3950), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162460,108 +163131,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65219] = 33, + [65880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - ACTIONS(4651), 1, - anon_sym_COLON, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4452), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4570), 3, + ACTIONS(1473), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1477), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(1479), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -162584,71 +163178,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65381] = 3, + [65931] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 14, - anon_sym_STAR, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3682), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, anon_sym_GT_GT, + ACTIONS(4656), 1, anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, anon_sym_PIPE, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1500), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66040] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3519), 1, + anon_sym_of, + ACTIONS(4648), 1, anon_sym_AMP_AMP, + ACTIONS(4650), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, anon_sym_PERCENT, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65430] = 3, + [66149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1604), 14, + ACTIONS(1447), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1606), 27, + ACTIONS(1449), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162676,33 +163376,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65479] = 3, + [66198] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3667), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 14, + ACTIONS(4682), 1, + sym__automatic_semicolon, + ACTIONS(1483), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1487), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3801), 27, - sym__automatic_semicolon, + ACTIONS(1489), 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, @@ -162722,178 +163500,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65528] = 3, + [66360] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 14, - anon_sym_STAR, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3673), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66469] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4684), 1, anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3928), 27, - sym__automatic_semicolon, + ACTIONS(3677), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [65577] = 3, + [66542] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3869), 27, - sym__automatic_semicolon, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - [65626] = 7, + [66625] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, - anon_sym_QMARK, - ACTIONS(3564), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3900), 2, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, anon_sym_PIPE, - ACTIONS(3897), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3893), 12, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4646), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3895), 21, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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, + [66722] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, anon_sym_PERCENT, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3677), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [65683] = 5, + [66821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3560), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2936), 12, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 23, + ACTIONS(1459), 27, + 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, @@ -162912,73 +163884,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65736] = 5, + [66870] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1550), 1, - sym__automatic_semicolon, - ACTIONS(1542), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1546), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4684), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1548), 24, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - [65789] = 3, + [66949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 14, + ACTIONS(3944), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3751), 27, + ACTIONS(3946), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -163006,35 +163991,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65838] = 5, + [66998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1512), 1, + ACTIONS(1493), 5, sym__automatic_semicolon, - ACTIONS(1504), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1508), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1497), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1510), 24, + ACTIONS(1499), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163054,33 +164038,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65891] = 3, + [67049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 14, + ACTIONS(4563), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4587), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3676), 27, - sym__automatic_semicolon, + ACTIONS(2933), 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, @@ -163100,36 +164086,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65940] = 6, + [67102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3079), 1, - anon_sym_in, - ACTIONS(3082), 1, - anon_sym_of, - ACTIONS(2936), 13, + ACTIONS(1519), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1523), 14, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2940), 25, - sym__automatic_semicolon, + ACTIONS(1525), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163149,85 +164133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65995] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [66072] = 3, + [67153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1594), 14, + ACTIONS(4083), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1596), 27, + ACTIONS(4085), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -163255,25 +164179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66121] = 3, + [67202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 14, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3767), 27, + ACTIONS(1563), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -163296,99 +164220,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66170] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4609), 2, - anon_sym_get, - anon_sym_set, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [66245] = 5, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4655), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(1469), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163408,32 +164271,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66298] = 5, + [67300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4687), 1, sym__automatic_semicolon, - ACTIONS(1425), 4, + ACTIONS(1571), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1429), 14, + ACTIONS(1575), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1431), 22, + ACTIONS(1577), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163456,32 +164319,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66351] = 5, + [67353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4655), 3, + ACTIONS(4689), 1, + sym__automatic_semicolon, + ACTIONS(1427), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1431), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(1433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163504,32 +164367,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66404] = 5, + [67406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 2, + ACTIONS(4691), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4542), 3, + ACTIONS(4693), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163552,33 +164415,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66457] = 3, + [67459] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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, + [67550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 14, + ACTIONS(1533), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4006), 27, - sym__automatic_semicolon, + ACTIONS(1539), 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, @@ -163598,33 +164529,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66506] = 3, + [67601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 14, + ACTIONS(1463), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4002), 27, - sym__automatic_semicolon, + ACTIONS(1469), 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, @@ -163644,36 +164576,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66555] = 8, + [67652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 1, - anon_sym_EQ, - ACTIONS(3668), 1, + ACTIONS(3528), 1, anon_sym_QMARK, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(4081), 2, + ACTIONS(3530), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4166), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3670), 3, + ACTIONS(4163), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2936), 12, + ACTIONS(4083), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(4085), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163695,36 +164626,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66614] = 5, + [67709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4661), 3, - anon_sym_COMMA, + ACTIONS(3577), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3579), 4, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(2933), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163743,33 +164674,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66667] = 3, + [67762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 14, + ACTIONS(4695), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3857), 27, - sym__automatic_semicolon, + ACTIONS(2933), 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, @@ -163789,31 +164722,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66716] = 4, + [67815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 5, - sym__automatic_semicolon, + ACTIONS(4695), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4697), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1439), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1441), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163836,31 +164770,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66767] = 4, + [67868] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 5, - sym__automatic_semicolon, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3218), 1, anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1532), 14, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1534), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163883,109 +164878,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66818] = 33, + [67998] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3218), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4637), 2, + anon_sym_get, + anon_sym_set, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68073] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(4235), 1, + anon_sym_RBRACE, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4663), 1, - anon_sym_COLON, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66927] = 3, + [68182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 14, + ACTIONS(4699), 1, + sym__automatic_semicolon, + ACTIONS(1557), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3613), 27, - sym__automatic_semicolon, + ACTIONS(1563), 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, @@ -164005,34 +165061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66976] = 3, + [68235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 14, + ACTIONS(3012), 1, + anon_sym_EQ, + ACTIONS(3700), 1, + anon_sym_QMARK, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3702), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3920), 27, - sym__automatic_semicolon, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164051,33 +165112,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67025] = 3, + [68294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 14, + ACTIONS(1453), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1580), 27, - sym__automatic_semicolon, + ACTIONS(1459), 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, @@ -164097,32 +165159,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67074] = 5, + [68345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4655), 3, + ACTIONS(1443), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1447), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(1449), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -164145,25 +165206,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67127] = 3, + [68396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 14, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4012), 27, + ACTIONS(2933), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -164191,32 +165252,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67176] = 3, + [68445] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 14, - anon_sym_STAR, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3675), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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, + [68538] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4641), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 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, + [68633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(2929), 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_DASH_DASH, - ACTIONS(3916), 27, + ACTIONS(2933), 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, @@ -164237,110 +165436,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67225] = 33, + [68684] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4665), 1, + ACTIONS(4701), 1, anon_sym_COLON, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67334] = 3, + [68793] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 14, + ACTIONS(3700), 1, + anon_sym_QMARK, + ACTIONS(3702), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3860), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4211), 27, - sym__automatic_semicolon, + ACTIONS(2933), 21, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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, @@ -164359,34 +165562,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67383] = 5, + [68850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, - sym__automatic_semicolon, - ACTIONS(1459), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1463), 14, + ACTIONS(4027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1465), 24, + ACTIONS(3673), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -164407,35 +165608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67436] = 4, + [68899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - sym_regex_flags, - ACTIONS(4520), 17, + ACTIONS(4029), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4522), 23, + ACTIONS(4031), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -164452,37 +165650,38 @@ 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_BQUOTE, - [67487] = 5, + anon_sym_satisfies, + [68948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(1581), 5, sym__automatic_semicolon, - ACTIONS(1469), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1473), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1585), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1475), 24, + ACTIONS(1587), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164502,110 +165701,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67540] = 33, + [68999] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(4246), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(4248), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - ACTIONS(4667), 1, + ACTIONS(4703), 1, anon_sym_COLON, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67649] = 3, + [69108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 14, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(3038), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3863), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3702), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3998), 27, - sym__automatic_semicolon, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164624,33 +165828,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67698] = 3, + [69167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 14, + ACTIONS(1591), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1595), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4198), 27, - sym__automatic_semicolon, + ACTIONS(1597), 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, @@ -164670,32 +165875,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67747] = 3, + [69218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 14, + ACTIONS(4680), 1, + sym_regex_flags, + ACTIONS(4479), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_instanceof, anon_sym_DASH_DASH, - ACTIONS(4103), 27, + anon_sym_satisfies, + ACTIONS(4481), 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, @@ -164712,29 +165920,27 @@ 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_BQUOTE, - anon_sym_satisfies, - [67796] = 3, + [69269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 14, + ACTIONS(4041), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4194), 27, + ACTIONS(4043), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -164762,98 +165968,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67845] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4669), 1, - anon_sym_STAR, - ACTIONS(4671), 1, - anon_sym_LBRACE, - ACTIONS(4673), 1, - anon_sym_async, - ACTIONS(4677), 1, - anon_sym_readonly, - STATE(2265), 1, - sym_statement_block, - STATE(2275), 1, - sym_override_modifier, - ACTIONS(4675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4679), 2, - anon_sym_get, - anon_sym_set, - STATE(2437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [67922] = 7, + [69318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, - anon_sym_QMARK, - ACTIONS(3670), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4078), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2936), 12, + ACTIONS(4053), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(4055), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164872,154 +166014,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67979] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [68056] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4609), 2, - anon_sym_get, - anon_sym_set, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [68131] = 5, + [69367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4683), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(4057), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(4059), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165039,262 +166060,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68184] = 33, + [69416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(3754), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3613), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, + ACTIONS(1981), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3757), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(1353), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68293] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(1357), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - ACTIONS(4685), 1, - anon_sym_COLON, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 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(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68402] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(3632), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3745), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - ACTIONS(4687), 1, - anon_sym_RBRACK, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(3736), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + anon_sym_DASH_DASH, + ACTIONS(3740), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68511] = 4, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1594), 14, + ACTIONS(4023), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1596), 22, + ACTIONS(4025), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165314,25 +166206,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68562] = 3, + [69579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 14, + ACTIONS(4061), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3884), 27, + ACTIONS(4063), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -165360,25 +166252,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68611] = 3, + [69628] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4684), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 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(3677), 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, + [69705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 14, + ACTIONS(3983), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3989), 27, + ACTIONS(3985), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -165406,34 +166358,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68660] = 3, + [69754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 14, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3863), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4149), 27, - sym__automatic_semicolon, + ACTIONS(2933), 23, 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, @@ -165452,96 +166407,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68709] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [68786] = 7, + anon_sym_implements, + [69811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 1, - anon_sym_LPAREN, - ACTIONS(4692), 1, - anon_sym_COLON, - ACTIONS(4694), 1, - anon_sym_LT, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(3855), 13, + ACTIONS(3977), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3857), 24, + ACTIONS(3979), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -165562,36 +166454,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68843] = 5, + [69860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 1, - sym__automatic_semicolon, - ACTIONS(1425), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1429), 14, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(3754), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_COLON, + ACTIONS(3757), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1981), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1353), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1431), 24, + ACTIONS(1357), 21, 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, @@ -165610,217 +166505,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68896] = 33, + [69919] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - ACTIONS(4259), 1, + ACTIONS(4684), 1, anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_AMP_AMP, - ACTIONS(4263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, - anon_sym_GT_GT, - ACTIONS(4269), 1, - anon_sym_AMP, - ACTIONS(4271), 1, - anon_sym_CARET, - ACTIONS(4273), 1, - anon_sym_PIPE, - ACTIONS(4283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, - sym__ternary_qmark, - ACTIONS(4699), 1, - anon_sym_RBRACK, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4257), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69005] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4609), 2, - anon_sym_get, - anon_sym_set, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [69080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 14, + ACTIONS(3675), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4016), 27, - sym__automatic_semicolon, + ACTIONS(3677), 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_BQUOTE, - anon_sym_satisfies, - [69129] = 8, + [69998] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3738), 1, anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_COLON, - ACTIONS(4078), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4081), 2, + ACTIONS(4427), 1, + anon_sym_COLON, + ACTIONS(3745), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3670), 3, + ACTIONS(3632), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(2936), 12, + ACTIONS(3736), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(3740), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -165842,32 +166617,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69188] = 3, + [70057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1522), 14, + ACTIONS(1481), 1, + sym__automatic_semicolon, + ACTIONS(1473), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1477), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1524), 27, - sym__automatic_semicolon, + ACTIONS(1479), 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_DOT, @@ -165888,31 +166665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69237] = 6, + [70110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_of, - ACTIONS(4701), 1, - anon_sym_in, - ACTIONS(3785), 13, + ACTIONS(1491), 1, + sym__automatic_semicolon, + ACTIONS(1483), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1487), 14, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3789), 25, - sym__automatic_semicolon, + ACTIONS(1489), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -165937,207 +166713,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69292] = 17, + [70163] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4705), 1, anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4430), 1, + ACTIONS(4707), 1, + anon_sym_LBRACE, + ACTIONS(4709), 1, anon_sym_async, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4432), 2, + ACTIONS(4713), 1, + anon_sym_readonly, + STATE(2277), 1, + sym_statement_block, + STATE(2291), 1, + sym_override_modifier, + ACTIONS(4711), 2, sym_number, sym_private_property_identifier, - ACTIONS(4436), 2, + ACTIONS(4715), 2, anon_sym_get, anon_sym_set, - STATE(2505), 3, + STATE(2473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [69369] = 33, + [70240] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3676), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(4652), 1, anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, + ACTIONS(4664), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4641), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4579), 2, + ACTIONS(4646), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, + ACTIONS(4654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, + ACTIONS(4670), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4184), 14, - anon_sym_STAR, + ACTIONS(3675), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4186), 27, - sym__automatic_semicolon, + ACTIONS(3677), 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_BQUOTE, anon_sym_satisfies, - [69527] = 3, + [70327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 14, + ACTIONS(3970), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3895), 27, + ACTIONS(3972), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166165,96 +166884,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69576] = 20, + [70376] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, anon_sym_GT_GT, - ACTIONS(4595), 1, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4668), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4641), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 2, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 7, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [70477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3966), 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(3680), 13, + anon_sym_DASH_DASH, + ACTIONS(3968), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [69659] = 3, + [70526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 14, + ACTIONS(4491), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4493), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1510), 27, - sym__automatic_semicolon, + ACTIONS(2933), 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, @@ -166274,25 +167050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69708] = 3, + [70579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 14, + ACTIONS(4089), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1465), 27, + ACTIONS(4091), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166320,33 +167096,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69757] = 3, + [70628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 14, + ACTIONS(4717), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4719), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1475), 27, - sym__automatic_semicolon, + ACTIONS(2933), 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, @@ -166366,32 +167144,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69806] = 3, + [70681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 14, + ACTIONS(1589), 1, + sym__automatic_semicolon, + ACTIONS(1581), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1585), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4042), 27, - sym__automatic_semicolon, + ACTIONS(1587), 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_DOT, @@ -166412,25 +167192,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69855] = 3, + [70734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 14, + ACTIONS(4033), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4153), 27, + ACTIONS(4035), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166458,37 +167238,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69904] = 6, + [70783] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, + anon_sym_GT_GT, + ACTIONS(4254), 1, + anon_sym_AMP, + ACTIONS(4256), 1, + anon_sym_CARET, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, + anon_sym_PERCENT, + ACTIONS(4264), 1, + anon_sym_STAR_STAR, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4322), 1, + sym__ternary_qmark, + ACTIONS(4721), 1, + anon_sym_COLON, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4242), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4244), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4252), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4270), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4272), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4268), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70892] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3207), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4637), 2, + anon_sym_get, + anon_sym_set, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4078), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2936), 12, + ACTIONS(1595), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 23, + ACTIONS(1597), 27, + 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, @@ -166507,32 +167419,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69959] = 3, + [71016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 14, + ACTIONS(1501), 1, + sym__automatic_semicolon, + ACTIONS(1493), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1497), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4157), 27, - sym__automatic_semicolon, + ACTIONS(1499), 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_DOT, @@ -166553,33 +167467,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70008] = 4, + [71069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(1527), 1, + sym__automatic_semicolon, + ACTIONS(1519), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1523), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 26, - sym__automatic_semicolon, + ACTIONS(1525), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -166600,25 +167515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70059] = 3, + [71122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 14, + ACTIONS(3927), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3891), 27, + ACTIONS(3929), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166646,25 +167561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70108] = 3, + [71171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 14, + ACTIONS(1431), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4038), 27, + ACTIONS(1433), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166692,25 +167607,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70157] = 3, + [71220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 14, + ACTIONS(4037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4034), 27, + ACTIONS(4039), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166738,89 +167653,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70206] = 12, + [71269] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(4704), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3586), 18, - 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_satisfies, - [70273] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1574), 5, - sym__automatic_semicolon, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3207), 1, anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1578), 14, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [71346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1580), 22, + ACTIONS(1577), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166840,185 +167759,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70324] = 33, + [71395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3522), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(1523), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70433] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4707), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3499), 11, - anon_sym_STAR, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 15, + anon_sym_DASH_DASH, + ACTIONS(1525), 27, + sym__automatic_semicolon, 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, - [70510] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4710), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3472), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167032,102 +167802,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [70581] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3733), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70690] = 3, + [71444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 14, + ACTIONS(1497), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4161), 27, + ACTIONS(1499), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -167155,32 +167851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70739] = 3, + [71493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 14, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(3087), 1, + anon_sym_in, + ACTIONS(3090), 1, + anon_sym_of, + ACTIONS(2929), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3880), 27, + ACTIONS(2933), 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, @@ -167201,32 +167900,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70788] = 3, + [71548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 14, + ACTIONS(1579), 1, + sym__automatic_semicolon, + ACTIONS(1571), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1575), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4020), 27, - sym__automatic_semicolon, + ACTIONS(1577), 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_DOT, @@ -167247,253 +167948,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70837] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3767), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70946] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3751), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71055] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [71154] = 5, + [71601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, + ACTIONS(1435), 1, sym__automatic_semicolon, - ACTIONS(1435), 2, + ACTIONS(1427), 2, anon_sym_else, anon_sym_while, - ACTIONS(1439), 14, + ACTIONS(1431), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1441), 24, + ACTIONS(1433), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -167518,35 +167996,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71207] = 5, + [71654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 1, - sym__automatic_semicolon, - ACTIONS(1528), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1532), 14, + ACTIONS(4723), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4725), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1534), 24, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -167566,87 +168044,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71260] = 8, + [71707] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_COLON, - ACTIONS(3794), 2, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3806), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, anon_sym_PIPE, - ACTIONS(3497), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3785), 12, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4646), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3789), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4674), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71816] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3748), 1, + anon_sym_of, + ACTIONS(4648), 1, anon_sym_AMP_AMP, + ACTIONS(4650), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, anon_sym_PERCENT, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4672), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71319] = 8, + [71925] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_LBRACK, - ACTIONS(4291), 1, + ACTIONS(3038), 1, anon_sym_COLON, - ACTIONS(3760), 2, + ACTIONS(3702), 1, + anon_sym_extends, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3863), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1987), 3, + ACTIONS(4727), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1399), 12, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 21, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -167668,30 +168248,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71378] = 5, + [71986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1541), 1, sym__automatic_semicolon, - ACTIONS(1590), 2, + ACTIONS(1533), 2, anon_sym_else, anon_sym_while, - ACTIONS(1594), 14, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1596), 24, + ACTIONS(1539), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -167716,106 +168296,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71431] = 33, + [72039] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3801), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4587), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4589), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4591), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4595), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4731), 1, + anon_sym_COLON, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4579), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71540] = 3, + [72148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 14, + ACTIONS(3064), 1, + anon_sym_EQ, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4070), 27, + ACTIONS(2933), 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, @@ -167838,32 +168419,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71589] = 3, + [72199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 14, + ACTIONS(1471), 1, + sym__automatic_semicolon, + ACTIONS(1463), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + ACTIONS(1469), 24, + 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_BQUOTE, + anon_sym_satisfies, + [72252] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4733), 1, + anon_sym_LPAREN, + ACTIONS(4736), 1, + anon_sym_COLON, + ACTIONS(4738), 1, + anon_sym_LT, + ACTIONS(4741), 1, + anon_sym_QMARK, + ACTIONS(2929), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, anon_sym_DASH_DASH, - ACTIONS(4165), 27, + ACTIONS(2933), 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, @@ -167884,160 +168517,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71638] = 33, + [72309] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72386] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4229), 1, - anon_sym_PERCENT, - ACTIONS(4231), 1, - anon_sym_STAR_STAR, - ACTIONS(4259), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(3800), 1, + anon_sym_of, + ACTIONS(4648), 1, anon_sym_AMP_AMP, - ACTIONS(4263), 1, + ACTIONS(4650), 1, anon_sym_PIPE_PIPE, - ACTIONS(4265), 1, + ACTIONS(4652), 1, anon_sym_GT_GT, - ACTIONS(4269), 1, + ACTIONS(4656), 1, anon_sym_AMP, - ACTIONS(4271), 1, + ACTIONS(4658), 1, anon_sym_CARET, - ACTIONS(4273), 1, + ACTIONS(4660), 1, anon_sym_PIPE, - ACTIONS(4283), 1, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, + anon_sym_STAR_STAR, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, anon_sym_QMARK_QMARK, - ACTIONS(4285), 1, + ACTIONS(4678), 1, sym__ternary_qmark, - ACTIONS(4713), 1, - anon_sym_COLON, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4224), 2, + ACTIONS(4641), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4257), 2, + ACTIONS(4646), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4267), 2, + ACTIONS(4654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4275), 2, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4279), 2, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 2, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4277), 3, + ACTIONS(4670), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71747] = 3, + [72495] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1813), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1455), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4637), 2, + anon_sym_get, + anon_sym_set, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72570] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3459), 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_BQUOTE, - anon_sym_satisfies, - [71796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4715), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4717), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(4743), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(3523), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168052,40 +168766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [71849] = 7, + [72637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 1, - anon_sym_LBRACK, - ACTIONS(3497), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3794), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3785), 11, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3789), 23, + ACTIONS(1539), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168104,32 +168813,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71906] = 3, + [72686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 14, + ACTIONS(1565), 1, + sym__automatic_semicolon, + ACTIONS(1557), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1431), 27, - sym__automatic_semicolon, + ACTIONS(1563), 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_DOT, @@ -168150,262 +168861,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71955] = 33, + [72739] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(3723), 1, - anon_sym_of, - ACTIONS(4581), 1, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72816] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4591), 1, - anon_sym_PIPE, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(4508), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72064] = 33, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4637), 2, + anon_sym_get, + anon_sym_set, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72891] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3721), 1, - anon_sym_of, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(4246), 1, + anon_sym_AMP_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4250), 1, anon_sym_GT_GT, - ACTIONS(4587), 1, + ACTIONS(4254), 1, anon_sym_AMP, - ACTIONS(4589), 1, + ACTIONS(4256), 1, anon_sym_CARET, - ACTIONS(4591), 1, + ACTIONS(4258), 1, anon_sym_PIPE, - ACTIONS(4595), 1, + ACTIONS(4262), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4264), 1, anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4622), 1, + ACTIONS(4266), 1, + anon_sym_LT, + ACTIONS(4320), 1, anon_sym_QMARK_QMARK, - ACTIONS(4624), 1, + ACTIONS(4322), 1, sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4746), 1, + anon_sym_COLON, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4242), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4579), 2, + ACTIONS(4244), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, + ACTIONS(4252), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + ACTIONS(4270), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, + ACTIONS(4272), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, + ACTIONS(4268), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72173] = 29, + [73000] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3798), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, anon_sym_GT_GT, - ACTIONS(4587), 1, + ACTIONS(4656), 1, anon_sym_AMP, - ACTIONS(4589), 1, + ACTIONS(4658), 1, anon_sym_CARET, - ACTIONS(4591), 1, + ACTIONS(4660), 1, anon_sym_PIPE, - ACTIONS(4595), 1, + ACTIONS(4664), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - ACTIONS(4618), 1, - anon_sym_AMP_AMP, - ACTIONS(4620), 1, - anon_sym_PIPE_PIPE, - STATE(3535), 1, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4641), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4579), 2, + ACTIONS(4646), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, + ACTIONS(4654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, + ACTIONS(4670), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72274] = 7, + [73109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_LBRACK, - ACTIONS(1987), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3760), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1399), 11, + ACTIONS(4231), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(1403), 23, + ACTIONS(4233), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168424,32 +169178,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72331] = 3, + [73158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 14, + ACTIONS(1461), 1, + sym__automatic_semicolon, + ACTIONS(1453), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1441), 27, - sym__automatic_semicolon, + ACTIONS(1459), 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_DOT, @@ -168470,25 +169226,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72380] = 3, + [73211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 14, + ACTIONS(4049), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3721), 27, + ACTIONS(4051), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -168516,158 +169272,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72429] = 22, + [73260] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3796), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, anon_sym_GT_GT, - ACTIONS(4595), 1, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, anon_sym_PERCENT, - ACTIONS(4597), 1, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4641), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4579), 2, + ACTIONS(4646), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, + ACTIONS(4654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4593), 2, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3678), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72516] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4611), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 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(3680), 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, + ACTIONS(4670), 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, - [72595] = 3, + [73369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 14, + ACTIONS(1451), 1, + sym__automatic_semicolon, + ACTIONS(1443), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1447), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4030), 27, - sym__automatic_semicolon, + ACTIONS(1449), 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_DOT, @@ -168688,190 +169396,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72644] = 6, + [73422] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_of, - ACTIONS(4719), 1, - anon_sym_in, - ACTIONS(1399), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1403), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3272), 1, anon_sym_LBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3794), 1, + anon_sym_of, + ACTIONS(4648), 1, anon_sym_AMP_AMP, + ACTIONS(4650), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, anon_sym_PERCENT, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4668), 1, + anon_sym_LT, + ACTIONS(4676), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3910), 1, - anon_sym_EQ, - ACTIONS(4416), 1, - anon_sym_of, - ACTIONS(4722), 1, - anon_sym_in, - ACTIONS(3908), 13, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4641), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3912), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72754] = 24, + [73531] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4581), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4748), 1, anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4577), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3532), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4601), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 8, + ACTIONS(3534), 15, sym__ternary_qmark, - anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72845] = 3, + anon_sym_instanceof, + [73608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 14, + ACTIONS(1487), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4088), 27, + ACTIONS(1489), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -168899,25 +169578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72894] = 3, + [73657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3176), 14, + ACTIONS(1477), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3180), 27, + ACTIONS(1479), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -168945,93 +169624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72943] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4581), 1, - anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 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, - [73036] = 3, + [73706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 14, + ACTIONS(3184), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1534), 27, + ACTIONS(3188), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -169059,108 +169670,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [73085] = 26, + [73755] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4581), 1, + ACTIONS(4751), 1, anon_sym_LT, - ACTIONS(4583), 1, - anon_sym_GT_GT, - ACTIONS(4587), 1, - anon_sym_AMP, - ACTIONS(4589), 1, - anon_sym_CARET, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4579), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4585), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4601), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4603), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4599), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 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, - [73180] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_EQ, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(3623), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, - anon_sym_DASH_DASH, - ACTIONS(2940), 23, + ACTIONS(3625), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -169174,39 +169726,34 @@ 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [73237] = 5, + [73826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4454), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2936), 14, + ACTIONS(4087), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(3453), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169226,98 +169773,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [73290] = 18, + [73875] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4597), 1, + ACTIONS(3812), 1, + anon_sym_of, + ACTIONS(4648), 1, + anon_sym_AMP_AMP, + ACTIONS(4650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4652), 1, + anon_sym_GT_GT, + ACTIONS(4656), 1, + anon_sym_AMP, + ACTIONS(4658), 1, + anon_sym_CARET, + ACTIONS(4660), 1, + anon_sym_PIPE, + ACTIONS(4664), 1, + anon_sym_PERCENT, + ACTIONS(4666), 1, anon_sym_STAR_STAR, - ACTIONS(4611), 1, + ACTIONS(4668), 1, anon_sym_LT, - STATE(3535), 1, + ACTIONS(4676), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4678), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(4641), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4646), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4654), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4672), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 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(4674), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4670), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73369] = 7, + [73984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4728), 1, - anon_sym_COLON, - ACTIONS(4730), 1, - anon_sym_LT, - ACTIONS(4733), 1, - anon_sym_QMARK, - ACTIONS(2936), 13, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(3120), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2940), 24, - sym__automatic_semicolon, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169337,86 +169896,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [73426] = 3, + [74036] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 14, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4756), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4092), 27, - sym__automatic_semicolon, + ACTIONS(3677), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [73475] = 17, + [74108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4595), 1, - anon_sym_PERCENT, - ACTIONS(4597), 1, - anon_sym_STAR_STAR, - ACTIONS(4611), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4577), 2, + ACTIONS(4483), 1, + sym_regex_flags, + ACTIONS(4479), 18, anon_sym_STAR, - anon_sym_SLASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 10, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -169425,122 +169969,197 @@ 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(3680), 15, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4481), 21, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, + 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, - [73552] = 26, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + [74158] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, anon_sym_GT_GT, - ACTIONS(4745), 1, + ACTIONS(4771), 1, anon_sym_AMP, - ACTIONS(4747), 1, + ACTIONS(4773), 1, anon_sym_CARET, - ACTIONS(4751), 1, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4791), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [73646] = 6, + [74264] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(3083), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3670), 2, + ACTIONS(3702), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4081), 3, + ACTIONS(3863), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 23, - sym__automatic_semicolon, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -169559,190 +170178,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [73700] = 32, + [74390] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4735), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4737), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4743), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4757), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4759), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73806] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, anon_sym_GT_GT, - ACTIONS(4745), 1, + ACTIONS(4771), 1, anon_sym_AMP, - ACTIONS(4747), 1, + ACTIONS(4773), 1, anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, + ACTIONS(4775), 1, anon_sym_PIPE, - ACTIONS(4767), 1, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73912] = 14, + [74496] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(3200), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(3203), 1, + ACTIONS(3207), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - STATE(3568), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, + ACTIONS(4635), 2, sym_number, sym_private_property_identifier, - STATE(3104), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169763,430 +170308,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73982] = 32, + [74566] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3577), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3579), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2929), 12, + 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, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, + 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, - [74088] = 32, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74724] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74194] = 32, + [74830] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, + sym_number, + sym_private_property_identifier, + STATE(3110), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74900] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, - anon_sym_PIPE, ACTIONS(4767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, - sym__ternary_qmark, - STATE(3535), 1, + anon_sym_GT_GT, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74300] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3910), 1, - anon_sym_EQ, - ACTIONS(4416), 1, - anon_sym_COLON, - ACTIONS(4213), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3908), 14, - anon_sym_STAR, + ACTIONS(3675), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3912), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4783), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3677), 7, + sym__ternary_qmark, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [74354] = 32, + [74990] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74460] = 7, + [75096] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_extends, - ACTIONS(3757), 2, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3760), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1399), 12, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4756), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_PERCENT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4759), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4777), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1403), 22, + ACTIONS(3677), 14, 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_BQUOTE, anon_sym_satisfies, - [74516] = 7, + [75174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_extends, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(3791), 2, - anon_sym_RBRACE, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3794), 2, + ACTIONS(3702), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3863), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3785), 12, + ACTIONS(2929), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 22, + ACTIONS(2933), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170205,92 +170807,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [74572] = 14, + [75228] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_STAR, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4518), 1, + anon_sym_readonly, + STATE(2296), 1, + sym_override_modifier, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4516), 2, sym_number, sym_private_property_identifier, - STATE(3104), 3, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74642] = 6, + [75304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - anon_sym_LBRACK, - ACTIONS(3564), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3900), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3893), 11, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3895), 23, - sym__automatic_semicolon, + ACTIONS(2933), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170309,108 +170911,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [74696] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, - sym_number, - sym_private_property_identifier, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74766] = 17, + anon_sym_implements, + [75354] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4771), 1, + ACTIONS(4793), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3499), 11, + ACTIONS(3532), 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(3534), 14, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [75430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, + anon_sym_EQ, + ACTIONS(2929), 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(3503), 14, + anon_sym_DASH_DASH, + ACTIONS(2933), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -170424,112 +171014,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74842] = 32, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75480] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4767), 1, anon_sym_GT_GT, - ACTIONS(4745), 1, + ACTIONS(4771), 1, anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, - anon_sym_PIPE, - ACTIONS(4767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, - sym__ternary_qmark, - STATE(3535), 1, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74948] = 6, + ACTIONS(3677), 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, + [75572] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3398), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4075), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(4796), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3623), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, - anon_sym_DASH_DASH, - ACTIONS(2940), 23, - sym__automatic_semicolon, + ACTIONS(3625), 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, @@ -170543,289 +171139,297 @@ 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_BQUOTE, anon_sym_satisfies, - [75002] = 7, + [75642] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3670), 1, - anon_sym_extends, - ACTIONS(4078), 2, - anon_sym_RBRACE, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(4081), 2, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, anon_sym_PIPE, - ACTIONS(2936), 12, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4759), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4761), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4769), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 22, - 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(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3677), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [75058] = 32, + [75740] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3479), 1, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(3807), 1, - anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOT, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3494), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3650), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1827), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75164] = 14, + [75846] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, + ACTIONS(4801), 1, + anon_sym_static, + ACTIONS(4803), 1, + anon_sym_readonly, + ACTIONS(4805), 1, + anon_sym_abstract, + STATE(2266), 1, + sym_accessibility_modifier, + STATE(2305), 1, + sym_override_modifier, + ACTIONS(4799), 2, sym_number, sym_private_property_identifier, - STATE(3104), 3, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2746), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(3140), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75234] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [75920] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3318), 1, + anon_sym_QMARK, + ACTIONS(3320), 1, + anon_sym_extends, + ACTIONS(3934), 2, anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - ACTIONS(4765), 1, anon_sym_PIPE, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(3931), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2929), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4737), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4749), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 6, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, 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_BQUOTE, anon_sym_satisfies, - [75330] = 4, + [75976] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 1, - sym_regex_flags, - ACTIONS(4520), 18, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3521), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4522), 21, + ACTIONS(3523), 17, 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, @@ -170838,501 +171442,551 @@ 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_BQUOTE, - [75380] = 32, + anon_sym_satisfies, + [76042] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75486] = 32, + [76148] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75592] = 15, + [76254] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4774), 1, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, anon_sym_LT, - STATE(3535), 1, + ACTIONS(4789), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4791), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 12, + ACTIONS(4759), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4769), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 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, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [75664] = 20, + [76360] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + anon_sym_DOT, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, anon_sym_GT_GT, - ACTIONS(4751), 1, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4791), 1, + sym__ternary_qmark, + STATE(3462), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3664), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4743), 2, + ACTIONS(4761), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1844), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [75746] = 28, + [76466] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4767), 1, anon_sym_GT_GT, - ACTIONS(4745), 1, + ACTIONS(4771), 1, anon_sym_AMP, - ACTIONS(4747), 1, + ACTIONS(4773), 1, anon_sym_CARET, - ACTIONS(4751), 1, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4765), 1, - anon_sym_PIPE, - STATE(3535), 1, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(3675), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 5, + ACTIONS(3677), 6, sym__ternary_qmark, anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [75844] = 18, + [76560] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4774), 1, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, anon_sym_LT, - STATE(3535), 1, + ACTIONS(4789), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4791), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4749), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 8, - anon_sym_BANG, + ACTIONS(4761), 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(3680), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4777), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [75922] = 24, + [76666] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, anon_sym_GT_GT, - ACTIONS(4751), 1, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4791), 1, + sym__ternary_qmark, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(3678), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3680), 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, - [76012] = 7, + [76772] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, - anon_sym_QMARK, - ACTIONS(3398), 1, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(3702), 1, anon_sym_extends, - ACTIONS(4075), 2, + ACTIONS(3860), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3863), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4072), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2936), 12, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171352,410 +172006,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [76068] = 25, + [76828] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4739), 1, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4756), 1, anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4751), 1, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(3678), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4749), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(3677), 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, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3680), 7, + anon_sym_satisfies, + [76904] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 1, + anon_sym_LBRACK, + ACTIONS(3320), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3934), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2933), 23, + 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_BQUOTE, anon_sym_satisfies, - [76160] = 16, + [76958] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_static, - ACTIONS(4781), 1, - anon_sym_readonly, - ACTIONS(4783), 1, - anon_sym_abstract, - STATE(2256), 1, - sym_accessibility_modifier, - STATE(2297), 1, - sym_override_modifier, - ACTIONS(4777), 2, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3218), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, sym_number, sym_private_property_identifier, - ACTIONS(3150), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2709), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 14, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76234] = 17, + [77028] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3632), 1, + anon_sym_extends, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(3742), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3745), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3736), 12, + 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, + anon_sym_DASH_DASH, + ACTIONS(3740), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4751), 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(4753), 1, anon_sym_STAR_STAR, - ACTIONS(4774), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4735), 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_BQUOTE, + anon_sym_satisfies, + [77084] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1981), 1, + anon_sym_extends, + ACTIONS(3754), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3757), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1353), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 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(3680), 14, + anon_sym_DASH_DASH, + ACTIONS(1357), 22, 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_BQUOTE, anon_sym_satisfies, - [76310] = 17, + [77140] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4434), 1, - anon_sym_readonly, - STATE(2279), 1, - sym_override_modifier, - ACTIONS(3252), 2, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, - ACTIONS(4432), 2, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4635), 2, sym_number, sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76386] = 4, + [77210] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - anon_sym_EQ, - ACTIONS(2936), 14, - anon_sym_STAR, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_LBRACK, + ACTIONS(3274), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3459), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, anon_sym_GT_GT, + ACTIONS(4771), 1, anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4791), 1, + sym__ternary_qmark, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4759), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4761), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4769), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4787), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77316] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3272), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3274), 1, anon_sym_DOT, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3491), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3493), 1, + anon_sym_DASH_DASH, + ACTIONS(3675), 1, + anon_sym_BANG, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, + sym_type_arguments, + STATE(3630), 1, + sym_optional_chain, + ACTIONS(4759), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4761), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4769), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4777), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3677), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [76436] = 18, + [77412] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(3675), 1, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4774), 1, + ACTIONS(4763), 1, + anon_sym_AMP_AMP, + ACTIONS(4765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, anon_sym_LT, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3678), 11, + ACTIONS(4759), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4769), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 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, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(4783), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76514] = 22, + ACTIONS(3677), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [77512] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + ACTIONS(4754), 1, + anon_sym_STAR_STAR, + ACTIONS(4767), 1, anon_sym_GT_GT, - ACTIONS(4751), 1, + ACTIONS(4779), 1, anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - STATE(3535), 1, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3678), 5, + ACTIONS(3675), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 9, + ACTIONS(3677), 9, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -171765,261 +172601,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [76600] = 29, + [77598] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3678), 1, - anon_sym_BANG, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(3495), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, - anon_sym_PIPE, - STATE(3535), 1, + ACTIONS(4756), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4737), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4749), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(3677), 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, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3680), 4, - sym__ternary_qmark, - anon_sym_as, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [76700] = 32, + anon_sym_instanceof, + [77676] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3451), 1, + anon_sym_as, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3495), 1, anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4765), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(4767), 1, + anon_sym_GT_GT, + ACTIONS(4771), 1, + anon_sym_AMP, + ACTIONS(4773), 1, + anon_sym_CARET, + ACTIONS(4775), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + ACTIONS(4789), 1, anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, + ACTIONS(4791), 1, sym__ternary_qmark, - STATE(3535), 1, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4761), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + ACTIONS(4769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, + ACTIONS(4777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4757), 2, + ACTIONS(4785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + ACTIONS(4787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, + STATE(1383), 2, sym_template_string, sym_arguments, - ACTIONS(4755), 3, + ACTIONS(4783), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76806] = 32, + [77782] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3274), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(3459), 1, anon_sym_QMARK_DOT, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, + ACTIONS(4754), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, - anon_sym_PIPE, ACTIONS(4767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, - sym__ternary_qmark, - STATE(3535), 1, + anon_sym_GT_GT, + ACTIONS(4779), 1, + anon_sym_PERCENT, + ACTIONS(4781), 1, + anon_sym_LT, + STATE(3466), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3630), 1, sym_optional_chain, - ACTIONS(4735), 2, + ACTIONS(4759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4769), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4777), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_template_string, + sym_arguments, + ACTIONS(3675), 7, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4743), 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3677), 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, + [77864] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4163), 1, + anon_sym_LBRACK, + ACTIONS(3530), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4166), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4083), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(4085), 23, + 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, - ACTIONS(4749), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77918] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_EQ, + ACTIONS(4425), 1, + anon_sym_COLON, + ACTIONS(3924), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3918), 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(4757), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4759), 2, + anon_sym_DASH_DASH, + ACTIONS(3922), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76912] = 14, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77972] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(155), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(3200), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, + anon_sym_LBRACK, + ACTIONS(4812), 1, anon_sym_COMMA, - ACTIONS(3241), 1, + ACTIONS(4814), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3604), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4607), 2, + ACTIONS(4816), 2, sym_number, sym_private_property_identifier, - STATE(3104), 3, + STATE(3623), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4198), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4810), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172040,48 +172948,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76982] = 14, + [78041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(4785), 1, - anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3472), 12, + ACTIONS(4818), 1, + sym_identifier, + ACTIONS(3184), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 16, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + ACTIONS(3188), 21, + 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, @@ -172094,39 +172991,37 @@ 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, - [77052] = 7, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + [78090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(4078), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3670), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4081), 3, - anon_sym_GT, + ACTIONS(3863), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2936), 11, + ACTIONS(3702), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(2933), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172145,108 +173040,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77108] = 32, + [78143] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(155), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_GT_GT, - ACTIONS(4745), 1, - anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, - anon_sym_PIPE, - ACTIONS(4767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4735), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4737), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4743), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4757), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4759), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77214] = 5, + ACTIONS(4812), 1, + anon_sym_COMMA, + ACTIONS(4822), 1, + anon_sym_RBRACE, + STATE(3602), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4816), 2, + sym_number, + sym_private_property_identifier, + STATE(3597), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4820), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 3, + ACTIONS(3320), 1, + anon_sym_extends, + ACTIONS(3931), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3934), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3560), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2936), 12, + ACTIONS(2929), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -172266,34 +173142,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77266] = 5, + [78265] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4824), 1, + anon_sym_STAR, + ACTIONS(4826), 1, + anon_sym_async, + ACTIONS(4830), 1, + anon_sym_readonly, + STATE(2287), 1, + sym_override_modifier, + ACTIONS(4828), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4832), 2, + anon_sym_get, + anon_sym_set, + STATE(2444), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3090), 3, anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [78336] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1859), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2936), 14, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + STATE(2286), 1, + sym_override_modifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [78417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(3184), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_instanceof, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + anon_sym_satisfies, + ACTIONS(3188), 21, + 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, @@ -172309,49 +173302,210 @@ 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_BQUOTE, - anon_sym_satisfies, - [77318] = 12, + [78466] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4838), 1, + anon_sym_STAR, + ACTIONS(4840), 1, + anon_sym_async, + ACTIONS(4844), 1, + anon_sym_readonly, + STATE(2288), 1, + sym_override_modifier, + ACTIONS(4842), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4846), 2, + anon_sym_get, + anon_sym_set, + STATE(2527), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [78537] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(4788), 1, + ACTIONS(4705), 1, + anon_sym_STAR, + ACTIONS(4709), 1, + anon_sym_async, + ACTIONS(4848), 1, + anon_sym_abstract, + ACTIONS(4711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4715), 2, + anon_sym_get, + anon_sym_set, + STATE(2473), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78604] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(3584), 13, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + STATE(2286), 1, + sym_override_modifier, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [78685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_EQ, + ACTIONS(3924), 1, + anon_sym_RBRACK, + ACTIONS(4425), 1, + anon_sym_COMMA, + ACTIONS(3918), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3586), 17, + ACTIONS(3922), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172366,34 +173520,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [77384] = 4, + [78738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(4163), 1, + anon_sym_LBRACK, + ACTIONS(4166), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3530), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4083), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 25, + ACTIONS(4085), 21, 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, @@ -172412,111 +173569,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [77434] = 32, + [78791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK_DOT, - ACTIONS(3481), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH_DASH, - ACTIONS(3501), 1, - anon_sym_as, - ACTIONS(3505), 1, + ACTIONS(1479), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4850), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_satisfies, - ACTIONS(4739), 1, - anon_sym_LT, - ACTIONS(4741), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4745), 1, anon_sym_AMP, - ACTIONS(4747), 1, - anon_sym_CARET, - ACTIONS(4751), 1, - anon_sym_PERCENT, - ACTIONS(4753), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_AMP_AMP, - ACTIONS(4763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4765), 1, anon_sym_PIPE, - ACTIONS(4767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4769), 1, - sym__ternary_qmark, - STATE(3535), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4735), 2, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4737), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4743), 2, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(4853), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4749), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4757), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4759), 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(1493), 2, - sym_template_string, - sym_arguments, - ACTIONS(4755), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77540] = 7, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(4078), 1, - anon_sym_LBRACK, - ACTIONS(3670), 2, + ACTIONS(4131), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4856), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2940), 21, + ACTIONS(4859), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172535,113 +173659,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77595] = 20, + [78889] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(4793), 1, - anon_sym_RBRACE, - STATE(2280), 1, - sym_override_modifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [77676] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(1933), 1, anon_sym_async, - ACTIONS(1935), 1, + ACTIONS(1941), 1, anon_sym_readonly, - ACTIONS(1939), 1, + ACTIONS(1945), 1, anon_sym_override, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - STATE(2280), 1, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(2286), 1, sym_override_modifier, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(1937), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172657,134 +173720,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77757] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4072), 1, - anon_sym_LBRACK, - ACTIONS(4075), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3398), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2936), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 21, - 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_BQUOTE, - anon_sym_satisfies, - [77810] = 14, + [78970] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4424), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4864), 1, anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4430), 1, + ACTIONS(4866), 1, anon_sym_async, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4432), 2, + ACTIONS(4870), 1, + anon_sym_readonly, + STATE(2289), 1, + sym_override_modifier, + ACTIONS(4868), 2, sym_number, sym_private_property_identifier, - ACTIONS(4436), 2, + ACTIONS(4872), 2, anon_sym_get, anon_sym_set, - STATE(2505), 3, + STATE(2511), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77879] = 4, + [79041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, - sym_identifier, - ACTIONS(3176), 17, + ACTIONS(3075), 1, + anon_sym_EQ, + ACTIONS(2929), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(3180), 21, + ACTIONS(2933), 24, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -172802,31 +173817,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - [77928] = 4, + anon_sym_satisfies, + [79090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 3, + ACTIONS(3044), 1, + anon_sym_RBRACK, + ACTIONS(3062), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4797), 14, + ACTIONS(3113), 1, + anon_sym_EQ, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4800), 22, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -172849,151 +173868,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77977] = 15, + [79143] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4508), 1, anon_sym_STAR, - ACTIONS(4805), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4514), 1, anon_sym_async, - ACTIONS(4809), 1, - anon_sym_readonly, - STATE(2282), 1, - sym_override_modifier, - ACTIONS(4807), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4516), 2, sym_number, sym_private_property_identifier, - ACTIONS(4811), 2, + ACTIONS(4520), 2, anon_sym_get, anon_sym_set, - STATE(2511), 3, + STATE(2515), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, 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, - [78048] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, anon_sym_readonly, - ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - STATE(2280), 1, - sym_override_modifier, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [78129] = 13, + [79212] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4824), 1, anon_sym_STAR, - ACTIONS(4815), 1, + ACTIONS(4826), 1, anon_sym_async, - ACTIONS(4821), 1, + ACTIONS(4874), 1, anon_sym_abstract, - ACTIONS(4817), 2, + ACTIONS(4828), 2, sym_number, sym_private_property_identifier, - ACTIONS(4819), 2, + ACTIONS(4832), 2, anon_sym_get, anon_sym_set, - STATE(2462), 3, + STATE(2444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -173002,7 +173959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173020,86 +173977,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78196] = 14, + [79279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1238), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1240), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4825), 1, - anon_sym_COMMA, - ACTIONS(4827), 1, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(3693), 1, + STATE(2286), 1, + sym_override_modifier, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4829), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(3649), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4194), 3, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4823), 20, + ACTIONS(1937), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78265] = 6, + [79360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(4061), 1, - anon_sym_RBRACK, - ACTIONS(4220), 1, + ACTIONS(4135), 3, anon_sym_COMMA, - ACTIONS(3785), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4878), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 22, + ACTIONS(4881), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173122,29 +174083,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78318] = 4, + [79409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 3, + ACTIONS(1469), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4831), 14, + ACTIONS(4884), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4834), 22, + ACTIONS(4887), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173167,106 +174128,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78367] = 13, + [79458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(3931), 1, + anon_sym_LBRACK, + ACTIONS(3934), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3320), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2929), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(1923), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, + 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_BQUOTE, + anon_sym_satisfies, + [79511] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4607), 2, + ACTIONS(4890), 1, + anon_sym_STAR, + ACTIONS(4892), 1, + anon_sym_async, + ACTIONS(4896), 1, + anon_sym_readonly, + STATE(2294), 1, + sym_override_modifier, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - ACTIONS(4609), 2, + ACTIONS(4898), 2, anon_sym_get, anon_sym_set, - STATE(3104), 3, + STATE(2509), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78434] = 20, + [79582] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, + ACTIONS(1939), 1, anon_sym_async, - ACTIONS(1935), 1, + ACTIONS(1941), 1, anon_sym_readonly, - ACTIONS(1939), 1, + ACTIONS(1945), 1, anon_sym_override, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4837), 1, + ACTIONS(4900), 1, anon_sym_RBRACE, - STATE(2280), 1, + STATE(2286), 1, sym_override_modifier, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(1937), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173282,34 +174292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78515] = 4, + [79663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - sym_identifier, - ACTIONS(3176), 17, + ACTIONS(3972), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4902), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(3180), 21, - sym__automatic_semicolon, + ACTIONS(4905), 22, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173325,31 +174333,33 @@ 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_BQUOTE, - [78564] = 4, + anon_sym_satisfies, + [79712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 3, + ACTIONS(1499), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4841), 14, + ACTIONS(4908), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4844), 22, + ACTIONS(4911), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173372,84 +174382,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78613] = 14, + [79761] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, + ACTIONS(3010), 1, + anon_sym_EQ, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4825), 1, + ACTIONS(3702), 2, anon_sym_COMMA, - ACTIONS(4849), 1, - anon_sym_RBRACE, - STATE(3725), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4829), 2, - sym_number, - sym_private_property_identifier, - STATE(3806), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4194), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4847), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [78682] = 4, + anon_sym_extends, + ACTIONS(3863), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2929), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2933), 21, + 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_BQUOTE, + anon_sym_satisfies, + [79816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 3, + ACTIONS(1525), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4851), 14, + ACTIONS(4914), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4854), 22, + ACTIONS(4917), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173472,132 +174475,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78731] = 15, + [79865] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4857), 1, + ACTIONS(4508), 1, anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_async, - ACTIONS(4863), 1, - anon_sym_readonly, - STATE(2276), 1, - sym_override_modifier, - ACTIONS(4861), 2, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4635), 2, sym_number, sym_private_property_identifier, - ACTIONS(4865), 2, + ACTIONS(4637), 2, anon_sym_get, anon_sym_set, - STATE(2512), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, - anon_sym_symbol, - [78802] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3910), 1, - anon_sym_EQ, - ACTIONS(4213), 1, - anon_sym_RBRACK, - ACTIONS(4416), 1, - anon_sym_COMMA, - ACTIONS(3908), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3912), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78855] = 4, + anon_sym_symbol, + [79932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 3, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(4214), 1, + anon_sym_RBRACK, + ACTIONS(4421), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4867), 14, + ACTIONS(1353), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4870), 22, + ACTIONS(1357), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173620,85 +174576,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78904] = 13, + [79985] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4634), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4669), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4673), 1, - anon_sym_async, - ACTIONS(4873), 1, - anon_sym_abstract, - ACTIONS(4675), 2, + ACTIONS(4920), 1, + anon_sym_RBRACE, + STATE(2286), 1, + sym_override_modifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(4679), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - STATE(2437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78971] = 6, + [80066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, + ACTIONS(3738), 1, anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4189), 1, anon_sym_RBRACK, - ACTIONS(4291), 1, + ACTIONS(4427), 1, anon_sym_COMMA, - ACTIONS(1399), 14, + ACTIONS(3736), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1403), 22, + ACTIONS(3740), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173721,35 +174684,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [79024] = 6, + [80119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, - anon_sym_extends, - ACTIONS(4072), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4075), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2936), 12, + ACTIONS(3030), 1, + anon_sym_LPAREN, + STATE(2524), 1, + sym_arguments, + ACTIONS(2929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 22, + ACTIONS(2933), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173768,33 +174730,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [79077] = 5, + [80170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + STATE(2286), 1, + sym_override_modifier, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, anon_sym_LPAREN, - STATE(2501), 1, - sym_arguments, - ACTIONS(2936), 14, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [80251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4922), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 23, + ACTIONS(4925), 22, 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, @@ -173814,38 +174836,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [79128] = 15, + [80300] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4875), 1, + ACTIONS(4864), 1, anon_sym_STAR, - ACTIONS(4877), 1, - anon_sym_async, - ACTIONS(4881), 1, - anon_sym_readonly, - STATE(2278), 1, - sym_override_modifier, - ACTIONS(4879), 2, + ACTIONS(4928), 2, sym_number, sym_private_property_identifier, - ACTIONS(4883), 2, + ACTIONS(4930), 2, anon_sym_get, anon_sym_set, - STATE(2504), 3, + STATE(2981), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -173854,115 +174868,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79199] = 20, + [80362] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4426), 1, + anon_sym_async, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4885), 1, - anon_sym_RBRACE, - STATE(2280), 1, - sym_override_modifier, - STATE(3596), 1, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79280] = 15, + [80436] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4932), 1, anon_sym_STAR, - ACTIONS(4815), 1, - anon_sym_async, - ACTIONS(4887), 1, - anon_sym_readonly, - STATE(2285), 1, - sym_override_modifier, - ACTIONS(4817), 2, + ACTIONS(4934), 2, sym_number, sym_private_property_identifier, - ACTIONS(4819), 2, + ACTIONS(4936), 2, anon_sym_get, anon_sym_set, - STATE(2462), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -173971,92 +174976,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 15, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79351] = 6, + [80498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - anon_sym_LBRACK, - ACTIONS(3900), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3564), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3893), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(4427), 1, + anon_sym_of, + ACTIONS(4610), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3895), 21, - 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_BQUOTE, - anon_sym_satisfies, - [79404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4889), 14, + ACTIONS(3736), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4892), 22, + ACTIONS(3740), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174079,274 +175041,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [79453] = 6, + [80550] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(155), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(3296), 1, anon_sym_LBRACK, - ACTIONS(4081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3670), 3, + ACTIONS(4816), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4940), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2936), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 21, - 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_BQUOTE, - anon_sym_satisfies, - [79506] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_EQ, - ACTIONS(2936), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79555] = 20, + anon_sym_RBRACE, + STATE(3948), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4262), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4938), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [80614] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, - ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(2280), 1, - sym_override_modifier, - STATE(3568), 1, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79636] = 4, + [80686] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_STAR, + ACTIONS(4944), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4946), 2, + anon_sym_get, + anon_sym_set, + STATE(3072), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4897), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [80748] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4900), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 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_BQUOTE, - anon_sym_satisfies, - [79685] = 6, + ACTIONS(4948), 1, + anon_sym_STAR, + ACTIONS(4950), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4952), 2, + anon_sym_get, + anon_sym_set, + STATE(3060), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [80810] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RBRACK, - ACTIONS(3100), 1, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(2936), 14, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1656), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79738] = 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1654), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [80870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4903), 14, + ACTIONS(3920), 1, + anon_sym_EQ, + ACTIONS(4425), 1, + anon_sym_of, + ACTIONS(4607), 1, + anon_sym_in, + ACTIONS(3918), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4906), 22, + ACTIONS(3922), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174369,100 +175347,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [79787] = 20, + [80922] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, - ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4948), 1, anon_sym_STAR, - STATE(2280), 1, - sym_override_modifier, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(4954), 1, + anon_sym_async, + ACTIONS(4956), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(4958), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, + STATE(2512), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79868] = 11, + [80986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1664), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4875), 1, - anon_sym_STAR, - ACTIONS(4909), 2, sym_number, sym_private_property_identifier, - ACTIONS(4911), 2, - anon_sym_get, - anon_sym_set, - STATE(3094), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 10, 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_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(1662), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174470,6 +175430,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, @@ -174481,47 +175443,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79930] = 12, + anon_sym_abstract, + [81036] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4913), 1, - anon_sym_STAR, - ACTIONS(4915), 1, - anon_sym_async, - ACTIONS(4917), 2, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4635), 2, sym_number, sym_private_property_identifier, - ACTIONS(4919), 2, - anon_sym_get, - anon_sym_set, - STATE(2439), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -174533,46 +175495,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79994] = 17, + [81098] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, + ACTIONS(1939), 1, anon_sym_async, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - STATE(3596), 1, + ACTIONS(4920), 1, + anon_sym_RBRACE, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 17, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174590,49 +175552,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80068] = 17, + [81172] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4920), 1, anon_sym_RBRACE, - STATE(3568), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 17, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -174647,36 +175608,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80142] = 10, + [81244] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3596), 1, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(4900), 1, + anon_sym_RBRACE, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174684,8 +175653,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, @@ -174697,39 +175664,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80202] = 11, + [81316] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4705), 1, anon_sym_STAR, - ACTIONS(4923), 2, + ACTIONS(4960), 2, sym_number, sym_private_property_identifier, - ACTIONS(4925), 2, + ACTIONS(4962), 2, anon_sym_get, anon_sym_set, - STATE(3002), 3, + STATE(3061), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174748,30 +175715,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80264] = 11, + [81378] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4927), 1, + ACTIONS(4864), 1, anon_sym_STAR, - ACTIONS(4929), 2, + ACTIONS(4866), 1, + anon_sym_async, + ACTIONS(4868), 2, sym_number, sym_private_property_identifier, - ACTIONS(4931), 2, + ACTIONS(4872), 2, anon_sym_get, anon_sym_set, - STATE(3034), 3, + STATE(2511), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -174780,11 +175749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -174799,86 +175767,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80326] = 10, + [81442] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_STAR, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1656), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(4966), 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, - [80386] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, + STATE(3090), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3232), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174886,8 +175807,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, @@ -174899,32 +175818,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80446] = 4, + [81504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 1, - sym_regex_flags, - ACTIONS(4520), 18, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(4421), 1, + anon_sym_of, + ACTIONS(4604), 1, + anon_sym_in, + ACTIONS(1353), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4522), 19, + ACTIONS(1357), 22, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -174941,38 +175860,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - [80494] = 10, + anon_sym_satisfies, + [81556] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_STAR, + ACTIONS(4970), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(4972), 2, + anon_sym_get, + anon_sym_set, + STATE(2962), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174980,8 +175904,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, @@ -174993,45 +175915,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80554] = 10, + [81618] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_DQUOTE, + ACTIONS(1295), 1, anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4974), 1, + anon_sym_STAR, + ACTIONS(4976), 1, + anon_sym_async, + ACTIONS(4978), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(4980), 2, + anon_sym_get, + anon_sym_set, + STATE(2466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1656), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175043,94 +175967,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3079), 1, - anon_sym_in, - ACTIONS(3082), 1, - anon_sym_of, - ACTIONS(2936), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2940), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80666] = 16, + [81682] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4942), 1, anon_sym_STAR, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(4982), 1, + anon_sym_async, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(4986), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, + STATE(2513), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 18, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -175145,45 +176019,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80738] = 10, + [81746] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_DQUOTE, + ACTIONS(1295), 1, anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_STAR, + ACTIONS(4892), 1, + anon_sym_async, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(4898), 2, + anon_sym_get, + anon_sym_set, + STATE(2509), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1656), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175195,39 +176071,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80798] = 11, + [81810] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3207), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4933), 1, - anon_sym_STAR, - ACTIONS(4935), 2, sym_number, sym_private_property_identifier, - ACTIONS(4937), 2, - anon_sym_get, - anon_sym_set, - STATE(3066), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175235,6 +176108,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, @@ -175246,49 +176121,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80860] = 17, + [81870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3083), 1, + anon_sym_EQ, + ACTIONS(2929), 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_DASH_DASH, + ACTIONS(2933), 23, + 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_BQUOTE, + anon_sym_satisfies, + [81918] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4793), 1, + ACTIONS(4862), 1, anon_sym_RBRACE, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 17, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -175303,41 +176221,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80934] = 12, + [81990] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4815), 1, + ACTIONS(4990), 1, anon_sym_async, - ACTIONS(4817), 2, + ACTIONS(4992), 2, sym_number, sym_private_property_identifier, - ACTIONS(4819), 2, + ACTIONS(4994), 2, anon_sym_get, anon_sym_set, - STATE(2462), 3, + STATE(2518), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175355,46 +176273,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80998] = 11, + [82054] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3252), 2, - anon_sym_COMMA, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(4876), 1, anon_sym_RBRACE, - ACTIONS(4607), 2, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(3104), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175406,36 +176330,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81060] = 10, + [82128] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_STAR, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(5000), 2, + anon_sym_get, + anon_sym_set, + STATE(3055), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1656), 20, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175443,8 +176370,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, @@ -175456,36 +176381,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81120] = 10, + [82190] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(3223), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1841), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3596), 1, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175493,8 +176426,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, @@ -175506,47 +176437,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81180] = 12, + [82262] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3207), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1664), 6, anon_sym_STAR, - ACTIONS(4805), 1, - anon_sym_async, - ACTIONS(4807), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4811), 2, - anon_sym_get, - anon_sym_set, - STATE(2511), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175558,31 +176487,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81244] = 4, + [82322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3010), 1, anon_sym_EQ, - ACTIONS(2936), 14, + ACTIONS(3087), 1, + anon_sym_in, + ACTIONS(3090), 1, + anon_sym_of, + ACTIONS(2929), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2940), 23, + ACTIONS(2933), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -175602,98 +176533,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [81292] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4939), 1, - anon_sym_STAR, - ACTIONS(4941), 1, - anon_sym_async, - ACTIONS(4943), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4945), 2, - anon_sym_get, - anon_sym_set, - STATE(2517), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81356] = 17, + [82374] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, + ACTIONS(1939), 1, anon_sym_async, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - STATE(3596), 1, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 17, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175711,44 +176590,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81430] = 16, + [82448] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1869), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175756,6 +176627,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, @@ -175767,36 +176640,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81502] = 10, + [82508] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(3241), 1, + ACTIONS(3232), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1658), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(3210), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1656), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175817,82 +176690,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81562] = 12, + [82568] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1238), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1240), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - anon_sym_LBRACK, - ACTIONS(4829), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4070), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4103), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4194), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4947), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81626] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4951), 1, + ACTIONS(4968), 1, anon_sym_STAR, - ACTIONS(4953), 2, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - ACTIONS(4955), 2, + ACTIONS(5006), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2497), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -175901,11 +176724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 18, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -175920,44 +176742,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81688] = 16, + [82632] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(4885), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3218), 1, anon_sym_RBRACE, - STATE(3596), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1664), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175965,6 +176779,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, @@ -175976,98 +176792,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81760] = 6, + [82692] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_of, - ACTIONS(4701), 1, - anon_sym_in, - ACTIONS(3785), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(1813), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3789), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81812] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(4885), 1, + ACTIONS(3218), 1, anon_sym_RBRACE, - STATE(3596), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -176079,44 +176842,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81886] = 16, + [82752] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4793), 1, - anon_sym_RBRACE, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 18, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176135,44 +176898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81958] = 16, + [82824] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4838), 1, anon_sym_STAR, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(5010), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, + STATE(3002), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 18, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176191,89 +176949,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82030] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3910), 1, - anon_sym_EQ, - ACTIONS(4416), 1, - anon_sym_of, - ACTIONS(4722), 1, - anon_sym_in, - ACTIONS(3908), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3912), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82082] = 11, + [82886] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4959), 2, + ACTIONS(4900), 1, + anon_sym_RBRACE, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(4961), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -176288,49 +177006,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82144] = 17, + [82960] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1861), 1, + ACTIONS(1859), 1, anon_sym_RBRACE, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - STATE(3568), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 17, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -176345,39 +177062,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82218] = 11, + [83032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4913), 1, + ACTIONS(5012), 1, anon_sym_STAR, - ACTIONS(4963), 2, + ACTIONS(5014), 2, sym_number, sym_private_property_identifier, - ACTIONS(4965), 2, + ACTIONS(5016), 2, anon_sym_get, anon_sym_set, - STATE(3113), 3, + STATE(3116), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176396,32 +177113,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82280] = 12, + [83094] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4967), 1, + ACTIONS(4838), 1, anon_sym_STAR, - ACTIONS(4969), 1, + ACTIONS(4840), 1, anon_sym_async, - ACTIONS(4971), 2, + ACTIONS(4842), 2, sym_number, sym_private_property_identifier, - ACTIONS(4973), 2, + ACTIONS(4846), 2, anon_sym_get, anon_sym_set, - STATE(2497), 3, + STATE(2527), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -176430,7 +177147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176448,97 +177165,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82344] = 12, + [83158] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4951), 1, + ACTIONS(5018), 1, anon_sym_STAR, - ACTIONS(4975), 1, + ACTIONS(5020), 1, anon_sym_async, - ACTIONS(4977), 2, + ACTIONS(5022), 2, sym_number, sym_private_property_identifier, - ACTIONS(4979), 2, + ACTIONS(5024), 2, anon_sym_get, anon_sym_set, - STATE(2465), 3, + STATE(2531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [82408] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3241), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -176550,32 +177217,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82468] = 6, + [83222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_of, - ACTIONS(4719), 1, - anon_sym_in, - ACTIONS(1399), 13, + ACTIONS(4483), 1, + sym_regex_flags, + ACTIONS(4479), 18, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(1403), 22, + anon_sym_satisfies, + ACTIONS(4481), 19, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -176592,90 +177259,41 @@ 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_BQUOTE, - anon_sym_satisfies, - [82520] = 16, + [83270] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4974), 1, anon_sym_STAR, - ACTIONS(4837), 1, - anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(5026), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(5028), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, + STATE(2972), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [82592] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 10, + ACTIONS(3210), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1656), 21, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176683,8 +177301,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, @@ -176696,31 +177312,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [82642] = 11, + [83332] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5018), 1, anon_sym_STAR, - ACTIONS(4981), 2, + ACTIONS(5030), 2, sym_number, sym_private_property_identifier, - ACTIONS(4983), 2, + ACTIONS(5032), 2, anon_sym_get, anon_sym_set, - STATE(3077), 3, + STATE(3036), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -176729,120 +177344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [82704] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(4837), 1, - anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [82778] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_RBRACE, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176861,41 +177363,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82850] = 12, + [83394] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4634), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4875), 1, + ACTIONS(4824), 1, anon_sym_STAR, - ACTIONS(4877), 1, + ACTIONS(4826), 1, anon_sym_async, - ACTIONS(4879), 2, + ACTIONS(4828), 2, sym_number, sym_private_property_identifier, - ACTIONS(4883), 2, + ACTIONS(4832), 2, anon_sym_get, anon_sym_set, - STATE(2504), 3, + STATE(2444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176913,47 +177415,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82914] = 12, + [83458] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4985), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1664), 6, anon_sym_STAR, - ACTIONS(4987), 1, - anon_sym_async, - ACTIONS(4989), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4991), 2, - anon_sym_get, - anon_sym_set, - STATE(2491), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -176965,43 +177465,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82978] = 11, + [83518] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1859), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4669), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4993), 2, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(4995), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - STATE(3011), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 18, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -177016,30 +177522,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83040] = 11, + [83592] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4857), 1, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4997), 2, + ACTIONS(5034), 2, sym_number, sym_private_property_identifier, - ACTIONS(4999), 2, + ACTIONS(5036), 2, anon_sym_get, anon_sym_set, - STATE(3041), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -177048,7 +177554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177067,43 +177573,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83102] = 11, + [83654] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4939), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(5001), 2, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(5003), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - STATE(3100), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -177118,39 +177630,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83164] = 11, + [83728] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1664), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4967), 1, - anon_sym_STAR, - ACTIONS(5005), 2, sym_number, sym_private_property_identifier, - ACTIONS(5007), 2, - anon_sym_get, - anon_sym_set, - STATE(2951), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177158,6 +177667,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, @@ -177169,30 +177680,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83226] = 11, + [83788] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4824), 1, anon_sym_STAR, - ACTIONS(5009), 2, + ACTIONS(5038), 2, sym_number, sym_private_property_identifier, - ACTIONS(5011), 2, + ACTIONS(5040), 2, anon_sym_get, anon_sym_set, - STATE(2994), 3, + STATE(3009), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177201,7 +177712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 18, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177220,39 +177731,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83288] = 11, + [83850] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4985), 1, - anon_sym_STAR, - ACTIONS(5013), 2, sym_number, sym_private_property_identifier, - ACTIONS(5015), 2, - anon_sym_get, - anon_sym_set, - STATE(3053), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 18, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177260,58 +177768,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, - [83350] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_STAR, - ACTIONS(5017), 1, - anon_sym_async, - ACTIONS(5019), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5021), 2, anon_sym_get, anon_sym_set, - STATE(2514), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -177323,32 +177781,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83414] = 12, + [83910] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4857), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_async, - ACTIONS(4861), 2, + ACTIONS(5030), 2, sym_number, sym_private_property_identifier, - ACTIONS(4865), 2, - anon_sym_get, - anon_sym_set, - STATE(2512), 3, + STATE(3036), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -177357,57 +177808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [83478] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4885), 1, - anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177428,25 +177829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83545] = 9, + [83967] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5013), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(3053), 3, + STATE(3090), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -177455,7 +177856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177476,34 +177877,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83602] = 9, + [84024] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5009), 2, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(2994), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 20, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177524,39 +177930,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83659] = 14, + [84091] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, - anon_sym_RBRACE, - STATE(3568), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177577,25 +177983,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83726] = 9, + [84158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4909), 2, + ACTIONS(5014), 2, sym_number, sym_private_property_identifier, - STATE(3094), 3, + STATE(3116), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -177604,7 +178010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177625,25 +178031,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83783] = 9, + [84215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4993), 2, + ACTIONS(4970), 2, sym_number, sym_private_property_identifier, - STATE(3011), 3, + STATE(2962), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177652,7 +178058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177673,73 +178079,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83840] = 9, + [84272] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5023), 2, - sym_number, - sym_private_property_identifier, - STATE(3056), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1931), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [83897] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5025), 2, + ACTIONS(5042), 2, sym_number, sym_private_property_identifier, - STATE(2731), 3, + STATE(3006), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177748,7 +178106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177769,25 +178127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83954] = 9, + [84329] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4929), 2, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + STATE(3002), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -177796,7 +178154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177817,25 +178175,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84011] = 9, + [84386] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4959), 2, + ACTIONS(5034), 2, sym_number, sym_private_property_identifier, - STATE(3039), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -177844,7 +178202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177865,25 +178223,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84068] = 9, + [84443] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5027), 2, + ACTIONS(4934), 2, sym_number, sym_private_property_identifier, - STATE(3030), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177892,7 +178250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177913,39 +178271,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84125] = 14, + [84500] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4793), 1, + ACTIONS(4862), 1, anon_sym_RBRACE, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177966,34 +178324,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84192] = 9, + [84567] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4935), 2, + ACTIONS(4950), 2, sym_number, sym_private_property_identifier, - STATE(3066), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178014,39 +178372,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84249] = 14, + [84624] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1859), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178067,34 +178425,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84316] = 9, + [84691] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4923), 2, + ACTIONS(5026), 2, sym_number, sym_private_property_identifier, - STATE(3002), 3, + STATE(2972), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178115,34 +178473,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84373] = 9, + [84748] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4953), 2, + ACTIONS(4900), 1, + anon_sym_RBRACE, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3210), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 20, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178163,25 +178526,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84430] = 9, + [84815] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4981), 2, + ACTIONS(4834), 1, + anon_sym_STAR, + STATE(2286), 1, + sym_override_modifier, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(3077), 3, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(1937), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [84888] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4928), 2, + sym_number, + sym_private_property_identifier, + STATE(2981), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -178190,7 +178609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178211,34 +178630,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84487] = 9, + [84945] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5001), 2, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(3100), 3, + STATE(2814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178259,39 +178678,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84544] = 14, + [85002] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4837), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(3596), 1, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178312,25 +178731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84611] = 9, + [85069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4963), 2, + ACTIONS(5038), 2, sym_number, sym_private_property_identifier, - STATE(3113), 3, + STATE(3009), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -178339,7 +178758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178360,148 +178779,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84668] = 19, + [85126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(224), 1, - anon_sym_STAR, - ACTIONS(1620), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(4998), 2, + sym_number, + sym_private_property_identifier, + STATE(3055), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_async, - ACTIONS(5037), 1, + sym_identifier, anon_sym_static, - ACTIONS(5039), 1, anon_sym_readonly, - ACTIONS(5045), 1, - anon_sym_override, - STATE(2266), 1, - sym_accessibility_modifier, - STATE(2274), 1, - sym_override_modifier, - ACTIONS(5031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5035), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - ACTIONS(5043), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2889), 3, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85183] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(5049), 2, + sym_number, + sym_private_property_identifier, + STATE(2729), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3808), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5029), 11, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84745] = 17, + [85240] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, - ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - STATE(2280), 1, - sym_override_modifier, - ACTIONS(1927), 2, + ACTIONS(4920), 1, + anon_sym_RBRACE, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(5047), 2, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85307] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4944), 2, + sym_number, + sym_private_property_identifier, + STATE(3072), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 8, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(1937), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85364] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4960), 2, + sym_number, + sym_private_property_identifier, + STATE(3061), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(3210), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84818] = 9, + [85421] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4997), 2, + ACTIONS(5051), 2, sym_number, sym_private_property_identifier, - STATE(3041), 3, + STATE(2971), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178522,19 +179072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84875] = 5, + [85478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1670), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 10, + ACTIONS(3210), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -178545,7 +179095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178566,101 +179116,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84924] = 14, + [85527] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, + ACTIONS(224), 1, + anon_sym_STAR, + ACTIONS(1626), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5057), 1, + anon_sym_async, + ACTIONS(5061), 1, + anon_sym_static, + ACTIONS(5063), 1, + anon_sym_readonly, + ACTIONS(5069), 1, + anon_sym_override, + STATE(2272), 1, + sym_accessibility_modifier, + STATE(2300), 1, + sym_override_modifier, + ACTIONS(5055), 2, anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1869), 1, anon_sym_RBRACE, - ACTIONS(1923), 1, + ACTIONS(5059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5065), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5067), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3950), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5053), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85604] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(5071), 1, + anon_sym_readonly, + STATE(2318), 1, + sym_override_modifier, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, + STATE(2814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(3210), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84991] = 14, + [85664] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1927), 2, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -178672,34 +179275,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85058] = 9, + [85730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5005), 2, sym_number, sym_private_property_identifier, - STATE(2951), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1931), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178720,34 +179320,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85115] = 9, + [85782] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1664), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(5050), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(2798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3210), 6, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178768,39 +179365,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85172] = 13, + [85834] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - ACTIONS(5047), 2, + ACTIONS(5044), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 18, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178819,76 +179416,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85236] = 9, + [85898] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, + anon_sym_override, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_abstract, - ACTIONS(5050), 2, + ACTIONS(4834), 1, + anon_sym_STAR, + STATE(2286), 1, + sym_override_modifier, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(2798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5073), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(3210), 3, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85292] = 11, + [85968] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_readonly, - STATE(2305), 1, - sym_override_modifier, - ACTIONS(5050), 2, + ACTIONS(4874), 1, + anon_sym_abstract, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(2798), 3, + STATE(2814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3210), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -178896,70 +179496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 18, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, 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, - [85352] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5047), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_override, anon_sym_module, anon_sym_any, @@ -178967,29 +179517,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85418] = 11, + [86024] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5056), 1, + ACTIONS(5075), 1, anon_sym_readonly, - STATE(2302), 1, + STATE(2309), 1, sym_override_modifier, - ACTIONS(5025), 2, + ACTIONS(5049), 2, sym_number, sym_private_property_identifier, - STATE(2731), 3, + STATE(2729), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3210), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -178997,7 +179547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 18, + ACTIONS(3140), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179016,31 +179566,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85478] = 7, + [86084] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_DQUOTE, + ACTIONS(1295), 1, anon_sym_SQUOTE, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(5077), 1, + anon_sym_abstract, + ACTIONS(5049), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + STATE(2729), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 7, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1668), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179061,31 +179613,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85530] = 7, + [86140] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(3252), 2, - anon_sym_COMMA, + ACTIONS(4876), 1, anon_sym_RBRACE, - ACTIONS(1658), 6, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1656), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179106,25 +179660,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85582] = 9, + [86197] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4821), 1, - anon_sym_abstract, - ACTIONS(5025), 2, + ACTIONS(5079), 2, sym_number, sym_private_property_identifier, - STATE(2731), 3, + STATE(2723), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3210), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -179132,7 +179684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179153,87 +179705,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85638] = 16, + [86250] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, - ACTIONS(1939), 1, - anon_sym_override, - ACTIONS(4605), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - STATE(2280), 1, - sym_override_modifier, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5058), 2, + ACTIONS(5044), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85708] = 10, + [86309] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3596), 1, + ACTIONS(4920), 1, + anon_sym_RBRACE, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1658), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179254,80 +179800,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85765] = 12, + [86366] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5058), 2, + ACTIONS(230), 1, anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4920), 1, anon_sym_RBRACE, - ACTIONS(3206), 3, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [85826] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, + ACTIONS(1664), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(5060), 2, sym_number, sym_private_property_identifier, - STATE(2722), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179348,33 +179847,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85879] = 10, + [86423] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4885), 1, - anon_sym_RBRACE, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179395,33 +179894,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85936] = 10, + [86480] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4885), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(3596), 1, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1658), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179442,33 +179941,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85993] = 10, + [86537] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1822), 1, + ACTIONS(1788), 1, anon_sym_RBRACE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179489,33 +179988,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86050] = 10, + [86594] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3596), 1, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179536,33 +180035,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86107] = 10, + [86651] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3568), 1, + ACTIONS(4900), 1, + anon_sym_RBRACE, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179583,33 +180082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86164] = 10, + [86708] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4793), 1, + ACTIONS(4862), 1, anon_sym_RBRACE, - STATE(3596), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179630,42 +180129,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86221] = 10, + [86765] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -179677,33 +180179,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86278] = 10, + [86828] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4793), 1, + ACTIONS(1841), 1, anon_sym_RBRACE, - STATE(3596), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1658), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179724,33 +180226,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86335] = 10, + [86885] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179758,8 +180264,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, @@ -179771,33 +180275,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86392] = 10, + [86946] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4837), 1, + ACTIONS(1859), 1, anon_sym_RBRACE, - STATE(3596), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179818,33 +180322,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86449] = 10, + [87003] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4837), 1, - anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1658), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_DQUOTE, + ACTIONS(1295), 1, anon_sym_SQUOTE, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(5081), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + STATE(2796), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3210), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179865,33 +180367,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86506] = 10, + [87056] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4895), 1, + ACTIONS(1859), 1, anon_sym_RBRACE, - STATE(3568), 1, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1658), 6, + ACTIONS(1664), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179912,33 +180414,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86563] = 10, + [87113] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4895), 1, + ACTIONS(4900), 1, anon_sym_RBRACE, - STATE(3568), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179959,81 +180461,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86620] = 13, + [87170] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_STAR, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5058), 2, + ACTIONS(230), 1, anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1841), 1, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [86683] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(5062), 2, sym_number, sym_private_property_identifier, - STATE(2718), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180054,34 +180508,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86736] = 11, + [87227] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(1927), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(5047), 2, + ACTIONS(5073), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180102,32 +180554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86795] = 10, + [87283] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(1927), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5058), 2, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(5044), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2991), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1664), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180148,85 +180596,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86851] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1941), 1, - anon_sym_type, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1961), 1, - anon_sym_module, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1965), 1, - anon_sym_global, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - STATE(1150), 1, - sym_decorator, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3330), 1, - sym_declaration, - STATE(3391), 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, - [86930] = 7, + [87332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(5047), 2, + ACTIONS(5044), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1658), 6, + ACTIONS(1656), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180247,50 +180638,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86979] = 22, + [87381] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1818), 1, + ACTIONS(1947), 1, + anon_sym_type, + ACTIONS(1949), 1, anon_sym_namespace, - ACTIONS(1824), 1, + ACTIONS(1951), 1, anon_sym_import, - ACTIONS(1826), 1, + ACTIONS(1953), 1, anon_sym_var, - ACTIONS(1828), 1, + ACTIONS(1955), 1, anon_sym_let, - ACTIONS(1830), 1, + ACTIONS(1957), 1, anon_sym_const, - ACTIONS(1841), 1, + ACTIONS(1959), 1, anon_sym_class, - ACTIONS(1843), 1, + ACTIONS(1961), 1, anon_sym_async, - ACTIONS(1845), 1, + ACTIONS(1963), 1, anon_sym_function, - ACTIONS(1849), 1, + ACTIONS(1965), 1, anon_sym_declare, - ACTIONS(1851), 1, + ACTIONS(1967), 1, anon_sym_module, - ACTIONS(1853), 1, + ACTIONS(1969), 1, anon_sym_abstract, - ACTIONS(1855), 1, + ACTIONS(1971), 1, + anon_sym_global, + ACTIONS(1973), 1, anon_sym_interface, - ACTIONS(1857), 1, + ACTIONS(1975), 1, anon_sym_enum, - ACTIONS(1887), 1, - anon_sym_type, - ACTIONS(5064), 1, - anon_sym_default, - STATE(679), 1, - sym_internal_module, - STATE(692), 1, - sym_declaration, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - STATE(3282), 1, + STATE(3127), 1, + sym_declaration, + STATE(3128), 1, + sym_internal_module, + STATE(3135), 1, aux_sym_export_statement_repeat1, - STATE(668), 13, + STATE(3131), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -180304,92 +180695,50 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [87058] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(5047), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1668), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [87107] = 22, + [87460] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1818), 1, + ACTIONS(1784), 1, anon_sym_namespace, - ACTIONS(1824), 1, + ACTIONS(1790), 1, anon_sym_import, - ACTIONS(1826), 1, + ACTIONS(1792), 1, anon_sym_var, - ACTIONS(1828), 1, + ACTIONS(1794), 1, anon_sym_let, - ACTIONS(1830), 1, + ACTIONS(1796), 1, anon_sym_const, - ACTIONS(1841), 1, + ACTIONS(1804), 1, anon_sym_class, - ACTIONS(1843), 1, + ACTIONS(1806), 1, anon_sym_async, - ACTIONS(1845), 1, + ACTIONS(1808), 1, anon_sym_function, - ACTIONS(1849), 1, + ACTIONS(1815), 1, anon_sym_declare, - ACTIONS(1851), 1, + ACTIONS(1817), 1, anon_sym_module, - ACTIONS(1853), 1, + ACTIONS(1819), 1, anon_sym_abstract, - ACTIONS(1855), 1, + ACTIONS(1821), 1, anon_sym_interface, - ACTIONS(1857), 1, + ACTIONS(1823), 1, anon_sym_enum, - ACTIONS(1887), 1, + ACTIONS(1893), 1, anon_sym_type, - ACTIONS(5066), 1, + ACTIONS(5083), 1, anon_sym_default, - STATE(679), 1, - sym_internal_module, - STATE(692), 1, + STATE(699), 1, sym_declaration, - STATE(1150), 1, + STATE(700), 1, + sym_internal_module, + STATE(1152), 1, sym_decorator, - STATE(3282), 1, + STATE(3202), 1, aux_sym_export_statement_repeat1, - STATE(668), 13, + STATE(763), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -180403,50 +180752,50 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [87186] = 22, + [87539] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1818), 1, + ACTIONS(1784), 1, anon_sym_namespace, - ACTIONS(1824), 1, + ACTIONS(1790), 1, anon_sym_import, - ACTIONS(1826), 1, + ACTIONS(1792), 1, anon_sym_var, - ACTIONS(1828), 1, + ACTIONS(1794), 1, anon_sym_let, - ACTIONS(1830), 1, + ACTIONS(1796), 1, anon_sym_const, - ACTIONS(1841), 1, + ACTIONS(1804), 1, anon_sym_class, - ACTIONS(1843), 1, + ACTIONS(1806), 1, anon_sym_async, - ACTIONS(1845), 1, + ACTIONS(1808), 1, anon_sym_function, - ACTIONS(1849), 1, + ACTIONS(1815), 1, anon_sym_declare, - ACTIONS(1853), 1, + ACTIONS(1819), 1, anon_sym_abstract, - ACTIONS(1855), 1, + ACTIONS(1821), 1, anon_sym_interface, - ACTIONS(1857), 1, + ACTIONS(1823), 1, anon_sym_enum, - ACTIONS(1887), 1, + ACTIONS(1893), 1, anon_sym_type, - ACTIONS(1891), 1, + ACTIONS(1897), 1, anon_sym_module, - ACTIONS(1893), 1, + ACTIONS(1899), 1, anon_sym_global, - STATE(679), 1, - sym_internal_module, - STATE(730), 1, + STATE(641), 1, sym_declaration, - STATE(1150), 1, + STATE(700), 1, + sym_internal_module, + STATE(1152), 1, sym_decorator, - STATE(3282), 1, + STATE(3202), 1, aux_sym_export_statement_repeat1, - STATE(668), 13, + STATE(763), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -180460,41 +180809,41 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [87265] = 15, + [87618] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1939), 1, + ACTIONS(1945), 1, anon_sym_override, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5068), 1, + ACTIONS(5085), 1, anon_sym_STAR, - ACTIONS(5070), 1, + ACTIONS(5087), 1, anon_sym_async, - ACTIONS(5074), 1, + ACTIONS(5091), 1, anon_sym_readonly, - STATE(2277), 1, + STATE(2290), 1, sym_override_modifier, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5072), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - ACTIONS(5076), 2, + ACTIONS(5093), 2, anon_sym_get, anon_sym_set, - STATE(3082), 3, + STATE(3087), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 15, + ACTIONS(1937), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180510,73 +180859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87330] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1941), 1, - anon_sym_type, - ACTIONS(1943), 1, - anon_sym_namespace, - ACTIONS(1945), 1, - anon_sym_import, - ACTIONS(1947), 1, - anon_sym_var, - ACTIONS(1949), 1, - anon_sym_let, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_class, - ACTIONS(1955), 1, - anon_sym_async, - ACTIONS(1957), 1, - anon_sym_function, - ACTIONS(1959), 1, - anon_sym_declare, - ACTIONS(1963), 1, - anon_sym_abstract, - ACTIONS(1967), 1, - anon_sym_interface, - ACTIONS(1969), 1, - anon_sym_enum, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(5078), 1, - anon_sym_default, - STATE(1150), 1, - sym_decorator, - STATE(3124), 1, - sym_declaration, - STATE(3212), 1, - aux_sym_export_statement_repeat1, - STATE(3320), 1, - sym_internal_module, - STATE(3391), 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, - [87409] = 6, + [87683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5082), 1, + ACTIONS(5097), 1, anon_sym_DOT, - STATE(2260), 1, + STATE(2270), 1, sym_arguments, - ACTIONS(3111), 8, + ACTIONS(3109), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -180585,7 +180877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3109), 22, + ACTIONS(3107), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180608,128 +180900,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87456] = 3, + [87730] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, + ACTIONS(95), 1, anon_sym_AT, - ACTIONS(5084), 22, - anon_sym_export, + ACTIONS(1947), 1, anon_sym_type, + ACTIONS(1949), 1, anon_sym_namespace, + ACTIONS(1951), 1, + anon_sym_import, + ACTIONS(1953), 1, + anon_sym_var, + ACTIONS(1955), 1, + anon_sym_let, + ACTIONS(1957), 1, + anon_sym_const, + ACTIONS(1959), 1, + anon_sym_class, + ACTIONS(1961), 1, anon_sym_async, - anon_sym_DASH, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(1963), 1, + anon_sym_function, + ACTIONS(1965), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(1969), 1, anon_sym_abstract, - [87496] = 3, + ACTIONS(1973), 1, + anon_sym_interface, + ACTIONS(1975), 1, + anon_sym_enum, + ACTIONS(3212), 1, + anon_sym_module, + ACTIONS(5099), 1, + anon_sym_default, + STATE(1152), 1, + sym_decorator, + STATE(3128), 1, + sym_internal_module, + STATE(3135), 1, + aux_sym_export_statement_repeat1, + STATE(3284), 1, + sym_declaration, + STATE(3131), 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, + [87809] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, + ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1540), 22, - anon_sym_export, - anon_sym_type, + ACTIONS(1784), 1, anon_sym_namespace, + ACTIONS(1790), 1, + anon_sym_import, + ACTIONS(1792), 1, + anon_sym_var, + ACTIONS(1794), 1, + anon_sym_let, + ACTIONS(1796), 1, + anon_sym_const, + ACTIONS(1804), 1, + anon_sym_class, + ACTIONS(1806), 1, anon_sym_async, - anon_sym_DASH, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(1808), 1, + anon_sym_function, + ACTIONS(1815), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(1817), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(1819), 1, anon_sym_abstract, - [87536] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5088), 1, - anon_sym_EQ_GT, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5072), 2, - sym_number, - sym_private_property_identifier, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, - anon_sym_export, + ACTIONS(1821), 1, + anon_sym_interface, + ACTIONS(1823), 1, + anon_sym_enum, + ACTIONS(1893), 1, anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [87590] = 3, + ACTIONS(5101), 1, + anon_sym_default, + STATE(699), 1, + sym_declaration, + STATE(700), 1, + sym_internal_module, + STATE(1152), 1, + sym_decorator, + STATE(3202), 1, + aux_sym_export_statement_repeat1, + STATE(763), 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, + [87888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 10, + ACTIONS(5105), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -180740,7 +181028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5090), 22, + ACTIONS(5103), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180763,10 +181051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87630] = 3, + [87928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 10, + ACTIONS(5109), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -180777,7 +181065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5094), 22, + ACTIONS(5107), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180800,24 +181088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87670] = 3, + [87968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 10, - sym__automatic_semicolon, + ACTIONS(3130), 9, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5098), 22, + ACTIONS(3128), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_DOT, anon_sym_async, anon_sym_DASH, sym_identifier, @@ -180837,10 +181125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87710] = 3, + [88008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 10, + ACTIONS(5113), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -180851,7 +181139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5090), 22, + ACTIONS(5111), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180874,10 +181162,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87750] = 3, + [88048] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 10, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5115), 1, + anon_sym_STAR, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5117), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5119), 2, + anon_sym_get, + anon_sym_set, + STATE(2988), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5123), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -180888,7 +181221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5102), 22, + ACTIONS(5121), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180911,11 +181244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87790] = 3, + [88144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 10, + ACTIONS(5125), 1, sym__automatic_semicolon, + ACTIONS(1547), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -180925,7 +181259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5106), 22, + ACTIONS(1549), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180948,30 +181282,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87830] = 6, + [88186] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(5058), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5115), 1, + anon_sym_STAR, + ACTIONS(5127), 1, + anon_sym_async, + ACTIONS(3210), 2, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1670), 6, + ACTIONS(5117), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5119), 2, + anon_sym_get, + anon_sym_set, + STATE(2988), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5131), 10, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1668), 20, + anon_sym_AT, + ACTIONS(5129), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -180988,30 +181364,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87876] = 6, + anon_sym_abstract, + [88284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(5058), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1658), 6, + ACTIONS(5135), 10, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1656), 20, + anon_sym_AT, + ACTIONS(5133), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181028,10 +181401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87922] = 3, + anon_sym_abstract, + [88324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 10, + ACTIONS(5139), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181042,7 +181416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5110), 22, + ACTIONS(5137), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181065,41 +181439,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87962] = 12, + [88364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(5143), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, - anon_sym_STAR, - ACTIONS(5116), 1, - anon_sym_async, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - ACTIONS(5120), 2, - anon_sym_get, - anon_sym_set, - STATE(3061), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 17, + anon_sym_AT, + ACTIONS(5141), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181111,40 +181475,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88020] = 11, + anon_sym_abstract, + [88404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(5147), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5068), 1, - anon_sym_STAR, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5072), 2, sym_number, sym_private_property_identifier, - ACTIONS(5076), 2, - anon_sym_get, - anon_sym_set, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, + anon_sym_AT, + ACTIONS(5145), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181156,12 +181512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88076] = 4, + anon_sym_abstract, + [88444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, + ACTIONS(5109), 10, sym__automatic_semicolon, - ACTIONS(1484), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -181171,7 +181527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1486), 22, + ACTIONS(5107), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181194,41 +181550,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88118] = 12, + [88484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(5151), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5068), 1, - anon_sym_STAR, - ACTIONS(5070), 1, - anon_sym_async, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5072), 2, sym_number, sym_private_property_identifier, - ACTIONS(5076), 2, - anon_sym_get, - anon_sym_set, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 17, + anon_sym_AT, + ACTIONS(5149), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181240,22 +181586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88176] = 4, + anon_sym_abstract, + [88524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 2, + ACTIONS(5139), 10, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5126), 8, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5124), 22, + ACTIONS(5137), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181278,11 +181624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88218] = 3, + [88564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 10, + ACTIONS(5153), 1, sym__automatic_semicolon, + ACTIONS(1349), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -181292,7 +181639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5130), 22, + ACTIONS(1351), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181315,10 +181662,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88258] = 3, + [88606] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5155), 1, + anon_sym_STAR, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5157), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5159), 2, + anon_sym_get, + anon_sym_set, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 10, + ACTIONS(5105), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181329,7 +181721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5098), 22, + ACTIONS(5103), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181352,10 +181744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88298] = 3, + [88702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 10, + ACTIONS(5163), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181366,7 +181758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5084), 22, + ACTIONS(5161), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181389,40 +181781,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88338] = 11, + [88742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(5167), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, - anon_sym_STAR, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - ACTIONS(5120), 2, - anon_sym_get, - anon_sym_set, - STATE(3061), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, + anon_sym_AT, + ACTIONS(5165), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181434,41 +181817,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88394] = 12, + anon_sym_abstract, + [88782] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_STAR, - ACTIONS(5136), 1, - anon_sym_async, - ACTIONS(3206), 2, + ACTIONS(5169), 1, + anon_sym_EQ_GT, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5138), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - ACTIONS(5140), 2, - anon_sym_get, - anon_sym_set, - STATE(3054), 3, + STATE(3087), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 17, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181480,10 +181862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88452] = 3, + [88836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 10, + ACTIONS(5151), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181494,7 +181876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5094), 22, + ACTIONS(5149), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181517,10 +181899,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88492] = 3, + [88876] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5171), 1, + anon_sym_STAR, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5173), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5175), 2, + anon_sym_get, + anon_sym_set, + STATE(3016), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [88932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 10, + ACTIONS(5179), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181531,7 +181958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5142), 22, + ACTIONS(5177), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181554,26 +181981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88532] = 3, + [88972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 10, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(5073), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1656), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5146), 22, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181590,22 +182021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [88572] = 3, + [89018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 10, + ACTIONS(5185), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5183), 8, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5150), 22, + ACTIONS(5181), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181628,10 +182059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88612] = 3, + [89060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 10, + ACTIONS(5189), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181642,7 +182073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5110), 22, + ACTIONS(5187), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181665,37 +182096,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88652] = 11, + [89100] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5085), 1, anon_sym_STAR, - ACTIONS(3206), 2, + ACTIONS(5087), 1, + anon_sym_async, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5138), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - ACTIONS(5140), 2, + ACTIONS(5093), 2, anon_sym_get, anon_sym_set, - STATE(3054), 3, + STATE(3087), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 18, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181710,26 +182142,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88708] = 3, + [89158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 10, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(5073), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1664), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5154), 22, + ACTIONS(1662), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181746,25 +182182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [88748] = 3, + [89204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 9, + ACTIONS(5179), 10, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3118), 23, + ACTIONS(5177), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_DOT, anon_sym_async, anon_sym_DASH, sym_identifier, @@ -181784,40 +182219,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88788] = 11, + [89244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(5189), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_STAR, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5160), 2, sym_number, sym_private_property_identifier, - ACTIONS(5162), 2, - anon_sym_get, - anon_sym_set, - STATE(2962), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 18, + anon_sym_AT, + ACTIONS(5187), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181829,10 +182255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88844] = 3, + anon_sym_abstract, + [89284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 10, + ACTIONS(1507), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181843,7 +182270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5164), 22, + ACTIONS(1509), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181866,10 +182293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88884] = 3, + [89324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 10, + ACTIONS(1547), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181880,7 +182307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1486), 22, + ACTIONS(1549), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181903,10 +182330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88924] = 3, + [89364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 10, + ACTIONS(5167), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181917,7 +182344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5150), 22, + ACTIONS(5165), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181940,10 +182367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88964] = 3, + [89404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 10, + ACTIONS(5131), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -181954,7 +182381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5102), 22, + ACTIONS(5129), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181977,31 +182404,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [89004] = 3, + [89444] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5155), 1, + anon_sym_STAR, + ACTIONS(5191), 1, + anon_sym_async, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5168), 22, + ACTIONS(5159), 2, + anon_sym_get, + anon_sym_set, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -182013,33 +182450,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89044] = 4, + [89502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, - sym__automatic_semicolon, - ACTIONS(1395), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5085), 1, + anon_sym_STAR, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1397), 22, + ACTIONS(5093), 2, + anon_sym_get, + anon_sym_set, + STATE(3087), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -182051,27 +182495,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89086] = 3, + [89558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5193), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5130), 22, + STATE(3096), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -182088,29 +182537,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89126] = 9, + [89609] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5160), 2, + ACTIONS(5195), 2, sym_number, sym_private_property_identifier, - STATE(2962), 3, + STATE(3101), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182131,28 +182579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89177] = 9, + [89660] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4997), 2, + ACTIONS(5173), 2, sym_number, sym_private_property_identifier, - STATE(3041), 3, + STATE(3016), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182173,28 +182621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89228] = 9, + [89711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5138), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - STATE(3054), 3, + STATE(3087), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182215,28 +182663,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89279] = 9, + [89762] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5005), 2, + ACTIONS(4934), 2, sym_number, sym_private_property_identifier, - STATE(2951), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182257,28 +182705,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89330] = 9, + [89813] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5013), 2, + ACTIONS(5038), 2, sym_number, sym_private_property_identifier, - STATE(3053), 3, + STATE(3009), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182299,28 +182747,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89381] = 9, + [89864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4935), 2, + ACTIONS(4944), 2, sym_number, sym_private_property_identifier, - STATE(3066), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182341,28 +182789,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89432] = 9, + [89915] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4705), 1, + anon_sym_STAR, + ACTIONS(4709), 1, + anon_sym_async, + ACTIONS(5197), 1, + anon_sym_static, + ACTIONS(5199), 1, + anon_sym_readonly, + ACTIONS(5201), 1, + anon_sym_abstract, + STATE(2291), 1, + sym_override_modifier, + ACTIONS(4711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4715), 2, + anon_sym_get, + anon_sym_set, + STATE(2473), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3140), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [89978] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4963), 2, + ACTIONS(5030), 2, sym_number, sym_private_property_identifier, - STATE(3113), 3, + STATE(3036), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182383,28 +182879,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89483] = 9, + [90029] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5009), 2, + ACTIONS(5034), 2, sym_number, sym_private_property_identifier, - STATE(2994), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182425,28 +182921,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89534] = 9, + [90080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4981), 2, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - STATE(3077), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182467,28 +182963,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89585] = 9, + [90131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(5203), 1, + sym__automatic_semicolon, + ACTIONS(1547), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1549), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [90172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5205), 1, + sym__automatic_semicolon, + ACTIONS(1349), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1351), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [90213] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4959), 2, + ACTIONS(5014), 2, sym_number, sym_private_property_identifier, - STATE(3039), 3, + STATE(3116), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182509,28 +183079,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89636] = 9, + [90264] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5001), 2, + ACTIONS(5207), 2, sym_number, sym_private_property_identifier, - STATE(3100), 3, + STATE(3054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182551,26 +183121,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89687] = 4, + [90315] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - sym__automatic_semicolon, - ACTIONS(1484), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1929), 1, anon_sym_DQUOTE, + ACTIONS(1931), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5026), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1486), 22, + STATE(2972), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -182587,29 +183163,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89728] = 9, + [90366] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4929), 2, + ACTIONS(4950), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182630,28 +183205,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89779] = 9, + [90417] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5118), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(3061), 3, + STATE(3090), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182672,28 +183247,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89830] = 9, + [90468] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5176), 2, + ACTIONS(4928), 2, sym_number, sym_private_property_identifier, STATE(2981), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182714,28 +183289,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89881] = 9, + [90519] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5178), 2, + ACTIONS(4970), 2, sym_number, sym_private_property_identifier, - STATE(3012), 3, + STATE(2962), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182756,28 +183331,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89932] = 9, + [90570] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5072), 2, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - STATE(3082), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182798,28 +183373,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89983] = 9, + [90621] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5180), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - STATE(3032), 3, + STATE(2988), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182840,28 +183415,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90034] = 9, + [90672] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3210), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4953), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(3040), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182882,12 +183457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90085] = 4, + [90723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - sym__automatic_semicolon, - ACTIONS(1395), 8, + ACTIONS(2539), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -182896,7 +183469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1397), 22, + ACTIONS(2537), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182919,32 +183492,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90126] = 9, + [90761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1507), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3002), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, + anon_sym_AT, + ACTIONS(1509), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -182961,28 +183526,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90177] = 9, + anon_sym_abstract, + [90799] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1923), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5184), 2, + ACTIONS(5211), 1, + anon_sym_RBRACE, + STATE(3877), 1, + sym_enum_assignment, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(2997), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183003,99 +183568,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90228] = 15, + [90849] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(3152), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4669), 1, - anon_sym_STAR, - ACTIONS(4673), 1, - anon_sym_async, - ACTIONS(5186), 1, + ACTIONS(5215), 1, anon_sym_static, - ACTIONS(5188), 1, + ACTIONS(5217), 1, anon_sym_readonly, - ACTIONS(5190), 1, + ACTIONS(5219), 1, anon_sym_abstract, - STATE(2275), 1, + STATE(2318), 1, sym_override_modifier, - ACTIONS(4675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4679), 2, - anon_sym_get, - anon_sym_set, - STATE(2437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3132), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [90291] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5192), 1, - anon_sym_RBRACE, - STATE(3994), 1, - sym_enum_assignment, - ACTIONS(5194), 2, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(3542), 3, + STATE(2814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90341] = 3, + [90905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 8, + ACTIONS(1547), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -183104,7 +183624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2525), 22, + ACTIONS(1549), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183127,77 +183647,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90379] = 14, + [90943] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4430), 1, - anon_sym_async, - ACTIONS(4434), 1, - anon_sym_readonly, - ACTIONS(5196), 1, - anon_sym_static, - STATE(2279), 1, - sym_override_modifier, - ACTIONS(4432), 2, + ACTIONS(5221), 1, + anon_sym_RBRACE, + STATE(3877), 1, + sym_enum_assignment, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(4436), 2, - anon_sym_get, - anon_sym_set, - STATE(2505), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 14, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90439] = 9, + [90993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(3109), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(3994), 1, - sym_enum_assignment, - ACTIONS(5194), 2, sym_number, sym_private_property_identifier, - STATE(3542), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, + anon_sym_AT, + ACTIONS(3107), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -183214,10 +183722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90489] = 3, + anon_sym_abstract, + [91031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 8, + ACTIONS(3138), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -183226,7 +183735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1486), 22, + ACTIONS(3136), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183249,141 +183758,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90527] = 12, + [91069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(3152), 1, - anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5200), 1, - anon_sym_static, - ACTIONS(5202), 1, - anon_sym_readonly, - ACTIONS(5204), 1, - anon_sym_abstract, - STATE(2302), 1, - sym_override_modifier, - ACTIONS(5025), 2, + ACTIONS(5223), 1, + anon_sym_RBRACE, + STATE(3877), 1, + sym_enum_assignment, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(2731), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 17, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90583] = 14, + [91119] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(3152), 1, + ACTIONS(1939), 1, + anon_sym_async, + ACTIONS(1941), 1, + anon_sym_readonly, + ACTIONS(1945), 1, anon_sym_override, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4875), 1, + ACTIONS(4834), 1, anon_sym_STAR, - ACTIONS(4877), 1, - anon_sym_async, - ACTIONS(4881), 1, - anon_sym_readonly, - ACTIONS(5206), 1, + ACTIONS(5225), 1, anon_sym_static, - STATE(2278), 1, + STATE(2286), 1, sym_override_modifier, - ACTIONS(4879), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(4883), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - STATE(2504), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3132), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [90643] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - anon_sym_RBRACE, - STATE(3994), 1, - sym_enum_assignment, - ACTIONS(5194), 2, - sym_number, - sym_private_property_identifier, - STATE(3542), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90693] = 3, + [91179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 8, + ACTIONS(2543), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -183392,7 +183857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2529), 22, + ACTIONS(2541), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183415,10 +183880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90731] = 3, + [91217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 8, + ACTIONS(2535), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -183427,7 +183892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3128), 22, + ACTIONS(2533), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183450,24 +183915,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90769] = 3, + [91255] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(1238), 1, anon_sym_DQUOTE, + ACTIONS(1240), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5227), 1, + anon_sym_RBRACE, + STATE(3764), 1, + sym_enum_assignment, + ACTIONS(5229), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2533), 22, + STATE(3344), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -183484,28 +183956,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [90807] = 9, + [91305] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5210), 1, + ACTIONS(5231), 1, anon_sym_RBRACE, - STATE(3738), 1, + STATE(3877), 1, sym_enum_assignment, - ACTIONS(5212), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(3127), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183526,10 +183997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90857] = 3, + [91355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 8, + ACTIONS(5235), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -183538,7 +184009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1540), 22, + ACTIONS(5233), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183561,10 +184032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90895] = 3, + [91393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 8, + ACTIONS(4330), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -183573,7 +184044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3109), 22, + ACTIONS(5237), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183596,24 +184067,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90933] = 3, + [91431] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 8, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4508), 1, anon_sym_STAR, - anon_sym_RBRACE, + ACTIONS(4512), 1, anon_sym_LBRACK, + ACTIONS(4514), 1, + anon_sym_async, + ACTIONS(4518), 1, + anon_sym_readonly, + ACTIONS(5239), 1, + anon_sym_static, + STATE(2296), 1, + sym_override_modifier, + ACTIONS(4516), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4520), 2, + anon_sym_get, + anon_sym_set, + STATE(2515), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3140), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [91491] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, anon_sym_DQUOTE, + ACTIONS(1240), 1, anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5241), 1, + anon_sym_RBRACE, + STATE(3877), 1, + sym_enum_assignment, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5214), 22, + STATE(3475), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -183630,39 +184154,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [90971] = 14, + [91541] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, - ACTIONS(1939), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4838), 1, anon_sym_STAR, - ACTIONS(5218), 1, + ACTIONS(4840), 1, + anon_sym_async, + ACTIONS(4844), 1, + anon_sym_readonly, + ACTIONS(5243), 1, anon_sym_static, - STATE(2280), 1, + STATE(2288), 1, sym_override_modifier, - ACTIONS(1927), 2, + ACTIONS(4842), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(4846), 2, anon_sym_get, anon_sym_set, - STATE(2991), 3, + STATE(2527), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 14, + ACTIONS(3140), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183677,27 +184200,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91031] = 9, + [91601] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5220), 1, + ACTIONS(5245), 1, anon_sym_RBRACE, - STATE(3994), 1, + STATE(3877), 1, + sym_enum_assignment, + ACTIONS(5213), 2, + sym_number, + sym_private_property_identifier, + STATE(3475), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1937), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [91651] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(5247), 1, + anon_sym_RBRACE, + STATE(3698), 1, sym_enum_assignment, - ACTIONS(5194), 2, + ACTIONS(5249), 2, sym_number, sym_private_property_identifier, - STATE(3542), 3, + STATE(3189), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183718,27 +184282,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91081] = 9, + [91701] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5251), 1, anon_sym_RBRACE, - STATE(3994), 1, + STATE(3877), 1, sym_enum_assignment, - ACTIONS(5194), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(3542), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183759,27 +184323,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91131] = 9, + [91751] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5253), 1, anon_sym_RBRACE, - STATE(3994), 1, + STATE(3877), 1, sym_enum_assignment, - ACTIONS(5194), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(3542), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183800,153 +184364,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91181] = 9, + [91801] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1240), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5226), 1, - anon_sym_RBRACE, - STATE(3994), 1, - sym_enum_assignment, - ACTIONS(5194), 2, - sym_number, - sym_private_property_identifier, - STATE(3542), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 8, + ACTIONS(5085), 1, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5228), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(5087), 1, anon_sym_async, - anon_sym_DASH, - sym_identifier, - anon_sym_static, + ACTIONS(5091), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [91269] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_RBRACE, - STATE(3755), 1, - sym_enum_assignment, - ACTIONS(5232), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - STATE(3164), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1931), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(5093), 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, - [91319] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(5234), 1, - anon_sym_RBRACE, - STATE(3994), 1, - sym_enum_assignment, - ACTIONS(5194), 2, - sym_number, - sym_private_property_identifier, - STATE(3542), 3, + STATE(3087), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -183958,32 +184406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91369] = 11, + [91854] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(1933), 1, - anon_sym_async, - ACTIONS(1935), 1, - anon_sym_readonly, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4974), 1, anon_sym_STAR, - ACTIONS(1927), 2, + ACTIONS(4976), 1, + anon_sym_async, + ACTIONS(5255), 1, + anon_sym_readonly, + ACTIONS(4978), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, + ACTIONS(4980), 2, anon_sym_get, anon_sym_set, - STATE(2991), 3, + STATE(2466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184000,32 +184448,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91422] = 11, + [91907] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4864), 1, anon_sym_STAR, - ACTIONS(4815), 1, + ACTIONS(4866), 1, anon_sym_async, - ACTIONS(4887), 1, + ACTIONS(4870), 1, anon_sym_readonly, - ACTIONS(4817), 2, + ACTIONS(4868), 2, sym_number, sym_private_property_identifier, - ACTIONS(4819), 2, + ACTIONS(4872), 2, anon_sym_get, anon_sym_set, - STATE(2462), 3, + STATE(2511), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184042,32 +184490,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91475] = 11, + [91960] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4967), 1, + ACTIONS(5018), 1, anon_sym_STAR, - ACTIONS(4969), 1, + ACTIONS(5020), 1, anon_sym_async, - ACTIONS(5236), 1, + ACTIONS(5257), 1, anon_sym_readonly, - ACTIONS(4971), 2, + ACTIONS(5022), 2, sym_number, sym_private_property_identifier, - ACTIONS(4973), 2, + ACTIONS(5024), 2, anon_sym_get, anon_sym_set, - STATE(2497), 3, + STATE(2531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184084,32 +184532,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91528] = 11, + [92013] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5155), 1, anon_sym_STAR, - ACTIONS(5136), 1, + ACTIONS(5191), 1, anon_sym_async, - ACTIONS(5238), 1, + ACTIONS(5259), 1, anon_sym_readonly, - ACTIONS(5138), 2, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - ACTIONS(5140), 2, + ACTIONS(5159), 2, anon_sym_get, anon_sym_set, - STATE(3054), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 16, + ACTIONS(1937), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184126,32 +184574,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91581] = 11, + [92066] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4857), 1, + ACTIONS(4824), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4826), 1, anon_sym_async, - ACTIONS(4863), 1, + ACTIONS(4830), 1, anon_sym_readonly, - ACTIONS(4861), 2, + ACTIONS(4828), 2, sym_number, sym_private_property_identifier, - ACTIONS(4865), 2, + ACTIONS(4832), 2, anon_sym_get, anon_sym_set, - STATE(2512), 3, + STATE(2444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184168,32 +184616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91634] = 11, + [92119] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4705), 1, anon_sym_STAR, - ACTIONS(4805), 1, + ACTIONS(4709), 1, anon_sym_async, - ACTIONS(4809), 1, + ACTIONS(4713), 1, anon_sym_readonly, - ACTIONS(4807), 2, + ACTIONS(4711), 2, sym_number, sym_private_property_identifier, - ACTIONS(4811), 2, + ACTIONS(4715), 2, anon_sym_get, anon_sym_set, - STATE(2511), 3, + STATE(2473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184210,64 +184658,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91687] = 11, + [92172] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5068), 1, - anon_sym_STAR, - ACTIONS(5070), 1, - anon_sym_async, - ACTIONS(5074), 1, - anon_sym_readonly, - ACTIONS(5072), 2, + STATE(3877), 1, + sym_enum_assignment, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(5076), 2, - anon_sym_get, - anon_sym_set, - STATE(3082), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [91740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(1670), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1668), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184288,32 +184697,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91781] = 11, + [92219] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4985), 1, + ACTIONS(4942), 1, anon_sym_STAR, - ACTIONS(4987), 1, + ACTIONS(4982), 1, anon_sym_async, - ACTIONS(5240), 1, + ACTIONS(5261), 1, anon_sym_readonly, - ACTIONS(4989), 2, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - ACTIONS(4991), 2, + ACTIONS(4986), 2, anon_sym_get, anon_sym_set, - STATE(2491), 3, + STATE(2513), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184330,34 +184739,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91834] = 10, + [92272] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5056), 1, - anon_sym_readonly, - ACTIONS(5242), 1, + ACTIONS(4838), 1, anon_sym_STAR, - ACTIONS(5244), 2, + ACTIONS(4840), 1, + anon_sym_async, + ACTIONS(4844), 1, + anon_sym_readonly, + ACTIONS(4842), 2, sym_number, sym_private_property_identifier, - ACTIONS(5246), 2, + ACTIONS(4846), 2, anon_sym_get, anon_sym_set, - STATE(2445), 3, + STATE(2527), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 17, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -184371,32 +184781,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91885] = 11, + [92325] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4669), 1, + ACTIONS(4890), 1, anon_sym_STAR, - ACTIONS(4673), 1, + ACTIONS(4892), 1, anon_sym_async, - ACTIONS(4677), 1, + ACTIONS(4896), 1, anon_sym_readonly, - ACTIONS(4675), 2, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - ACTIONS(4679), 2, + ACTIONS(4898), 2, anon_sym_get, anon_sym_set, - STATE(2437), 3, + STATE(2509), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184413,37 +184823,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91938] = 11, + [92378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(1656), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4913), 1, - anon_sym_STAR, - ACTIONS(4915), 1, - anon_sym_async, - ACTIONS(5248), 1, - anon_sym_readonly, - ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - ACTIONS(4919), 2, - anon_sym_get, - anon_sym_set, - STATE(2439), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(1654), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -184455,32 +184859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91991] = 11, + [92419] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4875), 1, + ACTIONS(4508), 1, anon_sym_STAR, - ACTIONS(4877), 1, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4514), 1, anon_sym_async, - ACTIONS(4881), 1, + ACTIONS(4518), 1, anon_sym_readonly, - ACTIONS(4879), 2, + ACTIONS(4516), 2, sym_number, sym_private_property_identifier, - ACTIONS(4883), 2, + ACTIONS(4520), 2, anon_sym_get, anon_sym_set, - STATE(2504), 3, + STATE(2515), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184497,34 +184901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92044] = 8, + [92472] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1240), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(3994), 1, - sym_enum_assignment, - ACTIONS(5194), 2, + ACTIONS(5263), 1, + anon_sym_STAR, + ACTIONS(5267), 1, + anon_sym_readonly, + ACTIONS(5265), 2, sym_number, sym_private_property_identifier, - STATE(3542), 3, + ACTIONS(5269), 2, + anon_sym_get, + anon_sym_set, + STATE(2450), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -184536,32 +184942,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92091] = 11, + [92523] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4424), 1, - anon_sym_STAR, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4430), 1, + ACTIONS(1939), 1, anon_sym_async, - ACTIONS(4434), 1, + ACTIONS(1941), 1, anon_sym_readonly, - ACTIONS(4432), 2, + ACTIONS(4633), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_STAR, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - ACTIONS(4436), 2, + ACTIONS(1943), 2, anon_sym_get, anon_sym_set, - STATE(2505), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(1937), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184578,30 +184984,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92144] = 10, + [92576] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_STAR, - ACTIONS(5254), 1, + ACTIONS(5071), 1, anon_sym_readonly, - ACTIONS(5252), 2, + ACTIONS(5271), 1, + anon_sym_STAR, + ACTIONS(5273), 2, sym_number, sym_private_property_identifier, - ACTIONS(5256), 2, + ACTIONS(5275), 2, anon_sym_get, anon_sym_set, - STATE(2464), 3, + STATE(2463), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184619,23 +185025,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92195] = 7, + [92627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4997), 2, + ACTIONS(5014), 2, sym_number, sym_private_property_identifier, - STATE(3041), 3, + STATE(3116), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184656,23 +185062,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92239] = 7, + [92671] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5050), 2, + ACTIONS(1933), 2, sym_number, sym_private_property_identifier, - STATE(2798), 3, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184693,23 +185099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92283] = 7, + [92715] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5025), 2, + ACTIONS(5049), 2, sym_number, sym_private_property_identifier, - STATE(2731), 3, + STATE(2729), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184730,30 +185136,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92327] = 7, + [92759] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5072), 2, + ACTIONS(5071), 1, + anon_sym_readonly, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(3082), 3, + STATE(2814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(3140), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -184767,23 +185174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92371] = 7, + [92805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5005), 2, + ACTIONS(5195), 2, sym_number, sym_private_property_identifier, - STATE(2951), 3, + STATE(3101), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184804,23 +185211,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92415] = 7, + [92849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4935), 2, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - STATE(3066), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184841,23 +185248,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92459] = 7, + [92893] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4959), 2, + ACTIONS(5173), 2, sym_number, sym_private_property_identifier, - STATE(3039), 3, + STATE(3016), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184878,25 +185285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92503] = 8, + [92937] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5056), 1, + ACTIONS(5277), 1, anon_sym_readonly, - ACTIONS(5025), 2, + ACTIONS(5081), 2, sym_number, sym_private_property_identifier, - STATE(2731), 3, + STATE(2796), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 19, + ACTIONS(3140), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184916,23 +185323,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92549] = 7, + [92983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5184), 2, + ACTIONS(5207), 2, sym_number, sym_private_property_identifier, - STATE(2997), 3, + STATE(3054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184953,23 +185360,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92593] = 7, + [93027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(4981), 2, + ACTIONS(5081), 2, sym_number, sym_private_property_identifier, - STATE(3077), 3, + STATE(2796), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184990,23 +185397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92637] = 7, + [93071] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4963), 2, + ACTIONS(4934), 2, sym_number, sym_private_property_identifier, - STATE(3113), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185027,23 +185434,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92681] = 7, + [93115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5023), 2, + ACTIONS(5030), 2, sym_number, sym_private_property_identifier, - STATE(3056), 3, + STATE(3036), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185064,31 +185471,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92725] = 8, + [93159] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, anon_sym_DQUOTE, ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_readonly, - ACTIONS(5050), 2, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(2798), 3, + STATE(2814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 19, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -185102,23 +185508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92771] = 7, + [93203] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5062), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - STATE(2718), 3, + STATE(2988), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185139,23 +185545,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92815] = 7, + [93247] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4929), 2, + ACTIONS(4944), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185176,31 +185582,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92859] = 8, + [93291] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5258), 1, - anon_sym_readonly, - ACTIONS(5062), 2, + ACTIONS(5038), 2, sym_number, sym_private_property_identifier, - STATE(2718), 3, + STATE(3009), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 19, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -185214,30 +185619,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92905] = 7, + [93335] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1295), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - ACTIONS(5180), 2, + ACTIONS(5075), 1, + anon_sym_readonly, + ACTIONS(5049), 2, sym_number, sym_private_property_identifier, - STATE(3032), 3, + STATE(2729), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(3140), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -185251,23 +185657,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92949] = 7, + [93381] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5013), 2, + ACTIONS(5026), 2, sym_number, sym_private_property_identifier, - STATE(3053), 3, + STATE(2972), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185288,23 +185694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92993] = 7, + [93425] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(1927), 2, + ACTIONS(5193), 2, sym_number, sym_private_property_identifier, - STATE(2991), 3, + STATE(3096), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185325,23 +185731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93037] = 7, + [93469] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5176), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(2981), 3, + STATE(3090), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185362,23 +185768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93081] = 7, + [93513] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4953), 2, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(3002), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185399,23 +185805,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93125] = 7, + [93557] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4607), 2, + ACTIONS(4950), 2, sym_number, sym_private_property_identifier, - STATE(3104), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185436,23 +185842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93169] = 7, + [93601] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4909), 2, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - STATE(3094), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185473,23 +185879,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93213] = 7, + [93645] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5027), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - STATE(3030), 3, + STATE(3087), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185510,23 +185916,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93257] = 7, + [93689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5001), 2, + ACTIONS(5051), 2, sym_number, sym_private_property_identifier, - STATE(3100), 3, + STATE(2971), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185547,23 +185953,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93301] = 7, + [93733] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4923), 2, + ACTIONS(4928), 2, sym_number, sym_private_property_identifier, - STATE(3002), 3, + STATE(2981), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185584,23 +185990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93345] = 7, + [93777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4993), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - STATE(3011), 3, + STATE(3040), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185621,23 +186027,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93389] = 7, + [93821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5178), 2, + ACTIONS(4635), 2, sym_number, sym_private_property_identifier, - STATE(3012), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185658,23 +186064,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93433] = 7, + [93865] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5118), 2, + ACTIONS(5042), 2, sym_number, sym_private_property_identifier, - STATE(3061), 3, + STATE(3006), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185695,23 +186101,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93477] = 7, + [93909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5138), 2, + ACTIONS(5034), 2, sym_number, sym_private_property_identifier, - STATE(3054), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185732,23 +186138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93521] = 7, + [93953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5160), 2, + ACTIONS(4960), 2, sym_number, sym_private_property_identifier, - STATE(2962), 3, + STATE(3061), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185769,23 +186175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93565] = 7, + [93997] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(4605), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(5009), 2, + ACTIONS(4970), 2, sym_number, sym_private_property_identifier, - STATE(2994), 3, + STATE(2962), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1931), 20, + ACTIONS(1937), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185806,14 +186212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93609] = 4, + [94041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, + ACTIONS(5279), 1, sym_identifier, - STATE(4449), 1, + STATE(4335), 1, sym_mapped_type_clause, - ACTIONS(5262), 19, + ACTIONS(5281), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -185833,36 +186239,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93640] = 3, + [94072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, + anon_sym_DOT, + ACTIONS(5285), 1, + anon_sym_QMARK_DOT, + STATE(2381), 1, + sym_arguments, + ACTIONS(3322), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3424), 16, - anon_sym_as, + ACTIONS(3324), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93666] = 3, + [94106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 2, + ACTIONS(3659), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3741), 16, + ACTIONS(3661), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185879,13 +186289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93692] = 3, + [94132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 2, + ACTIONS(3782), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3458), 16, + ACTIONS(3784), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185902,13 +186312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93718] = 3, + [94158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 2, + ACTIONS(3571), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3674), 16, + ACTIONS(3573), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185925,13 +186335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93744] = 3, + [94184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 2, + ACTIONS(3692), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3458), 16, + ACTIONS(3694), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185948,13 +186358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93770] = 3, + [94210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3649), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3755), 16, + ACTIONS(3651), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185971,36 +186381,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93796] = 3, + [94236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 2, + ACTIONS(3280), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3731), 16, - anon_sym_as, + ACTIONS(5287), 1, + anon_sym_DOT, + ACTIONS(5289), 1, + anon_sym_LT, + ACTIONS(5291), 1, + anon_sym_is, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(3008), 13, 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_extends, - [93822] = 3, + [94270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 2, + ACTIONS(3571), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3799), 16, + ACTIONS(3573), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186017,40 +186431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93848] = 7, + [94296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(5264), 1, - anon_sym_DOT, - ACTIONS(5266), 1, - anon_sym_QMARK_DOT, - STATE(2370), 1, - sym_arguments, - ACTIONS(3390), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3392), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [93882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 2, + ACTIONS(3750), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3737), 16, + ACTIONS(3752), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186067,13 +186454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93908] = 3, + [94322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 2, + ACTIONS(3766), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3674), 16, + ACTIONS(3768), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186090,13 +186477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93934] = 3, + [94348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3561), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3424), 16, + ACTIONS(3563), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186113,13 +186500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93960] = 3, + [94374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 2, + ACTIONS(3503), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3674), 16, + ACTIONS(3505), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186136,21 +186523,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93986] = 7, + [94400] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(2986), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(2990), 1, anon_sym_DOT, - ACTIONS(5270), 1, + ACTIONS(2994), 1, anon_sym_QMARK_DOT, - STATE(2367), 1, + STATE(2385), 1, sym_arguments, - ACTIONS(3282), 2, + ACTIONS(2988), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3284), 12, + ACTIONS(2984), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -186163,40 +186550,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94020] = 7, + [94434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - STATE(2372), 1, - sym_arguments, - ACTIONS(2996), 2, + ACTIONS(3597), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(2992), 12, + ACTIONS(3599), 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_extends, - [94054] = 3, + [94460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 2, + ACTIONS(3649), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3707), 16, + ACTIONS(3651), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186213,39 +186596,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94080] = 6, + [94486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3692), 2, anon_sym_EQ, - ACTIONS(5272), 1, - anon_sym_LT, - ACTIONS(5274), 1, - anon_sym_DOT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(2990), 14, + anon_sym_QMARK, + ACTIONS(3694), 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_QMARK, anon_sym_extends, - [94112] = 3, + [94512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 2, + ACTIONS(3766), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3458), 16, + ACTIONS(3768), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186262,12 +186642,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94138] = 3, + [94538] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5295), 1, + anon_sym_EQ, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5299), 1, + anon_sym_COMMA, + ACTIONS(5301), 1, + anon_sym_COLON, + ACTIONS(5303), 1, + anon_sym_GT, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5310), 1, + anon_sym_SLASH_GT, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5314), 1, + anon_sym_extends, + STATE(2803), 1, + sym_type_arguments, + STATE(2805), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3546), 1, + sym_constraint, + STATE(4053), 1, + sym_default_type, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [94594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3503), 2, anon_sym_EQ, - ACTIONS(3454), 17, + anon_sym_QMARK, + ACTIONS(3505), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186278,19 +186697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_implements, - [94164] = 3, + [94620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3565), 2, anon_sym_EQ, - ACTIONS(3470), 17, + anon_sym_QMARK, + ACTIONS(3567), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186301,20 +186720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_implements, - [94190] = 3, + [94646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3507), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3424), 16, + ACTIONS(3509), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186331,12 +186749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94216] = 3, + [94672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3565), 2, anon_sym_EQ, - ACTIONS(3436), 17, + anon_sym_QMARK, + ACTIONS(3567), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186347,20 +186766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_implements, - [94242] = 3, + [94698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 2, + ACTIONS(3511), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3731), 16, + ACTIONS(3513), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186377,58 +186795,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94268] = 18, + [94724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5278), 1, + ACTIONS(3515), 2, anon_sym_EQ, - ACTIONS(5280), 1, + anon_sym_QMARK, + ACTIONS(3517), 16, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(5282), 1, anon_sym_COMMA, - ACTIONS(5284), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5288), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5291), 1, - anon_sym_SLASH, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, anon_sym_DOT, - ACTIONS(5297), 1, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(2703), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2788), 1, - sym_type_arguments, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3533), 1, - sym_constraint, - STATE(3962), 1, - sym_default_type, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [94324] = 7, + [94750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3280), 1, anon_sym_EQ, - ACTIONS(5272), 1, - anon_sym_LT, - ACTIONS(5274), 1, + ACTIONS(5287), 1, anon_sym_DOT, - ACTIONS(5299), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(5289), 1, + anon_sym_LT, + STATE(2427), 1, sym_type_arguments, - ACTIONS(2990), 13, + ACTIONS(3008), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -186442,13 +186844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94358] = 3, + [94782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 2, + ACTIONS(3511), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3737), 16, + ACTIONS(3513), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186465,13 +186867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94384] = 3, + [94808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 2, + ACTIONS(3515), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3741), 16, + ACTIONS(3517), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186488,36 +186890,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94410] = 3, + [94834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 2, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(5316), 1, + anon_sym_DOT, + ACTIONS(5318), 1, + anon_sym_QMARK_DOT, + STATE(2384), 1, + sym_arguments, + ACTIONS(3310), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3765), 16, - anon_sym_as, + ACTIONS(3312), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94436] = 3, + [94868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 2, + ACTIONS(3770), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3715), 16, + ACTIONS(3772), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186534,13 +186940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94462] = 3, + [94894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 2, + ACTIONS(3770), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3741), 16, + ACTIONS(3772), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186557,13 +186963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94488] = 3, + [94920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 2, + ACTIONS(3712), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3466), 16, + ACTIONS(3714), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186574,19 +186979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [94514] = 3, + anon_sym_implements, + [94946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 2, + ACTIONS(3766), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3765), 16, + ACTIONS(3768), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186603,13 +187009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94540] = 3, + [94972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 2, + ACTIONS(3565), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3466), 16, + ACTIONS(3567), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186626,13 +187032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94566] = 3, + [94998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 2, + ACTIONS(3782), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3466), 16, + ACTIONS(3784), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186649,13 +187055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94592] = 3, + [95024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(3597), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3745), 16, + ACTIONS(3599), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186672,13 +187078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94618] = 3, + [95050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 2, + ACTIONS(3782), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3749), 16, + ACTIONS(3784), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186695,13 +187101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94644] = 3, + [95076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(3692), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3493), 16, + ACTIONS(3694), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186718,13 +187124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94670] = 3, + [95102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(3601), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3493), 16, + ACTIONS(3603), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186735,19 +187140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [94696] = 3, + anon_sym_implements, + [95128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(3770), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3493), 16, + ACTIONS(3772), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186764,13 +187170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94722] = 3, + [95154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 2, + ACTIONS(3507), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3605), 16, + ACTIONS(3509), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186787,13 +187193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94748] = 3, + [95180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(3597), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3745), 16, + ACTIONS(3599), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186810,13 +187216,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94774] = 3, + [95206] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5295), 1, + anon_sym_EQ, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5299), 1, + anon_sym_COMMA, + ACTIONS(5301), 1, + anon_sym_COLON, + ACTIONS(5303), 1, + anon_sym_GT, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5314), 1, + anon_sym_extends, + ACTIONS(5320), 1, + anon_sym_SLASH_GT, + STATE(2785), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2809), 1, + sym_type_arguments, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3546), 1, + sym_constraint, + STATE(4053), 1, + sym_default_type, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [95262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 2, + ACTIONS(3663), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3749), 16, + ACTIONS(3665), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186833,13 +187277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94800] = 3, + [95288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3814), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3755), 16, + ACTIONS(3816), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186850,57 +187293,45 @@ 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_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [94826] = 18, + anon_sym_implements, + [95314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5278), 1, + ACTIONS(1553), 1, + anon_sym_DOT, + ACTIONS(3442), 2, anon_sym_EQ, - ACTIONS(5280), 1, + anon_sym_LT, + ACTIONS(3444), 14, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(5282), 1, anon_sym_COMMA, - ACTIONS(5284), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5288), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5297), 1, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(5301), 1, - anon_sym_SLASH, - STATE(2771), 1, - sym_type_arguments, - STATE(2772), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3533), 1, - sym_constraint, - STATE(3962), 1, - sym_default_type, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [94882] = 3, + [95341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 2, + ACTIONS(1515), 1, + anon_sym_DOT, + ACTIONS(3442), 2, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3625), 15, + anon_sym_LT, + ACTIONS(3444), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186910,23 +187341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [94907] = 5, + [95368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, - anon_sym_DOT, - ACTIONS(5305), 1, - anon_sym_QMARK_DOT, - ACTIONS(3485), 2, + ACTIONS(3557), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3487), 13, + ACTIONS(3559), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186936,19 +187362,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_extends, - [94936] = 4, + [95393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, - anon_sym_DOT, - ACTIONS(3649), 2, + ACTIONS(3286), 1, anon_sym_EQ, + ACTIONS(5289), 1, anon_sym_LT, - ACTIONS(3651), 14, + STATE(2401), 1, + sym_type_arguments, + ACTIONS(3288), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186963,13 +187392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94963] = 3, + [95422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 2, + ACTIONS(5322), 1, + anon_sym_DOT, + ACTIONS(5324), 1, + anon_sym_QMARK_DOT, + ACTIONS(3653), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3629), 15, + ACTIONS(3655), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -186979,22 +187412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94988] = 5, + [95451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3720), 2, anon_sym_EQ, - ACTIONS(5272), 1, - anon_sym_LT, - STATE(2411), 1, - sym_type_arguments, - ACTIONS(3308), 14, + anon_sym_QMARK, + ACTIONS(3722), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187004,18 +187432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [95017] = 3, + [95476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 2, + ACTIONS(3808), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3617), 15, + ACTIONS(3810), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187031,13 +187460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95042] = 3, + [95501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 2, - anon_sym_LT, + ACTIONS(1513), 2, anon_sym_PIPE, - ACTIONS(1556), 14, + anon_sym_LT, + ACTIONS(1511), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187052,13 +187481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95066] = 3, + [95525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 2, - anon_sym_LT, + ACTIONS(1385), 1, + anon_sym_EQ, + ACTIONS(1383), 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_QMARK, + anon_sym_extends, + anon_sym_is, + [95549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1545), 2, anon_sym_PIPE, - ACTIONS(1582), 14, + anon_sym_LT, + ACTIONS(1543), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187073,12 +187523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95090] = 3, + [95573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(3286), 1, anon_sym_EQ, - ACTIONS(1381), 15, + ACTIONS(3288), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187093,13 +187543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [95114] = 3, + [95596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3432), 1, anon_sym_EQ, - ACTIONS(3658), 14, + ACTIONS(3434), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187114,10 +187563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95137] = 2, + [95619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5307), 15, + ACTIONS(5326), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187133,30 +187582,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [95158] = 3, + [95640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(3613), 1, anon_sym_EQ, - ACTIONS(3670), 14, + ACTIONS(5328), 1, + anon_sym_LBRACK, + ACTIONS(3621), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(3615), 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, - [95181] = 2, + [95667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 15, + ACTIONS(5330), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187172,12 +187623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [95202] = 3, + [95688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 1, + ACTIONS(3641), 1, anon_sym_EQ, - ACTIONS(3695), 14, + ACTIONS(3643), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187192,12 +187643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95225] = 3, + [95711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3704), 1, anon_sym_EQ, - ACTIONS(3497), 14, + ACTIONS(3706), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187212,12 +187663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95248] = 3, + [95734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(3708), 1, anon_sym_EQ, - ACTIONS(3398), 14, + ACTIONS(3710), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187232,12 +187683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95271] = 3, + [95757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, + ACTIONS(3724), 1, anon_sym_EQ, - ACTIONS(3647), 14, + ACTIONS(3726), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187252,40 +187703,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95294] = 3, + [95780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_EQ, - ACTIONS(3428), 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, - [95317] = 4, + ACTIONS(5332), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [95801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3547), 1, anon_sym_EQ, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(3582), 13, + ACTIONS(3549), 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, @@ -187293,19 +187742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95342] = 3, + [95824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3669), 1, anon_sym_EQ, - ACTIONS(3308), 14, + ACTIONS(5328), 1, + anon_sym_LBRACK, + ACTIONS(3671), 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, @@ -187313,12 +187763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95365] = 3, + [95849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3696), 1, anon_sym_EQ, - ACTIONS(3514), 14, + ACTIONS(3698), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187333,10 +187783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95388] = 2, + [95872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5313), 15, + ACTIONS(5334), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187352,10 +187802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [95409] = 2, + [95893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 15, + ACTIONS(5336), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187371,10 +187821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [95430] = 2, + [95914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5317), 15, + ACTIONS(5338), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187390,12 +187840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [95451] = 3, + [95935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3605), 1, anon_sym_EQ, - ACTIONS(3462), 14, + ACTIONS(3607), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187410,13 +187860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95474] = 3, + [95958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(3318), 1, anon_sym_EQ, - ACTIONS(3560), 14, - anon_sym_as, + ACTIONS(5291), 1, + anon_sym_is, + ACTIONS(3320), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -187430,12 +187881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95497] = 3, + [95983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(3760), 1, anon_sym_EQ, - ACTIONS(3643), 14, + ACTIONS(3762), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187450,12 +187901,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95520] = 3, + [96006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [96027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3732), 1, anon_sym_EQ, - ACTIONS(3564), 14, + ACTIONS(3734), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187470,12 +187940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95543] = 3, + [96050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, + ACTIONS(3543), 1, anon_sym_EQ, - ACTIONS(3771), 14, + ACTIONS(3545), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187490,12 +187960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95566] = 3, + [96073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 1, + ACTIONS(3716), 1, anon_sym_EQ, - ACTIONS(3621), 14, + ACTIONS(3718), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187510,12 +187980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95589] = 3, + [96096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3802), 1, anon_sym_EQ, - ACTIONS(3609), 14, + ACTIONS(3804), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187530,19 +188000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95612] = 3, + [96119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3619), 1, anon_sym_EQ, - ACTIONS(3775), 14, + ACTIONS(5328), 1, + anon_sym_LBRACK, + ACTIONS(3621), 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, @@ -187550,101 +188021,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95635] = 3, + [96144] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, + ACTIONS(2988), 1, + anon_sym_PIPE, + ACTIONS(3030), 1, + anon_sym_LPAREN, + ACTIONS(3032), 1, + anon_sym_DOT, + ACTIONS(3034), 1, + anon_sym_QMARK_DOT, + STATE(2524), 1, + sym_arguments, + ACTIONS(2984), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3568), 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, - [95658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5319), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [95679] = 5, + anon_sym_PIPE_RBRACE, + [96175] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - anon_sym_EQ, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(3582), 3, - anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_LPAREN, + ACTIONS(3322), 1, anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3576), 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, - [95706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3777), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + ACTIONS(5344), 1, + anon_sym_QMARK_DOT, + STATE(2523), 1, + sym_arguments, + ACTIONS(3324), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3779), 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, - [95729] = 7, + anon_sym_PIPE_RBRACE, + [96206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3030), 1, + anon_sym_LPAREN, + ACTIONS(3310), 1, anon_sym_PIPE, - ACTIONS(5321), 1, - anon_sym_LT, - ACTIONS(5323), 1, + ACTIONS(5346), 1, anon_sym_DOT, - ACTIONS(5325), 1, - anon_sym_is, - STATE(2632), 1, - sym_type_arguments, - ACTIONS(2990), 10, + ACTIONS(5348), 1, + anon_sym_QMARK_DOT, + STATE(2522), 1, + sym_arguments, + ACTIONS(3312), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187655,12 +188093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95760] = 3, + [96237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 1, + ACTIONS(3593), 1, anon_sym_EQ, - ACTIONS(3783), 14, + ACTIONS(3595), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187675,12 +188113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95783] = 3, + [96260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, + ACTIONS(3318), 1, anon_sym_EQ, - ACTIONS(3593), 14, + ACTIONS(3320), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187695,14 +188133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95806] = 4, + [96283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3286), 1, anon_sym_EQ, - ACTIONS(5327), 1, + ACTIONS(5350), 1, anon_sym_is, - ACTIONS(3308), 13, + ACTIONS(3288), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -187716,20 +188154,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95831] = 4, + [96308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5352), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [96329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_EQ, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(3597), 13, + ACTIONS(3541), 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, @@ -187737,44 +188193,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95856] = 7, + [96352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 1, - anon_sym_PIPE, - ACTIONS(3022), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, - anon_sym_DOT, - ACTIONS(3026), 1, - anon_sym_QMARK_DOT, - STATE(2501), 1, - sym_arguments, - ACTIONS(2992), 10, - sym__automatic_semicolon, + ACTIONS(3700), 1, anon_sym_EQ, + ACTIONS(3702), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95887] = 7, + [96375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_LPAREN, - ACTIONS(3282), 1, + ACTIONS(3280), 1, anon_sym_PIPE, - ACTIONS(5329), 1, + ACTIONS(5354), 1, anon_sym_DOT, - ACTIONS(5331), 1, - anon_sym_QMARK_DOT, - STATE(2516), 1, - sym_arguments, - ACTIONS(3284), 10, + ACTIONS(5356), 1, + anon_sym_LT, + ACTIONS(5358), 1, + anon_sym_is, + STATE(2624), 1, + sym_type_arguments, + ACTIONS(3008), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187785,36 +188237,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95918] = 7, + [96406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_LPAREN, - ACTIONS(3390), 1, - anon_sym_PIPE, - ACTIONS(5333), 1, - anon_sym_DOT, - ACTIONS(5335), 1, - anon_sym_QMARK_DOT, - STATE(2502), 1, - sym_arguments, - ACTIONS(3392), 10, - sym__automatic_semicolon, + ACTIONS(3436), 1, anon_sym_EQ, + ACTIONS(3438), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95949] = 3, + [96429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(3577), 1, anon_sym_EQ, - ACTIONS(3601), 14, + ACTIONS(3579), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187829,14 +188277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95972] = 4, + [96452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(3630), 1, anon_sym_EQ, - ACTIONS(5299), 1, - anon_sym_is, - ACTIONS(3398), 13, + ACTIONS(3632), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -187850,12 +188297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [95997] = 3, + [96475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 1, + ACTIONS(3499), 1, anon_sym_EQ, - ACTIONS(3727), 14, + ACTIONS(3501), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187870,12 +188317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [96020] = 3, + [96498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3581), 1, anon_sym_EQ, - ACTIONS(3703), 14, + ACTIONS(3583), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187890,12 +188337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [96043] = 3, + [96521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(3589), 1, anon_sym_EQ, - ACTIONS(3635), 14, + ACTIONS(3591), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187910,31 +188357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [96066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5337), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [96087] = 3, + [96544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 1, + ACTIONS(3790), 1, anon_sym_EQ, - ACTIONS(3639), 14, + ACTIONS(3792), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -187949,50 +188377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [96110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5339), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [96131] = 3, + [96567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 1, - anon_sym_PIPE, - ACTIONS(3707), 13, - sym__automatic_semicolon, + ACTIONS(3528), 1, anon_sym_EQ, + ACTIONS(3530), 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_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96153] = 3, + [96590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3755), 13, + ACTIONS(3513), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188006,88 +188416,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96175] = 3, + [96612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 13, - sym__automatic_semicolon, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5362), 1, + sym_number, + STATE(4158), 1, + sym_predefined_type, + STATE(4159), 1, + sym_string, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96642] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5364), 1, + sym_number, + STATE(4090), 1, + sym_string, + STATE(4249), 1, + sym_predefined_type, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96672] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5366), 1, + sym_number, + STATE(4363), 1, + sym_predefined_type, + STATE(4364), 1, + sym_string, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96702] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 1, anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(3611), 10, 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_extends, - anon_sym_PIPE_RBRACE, - [96197] = 3, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [96730] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 13, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3280), 1, + anon_sym_extends, + ACTIONS(5287), 1, + anon_sym_DOT, + ACTIONS(5289), 1, + anon_sym_LT, + ACTIONS(5374), 1, + sym_identifier, + ACTIONS(5378), 1, + anon_sym_GT, + STATE(2427), 1, + sym_type_arguments, + ACTIONS(5376), 3, anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3008), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96219] = 3, + anon_sym_PIPE, + [96764] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5381), 1, + sym_number, + STATE(4221), 1, + sym_string, + STATE(4222), 1, + sym_predefined_type, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96794] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5383), 1, + sym_number, + STATE(4197), 1, + sym_string, + STATE(4217), 1, + sym_predefined_type, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96824] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5385), 1, + sym_number, + STATE(4187), 1, + sym_string, + STATE(4189), 1, + sym_predefined_type, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96854] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5387), 1, + sym_number, + STATE(4188), 1, + sym_predefined_type, + STATE(4239), 1, + sym_string, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96884] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5389), 1, + sym_number, + STATE(4353), 1, + sym_predefined_type, + STATE(4360), 1, + sym_string, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96914] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5391), 1, + sym_number, + STATE(4283), 1, + sym_predefined_type, + STATE(4287), 1, + sym_string, + ACTIONS(5360), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96944] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, - anon_sym_PIPE, - ACTIONS(3605), 13, - sym__automatic_semicolon, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5393), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5397), 1, + anon_sym_BANG, + ACTIONS(5399), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3422), 1, - anon_sym_PIPE, - ACTIONS(3424), 13, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5403), 1, + anon_sym_QMARK, + STATE(2712), 1, + sym_formal_parameters, + STATE(2967), 1, + sym__call_signature, + STATE(3168), 1, + sym_type_annotation, + STATE(3613), 1, + sym__initializer, + STATE(3878), 1, + sym_type_parameters, + ACTIONS(5395), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96263] = 3, + [96986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(3424), 13, + ACTIONS(3772), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188101,20 +188718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96285] = 7, + [97008] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5343), 1, + ACTIONS(5405), 1, sym_number, - STATE(4405), 1, - sym_string, - STATE(4415), 1, + STATE(4347), 1, sym_predefined_type, - ACTIONS(5341), 9, + STATE(4348), 1, + sym_string, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188124,20 +188741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96315] = 7, + [97038] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5345), 1, + ACTIONS(5407), 1, sym_number, - STATE(4394), 1, + STATE(4183), 2, sym_string, - STATE(4397), 1, sym_predefined_type, - ACTIONS(5341), 9, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188147,20 +188763,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96345] = 7, + [97066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3770), 1, + anon_sym_PIPE, + ACTIONS(3772), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97088] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(3186), 1, + anon_sym_LBRACE, + ACTIONS(5409), 1, + sym_identifier, + ACTIONS(5411), 1, + anon_sym_STAR, + ACTIONS(5413), 1, + anon_sym_type, + ACTIONS(5415), 1, + anon_sym_COMMA, + ACTIONS(5417), 1, + anon_sym_from, + STATE(3884), 1, + sym__import_identifier, + STATE(3978), 1, + sym_import_clause, + STATE(3981), 1, + sym_string, + STATE(3982), 1, + sym_import_require_clause, + STATE(4358), 2, + sym_namespace_import, + sym_named_imports, + [97132] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5421), 1, + anon_sym_BANG, + ACTIONS(5423), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(3441), 1, + sym_type_annotation, + STATE(3804), 1, + sym__initializer, + STATE(3805), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97174] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5347), 1, + ACTIONS(5425), 1, sym_number, - STATE(4381), 1, - sym_string, - STATE(4384), 1, + STATE(4260), 1, sym_predefined_type, - ACTIONS(5341), 9, + STATE(4261), 1, + sym_string, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188170,19 +188864,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96375] = 6, + [97204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(3587), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [97228] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5349), 1, + ACTIONS(5427), 1, sym_number, - STATE(4371), 2, - sym_string, + STATE(4274), 1, sym_predefined_type, - ACTIONS(5341), 9, + STATE(4277), 1, + sym_string, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188192,12 +188907,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96403] = 3, + [97258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3770), 1, + anon_sym_PIPE, + ACTIONS(3772), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 1, anon_sym_PIPE, - ACTIONS(3424), 13, + ACTIONS(3784), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188211,12 +188945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96425] = 3, + [97302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3782), 1, anon_sym_PIPE, - ACTIONS(3674), 13, + ACTIONS(3784), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188230,20 +188964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96447] = 7, + [97324] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5351), 1, + ACTIONS(5429), 1, sym_number, - STATE(4377), 1, - sym_predefined_type, - STATE(4378), 1, + STATE(4366), 2, sym_string, - ACTIONS(5341), 9, + sym_predefined_type, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188253,41 +188986,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96477] = 13, + [97352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5353), 1, + ACTIONS(3728), 1, anon_sym_EQ, - ACTIONS(5357), 1, - anon_sym_BANG, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(3730), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5363), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_QMARK, - STATE(2706), 1, - sym_formal_parameters, - STATE(3071), 1, - sym__call_signature, - STATE(3197), 1, - sym_type_annotation, - STATE(3695), 1, - sym__initializer, - STATE(3882), 1, - sym_type_parameters, - ACTIONS(5355), 3, + anon_sym_extends, + [97376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 1, + anon_sym_PIPE, + ACTIONS(3784), 13, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [96519] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [97398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3766), 1, anon_sym_PIPE, - ACTIONS(3674), 13, + ACTIONS(3768), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188301,146 +189044,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96541] = 7, + [97420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5365), 1, - sym_number, - STATE(4284), 1, - sym_string, - STATE(4285), 1, - sym_predefined_type, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96571] = 7, + ACTIONS(3766), 1, + anon_sym_PIPE, + ACTIONS(3768), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5367), 1, - sym_number, - STATE(4276), 1, - sym_string, - STATE(4280), 1, - sym_predefined_type, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96601] = 13, + ACTIONS(3766), 1, + anon_sym_PIPE, + ACTIONS(3768), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97464] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5371), 1, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5397), 1, anon_sym_BANG, - ACTIONS(5373), 1, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5431), 1, anon_sym_QMARK, - STATE(2706), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3004), 1, - sym__call_signature, - STATE(3298), 1, + STATE(3168), 1, sym_type_annotation, - STATE(3572), 1, + STATE(3643), 1, sym__initializer, - STATE(3882), 1, + STATE(3802), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5369), 3, + ACTIONS(5395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [96643] = 7, + [97506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5375), 1, - sym_number, - STATE(4272), 1, - sym_string, - STATE(4273), 1, - sym_predefined_type, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96673] = 13, + ACTIONS(3750), 1, + anon_sym_PIPE, + ACTIONS(3752), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(3636), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_extends, + [97554] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5359), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5379), 1, + ACTIONS(5435), 1, anon_sym_BANG, - ACTIONS(5381), 1, + ACTIONS(5437), 1, anon_sym_QMARK, - STATE(2706), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(2993), 1, + STATE(3035), 1, sym__call_signature, - STATE(3414), 1, + STATE(3373), 1, sym_type_annotation, - STATE(3610), 1, + STATE(3770), 1, sym__initializer, - STATE(3882), 1, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5377), 3, + ACTIONS(5433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [96715] = 6, + [97596] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5383), 1, + ACTIONS(5439), 1, sym_number, - STATE(4268), 2, - sym_string, + STATE(4163), 1, sym_predefined_type, - ACTIONS(5341), 9, + STATE(4166), 1, + sym_string, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188450,32 +189203,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96743] = 4, + [97626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 1, + ACTIONS(3692), 1, + anon_sym_PIPE, + ACTIONS(3694), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(3699), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [96767] = 3, + anon_sym_PIPE_RBRACE, + [97648] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5443), 1, + anon_sym_BANG, + ACTIONS(5445), 1, + anon_sym_QMARK, + STATE(2712), 1, + sym_formal_parameters, + STATE(3058), 1, + sym__call_signature, + STATE(3286), 1, + sym_type_annotation, + STATE(3741), 1, + sym__initializer, + STATE(3878), 1, + sym_type_parameters, + ACTIONS(5441), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3692), 1, anon_sym_PIPE, - ACTIONS(3674), 13, + ACTIONS(3694), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188489,12 +189270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96789] = 3, + [97712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3692), 1, anon_sym_PIPE, - ACTIONS(3458), 13, + ACTIONS(3694), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188508,12 +189289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96811] = 3, + [97734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3597), 1, anon_sym_PIPE, - ACTIONS(3458), 13, + ACTIONS(3599), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188527,77 +189308,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96833] = 13, + [97756] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5399), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5389), 1, + ACTIONS(5421), 1, anon_sym_BANG, - ACTIONS(5391), 1, + ACTIONS(5447), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3172), 1, + STATE(3007), 1, + sym__call_signature, + STATE(3441), 1, sym_type_annotation, - STATE(3661), 1, + STATE(3806), 1, sym__initializer, - STATE(3662), 1, - sym__call_signature, - STATE(4053), 1, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5387), 3, + ACTIONS(5419), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [96875] = 14, + [97798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(3178), 1, + ACTIONS(3597), 1, + anon_sym_PIPE, + ACTIONS(3599), 13, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5393), 1, - sym_identifier, - ACTIONS(5395), 1, - anon_sym_STAR, - ACTIONS(5397), 1, - anon_sym_type, - ACTIONS(5399), 1, anon_sym_COMMA, - ACTIONS(5401), 1, - anon_sym_from, - STATE(3807), 1, - sym_import_require_clause, - STATE(3933), 1, - sym__import_identifier, - STATE(4051), 1, - sym_string, - STATE(4055), 1, - sym_import_clause, - STATE(4308), 2, - sym_namespace_import, - sym_named_imports, - [96919] = 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [97820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 1, + ACTIONS(3597), 1, + anon_sym_PIPE, + ACTIONS(3599), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5385), 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, - ACTIONS(5403), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [97842] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3774), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(3783), 10, + ACTIONS(3776), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -188608,16 +189397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [96947] = 5, + [97870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3786), 1, anon_sym_EQ, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(3711), 11, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(3788), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -188628,13 +189419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_extends, - [96973] = 3, + [97898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3565), 1, anon_sym_PIPE, - ACTIONS(3458), 13, + ACTIONS(3567), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188648,18 +189438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96995] = 6, + [97920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, + ACTIONS(3760), 1, anon_sym_EQ, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(3572), 10, + ACTIONS(3762), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -188670,12 +189460,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [97023] = 3, + [97948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [97992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, + anon_sym_PIPE, + ACTIONS(3563), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [98014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 1, + anon_sym_PIPE, + ACTIONS(3665), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [98036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3659), 1, + anon_sym_PIPE, + ACTIONS(3661), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [98058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, + ACTIONS(3649), 1, anon_sym_PIPE, - ACTIONS(3799), 13, + ACTIONS(3651), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188689,37 +189574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97045] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3272), 1, - anon_sym_extends, - ACTIONS(5272), 1, - anon_sym_LT, - ACTIONS(5274), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_GT, - STATE(2399), 1, - sym_type_arguments, - ACTIONS(5407), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5409), 2, - anon_sym_LBRACE, - sym_jsx_identifier, - ACTIONS(2990), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [97079] = 3, + [98080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3571), 1, anon_sym_PIPE, - ACTIONS(3466), 13, + ACTIONS(3573), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188733,55 +189593,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97101] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5414), 1, - sym_number, - STATE(4372), 1, - sym_predefined_type, - STATE(4373), 1, - sym_string, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97131] = 4, + [98102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3516), 1, + ACTIONS(3649), 1, + anon_sym_PIPE, + ACTIONS(3651), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(3518), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [97155] = 3, + anon_sym_PIPE_RBRACE, + [98124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3571), 1, anon_sym_PIPE, - ACTIONS(3466), 13, + ACTIONS(3573), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188795,34 +189631,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97177] = 6, + [98146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(3658), 10, + ACTIONS(3505), 13, + 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, - [97205] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [98168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3507), 1, anon_sym_PIPE, - ACTIONS(3466), 13, + ACTIONS(3509), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188836,12 +189669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97227] = 3, + [98190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3741), 13, + ACTIONS(3505), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188855,12 +189688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97249] = 3, + [98212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 1, + ACTIONS(3507), 1, anon_sym_PIPE, - ACTIONS(3741), 13, + ACTIONS(3509), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188874,19 +189707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97271] = 6, + [98234] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5416), 1, + ACTIONS(5449), 1, sym_number, - STATE(4119), 2, + STATE(4255), 2, sym_string, sym_predefined_type, - ACTIONS(5341), 9, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -188896,41 +189729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97299] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5389), 1, - anon_sym_BANG, - ACTIONS(5418), 1, - anon_sym_QMARK, - STATE(2706), 1, - sym_formal_parameters, - STATE(3110), 1, - sym__call_signature, - STATE(3172), 1, - sym_type_annotation, - STATE(3802), 1, - sym__initializer, - STATE(3882), 1, - sym_type_parameters, - ACTIONS(5387), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [97341] = 3, + [98262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 1, + ACTIONS(3515), 1, anon_sym_PIPE, - ACTIONS(3741), 13, + ACTIONS(3517), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188944,70 +189748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97363] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5371), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(3298), 1, - sym_type_annotation, - STATE(3613), 1, - sym__call_signature, - STATE(3616), 1, - sym__initializer, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [97405] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5424), 1, - anon_sym_BANG, - ACTIONS(5426), 1, - anon_sym_QMARK, - STATE(2706), 1, - sym_formal_parameters, - STATE(3112), 1, - sym__call_signature, - STATE(3128), 1, - sym_type_annotation, - STATE(3789), 1, - sym__initializer, - STATE(3882), 1, - sym_type_parameters, - ACTIONS(5422), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [97447] = 3, + [98284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3765), 13, + ACTIONS(3513), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189021,57 +189767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5428), 1, - sym_number, - STATE(4176), 2, - sym_string, - sym_predefined_type, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97497] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5430), 1, - sym_number, - STATE(4172), 1, - sym_predefined_type, - STATE(4173), 1, - sym_string, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97527] = 3, + [98306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 1, + ACTIONS(3515), 1, anon_sym_PIPE, - ACTIONS(3755), 13, + ACTIONS(3517), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189085,66 +189786,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97549] = 7, + [98328] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5432), 1, - sym_number, - STATE(4138), 1, - sym_string, - STATE(4139), 1, - sym_predefined_type, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97579] = 7, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5453), 1, + anon_sym_BANG, + ACTIONS(5455), 1, + anon_sym_QMARK, + STATE(2712), 1, + sym_formal_parameters, + STATE(3049), 1, + sym__call_signature, + STATE(3310), 1, + sym_type_annotation, + STATE(3747), 1, + sym__initializer, + STATE(3878), 1, + sym_type_parameters, + ACTIONS(5451), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5434), 1, - sym_number, - STATE(4149), 1, - sym_string, - STATE(4150), 1, - sym_predefined_type, - ACTIONS(5341), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97609] = 7, + ACTIONS(3547), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(3549), 10, + 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, + [98398] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(5457), 1, sym_number, - STATE(4386), 1, - sym_predefined_type, - STATE(4388), 1, + STATE(4165), 1, sym_string, - ACTIONS(5341), 9, + STATE(4195), 1, + sym_predefined_type, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -189154,18 +189860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97639] = 6, + [98428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3280), 1, anon_sym_PIPE, - ACTIONS(5321), 1, - anon_sym_LT, - ACTIONS(5323), 1, + ACTIONS(5354), 1, anon_sym_DOT, - STATE(2632), 1, + ACTIONS(5356), 1, + anon_sym_LT, + STATE(2624), 1, sym_type_arguments, - ACTIONS(2990), 10, + ACTIONS(3008), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189176,20 +189882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97667] = 7, + [98456] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5438), 1, + ACTIONS(5459), 1, sym_number, - STATE(4168), 1, - sym_predefined_type, - STATE(4169), 1, + STATE(4190), 2, sym_string, - ACTIONS(5341), 9, + sym_predefined_type, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -189199,20 +189904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97697] = 7, + [98484] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5461), 1, sym_number, - STATE(4152), 1, + STATE(4292), 2, sym_string, - STATE(4157), 1, sym_predefined_type, - ACTIONS(5341), 9, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -189222,20 +189926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97727] = 7, + [98512] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, anon_sym_DQUOTE, ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5442), 1, + ACTIONS(5463), 1, sym_number, - STATE(4164), 1, + STATE(4173), 1, sym_predefined_type, - STATE(4165), 1, + STATE(4175), 1, sym_string, - ACTIONS(5341), 9, + ACTIONS(5360), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -189245,18 +189949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97757] = 3, + [98542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(2533), 1, anon_sym_PIPE, - ACTIONS(3765), 13, + ACTIONS(2535), 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, @@ -189264,38 +189967,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97779] = 3, + [98563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(3286), 1, anon_sym_PIPE, - ACTIONS(3749), 13, + ACTIONS(5356), 1, + anon_sym_LT, + STATE(2630), 1, + sym_type_arguments, + ACTIONS(3288), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97801] = 6, + [98588] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5444), 1, - sym_number, - STATE(4393), 2, - sym_string, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5469), 1, + anon_sym_SLASH_GT, + STATE(2719), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2806), 1, + sym_type_arguments, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [98629] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3307), 1, + sym_type_predicate, + STATE(4111), 1, sym_predefined_type, - ACTIONS(5341), 9, + ACTIONS(5471), 2, + sym_identifier, + sym_this, + ACTIONS(208), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -189305,119 +190035,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97829] = 6, + [98654] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_EQ, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(3440), 10, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5465), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5467), 1, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [97857] = 6, + ACTIONS(5473), 1, + anon_sym_SLASH_GT, + STATE(2752), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2754), 1, + sym_type_arguments, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [98695] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_EQ, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(3450), 10, - anon_sym_LBRACE, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5477), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2843), 1, + sym__call_signature, + STATE(3355), 1, + sym_type_annotation, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5475), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [98730] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(5483), 1, anon_sym_QMARK, - [97885] = 3, + STATE(2693), 1, + sym_formal_parameters, + STATE(2948), 1, + sym__call_signature, + STATE(3410), 1, + sym_type_annotation, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5479), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [98765] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 13, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5485), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(3355), 1, + sym_type_annotation, + STATE(3356), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5475), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97907] = 3, + [98800] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 1, - anon_sym_PIPE, - ACTIONS(3715), 13, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5489), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2906), 1, + sym__call_signature, + STATE(3166), 1, + sym_type_annotation, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5487), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97929] = 3, + [98835] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_PIPE, - ACTIONS(3731), 13, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5493), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2922), 1, + sym__call_signature, + STATE(3278), 1, + sym_type_annotation, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5491), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97951] = 3, + [98870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(2537), 1, anon_sym_PIPE, - ACTIONS(3737), 13, + ACTIONS(2539), 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, @@ -189425,200 +190206,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97973] = 3, + [98891] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_PIPE, - ACTIONS(3731), 13, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2844), 1, + sym__call_signature, + STATE(3287), 1, + sym_type_annotation, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5495), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97995] = 3, + [98926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_PIPE, - ACTIONS(3737), 13, + ACTIONS(5499), 1, + anon_sym_LPAREN, + ACTIONS(5501), 1, + anon_sym_DOT, + ACTIONS(5503), 1, + anon_sym_QMARK_DOT, + STATE(2637), 1, + sym_arguments, + ACTIONS(3312), 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_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [98017] = 3, + [98953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_PIPE, - ACTIONS(3745), 13, + ACTIONS(5499), 1, + anon_sym_LPAREN, + ACTIONS(5505), 1, + anon_sym_DOT, + ACTIONS(5507), 1, + anon_sym_QMARK_DOT, + STATE(2638), 1, + sym_arguments, + ACTIONS(3324), 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_PIPE, anon_sym_extends, + [98980] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5509), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(3166), 1, + sym_type_annotation, + STATE(3175), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5487), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98039] = 3, + [99015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(1553), 1, + anon_sym_DOT, + ACTIONS(3442), 2, anon_sym_PIPE, - ACTIONS(3749), 13, + anon_sym_LT, + ACTIONS(3444), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98061] = 3, + [99038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(1515), 1, + anon_sym_DOT, + ACTIONS(3442), 2, anon_sym_PIPE, - ACTIONS(3745), 13, + anon_sym_LT, + ACTIONS(3444), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98083] = 10, + [99061] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5448), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2908), 1, - sym__call_signature, - STATE(3199), 1, + STATE(3410), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3419), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5446), 5, + ACTIONS(5479), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98118] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3270), 1, - sym_type_predicate, - STATE(4257), 1, - sym_predefined_type, - ACTIONS(5450), 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_unknown, - anon_sym_never, - anon_sym_object, - [98143] = 6, + [99096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, - anon_sym_LPAREN, - ACTIONS(5454), 1, - anon_sym_DOT, - ACTIONS(5456), 1, - anon_sym_QMARK_DOT, - STATE(2610), 1, - sym_arguments, - ACTIONS(3392), 9, + ACTIONS(3720), 1, + anon_sym_PIPE, + ACTIONS(3722), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [98170] = 6, + anon_sym_PIPE_RBRACE, + [99117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, - anon_sym_LPAREN, - ACTIONS(5458), 1, + ACTIONS(3557), 1, + anon_sym_PIPE, + ACTIONS(3559), 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, - ACTIONS(5460), 1, anon_sym_QMARK_DOT, - STATE(2611), 1, - sym_arguments, - ACTIONS(3284), 9, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [99138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, + anon_sym_PIPE, + ACTIONS(3810), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [98197] = 6, + anon_sym_PIPE_RBRACE, + [99159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, + ACTIONS(5499), 1, anon_sym_LPAREN, - ACTIONS(5462), 1, + ACTIONS(5513), 1, anon_sym_DOT, - ACTIONS(5464), 1, + ACTIONS(5515), 1, anon_sym_QMARK_DOT, - STATE(2622), 1, + STATE(2654), 1, sym_arguments, - ACTIONS(2992), 9, + ACTIONS(2984), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -189628,85 +190436,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98224] = 10, + [99186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5468), 1, - anon_sym_COLON, - ACTIONS(5470), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2851), 1, - sym__call_signature, - STATE(3123), 1, - sym_type_annotation, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98259] = 10, + STATE(3853), 1, + sym_type_predicate, + STATE(4301), 1, + sym_predefined_type, + ACTIONS(5517), 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_unknown, + anon_sym_never, + anon_sym_object, + [99211] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5472), 1, + ACTIONS(5519), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3186), 1, + STATE(3270), 1, sym__call_signature, - STATE(3199), 1, + STATE(3287), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5446), 5, + ACTIONS(5495), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98294] = 5, + [99246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, - anon_sym_PIPE, - ACTIONS(5321), 1, + ACTIONS(5521), 1, + anon_sym_DOT, + ACTIONS(5523), 1, anon_sym_LT, - STATE(2613), 1, + ACTIONS(5525), 1, + anon_sym_is, + STATE(2770), 1, sym_type_arguments, - ACTIONS(3308), 10, + ACTIONS(3008), 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, - [98319] = 4, + [99273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, - anon_sym_DOT, - ACTIONS(3649), 2, - anon_sym_LT, + ACTIONS(2541), 1, anon_sym_PIPE, - ACTIONS(3651), 10, + ACTIONS(2543), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189714,20 +190515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98342] = 5, + [99294] = 5, ACTIONS(3), 1, sym_comment, - STATE(3085), 1, + STATE(3031), 1, sym_type_predicate, - STATE(4093), 1, + STATE(4434), 1, sym_predefined_type, - ACTIONS(5474), 2, + ACTIONS(5527), 2, sym_identifier, sym_this, - ACTIONS(209), 9, + ACTIONS(208), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -189737,30 +190540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [98367] = 3, + [99319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_PIPE, - ACTIONS(3617), 12, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5529), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(3278), 1, + sym_type_annotation, + STATE(3283), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5491), 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, - [98388] = 3, + [99354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3653), 1, anon_sym_PIPE, - ACTIONS(3629), 12, + ACTIONS(5531), 1, + anon_sym_DOT, + ACTIONS(5533), 1, + anon_sym_QMARK_DOT, + ACTIONS(3655), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189768,404 +190582,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98409] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(5478), 1, - anon_sym_GT, - ACTIONS(5480), 1, - anon_sym_SLASH, - STATE(2792), 1, - sym_type_arguments, - STATE(2799), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [98450] = 10, + [99379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1545), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(1543), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5361), 1, anon_sym_COLON, - ACTIONS(5484), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(3245), 1, - sym__call_signature, - STATE(3246), 1, - sym_type_annotation, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5482), 5, + anon_sym_extends, + [99399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3513), 12, 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, - [98485] = 10, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [99417] = 8, + ACTIONS(5535), 1, + anon_sym_LBRACE, + ACTIONS(5539), 1, + anon_sym_LT_SLASH, + ACTIONS(5541), 1, + anon_sym_LT, + ACTIONS(5543), 1, + sym_comment, + STATE(2553), 1, + sym_jsx_opening_element, + STATE(3409), 1, + sym_jsx_closing_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2569), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [99447] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5486), 1, - anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2937), 1, - sym__call_signature, - STATE(3246), 1, + STATE(3353), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3354), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5482), 5, + ACTIONS(5545), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98520] = 10, + [99479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5488), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(3123), 1, - sym_type_annotation, - STATE(3371), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5466), 5, + ACTIONS(3772), 12, 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, - [98555] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [99497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_PIPE, - ACTIONS(2531), 12, + ACTIONS(3784), 12, 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_extends, - anon_sym_PIPE_RBRACE, - [98576] = 13, + [99515] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(5478), 1, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5467), 1, anon_sym_GT, - ACTIONS(5490), 1, - anon_sym_SLASH, - STATE(2796), 1, + ACTIONS(5469), 1, + anon_sym_SLASH_GT, + ACTIONS(5547), 1, + anon_sym_DOT, + STATE(2720), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(2797), 1, + STATE(2806), 1, sym_type_arguments, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [98617] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3826), 1, - sym_type_predicate, - STATE(4443), 1, - sym_predefined_type, - ACTIONS(5492), 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_unknown, - anon_sym_never, - anon_sym_object, - [98642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3485), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_DOT, - ACTIONS(5496), 1, - anon_sym_QMARK_DOT, - ACTIONS(3487), 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, - [98667] = 10, + [99553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5500), 1, - anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2917), 1, + STATE(2902), 1, sym__call_signature, - STATE(3252), 1, + STATE(3136), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5498), 5, + ACTIONS(5549), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98702] = 10, + [99585] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5502), 1, - anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3251), 1, + STATE(2939), 1, sym__call_signature, - STATE(3252), 1, + STATE(3353), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5498), 5, + ACTIONS(5545), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98737] = 3, + [99617] = 8, + ACTIONS(5535), 1, + anon_sym_LBRACE, + ACTIONS(5541), 1, + anon_sym_LT, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(5551), 1, + anon_sym_LT_SLASH, + STATE(1863), 1, + sym_jsx_closing_element, + STATE(2553), 1, + sym_jsx_opening_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2666), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [99647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, - anon_sym_PIPE, - ACTIONS(2527), 12, + ACTIONS(3784), 12, 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_extends, - anon_sym_PIPE_RBRACE, - [98758] = 10, + [99665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5506), 1, - anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2903), 1, - sym__call_signature, - STATE(3376), 1, + STATE(3176), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3177), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5504), 5, + ACTIONS(5553), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98793] = 6, + [99697] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5510), 1, - anon_sym_DOT, - ACTIONS(5512), 1, - anon_sym_is, - STATE(2700), 1, - sym_type_arguments, - ACTIONS(2990), 9, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(2693), 1, + sym_formal_parameters, + STATE(3385), 1, + sym_type_annotation, + STATE(3759), 1, + sym__call_signature, + STATE(3762), 1, + sym__initializer, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5555), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [99733] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3019), 1, + anon_sym_COLON, + ACTIONS(5287), 1, + anon_sym_DOT, + ACTIONS(5289), 1, + anon_sym_LT, + ACTIONS(5557), 1, + anon_sym_QMARK, + STATE(2427), 1, + sym_type_arguments, + STATE(3898), 1, + sym_type_annotation, + ACTIONS(3008), 6, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98820] = 3, + [99763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_PIPE, - ACTIONS(3625), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1513), 1, + anon_sym_LT, + ACTIONS(1511), 11, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [98841] = 10, + [99783] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_SLASH_GT, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5547), 1, + anon_sym_DOT, + STATE(2706), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2809), 1, + sym_type_arguments, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [99821] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5514), 1, - anon_sym_QMARK, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3369), 1, + STATE(3003), 1, sym__call_signature, - STATE(3376), 1, + STATE(3437), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3573), 1, + sym__initializer, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5504), 5, + ACTIONS(5560), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98876] = 3, + [99857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 1, - anon_sym_PIPE, - ACTIONS(2535), 12, + ACTIONS(5521), 1, + anon_sym_DOT, + ACTIONS(5523), 1, + anon_sym_LT, + STATE(2770), 1, + sym_type_arguments, + ACTIONS(3008), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [98897] = 11, + [99881] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5359), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2706), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3119), 1, + STATE(3032), 1, sym__call_signature, - STATE(3240), 1, + STATE(3385), 1, sym_type_annotation, - STATE(3691), 1, + STATE(3775), 1, sym__initializer, - STATE(3882), 1, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5516), 3, + ACTIONS(5555), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98933] = 2, + [99917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 12, + ACTIONS(3784), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190178,147 +191003,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98951] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, + [99935] = 8, + ACTIONS(5535), 1, + anon_sym_LBRACE, + ACTIONS(5541), 1, anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2706), 1, - sym_formal_parameters, - STATE(3075), 1, - sym__call_signature, - STATE(3205), 1, - sym_type_annotation, - STATE(3721), 1, - sym__initializer, - STATE(3882), 1, - sym_type_parameters, - ACTIONS(5518), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98987] = 9, - ACTIONS(3), 1, + ACTIONS(5543), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(5562), 1, + anon_sym_LT_SLASH, + STATE(2553), 1, + sym_jsx_opening_element, + STATE(3211), 1, + sym_jsx_closing_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2572), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [99965] = 8, + ACTIONS(5535), 1, + anon_sym_LBRACE, + ACTIONS(5541), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2672), 1, - sym_formal_parameters, - STATE(3248), 1, - sym__call_signature, - STATE(3249), 1, - sym_type_annotation, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5520), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99019] = 9, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT_SLASH, + STATE(1407), 1, + sym_jsx_closing_element, + STATE(2553), 1, + sym_jsx_opening_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2557), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [99995] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2914), 1, - sym__call_signature, - STATE(3249), 1, + STATE(3165), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3298), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5520), 5, + ACTIONS(5566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99051] = 9, + [100027] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(2909), 1, + STATE(3097), 1, sym__call_signature, - STATE(3182), 1, + STATE(3206), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3695), 1, + sym__initializer, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5522), 5, + ACTIONS(5568), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99083] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - ACTIONS(3178), 1, + [100063] = 8, + ACTIONS(5535), 1, anon_sym_LBRACE, - ACTIONS(5393), 1, - sym_identifier, - ACTIONS(5395), 1, - anon_sym_STAR, - ACTIONS(5397), 1, - anon_sym_type, - STATE(3807), 1, - sym_import_require_clause, - STATE(3933), 1, - sym__import_identifier, - STATE(4051), 1, - sym_string, - STATE(4055), 1, - sym_import_clause, - STATE(4308), 2, - sym_namespace_import, - sym_named_imports, - [99121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 1, + ACTIONS(5541), 1, anon_sym_LT, - ACTIONS(1556), 11, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [99141] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT_SLASH, + STATE(1386), 1, + sym_jsx_closing_element, + STATE(2553), 1, + sym_jsx_opening_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2666), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 12, + ACTIONS(3768), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190331,127 +191133,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 1, - anon_sym_LT, - ACTIONS(5510), 1, - anon_sym_DOT, - STATE(2700), 1, - sym_type_arguments, - ACTIONS(2990), 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, - [99183] = 11, + [100111] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3173), 1, - sym_type_annotation, - STATE(3671), 1, - sym__initializer, - STATE(3696), 1, + STATE(2925), 1, sym__call_signature, - STATE(4053), 1, + STATE(3165), 1, + sym_type_annotation, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5524), 3, + ACTIONS(5566), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99219] = 11, + anon_sym_PIPE_RBRACE, + [100143] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2706), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3009), 1, - sym__call_signature, - STATE(3268), 1, + STATE(3136), 1, sym_type_annotation, - STATE(3604), 1, - sym__initializer, - STATE(3882), 1, + STATE(3137), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5526), 3, + ACTIONS(5549), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99255] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + anon_sym_PIPE_RBRACE, + [100175] = 8, + ACTIONS(5535), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, + ACTIONS(5541), 1, anon_sym_LT, - ACTIONS(5291), 1, - anon_sym_SLASH, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5478), 1, - anon_sym_GT, - STATE(2710), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2788), 1, - sym_type_arguments, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(5551), 1, + anon_sym_LT_SLASH, + STATE(1980), 1, + sym_jsx_closing_element, + STATE(2553), 1, + sym_jsx_opening_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2542), 5, + sym_jsx_element, + sym_jsx_text, sym_jsx_expression, - sym_jsx_attribute, - [99293] = 8, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100205] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(3203), 1, + ACTIONS(3257), 1, anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - STATE(3568), 1, + STATE(3631), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, + ACTIONS(3210), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [99323] = 2, + [100235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 12, + ACTIONS(3768), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190464,36 +191239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99341] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5301), 1, - anon_sym_SLASH, - ACTIONS(5478), 1, - anon_sym_GT, - STATE(2771), 1, - sym_type_arguments, - STATE(2776), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99379] = 2, + [100253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 12, + ACTIONS(3772), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190506,26 +191255,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99397] = 2, + [100271] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 12, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(2693), 1, + sym_formal_parameters, + STATE(2961), 1, + sym__call_signature, + STATE(3317), 1, + sym_type_annotation, + STATE(3935), 1, + sym_type_parameters, + ACTIONS(5570), 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, + [100303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3218), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [99415] = 2, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [100333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 12, + ACTIONS(3768), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190538,10 +191316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99433] = 2, + [100351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 12, + ACTIONS(3752), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190554,27 +191332,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99451] = 3, + [100369] = 8, + ACTIONS(5535), 1, + anon_sym_LBRACE, + ACTIONS(5539), 1, + anon_sym_LT_SLASH, + ACTIONS(5541), 1, + anon_sym_LT, + ACTIONS(5543), 1, + sym_comment, + STATE(2553), 1, + sym_jsx_opening_element, + STATE(3432), 1, + sym_jsx_closing_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2666), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100399] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(1582), 11, - anon_sym_as, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [99471] = 2, + anon_sym_PIPE_RBRACE, + [100429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 12, + ACTIONS(3772), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190587,81 +191392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99489] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2672), 1, - sym_formal_parameters, - STATE(3364), 1, - sym__call_signature, - STATE(3367), 1, - sym_type_annotation, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5528), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99521] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, + [100447] = 8, + ACTIONS(5535), 1, + anon_sym_LBRACE, + ACTIONS(5541), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2672), 1, - sym_formal_parameters, - STATE(3179), 1, - sym__call_signature, - STATE(3182), 1, - sym_type_annotation, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5522), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99553] = 11, - ACTIONS(3), 1, + ACTIONS(5543), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2706), 1, - sym_formal_parameters, - STATE(3043), 1, - sym__call_signature, - STATE(3256), 1, - sym_type_annotation, - STATE(3635), 1, - sym__initializer, - STATE(3882), 1, - sym_type_parameters, - ACTIONS(5530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99589] = 2, + ACTIONS(5562), 1, + anon_sym_LT_SLASH, + STATE(2553), 1, + sym_jsx_opening_element, + STATE(3238), 1, + sym_jsx_closing_element, + ACTIONS(5537), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2666), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 12, + ACTIONS(3694), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190674,10 +191430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99607] = 2, + [100495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 12, + ACTIONS(3694), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190690,10 +191446,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99625] = 2, + [100513] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5473), 1, + anon_sym_SLASH_GT, + ACTIONS(5547), 1, + anon_sym_DOT, + STATE(2749), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2754), 1, + sym_type_arguments, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [100551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 12, + ACTIONS(3694), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190706,10 +191488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99643] = 2, + [100569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 12, + ACTIONS(3599), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190722,32 +191504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99661] = 8, + [100587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [99691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3674), 12, + ACTIONS(3599), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190760,55 +191520,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99709] = 8, + [100605] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + ACTIONS(5393), 1, anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [99739] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3253), 1, + STATE(3045), 1, sym__call_signature, - STATE(3271), 1, + STATE(3318), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3751), 1, + sym__initializer, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5532), 5, + ACTIONS(5572), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99771] = 2, + [100641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 12, + ACTIONS(3599), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190821,10 +191561,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99789] = 2, + [100659] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5310), 1, + anon_sym_SLASH_GT, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5547), 1, + anon_sym_DOT, + STATE(2803), 1, + sym_type_arguments, + STATE(2807), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [100697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 12, + ACTIONS(3665), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190837,10 +191603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99807] = 2, + [100715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 12, + ACTIONS(3661), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190853,122 +191619,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99825] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(5272), 1, - anon_sym_LT, - ACTIONS(5274), 1, - anon_sym_DOT, - ACTIONS(5534), 1, - anon_sym_QMARK, - STATE(2399), 1, - sym_type_arguments, - STATE(3959), 1, - sym_type_annotation, - ACTIONS(2990), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [99855] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [99885] = 9, + [100733] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2905), 1, + STATE(3313), 1, sym__call_signature, - STATE(3367), 1, + STATE(3317), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5528), 5, + ACTIONS(5570), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99917] = 8, + [100765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3241), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, + ACTIONS(3567), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [99947] = 9, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [100783] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2915), 1, + STATE(2908), 1, sym__call_signature, - STATE(3271), 1, + STATE(3176), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5532), 5, + ACTIONS(5553), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99979] = 2, + [100815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 12, + ACTIONS(3651), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190981,35 +191697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99997] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2706), 1, - sym_formal_parameters, - STATE(3102), 1, - sym__call_signature, - STATE(3173), 1, - sym_type_annotation, - STATE(3740), 1, - sym__initializer, - STATE(3882), 1, - sym_type_parameters, - ACTIONS(5524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100033] = 2, + [100833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 12, + ACTIONS(3573), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191022,12 +191713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100051] = 3, + [100851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(3318), 1, anon_sym_PIPE, - ACTIONS(1381), 11, + ACTIONS(5358), 1, + anon_sym_is, + ACTIONS(3320), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191037,79 +191730,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [100071] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5478), 1, - anon_sym_GT, - ACTIONS(5480), 1, - anon_sym_SLASH, - STATE(2792), 1, - sym_type_arguments, - STATE(2801), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [100109] = 2, + [100873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 12, + ACTIONS(3286), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, + anon_sym_is, + ACTIONS(3288), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [100127] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(2672), 1, - sym_formal_parameters, - STATE(3240), 1, - sym_type_annotation, - STATE(3682), 1, - sym__initializer, - STATE(3722), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5516), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100163] = 2, + anon_sym_PIPE_RBRACE, + [100895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 12, + ACTIONS(3651), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191122,10 +191765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100181] = 2, + [100913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 12, + ACTIONS(3573), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191138,10 +191781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100199] = 2, + [100931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 12, + ACTIONS(3505), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191154,26 +191797,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100217] = 2, + [100949] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, anon_sym_COMMA, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 6, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [100235] = 2, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [100979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 12, + ACTIONS(3509), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191186,10 +191835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100253] = 2, + [100997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 12, + ACTIONS(3505), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191202,10 +191851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100271] = 2, + [101015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 12, + ACTIONS(3567), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191218,10 +191867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100289] = 2, + [101033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 12, + ACTIONS(3509), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191234,91 +191883,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100307] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_LT, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5478), 1, - anon_sym_GT, - ACTIONS(5490), 1, - anon_sym_SLASH, - STATE(2795), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2797), 1, - sym_type_arguments, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [100345] = 9, + [101051] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(2896), 1, + STATE(2964), 1, sym__call_signature, - STATE(3415), 1, + STATE(3123), 1, sym_type_annotation, - STATE(4053), 1, + STATE(3611), 1, + sym__initializer, + STATE(3878), 1, sym_type_parameters, - ACTIONS(5537), 5, + ACTIONS(5576), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100377] = 2, + [101087] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(3186), 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, - anon_sym_extends, - [100395] = 2, + ACTIONS(5409), 1, + sym_identifier, + ACTIONS(5411), 1, + anon_sym_STAR, + ACTIONS(5413), 1, + anon_sym_type, + STATE(3884), 1, + sym__import_identifier, + STATE(3978), 1, + sym_import_clause, + STATE(3981), 1, + sym_string, + STATE(3982), 1, + sym_import_require_clause, + STATE(4358), 2, + sym_namespace_import, + sym_named_imports, + [101125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 12, + ACTIONS(1385), 1, + anon_sym_PIPE, + ACTIONS(1383), 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_extends, - [100413] = 2, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [101145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 12, + ACTIONS(3517), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191331,10 +191967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100431] = 2, + [101163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 12, + ACTIONS(3567), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191347,10 +191983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100449] = 2, + [101181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 12, + ACTIONS(3563), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191363,69 +191999,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(5325), 1, - anon_sym_is, - ACTIONS(3398), 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, - [100489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 1, - anon_sym_PIPE, - ACTIONS(5539), 1, - anon_sym_is, - ACTIONS(3308), 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, - [100511] = 9, + [101199] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3415), 1, + STATE(3123), 1, sym_type_annotation, - STATE(3416), 1, + STATE(3577), 1, + sym__initializer, + STATE(3579), 1, sym__call_signature, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - ACTIONS(5537), 5, + ACTIONS(5576), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [101235] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3204), 1, + anon_sym_COMMA, + ACTIONS(3207), 1, anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [100543] = 2, + [101265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 12, + ACTIONS(3517), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191438,10 +192062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100561] = 2, + [101283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 12, + ACTIONS(3513), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191454,16 +192078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100579] = 5, + [101301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, + ACTIONS(3601), 1, anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(3450), 8, + ACTIONS(3603), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191471,13 +192091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [100602] = 3, + [101320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(3432), 1, anon_sym_PIPE, - ACTIONS(3560), 10, + ACTIONS(3434), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191488,12 +192110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100621] = 3, + [101339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 1, + ACTIONS(3802), 1, anon_sym_PIPE, - ACTIONS(3639), 10, + ACTIONS(3804), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191504,12 +192126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100640] = 3, + [101358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(3318), 1, anon_sym_PIPE, - ACTIONS(3635), 10, + ACTIONS(3320), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191520,12 +192142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100659] = 3, + [101377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 1, + ACTIONS(3700), 1, anon_sym_PIPE, - ACTIONS(1971), 10, + ACTIONS(3702), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191536,28 +192158,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100678] = 3, + [101396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1553), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LT, - ACTIONS(3206), 10, + ACTIONS(3444), 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, + [101417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1981), 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_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [100697] = 3, + [101436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, anon_sym_PIPE, - ACTIONS(1979), 10, + ACTIONS(3636), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191565,15 +192206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100716] = 3, + [101457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(3436), 1, anon_sym_PIPE, - ACTIONS(3643), 10, + ACTIONS(3438), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191584,12 +192224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100735] = 3, + [101476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3630), 1, anon_sym_PIPE, - ACTIONS(3428), 10, + ACTIONS(3632), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191600,12 +192240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100754] = 3, + [101495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 1, + ACTIONS(3589), 1, anon_sym_PIPE, - ACTIONS(3621), 10, + ACTIONS(3591), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191616,14 +192256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100773] = 4, + [101514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(5582), 1, anon_sym_DOT, - ACTIONS(3649), 1, - anon_sym_LT, - ACTIONS(3651), 9, + ACTIONS(5584), 1, + anon_sym_QMARK_DOT, + ACTIONS(3655), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191633,12 +192273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100794] = 3, + [101535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3577), 1, anon_sym_PIPE, - ACTIONS(3609), 10, + ACTIONS(3579), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191649,53 +192289,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100813] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5547), 1, - sym_identifier, - ACTIONS(5549), 1, - anon_sym_type, - ACTIONS(5551), 1, - anon_sym_COMMA, - ACTIONS(5553), 1, - anon_sym_RBRACE, - ACTIONS(5555), 1, - anon_sym_typeof, - STATE(3664), 1, - sym_import_specifier, - STATE(4029), 1, - sym__import_identifier, - STATE(4163), 2, - sym__module_export_name, - sym_string, - [100848] = 2, + [101554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 11, + ACTIONS(3528), 1, + anon_sym_PIPE, + ACTIONS(3530), 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, - [100865] = 4, + anon_sym_PIPE_RBRACE, + [101573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 1, + ACTIONS(3704), 1, anon_sym_PIPE, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(3699), 9, + ACTIONS(3706), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191703,14 +192318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100886] = 3, + [101592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1985), 1, + ACTIONS(3499), 1, anon_sym_PIPE, - ACTIONS(1983), 10, + ACTIONS(3501), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191721,12 +192337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100905] = 3, + [101611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, anon_sym_PIPE, - ACTIONS(3783), 10, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(3611), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191734,15 +192354,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [101634] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, + anon_sym_LBRACK, + ACTIONS(3621), 2, anon_sym_AMP, anon_sym_extends, + ACTIONS(3615), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100924] = 3, + [101657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3436), 10, + ACTIONS(3643), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191753,33 +192389,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100943] = 4, + [101676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LT, - STATE(2699), 1, - sym_type_arguments, - ACTIONS(3308), 9, + ACTIONS(3669), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, + anon_sym_LBRACK, + ACTIONS(3671), 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, - [100964] = 5, + anon_sym_PIPE_RBRACE, + [101697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, + ACTIONS(3712), 1, anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(3658), 8, + ACTIONS(3714), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191787,13 +192419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [100987] = 3, + [101716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 1, + ACTIONS(3696), 1, anon_sym_PIPE, - ACTIONS(1987), 10, + ACTIONS(3698), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191804,27 +192438,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101006] = 2, + [101735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 11, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(3710), 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, - [101023] = 3, + anon_sym_PIPE_RBRACE, + [101754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3724), 1, anon_sym_PIPE, - ACTIONS(3658), 10, + ACTIONS(3726), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191835,25 +192470,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101042] = 2, + [101773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 11, + ACTIONS(1515), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LT, + ACTIONS(3444), 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, - [101059] = 2, + [101794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 11, + ACTIONS(2539), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191865,16 +192502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101076] = 5, + [101811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, + ACTIONS(1987), 1, anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(3783), 8, + ACTIONS(1985), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191882,62 +192515,61 @@ 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, - [101099] = 3, + [101830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_PIPE, - ACTIONS(3601), 10, + ACTIONS(4625), 1, + anon_sym_LT, + ACTIONS(4620), 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_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [101118] = 3, + [101849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3779), 10, + ACTIONS(3722), 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, - [101137] = 4, + [101866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - anon_sym_PIPE, - ACTIONS(5557), 1, - anon_sym_LBRACK, - ACTIONS(3597), 9, + ACTIONS(3559), 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, - [101158] = 3, + [101883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, + ACTIONS(3760), 1, anon_sym_PIPE, - ACTIONS(3593), 10, + ACTIONS(3762), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -191948,78 +192580,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101177] = 3, + [101902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_PIPE, - ACTIONS(3470), 10, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(3210), 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_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [101196] = 3, + [101921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3619), 1, anon_sym_PIPE, - ACTIONS(3462), 10, + ACTIONS(5588), 1, + anon_sym_LBRACK, + ACTIONS(3621), 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, - [101215] = 3, + [101942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4692), 10, + ACTIONS(1991), 1, + anon_sym_PIPE, + ACTIONS(1989), 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_QMARK, - anon_sym_PIPE_RBRACE, - [101234] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(3582), 2, anon_sym_AMP, anon_sym_extends, - ACTIONS(3576), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101257] = 3, + [101961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3547), 1, anon_sym_PIPE, - ACTIONS(3308), 10, + ACTIONS(3549), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192030,10 +192645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101276] = 2, + [101980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 11, + ACTIONS(2535), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -192045,12 +192660,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101293] = 3, + [101997] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5590), 1, + sym_identifier, + ACTIONS(5592), 1, + anon_sym_type, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5596), 1, + anon_sym_RBRACE, + ACTIONS(5598), 1, + anon_sym_typeof, + STATE(3673), 1, + sym_import_specifier, + STATE(3986), 1, + sym__import_identifier, + STATE(4207), 2, + sym__module_export_name, + sym_string, + [102032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(1995), 1, anon_sym_PIPE, - ACTIONS(3670), 10, + ACTIONS(1993), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192061,12 +192700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101312] = 3, + [102051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3727), 10, + ACTIONS(3583), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192077,12 +192716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101331] = 3, + [102070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 1, + ACTIONS(3593), 1, anon_sym_PIPE, - ACTIONS(3695), 10, + ACTIONS(3595), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192093,16 +192732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101350] = 5, + [102089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, + ACTIONS(3605), 1, anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(3572), 8, + ACTIONS(3607), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192110,15 +192745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [101373] = 4, + [102108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3711), 9, + ACTIONS(3816), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192126,31 +192761,51 @@ 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, - [101394] = 4, + [102127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, anon_sym_PIPE, - ACTIONS(5557), 1, - anon_sym_LBRACK, - ACTIONS(3582), 9, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(3776), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [102150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, anon_sym_AMP, + ACTIONS(5580), 1, + anon_sym_PIPE, + ACTIONS(5586), 1, anon_sym_extends, + ACTIONS(3788), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [101415] = 3, + [102173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(3790), 1, anon_sym_PIPE, - ACTIONS(3398), 10, + ACTIONS(3792), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192161,29 +192816,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101434] = 4, + [102192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - anon_sym_DOT, - ACTIONS(5561), 1, - anon_sym_QMARK_DOT, - ACTIONS(3487), 9, + ACTIONS(3810), 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, - [101455] = 3, + [102209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3585), 1, anon_sym_PIPE, - ACTIONS(3775), 10, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(3587), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192191,15 +192846,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, - [101474] = 3, + [102230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, anon_sym_PIPE, - ACTIONS(3568), 10, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(3549), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192207,15 +192865,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, - [101493] = 3, + [102253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, anon_sym_PIPE, - ACTIONS(3703), 10, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(3762), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192223,30 +192883,13 @@ 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, - [101512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2527), 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, - [101529] = 3, + [102276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3286), 1, anon_sym_PIPE, - ACTIONS(3564), 10, + ACTIONS(3288), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192257,12 +192900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101548] = 3, + [102295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, + ACTIONS(3543), 1, anon_sym_PIPE, - ACTIONS(3647), 10, + ACTIONS(3545), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192273,12 +192916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101567] = 3, + [102314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3732), 1, anon_sym_PIPE, - ACTIONS(3497), 10, + ACTIONS(3734), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192289,30 +192932,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101586] = 3, + [102333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, - anon_sym_PIPE, - ACTIONS(3771), 10, + ACTIONS(5523), 1, + anon_sym_LT, + STATE(2772), 1, + sym_type_arguments, + ACTIONS(3288), 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, - [101605] = 4, + [102354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3516), 1, + ACTIONS(3539), 1, anon_sym_PIPE, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(3518), 9, + ACTIONS(3541), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192320,14 +192962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101626] = 3, + [102373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(1979), 1, anon_sym_PIPE, - ACTIONS(3454), 10, + ACTIONS(1977), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192338,12 +192981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101645] = 3, + [102392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 1, + ACTIONS(3716), 1, anon_sym_PIPE, - ACTIONS(1975), 10, + ACTIONS(3718), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192354,30 +192997,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [101664] = 5, + [102411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, - anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(3440), 8, + ACTIONS(2543), 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, - [101687] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [102428] = 7, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(5600), 1, + anon_sym_LBRACE, + ACTIONS(5606), 1, + anon_sym_LT_SLASH, + ACTIONS(5608), 1, + anon_sym_LT, + STATE(2553), 1, + sym_jsx_opening_element, + ACTIONS(5603), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2666), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [102455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(3514), 10, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(3730), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -192385,208 +193047,195 @@ 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, - [101706] = 11, + [102476] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5563), 1, + ACTIONS(5611), 1, sym_identifier, - ACTIONS(5565), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - STATE(1949), 1, + STATE(1830), 1, sym_class_body, - STATE(2873), 1, + STATE(2950), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3975), 1, + STATE(3905), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [101740] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5573), 1, - anon_sym_LT, - ACTIONS(5575), 1, - sym_jsx_text, - ACTIONS(5577), 1, - sym_comment, - STATE(1885), 1, - sym_jsx_closing_element, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2667), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [101766] = 11, + [102510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(2990), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK_DOT, + ACTIONS(5619), 1, + anon_sym_LPAREN, + STATE(2385), 1, + sym_arguments, + ACTIONS(2984), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5569), 1, - anon_sym_implements, - ACTIONS(5579), 1, - sym_identifier, - STATE(1939), 1, - sym_class_body, - STATE(2835), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3840), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [101800] = 10, + [102534] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(5547), 1, + ACTIONS(5621), 1, sym_identifier, - ACTIONS(5549), 1, + ACTIONS(5625), 1, + anon_sym_COMMA, + ACTIONS(5627), 1, + anon_sym_RBRACE, + STATE(3638), 1, + sym_export_specifier, + ACTIONS(5623), 2, anon_sym_type, - ACTIONS(5555), 1, anon_sym_typeof, - ACTIONS(5581), 1, - anon_sym_RBRACE, - STATE(3888), 1, - sym_import_specifier, - STATE(4029), 1, - sym__import_identifier, - STATE(4163), 2, + STATE(3640), 2, sym__module_export_name, sym_string, - [101832] = 11, + [102564] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5583), 1, + ACTIONS(5629), 1, sym_identifier, - STATE(1939), 1, + ACTIONS(5631), 1, + anon_sym_LBRACE, + STATE(1406), 1, sym_class_body, - STATE(2835), 1, + STATE(2914), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3840), 1, + STATE(3992), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [101866] = 10, + [102598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5633), 1, + anon_sym_is, + ACTIONS(3288), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5301), 1, - anon_sym_SLASH, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(5478), 1, - anon_sym_GT, - STATE(2766), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [101898] = 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [102616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(5316), 1, + anon_sym_DOT, + ACTIONS(5318), 1, + anon_sym_QMARK_DOT, + ACTIONS(5619), 1, + anon_sym_LPAREN, + STATE(2384), 1, + sym_arguments, + ACTIONS(3312), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [102640] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5585), 1, + ACTIONS(5635), 1, sym_identifier, - STATE(1949), 1, + STATE(1854), 1, sym_class_body, - STATE(2873), 1, + STATE(2890), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3975), 1, + STATE(4079), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [101932] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, + [102674] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5587), 1, - anon_sym_LT, - ACTIONS(5589), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(3761), 1, - sym_jsx_closing_element, - STATE(2684), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [101958] = 7, - ACTIONS(5571), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, + anon_sym_PIPE, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(5637), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5577), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102696] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5593), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(3294), 1, - sym_jsx_closing_element, - STATE(2654), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [101984] = 3, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5615), 1, + anon_sym_extends, + ACTIONS(5617), 1, + anon_sym_implements, + ACTIONS(5639), 1, + sym_identifier, + STATE(1830), 1, + sym_class_body, + STATE(2950), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3905), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [102730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5525), 1, anon_sym_is, - ACTIONS(3398), 9, + ACTIONS(3320), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -192596,874 +193245,673 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102002] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5591), 1, - anon_sym_LT, - ACTIONS(5595), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(3392), 1, - sym_jsx_closing_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [102028] = 6, + [102748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_DOT, - ACTIONS(5266), 1, - anon_sym_QMARK_DOT, - ACTIONS(5597), 1, - anon_sym_LPAREN, - STATE(2370), 1, - sym_arguments, - ACTIONS(3392), 6, - anon_sym_as, + ACTIONS(1383), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102052] = 8, + anon_sym_is, + [102764] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5601), 1, - anon_sym_BANG, - STATE(3339), 1, - sym_type_annotation, - STATE(3624), 1, - sym__initializer, - ACTIONS(5603), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5599), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102080] = 6, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5615), 1, + anon_sym_extends, + ACTIONS(5617), 1, + anon_sym_implements, + ACTIONS(5641), 1, + sym_identifier, + STATE(1854), 1, + sym_class_body, + STATE(2890), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(4079), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [102798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, + ACTIONS(5283), 1, anon_sym_DOT, - ACTIONS(5270), 1, + ACTIONS(5285), 1, anon_sym_QMARK_DOT, - ACTIONS(5597), 1, + ACTIONS(5619), 1, anon_sym_LPAREN, - STATE(2367), 1, + STATE(2381), 1, sym_arguments, - ACTIONS(3284), 6, + ACTIONS(3324), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102104] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5595), 1, - sym_jsx_text, - ACTIONS(5605), 1, - anon_sym_LT, - STATE(1425), 1, - sym_jsx_closing_element, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [102130] = 10, + [102822] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, - anon_sym_SLASH, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5476), 1, + ACTIONS(5310), 1, + anon_sym_SLASH_GT, + ACTIONS(5465), 1, anon_sym_COLON, - ACTIONS(5478), 1, + ACTIONS(5467), 1, anon_sym_GT, - STATE(2765), 1, + STATE(2782), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [102162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(5597), 1, - anon_sym_LPAREN, - STATE(2372), 1, - sym_arguments, - ACTIONS(2992), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [102186] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5567), 1, - anon_sym_extends, - ACTIONS(5569), 1, - anon_sym_implements, - ACTIONS(5607), 1, - sym_identifier, - ACTIONS(5609), 1, - anon_sym_LBRACE, - STATE(2035), 1, - sym_class_body, - STATE(2940), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(4045), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [102220] = 11, + [102854] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, - anon_sym_extends, - ACTIONS(5569), 1, - anon_sym_implements, - ACTIONS(5611), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5590), 1, sym_identifier, - STATE(1949), 1, - sym_class_body, - STATE(2873), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3975), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [102254] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5605), 1, - anon_sym_LT, - ACTIONS(5613), 1, - sym_jsx_text, - STATE(1501), 1, - sym_jsx_closing_element, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2658), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [102280] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, - anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(5615), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5592), 1, + anon_sym_type, + ACTIONS(5598), 1, + anon_sym_typeof, + ACTIONS(5643), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102302] = 10, + STATE(3864), 1, + sym_import_specifier, + STATE(3986), 1, + sym__import_identifier, + STATE(4207), 2, + sym__module_export_name, + sym_string, + [102886] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(5547), 1, + ACTIONS(5590), 1, sym_identifier, - ACTIONS(5549), 1, + ACTIONS(5592), 1, anon_sym_type, - ACTIONS(5555), 1, + ACTIONS(5598), 1, anon_sym_typeof, - ACTIONS(5617), 1, + ACTIONS(5645), 1, anon_sym_RBRACE, - STATE(3888), 1, + STATE(3864), 1, sym_import_specifier, - STATE(4029), 1, + STATE(3986), 1, sym__import_identifier, - STATE(4163), 2, + STATE(4207), 2, sym__module_export_name, sym_string, - [102334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5619), 1, - anon_sym_is, - ACTIONS(3308), 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, - [102352] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5573), 1, - anon_sym_LT, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5595), 1, - sym_jsx_text, - STATE(1964), 1, - sym_jsx_closing_element, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [102378] = 5, + [102918] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(3252), 2, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5590), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_type, + ACTIONS(5649), 1, + anon_sym_as, + STATE(4032), 1, + sym__import_identifier, + ACTIONS(5415), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [102400] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5601), 1, - anon_sym_BANG, - ACTIONS(5621), 1, - anon_sym_EQ, - STATE(3272), 1, - sym__initializer, - STATE(3339), 1, - sym_type_annotation, - ACTIONS(5603), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5599), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102428] = 11, + STATE(4131), 2, + sym__module_export_name, + sym_string, + [102948] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5623), 1, + ACTIONS(5631), 1, + anon_sym_LBRACE, + ACTIONS(5651), 1, sym_identifier, - STATE(1939), 1, + STATE(2078), 1, sym_class_body, - STATE(2835), 1, + STATE(2883), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3840), 1, + STATE(4006), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [102462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 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, - [102478] = 4, + [102982] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(3028), 3, + ACTIONS(5653), 1, + anon_sym_EQ, + ACTIONS(5657), 1, + anon_sym_BANG, + STATE(3148), 1, sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5625), 6, + STATE(3411), 1, + sym__initializer, + ACTIONS(5659), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5655), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102498] = 7, + [103010] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5629), 1, - anon_sym_LT, - ACTIONS(5631), 1, - anon_sym_DQUOTE, - ACTIONS(5633), 1, - anon_sym_SQUOTE, - STATE(2652), 1, - sym_jsx_opening_element, - STATE(3359), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [102524] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5476), 1, + ACTIONS(5465), 1, anon_sym_COLON, - ACTIONS(5478), 1, + ACTIONS(5467), 1, anon_sym_GT, - ACTIONS(5480), 1, - anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(5473), 1, + anon_sym_SLASH_GT, + STATE(2768), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [102556] = 11, + [103042] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5635), 1, + ACTIONS(5661), 1, sym_identifier, - STATE(1939), 1, + STATE(1854), 1, sym_class_body, - STATE(2835), 1, + STATE(2890), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3840), 1, + STATE(4079), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [102590] = 10, + [103076] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5476), 1, + ACTIONS(5320), 1, + anon_sym_SLASH_GT, + ACTIONS(5465), 1, anon_sym_COLON, - ACTIONS(5478), 1, + ACTIONS(5467), 1, anon_sym_GT, - ACTIONS(5490), 1, - anon_sym_SLASH, - STATE(2803), 1, + STATE(2773), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [102622] = 11, + [103108] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5567), 1, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5609), 1, - anon_sym_LBRACE, - ACTIONS(5637), 1, + ACTIONS(5663), 1, sym_identifier, - STATE(1418), 1, + STATE(1830), 1, sym_class_body, - STATE(2841), 1, + STATE(2950), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3935), 1, + STATE(3905), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [102656] = 11, + [103142] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5639), 1, + ACTIONS(5631), 1, + anon_sym_LBRACE, + ACTIONS(5665), 1, sym_identifier, - STATE(1949), 1, + STATE(1491), 1, sym_class_body, - STATE(2873), 1, + STATE(2951), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3975), 1, + STATE(3893), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [102690] = 11, + [103176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [103198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5669), 1, + anon_sym_COLON, + STATE(3092), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5667), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5669), 1, + anon_sym_COLON, + STATE(3059), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5671), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103238] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5657), 1, + anon_sym_BANG, + STATE(3148), 1, + sym_type_annotation, + STATE(3676), 1, + sym__initializer, + ACTIONS(5659), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5655), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103266] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5469), 1, + anon_sym_SLASH_GT, + STATE(2703), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [103298] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5567), 1, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5615), 1, anon_sym_extends, - ACTIONS(5569), 1, + ACTIONS(5617), 1, anon_sym_implements, - ACTIONS(5609), 1, - anon_sym_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5673), 1, sym_identifier, - STATE(1448), 1, + STATE(1854), 1, sym_class_body, - STATE(2929), 1, + STATE(2890), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3897), 1, + STATE(4079), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [102724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5627), 1, - anon_sym_COLON, - STATE(3105), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5643), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102744] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5645), 1, - sym_identifier, - ACTIONS(5649), 1, - anon_sym_COMMA, - ACTIONS(5651), 1, - anon_sym_RBRACE, - STATE(3579), 1, - sym_export_specifier, - ACTIONS(5647), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3578), 2, - sym__module_export_name, - sym_string, - [102774] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5547), 1, - sym_identifier, - ACTIONS(5653), 1, - anon_sym_type, - ACTIONS(5655), 1, - anon_sym_as, - STATE(3950), 1, - sym__import_identifier, - ACTIONS(5399), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4085), 2, - sym__module_export_name, - sym_string, - [102804] = 6, + [103332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, - anon_sym_LT, - ACTIONS(5274), 1, + ACTIONS(5287), 1, anon_sym_DOT, - ACTIONS(5657), 1, + ACTIONS(5289), 1, + anon_sym_LT, + ACTIONS(5675), 1, anon_sym_is, - STATE(2399), 1, + STATE(2427), 1, sym_type_arguments, - ACTIONS(2990), 6, + ACTIONS(3008), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102828] = 7, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5587), 1, - anon_sym_LT, - ACTIONS(5595), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(3630), 1, - sym_jsx_closing_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [102854] = 7, + [103356] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5629), 1, - anon_sym_LT, - ACTIONS(5631), 1, - anon_sym_DQUOTE, - ACTIONS(5633), 1, - anon_sym_SQUOTE, - STATE(2652), 1, - sym_jsx_opening_element, - STATE(3122), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [102880] = 6, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5595), 1, - sym_jsx_text, - ACTIONS(5659), 1, + ACTIONS(1236), 1, anon_sym_LT, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [102903] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_AMP, - ACTIONS(5663), 1, - anon_sym_PIPE, - ACTIONS(3711), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5613), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5615), 1, anon_sym_extends, - [102922] = 10, + ACTIONS(5617), 1, + anon_sym_implements, + ACTIONS(5677), 1, + sym_identifier, + STATE(1830), 1, + sym_class_body, + STATE(2950), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3905), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [103390] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5665), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(594), 1, + STATE(1828), 1, sym_class_body, - STATE(2883), 1, + STATE(2886), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3839), 1, + STATE(4049), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [102953] = 2, + [103421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 9, - anon_sym_EQ, + ACTIONS(230), 1, anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4920), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK, - [102968] = 2, + [103448] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 9, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(5653), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(3148), 1, + sym_type_annotation, + STATE(3412), 1, + sym__initializer, + ACTIONS(5659), 2, anon_sym_in, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [102983] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5645), 1, - sym_identifier, - ACTIONS(5675), 1, - anon_sym_RBRACE, - STATE(3834), 1, - sym_export_specifier, - ACTIONS(5647), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3578), 2, - sym__module_export_name, - sym_string, - [103010] = 9, + ACTIONS(5655), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103473] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5677), 1, + ACTIONS(5683), 1, anon_sym_GT, - ACTIONS(5679), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5685), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [103039] = 10, + [103502] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - ACTIONS(5681), 1, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - STATE(615), 1, - sym_class_body, - STATE(2912), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(4032), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [103070] = 10, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5469), 1, + anon_sym_SLASH_GT, + STATE(2722), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [103531] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5609), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1365), 1, - sym_class_body, - STATE(2876), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3982), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [103101] = 9, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3148), 1, + sym_type_annotation, + STATE(3679), 1, + sym__initializer, + ACTIONS(5659), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5655), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103556] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5686), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5689), 1, - anon_sym_GT, - ACTIONS(5691), 1, - anon_sym_SLASH, - ACTIONS(5693), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - STATE(2695), 1, + ACTIONS(5687), 1, + anon_sym_GT, + ACTIONS(5689), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [103130] = 5, + [103585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_AMP, - ACTIONS(5663), 1, - anon_sym_PIPE, - ACTIONS(5696), 1, - anon_sym_extends, - ACTIONS(3450), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(230), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [103151] = 5, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [103612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5621), 1, + sym_identifier, + ACTIONS(5691), 1, + anon_sym_RBRACE, + STATE(3914), 1, + sym_export_specifier, + ACTIONS(5623), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3640), 2, + sym__module_export_name, + sym_string, + [103639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5693), 1, anon_sym_AMP, - ACTIONS(5663), 1, + ACTIONS(5695), 1, anon_sym_PIPE, - ACTIONS(5696), 1, - anon_sym_extends, - ACTIONS(3440), 6, + ACTIONS(3636), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [103172] = 10, + anon_sym_extends, + [103658] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1902), 1, + STATE(2064), 1, sym_class_body, - STATE(2927), 1, + STATE(2861), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4062), 1, + STATE(3849), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [103203] = 2, + [103689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 9, + ACTIONS(3804), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193473,136 +193921,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103218] = 2, + [103704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 9, + ACTIONS(5697), 1, + anon_sym_COLON, + STATE(3346), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5667), 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, - [103233] = 10, + [103723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - ACTIONS(5681), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_class_body, - STATE(2932), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3878), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [103264] = 8, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3641), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [103750] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(230), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(4510), 1, anon_sym_EQ, - ACTIONS(4895), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(3568), 1, + STATE(3641), 1, aux_sym_object_repeat1, - STATE(3640), 1, + STATE(3642), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3210), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - [103291] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5698), 1, - anon_sym_GT, - ACTIONS(5700), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [103320] = 10, + [103777] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5609), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1414), 1, + STATE(1452), 1, sym_class_body, - STATE(2847), 1, + STATE(2888), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3944), 1, + STATE(4073), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [103351] = 6, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5702), 1, - anon_sym_LBRACE, - ACTIONS(5705), 1, - anon_sym_LT, - ACTIONS(5708), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [103374] = 4, + [103808] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 1, - anon_sym_COLON, - STATE(3301), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5625), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5613), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [103393] = 2, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1942), 1, + sym_class_body, + STATE(2930), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3952), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [103839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 9, + ACTIONS(5699), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -193612,207 +194029,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [103408] = 10, + [103854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5665), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5693), 1, + anon_sym_AMP, + ACTIONS(5695), 1, + anon_sym_PIPE, + ACTIONS(5701), 1, anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(2838), 1, - sym_type_parameters, - STATE(3136), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3939), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [103439] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3298), 1, - sym_type_annotation, - STATE(3590), 1, - sym__initializer, - ACTIONS(5371), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5369), 3, + ACTIONS(3788), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [103464] = 9, + anon_sym_LBRACK, + [103875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5715), 1, + ACTIONS(5703), 1, anon_sym_GT, - ACTIONS(5717), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5705), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [103493] = 9, + [103904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5719), 1, + ACTIONS(5687), 1, anon_sym_GT, - ACTIONS(5721), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5707), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [103522] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1863), 1, - sym_class_body, - STATE(2913), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3929), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [103553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5723), 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, - [103568] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1952), 1, - sym_class_body, - STATE(2899), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3864), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [103599] = 2, + [103933] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103614] = 8, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5709), 1, + anon_sym_GT, + ACTIONS(5711), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [103962] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5645), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5725), 1, - anon_sym_RBRACE, - STATE(3834), 1, - sym_export_specifier, - ACTIONS(5647), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3578), 2, - sym__module_export_name, - sym_string, - [103641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5297), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103656] = 7, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5713), 1, + anon_sym_GT, + ACTIONS(5715), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [103991] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(3128), 1, + STATE(3197), 1, sym_type_annotation, - STATE(3800), 1, + STATE(3701), 1, sym__initializer, - ACTIONS(5424), 2, + ACTIONS(5719), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5422), 3, + ACTIONS(5717), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103681] = 2, + [104016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 9, + ACTIONS(3438), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193822,23 +194156,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103696] = 2, + [104031] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5320), 1, + anon_sym_SLASH_GT, + ACTIONS(5467), 1, + anon_sym_GT, + STATE(2732), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [104060] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5679), 1, anon_sym_extends, - [103711] = 2, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5721), 1, + anon_sym_LBRACE, + STATE(702), 1, + sym_class_body, + STATE(2852), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(4030), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [104091] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5709), 1, + anon_sym_GT, + ACTIONS(5723), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [104120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 9, + ACTIONS(3702), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193848,28 +194230,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103726] = 7, + [104135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3373), 1, sym_type_annotation, - STATE(3566), 1, + STATE(3766), 1, sym__initializer, - ACTIONS(5729), 2, + ACTIONS(5435), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5727), 3, + ACTIONS(5433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103751] = 2, + [104160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 9, + ACTIONS(3320), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193879,46 +194261,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103766] = 4, + [104175] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 1, - anon_sym_COLON, - STATE(3138), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5643), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5613), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [103785] = 10, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1892), 1, + sym_class_body, + STATE(2858), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3824), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [104206] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5713), 1, + anon_sym_GT, + ACTIONS(5725), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [104235] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1846), 1, + STATE(1886), 1, sym_class_body, - STATE(2934), 1, + STATE(2863), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4081), 1, + STATE(3872), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [103816] = 2, + [104266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 9, + ACTIONS(1989), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193928,32 +194336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103831] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5547), 1, - sym_identifier, - ACTIONS(5549), 1, - anon_sym_type, - ACTIONS(5555), 1, - anon_sym_typeof, - STATE(3888), 1, - sym_import_specifier, - STATE(4029), 1, - sym__import_identifier, - STATE(4163), 2, - sym__module_export_name, - sym_string, - [103860] = 3, + [104281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, + ACTIONS(5727), 1, anon_sym_LBRACK, - ACTIONS(3582), 8, + ACTIONS(3621), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193962,10 +194350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103877] = 2, + [104298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 9, + ACTIONS(3288), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193975,10 +194363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103892] = 2, + [104313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 9, + ACTIONS(3792), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -193988,248 +194376,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103907] = 7, + [104328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3172), 1, - sym_type_annotation, - STATE(3730), 1, - sym__initializer, - ACTIONS(5389), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5387), 3, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5590), 1, + sym_identifier, + ACTIONS(5592), 1, + anon_sym_type, + ACTIONS(5598), 1, + anon_sym_typeof, + STATE(3864), 1, + sym_import_specifier, + STATE(3986), 1, + sym__import_identifier, + STATE(4207), 2, + sym__module_export_name, + sym_string, + [104357] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5693), 1, + anon_sym_AMP, + ACTIONS(5695), 1, + anon_sym_PIPE, + ACTIONS(5701), 1, + anon_sym_extends, + ACTIONS(3776), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [103932] = 10, + anon_sym_LBRACK, + [104378] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - ACTIONS(5733), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(147), 1, + STATE(2898), 1, + sym_type_parameters, + STATE(3378), 1, sym_class_body, - STATE(2866), 1, + STATE(3621), 1, + sym_extends_clause, + STATE(4037), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [104409] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(2892), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3192), 1, + sym_class_body, + STATE(3621), 1, sym_extends_clause, - STATE(3832), 1, + STATE(4070), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [103963] = 6, + [104440] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(2910), 1, + sym_type_parameters, + STATE(3315), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(3996), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [104471] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5713), 1, + anon_sym_GT, + ACTIONS(5731), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [104500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(5735), 1, + ACTIONS(5733), 1, anon_sym_EQ, - ACTIONS(5615), 5, + ACTIONS(5637), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_EQ_GT, - [103986] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(5621), 1, - anon_sym_EQ, - STATE(3278), 1, - sym__initializer, - STATE(3339), 1, - sym_type_annotation, - ACTIONS(5603), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5599), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104011] = 10, + [104523] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5609), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(2050), 1, + STATE(1435), 1, sym_class_body, - STATE(2947), 1, + STATE(2907), 1, sym_type_parameters, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3880), 1, + STATE(4060), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [104042] = 6, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5737), 1, - anon_sym_LT, - ACTIONS(5739), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2686), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104065] = 2, + [104554] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 9, + ACTIONS(5393), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(5401), 1, anon_sym_COLON, - anon_sym_RBRACK, + STATE(3441), 1, + sym_type_annotation, + STATE(3808), 1, + sym__initializer, + ACTIONS(5421), 2, + anon_sym_BANG, anon_sym_QMARK, - [104080] = 8, + ACTIONS(5419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, + ACTIONS(3726), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [104107] = 8, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [104594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, + ACTIONS(3710), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [104609] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5687), 1, + anon_sym_GT, + ACTIONS(5735), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [104638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5737), 9, anon_sym_EQ, - STATE(3568), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - [104134] = 9, + [104653] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, - anon_sym_SLASH, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5478), 1, + ACTIONS(5709), 1, anon_sym_GT, - STATE(2711), 1, + ACTIONS(5739), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [104163] = 6, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, + [104682] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - anon_sym_LT, - ACTIONS(5745), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2759), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104186] = 6, - ACTIONS(5571), 1, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5595), 1, - sym_jsx_text, - ACTIONS(5747), 1, - anon_sym_LT, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5703), 1, + anon_sym_GT, + ACTIONS(5741), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104209] = 10, + sym_jsx_attribute, + [104711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5667), 1, + ACTIONS(1981), 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, - ACTIONS(5669), 1, - anon_sym_implements, - ACTIONS(5733), 1, + [104726] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - STATE(171), 1, - sym_class_body, - STATE(2916), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3937), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [104240] = 2, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5743), 1, + anon_sym_GT, + ACTIONS(5745), 1, + anon_sym_SLASH_GT, + STATE(2721), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [104755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 9, + ACTIONS(3706), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194239,86 +194696,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104255] = 10, + [104770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5697), 1, + anon_sym_COLON, + STATE(3279), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5671), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1839), 1, - sym_class_body, - STATE(2863), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3972), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [104286] = 10, + anon_sym_COMMA, + anon_sym_SEMI, + [104789] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5665), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(2872), 1, - sym_type_parameters, - STATE(3354), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3976), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [104317] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5665), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(2887), 1, + STATE(2885), 1, sym_type_parameters, - STATE(3345), 1, + STATE(3404), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4007), 1, + STATE(4048), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [104348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1582), 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, - [104363] = 2, + [104820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 9, + ACTIONS(3632), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194328,10 +194745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104378] = 2, + [104835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 9, + ACTIONS(3591), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194341,12 +194758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104393] = 3, + [104850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5693), 1, anon_sym_AMP, - ACTIONS(3518), 8, + ACTIONS(3587), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194355,10 +194772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [104410] = 2, + [104867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 9, + ACTIONS(3579), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194368,10 +194785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104425] = 2, + [104882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 9, + ACTIONS(3530), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194381,60 +194798,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104440] = 8, + [104897] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4837), 1, - anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [104467] = 5, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5747), 1, + anon_sym_LBRACE, + STATE(168), 1, + sym_class_body, + STATE(2903), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(4018), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [104928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5693), 1, anon_sym_AMP, - ACTIONS(5663), 1, + ACTIONS(5695), 1, anon_sym_PIPE, - ACTIONS(5696), 1, + ACTIONS(5701), 1, anon_sym_extends, - ACTIONS(3572), 6, + ACTIONS(3611), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [104488] = 4, + [104949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, + ACTIONS(5727), 1, anon_sym_LBRACK, - ACTIONS(3582), 3, + ACTIONS(3621), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(3576), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [104507] = 2, + [104968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 9, + ACTIONS(3643), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194444,12 +194863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104522] = 3, + [104983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, + ACTIONS(5727), 1, anon_sym_LBRACK, - ACTIONS(3597), 8, + ACTIONS(3671), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194458,59 +194877,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104539] = 6, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5595), 1, - sym_jsx_text, - ACTIONS(5749), 1, - anon_sym_LT, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104562] = 2, + [105000] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [104577] = 8, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5683), 1, + anon_sym_GT, + ACTIONS(5749), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [105029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(5751), 9, anon_sym_EQ, - ACTIONS(4793), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - [104604] = 2, + [105044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 9, + ACTIONS(3501), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194520,121 +194923,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104619] = 6, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(5751), 1, - anon_sym_LT, - ACTIONS(5753), 1, - sym_jsx_text, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2742), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104642] = 9, + [105059] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5301), 1, - anon_sym_SLASH, - ACTIONS(5478), 1, + ACTIONS(5467), 1, anon_sym_GT, - STATE(2778), 1, + ACTIONS(5473), 1, + anon_sym_SLASH_GT, + STATE(2743), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [104671] = 9, + [105088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(3698), 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, + [105103] = 9, + ACTIONS(3), 1, + sym_comment, ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5755), 1, + ACTIONS(5683), 1, anon_sym_GT, - ACTIONS(5757), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5753), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [104700] = 9, + [105132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, ACTIONS(5755), 1, - anon_sym_GT, + anon_sym_LT, + ACTIONS(5757), 1, + anon_sym_DQUOTE, ACTIONS(5759), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, + anon_sym_SQUOTE, + STATE(2535), 1, + sym_jsx_opening_element, + STATE(3377), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [104729] = 6, - ACTIONS(5571), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, + sym_jsx_self_closing_element, + sym_string, + [105157] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 1, + ACTIONS(5297), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, anon_sym_LT, - ACTIONS(5763), 1, - sym_jsx_text, - STATE(2651), 1, + ACTIONS(5757), 1, + anon_sym_DQUOTE, + ACTIONS(5759), 1, + anon_sym_SQUOTE, + STATE(2535), 1, sym_jsx_opening_element, - STATE(2768), 5, + STATE(3372), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104752] = 6, - ACTIONS(5571), 1, + sym_string, + [105182] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5577), 1, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1913), 1, + sym_class_body, + STATE(2867), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3886), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [105213] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(5595), 1, - sym_jsx_text, - ACTIONS(5765), 1, + ACTIONS(1236), 1, anon_sym_LT, - STATE(2651), 1, - sym_jsx_opening_element, - STATE(2705), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [104775] = 2, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1966), 1, + sym_class_body, + STATE(2893), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(4059), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [105244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 9, + ACTIONS(3714), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194644,10 +195067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104790] = 2, + [105259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 9, + ACTIONS(1993), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194657,71 +195080,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104805] = 9, + [105274] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [105301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5761), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5764), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5767), 1, - anon_sym_GT, ACTIONS(5769), 1, - anon_sym_SLASH, - STATE(2800), 1, + sym_jsx_identifier, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + ACTIONS(5767), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [104834] = 9, + [105328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5698), 1, + ACTIONS(5683), 1, anon_sym_GT, - ACTIONS(5771), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5772), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [104863] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1947), 1, - sym_class_body, - STATE(2884), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3917), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [104894] = 2, + [105357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 9, + ACTIONS(3583), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194731,10 +195151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104909] = 2, + [105372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 9, + ACTIONS(3595), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194744,30 +195164,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104924] = 9, + [105387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5715), 1, + ACTIONS(5703), 1, anon_sym_GT, - ACTIONS(5773), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5774), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [104953] = 2, + [105416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3647), 9, + ACTIONS(3607), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194777,46 +195197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [104968] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5719), 1, - anon_sym_GT, - ACTIONS(5775), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [104997] = 5, + [105431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5693), 1, anon_sym_AMP, - ACTIONS(5663), 1, + ACTIONS(5695), 1, anon_sym_PIPE, - ACTIONS(5696), 1, + ACTIONS(5701), 1, anon_sym_extends, - ACTIONS(3658), 6, + ACTIONS(3762), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [105018] = 2, + [105452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 9, + ACTIONS(3762), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194826,10 +195226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105033] = 2, + [105467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 9, + ACTIONS(3734), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194839,12 +195239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105048] = 3, + [105482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5693), 1, anon_sym_AMP, - ACTIONS(3699), 8, + ACTIONS(3730), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194853,10 +195253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [105065] = 2, + [105499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 9, + ACTIONS(3718), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194866,50 +195266,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105080] = 8, + [105514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, + ACTIONS(5776), 9, anon_sym_EQ, - ACTIONS(4885), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - [105107] = 10, + [105529] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5665), 1, + ACTIONS(5293), 1, + sym_identifier, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(602), 1, - sym_class_body, - STATE(2867), 1, - sym_type_parameters, - STATE(3711), 1, - sym_extends_clause, - STATE(3861), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [105138] = 2, + ACTIONS(5306), 1, + sym_jsx_identifier, + ACTIONS(5310), 1, + anon_sym_SLASH_GT, + ACTIONS(5467), 1, + anon_sym_GT, + STATE(2808), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3095), 1, + sym_jsx_namespace_name, + STATE(3191), 2, + sym_jsx_expression, + sym_jsx_attribute, + [105558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 9, + ACTIONS(3816), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194919,48 +195312,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105153] = 7, + [105573] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(609), 1, + sym_class_body, + STATE(2889), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(4071), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [105604] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(3339), 1, + STATE(3310), 1, sym_type_annotation, - STATE(3597), 1, + STATE(3749), 1, sym__initializer, - ACTIONS(5603), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5599), 3, + ACTIONS(5453), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5451), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105178] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5767), 1, - anon_sym_GT, - ACTIONS(5777), 1, - anon_sym_SLASH, - STATE(2692), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105207] = 2, + [105629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 9, + ACTIONS(1977), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -194970,289 +195364,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105222] = 9, + [105644] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5478), 1, + ACTIONS(5709), 1, anon_sym_GT, - ACTIONS(5480), 1, - anon_sym_SLASH, - STATE(2807), 1, + ACTIONS(5778), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105251] = 9, + [105673] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5747), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5755), 1, - anon_sym_GT, - ACTIONS(5779), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105280] = 9, + STATE(149), 1, + sym_class_body, + STATE(2875), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3923), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [105704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(1511), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5767), 1, - anon_sym_GT, - ACTIONS(5781), 1, - anon_sym_SLASH, - STATE(2814), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105309] = 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [105719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5677), 1, - anon_sym_GT, - ACTIONS(5783), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105338] = 9, + ACTIONS(5780), 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, + [105734] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5719), 1, - anon_sym_GT, - ACTIONS(5785), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105367] = 9, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(1859), 1, + anon_sym_RBRACE, + ACTIONS(4510), 1, + anon_sym_EQ, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [105761] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5715), 1, + ACTIONS(5743), 1, anon_sym_GT, - ACTIONS(5787), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5782), 1, + anon_sym_SLASH_GT, + STATE(2798), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105396] = 9, + [105790] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 1, + anon_sym_COMMA, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4900), 1, + anon_sym_RBRACE, + STATE(3631), 1, + aux_sym_object_repeat1, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [105817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5698), 1, + ACTIONS(5703), 1, anon_sym_GT, - ACTIONS(5789), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5784), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105425] = 9, + [105846] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5767), 1, + ACTIONS(5743), 1, anon_sym_GT, - ACTIONS(5791), 1, - anon_sym_SLASH, - STATE(2793), 1, + ACTIONS(5786), 1, + anon_sym_SLASH_GT, + STATE(2727), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105454] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3414), 1, - sym_type_annotation, - STATE(3623), 1, - sym__initializer, - ACTIONS(5379), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105479] = 9, + [105875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5698), 1, + ACTIONS(5687), 1, anon_sym_GT, - ACTIONS(5793), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5788), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105508] = 9, + [105904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5677), 1, + ACTIONS(5713), 1, anon_sym_GT, - ACTIONS(5795), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5790), 1, + anon_sym_SLASH_GT, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105537] = 9, + [105933] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5293), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5306), 1, sym_jsx_identifier, - ACTIONS(5715), 1, + ACTIONS(5743), 1, anon_sym_GT, - ACTIONS(5797), 1, - anon_sym_SLASH, - STATE(2695), 1, + ACTIONS(5792), 1, + anon_sym_SLASH_GT, + STATE(2751), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, + STATE(3095), 1, sym_jsx_namespace_name, - STATE(3316), 2, + STATE(3191), 2, sym_jsx_expression, sym_jsx_attribute, - [105566] = 10, + [105962] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5665), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(2855), 1, - sym_type_parameters, - STATE(3201), 1, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(601), 1, sym_class_body, - STATE(3711), 1, + STATE(2872), 1, + sym_type_parameters, + STATE(3621), 1, sym_extends_clause, - STATE(3963), 1, + STATE(3902), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [105597] = 9, + [105993] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5621), 1, sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5755), 1, - anon_sym_GT, - ACTIONS(5799), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105626] = 2, + ACTIONS(5794), 1, + anon_sym_RBRACE, + STATE(3914), 1, + sym_export_specifier, + ACTIONS(5623), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3640), 2, + sym__module_export_name, + sym_string, + [106020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 9, + ACTIONS(3541), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -195262,10 +195642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105641] = 2, + [106035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 9, + ACTIONS(3545), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -195275,50 +195655,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105656] = 9, + [106050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5478), 1, - anon_sym_GT, - ACTIONS(5490), 1, - anon_sym_SLASH, - STATE(2794), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105685] = 9, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3168), 1, + sym_type_annotation, + STATE(3588), 1, + sym__initializer, + ACTIONS(5397), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(1543), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5719), 1, - anon_sym_GT, - ACTIONS(5801), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105714] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [106090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3779), 9, + ACTIONS(3434), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -195328,26 +195699,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105729] = 5, + [106105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5693), 1, anon_sym_AMP, - ACTIONS(5663), 1, + ACTIONS(5695), 1, anon_sym_PIPE, - ACTIONS(5696), 1, + ACTIONS(5701), 1, anon_sym_extends, - ACTIONS(3783), 6, + ACTIONS(3549), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [105750] = 2, + [106126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 9, + ACTIONS(3549), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -195357,10 +195728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105765] = 2, + [106141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 9, + ACTIONS(3603), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -195370,10 +195741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105780] = 2, + [106156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 9, + ACTIONS(1985), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -195383,117 +195754,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105795] = 8, + [106171] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3596), 1, - aux_sym_object_repeat1, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [105822] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5721), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym_jsx_identifier, - ACTIONS(5677), 1, - anon_sym_GT, - ACTIONS(5803), 1, - anon_sym_SLASH, - STATE(2695), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3013), 1, - sym_jsx_namespace_name, - STATE(3316), 2, - sym_jsx_expression, - sym_jsx_attribute, - [105851] = 7, + STATE(730), 1, + sym_class_body, + STATE(2879), 1, + sym_type_parameters, + STATE(3621), 1, + sym_extends_clause, + STATE(3946), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [106202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(4109), 1, - anon_sym_COMMA, - STATE(3457), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5805), 2, + ACTIONS(5693), 1, + anon_sym_AMP, + ACTIONS(5695), 1, + anon_sym_PIPE, + ACTIONS(5701), 1, + anon_sym_extends, + ACTIONS(5637), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_implements, - STATE(1428), 2, - sym_template_string, - sym_arguments, - [105875] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5807), 1, - sym_escape_sequence, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, - sym__template_chars, - STATE(3007), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3400), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [105899] = 7, + anon_sym_COMMA, + anon_sym_SEMI, + [106222] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, - sym__template_chars, - ACTIONS(5815), 1, + ACTIONS(5796), 1, sym_escape_sequence, - ACTIONS(5817), 1, + ACTIONS(5798), 1, anon_sym_BQUOTE, - STATE(3058), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3400), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [105923] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5807), 1, - sym_escape_sequence, - ACTIONS(5811), 1, + ACTIONS(5800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5802), 1, sym__template_chars, - ACTIONS(5819), 1, - anon_sym_BQUOTE, - STATE(3007), 2, + STATE(3023), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3400), 2, + STATE(3294), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [105947] = 2, + [106246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 8, + ACTIONS(2543), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195502,10 +195819,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105961] = 2, + [106260] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 1, + sym_identifier, + ACTIONS(5806), 1, + anon_sym_LBRACE, + ACTIONS(5808), 1, + anon_sym_LBRACK, + ACTIONS(5810), 1, + anon_sym_enum, + STATE(3504), 1, + sym_variable_declarator, + STATE(2955), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 8, + ACTIONS(2535), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195514,25 +195848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [105975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, - anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(5821), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105995] = 2, + [106298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 8, + ACTIONS(2539), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195541,1200 +195860,1349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [106009] = 7, + [106312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5823), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5829), 1, - anon_sym_enum, - STATE(3441), 1, - sym_variable_declarator, - STATE(2839), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [106033] = 7, + ACTIONS(5796), 1, + sym_escape_sequence, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5802), 1, + sym__template_chars, + ACTIONS(5812), 1, + anon_sym_BQUOTE, + STATE(3023), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3429), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [106336] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 1, + sym_escape_sequence, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5802), 1, + sym__template_chars, + ACTIONS(5814), 1, + anon_sym_BQUOTE, + STATE(3023), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3294), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [106360] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, + anon_sym_PIPE, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(5816), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5580), 1, + anon_sym_PIPE, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(5818), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106400] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(5601), 1, + ACTIONS(5657), 1, anon_sym_BANG, - STATE(3339), 1, + STATE(3148), 1, sym_type_annotation, - STATE(3624), 1, + STATE(3676), 1, sym__initializer, - ACTIONS(5599), 3, + ACTIONS(5655), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106057] = 7, + [106424] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, - sym_escape_sequence, - ACTIONS(5811), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5621), 1, + sym_identifier, + STATE(3914), 1, + sym_export_specifier, + ACTIONS(5623), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3640), 2, + sym__module_export_name, + sym_string, + [106448] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5802), 1, sym__template_chars, - ACTIONS(5831), 1, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(5822), 1, anon_sym_BQUOTE, - STATE(3007), 2, + STATE(3020), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3400), 2, + STATE(3294), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [106081] = 7, + [106472] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, + ACTIONS(5796), 1, sym_escape_sequence, - ACTIONS(5811), 1, + ACTIONS(5800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5802), 1, sym__template_chars, - ACTIONS(5833), 1, + ACTIONS(5824), 1, anon_sym_BQUOTE, - STATE(3007), 2, + STATE(3023), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3400), 2, + STATE(3294), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [106105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_AMP, - ACTIONS(5663), 1, - anon_sym_PIPE, - ACTIONS(5696), 1, - anon_sym_extends, - ACTIONS(5615), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [106125] = 7, + [106496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, + ACTIONS(5796), 1, sym_escape_sequence, - ACTIONS(5811), 1, + ACTIONS(5800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5802), 1, sym__template_chars, - ACTIONS(5835), 1, + ACTIONS(5826), 1, anon_sym_BQUOTE, - STATE(3007), 2, + STATE(3023), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3400), 2, + STATE(3294), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [106149] = 7, + [106520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, + ACTIONS(5796), 1, sym_escape_sequence, - ACTIONS(5811), 1, + ACTIONS(5800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5802), 1, sym__template_chars, - ACTIONS(5837), 1, + ACTIONS(5828), 1, anon_sym_BQUOTE, - STATE(3007), 2, + STATE(3023), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3403), 2, + STATE(3294), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [106173] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5543), 1, - anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(5839), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5645), 1, - sym_identifier, - STATE(3834), 1, - sym_export_specifier, - ACTIONS(5647), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3578), 2, - sym__module_export_name, - sym_string, - [106217] = 7, + [106544] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5823), 1, + ACTIONS(5804), 1, sym_identifier, - ACTIONS(5825), 1, + ACTIONS(5806), 1, anon_sym_LBRACE, - ACTIONS(5827), 1, + ACTIONS(5808), 1, anon_sym_LBRACK, - ACTIONS(5841), 1, + ACTIONS(5830), 1, anon_sym_enum, - STATE(3421), 1, + STATE(3464), 1, sym_variable_declarator, - STATE(2839), 3, + STATE(2955), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [106241] = 5, + [106568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - ACTIONS(5845), 1, + ACTIONS(5834), 1, anon_sym_DOT, - STATE(3170), 1, + STATE(3151), 1, sym_statement_block, - ACTIONS(1387), 5, + ACTIONS(1397), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106261] = 7, + [106588] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 1, + ACTIONS(5800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5802), 1, sym__template_chars, - ACTIONS(5815), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(5847), 1, + ACTIONS(5836), 1, anon_sym_BQUOTE, - STATE(3058), 2, + STATE(3020), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3400), 2, + STATE(3294), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [106285] = 8, + [106612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5832), 1, + anon_sym_LBRACE, + ACTIONS(5838), 1, + anon_sym_DOT, + STATE(3151), 1, + sym_statement_block, + ACTIONS(1397), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106632] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3824), 1, + anon_sym_COMMA, + STATE(3448), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5840), 2, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, anon_sym_implements, - STATE(1938), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3833), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [106310] = 2, + STATE(1372), 2, + sym_template_string, + sym_arguments, + [106656] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3861), 1, + sym_statement_block, + ACTIONS(5842), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 7, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3865), 1, + sym_statement_block, + ACTIONS(5844), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, anon_sym_COLON, - [106323] = 6, + STATE(3385), 1, + sym_type_annotation, + STATE(3776), 1, + sym__initializer, + ACTIONS(5555), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(3151), 1, + sym_statement_block, + ACTIONS(1397), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, + ACTIONS(5806), 1, anon_sym_LBRACE, - ACTIONS(5827), 1, + ACTIONS(5808), 1, anon_sym_LBRACK, - ACTIONS(5849), 1, + ACTIONS(5846), 1, sym_identifier, - STATE(3421), 1, + STATE(3464), 1, sym_variable_declarator, - STATE(2839), 3, + STATE(2955), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [106344] = 8, + [106749] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5848), 1, + sym_identifier, + ACTIONS(5850), 1, + anon_sym_STAR, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3911), 1, + sym__call_signature, + [106774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(1372), 2, + sym_template_string, + sym_arguments, + ACTIONS(5854), 3, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, + anon_sym_COMMA, anon_sym_implements, - STATE(3352), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3974), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [106369] = 6, + [106793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(3339), 1, + STATE(3358), 1, sym_type_annotation, - STATE(3597), 1, - sym__initializer, - ACTIONS(5599), 3, + ACTIONS(5856), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [106390] = 3, + anon_sym_PIPE_RBRACE, + [106810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 3, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1490), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [106405] = 8, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3351), 1, + sym_type_annotation, + ACTIONS(5858), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106827] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1371), 1, + ACTIONS(5721), 1, + anon_sym_LBRACE, + STATE(733), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3973), 1, + STATE(3822), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [106430] = 2, + [106852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [106443] = 2, + ACTIONS(3814), 1, + sym_identifier, + ACTIONS(3816), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [106867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [106456] = 3, + ACTIONS(5806), 1, + anon_sym_LBRACE, + ACTIONS(5808), 1, + anon_sym_LBRACK, + ACTIONS(5846), 1, + sym_identifier, + STATE(3506), 1, + sym_variable_declarator, + STATE(2955), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - anon_sym_EQ, - ACTIONS(3037), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [106471] = 2, + ACTIONS(5806), 1, + anon_sym_LBRACE, + ACTIONS(5808), 1, + anon_sym_LBRACK, + ACTIONS(5846), 1, + sym_identifier, + STATE(3504), 1, + sym_variable_declarator, + STATE(2955), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106909] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5860), 1, + sym_identifier, + ACTIONS(5862), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3906), 1, + sym__call_signature, + [106934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 7, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3253), 1, + sym_type_annotation, + ACTIONS(5864), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [106484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3468), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3470), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [106499] = 8, + [106951] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1367), 1, + STATE(1881), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3978), 1, + STATE(3863), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [106524] = 6, + [106976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - STATE(3268), 1, + STATE(3123), 1, sym_type_annotation, - STATE(3608), 1, + STATE(3612), 1, sym__initializer, - ACTIONS(5526), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5723), 7, + ACTIONS(5576), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [106558] = 8, + [106997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5856), 1, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5866), 1, sym_identifier, - ACTIONS(5858), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3899), 1, + STATE(3967), 1, sym__call_signature, - [106583] = 4, + [107022] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(2069), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, STATE(3924), 1, - sym_statement_block, - ACTIONS(5862), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106600] = 6, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3240), 1, - sym_type_annotation, - STATE(3727), 1, - sym__initializer, - ACTIONS(5516), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106621] = 7, + ACTIONS(3601), 1, + sym_identifier, + ACTIONS(3603), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [107062] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(5864), 1, - anon_sym_EQ, - ACTIONS(5868), 1, - anon_sym_QMARK, - STATE(3541), 1, - sym_type_annotation, - STATE(3996), 1, - sym__initializer, - ACTIONS(5866), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [106644] = 2, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1955), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4040), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107087] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5870), 1, + sym_identifier, + ACTIONS(5872), 1, + anon_sym_GT, + ACTIONS(5874), 1, + sym_jsx_identifier, + ACTIONS(5876), 1, + anon_sym_SLASH_GT, + STATE(2581), 1, + sym_nested_identifier, + STATE(2793), 1, + sym_jsx_namespace_name, + STATE(3622), 1, + sym_type_parameter, + [107112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5675), 1, + anon_sym_is, + ACTIONS(3320), 6, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - [106657] = 8, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [107127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5878), 1, + anon_sym_is, + ACTIONS(3288), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [107142] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(3382), 1, + STATE(1903), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3999), 1, + STATE(3845), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [106682] = 2, + [107167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 7, + ACTIONS(1515), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [106695] = 4, + [107180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3244), 1, - sym_type_annotation, - ACTIONS(5872), 5, + ACTIONS(1553), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [106712] = 2, + [107193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 7, + ACTIONS(5880), 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, - [106725] = 6, + [107206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, - anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5849), 1, - sym_identifier, - STATE(3441), 1, - sym_variable_declarator, - STATE(2839), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [106746] = 4, + ACTIONS(4625), 1, + anon_sym_LT, + ACTIONS(4620), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [107221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(4011), 1, - sym_statement_block, - ACTIONS(5874), 5, + STATE(612), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4064), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 1, + anon_sym_is, + ACTIONS(5882), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106763] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5825), 1, - anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5849), 1, - sym_identifier, - STATE(3442), 1, - sym_variable_declarator, - STATE(2839), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [106784] = 4, + [107261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - STATE(3170), 1, - sym_statement_block, - ACTIONS(1387), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3318), 1, + sym_type_annotation, + STATE(3752), 1, + sym__initializer, + ACTIONS(5572), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106801] = 8, + [107282] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1888), 1, + ACTIONS(5747), 1, + anon_sym_LBRACE, + STATE(152), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4003), 1, + STATE(4029), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [106826] = 3, + [107307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, - anon_sym_is, - ACTIONS(3398), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [106841] = 3, + ACTIONS(3712), 1, + sym_identifier, + ACTIONS(3714), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [107322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5876), 1, - anon_sym_EQ, - ACTIONS(3028), 6, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3277), 1, + sym_type_annotation, + ACTIONS(5884), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [106856] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [107339] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - ACTIONS(5733), 1, + ACTIONS(5886), 1, anon_sym_LBRACE, - STATE(149), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3948), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [106881] = 8, + ACTIONS(5888), 1, + anon_sym_COMMA, + ACTIONS(5890), 1, + anon_sym_DOT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5894), 1, + anon_sym_LBRACE_PIPE, + STATE(3483), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3574), 1, + sym_type_arguments, + [107364] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(607), 1, + ACTIONS(5721), 1, + anon_sym_LBRACE, + STATE(754), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3836), 1, + STATE(3965), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [106906] = 2, + [107389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 7, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3206), 1, + sym_type_annotation, + STATE(3716), 1, + sym__initializer, + ACTIONS(5568), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [106919] = 3, + [107410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 1, - anon_sym_is, - ACTIONS(3308), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [106934] = 3, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3437), 1, + sym_type_annotation, + STATE(3800), 1, + sym__initializer, + ACTIONS(5560), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 1, - anon_sym_is, - ACTIONS(5882), 6, + ACTIONS(5896), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [106949] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5884), 1, - sym_identifier, - ACTIONS(5886), 1, - anon_sym_STAR, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3998), 1, - sym__call_signature, - [106974] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(3326), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(4008), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [106999] = 8, + [107444] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1937), 1, + STATE(2055), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3857), 1, + STATE(3846), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107024] = 2, + [107469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 7, + ACTIONS(4425), 7, sym__automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [107037] = 8, + [107482] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5890), 1, - sym_identifier, - ACTIONS(5892), 1, - anon_sym_STAR, - STATE(2953), 1, - sym_formal_parameters, - STATE(3851), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [107062] = 8, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4000), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1437), 1, + STATE(1878), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4017), 1, + STATE(3876), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107087] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5894), 1, - sym_identifier, - ACTIONS(5896), 1, - anon_sym_STAR, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3998), 1, - sym__call_signature, - [107112] = 8, + [107532] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, ACTIONS(5898), 1, - sym_identifier, - ACTIONS(5900), 1, - anon_sym_STAR, - STATE(2953), 1, - sym_formal_parameters, - STATE(3851), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [107137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_EQ, - ACTIONS(3037), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5900), 1, anon_sym_QMARK, - [107152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3256), 1, - sym_type_annotation, - STATE(3594), 1, - sym__initializer, - ACTIONS(5530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107173] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5905), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_STAR, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3998), 1, + STATE(3972), 1, sym__call_signature, - [107198] = 8, + [107557] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5909), 1, - anon_sym_COLON, - ACTIONS(5911), 1, - anon_sym_QMARK, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4075), 1, - sym__call_signature, - [107223] = 8, + ACTIONS(5631), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1378), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4043), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107582] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(597), 1, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(617), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3874), 1, + STATE(3907), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107248] = 8, + [107607] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1943), 1, + STATE(1860), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3955), 1, + STATE(3920), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107273] = 3, + [107632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4692), 6, - anon_sym_EQ, + ACTIONS(5902), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [107288] = 8, + anon_sym_PIPE_RBRACE, + [107645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5913), 1, - sym_identifier, - ACTIONS(5915), 1, - anon_sym_DOT, - STATE(588), 1, - sym_nested_identifier, - STATE(606), 1, - sym_string, - STATE(729), 1, - sym__module, - [107313] = 8, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3399), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4047), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(3299), 1, + STATE(1947), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4028), 1, + STATE(4051), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107338] = 8, + [107695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1224), 1, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3150), 1, + sym_type_annotation, + STATE(3677), 1, + sym__initializer, + ACTIONS(5904), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5917), 1, - anon_sym_LT, - ACTIONS(5919), 1, - anon_sym_extends, - STATE(621), 1, - sym_object_type, - STATE(3163), 1, - sym_type_parameters, - STATE(3754), 1, - sym_extends_type_clause, - [107363] = 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [107729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5921), 1, + ACTIONS(5465), 1, anon_sym_COLON, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4075), 1, - sym__call_signature, - [107388] = 4, + ACTIONS(5908), 1, + sym_identifier, + ACTIONS(5910), 1, + anon_sym_EQ, + ACTIONS(5912), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [107748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4080), 1, + STATE(3979), 1, sym_statement_block, - ACTIONS(5923), 5, + ACTIONS(5914), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107405] = 6, + [107765] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5849), 1, - sym_identifier, - STATE(3419), 1, - sym_variable_declarator, - STATE(2839), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107426] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(5286), 1, - anon_sym_LT, - STATE(1929), 1, - sym_arguments, - STATE(3810), 1, - sym_type_arguments, - ACTIONS(5925), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [107447] = 4, + STATE(3442), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4056), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4067), 1, + STATE(3998), 1, sym_statement_block, - ACTIONS(5927), 5, + ACTIONS(5916), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107464] = 5, + [107807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - STATE(1428), 2, - sym_template_string, - sym_arguments, - ACTIONS(5929), 3, + ACTIONS(2067), 1, anon_sym_LBRACE, + STATE(3983), 1, + sym_statement_block, + ACTIONS(5918), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [107483] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [107824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4064), 1, + STATE(4003), 1, sym_statement_block, - ACTIONS(5931), 5, + ACTIONS(5920), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107500] = 4, + [107841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4019), 1, + STATE(3843), 1, sym_statement_block, - ACTIONS(5933), 5, + ACTIONS(5920), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107517] = 4, + [107858] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5747), 1, anon_sym_LBRACE, - STATE(4071), 1, + STATE(148), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(3939), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [107883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3812), 1, sym_statement_block, - ACTIONS(5935), 5, + ACTIONS(5922), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107534] = 4, + [107900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5295), 1, + anon_sym_EQ, + STATE(3546), 1, + sym_constraint, + STATE(4053), 1, + sym_default_type, + ACTIONS(5299), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5924), 2, anon_sym_COLON, - STATE(3236), 1, - sym_type_annotation, - ACTIONS(5937), 5, + anon_sym_extends, + [107921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3841), 1, + sym_statement_block, + ACTIONS(5926), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107551] = 8, + [107938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1922), 1, + STATE(1454), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(3860), 1, + STATE(4087), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107576] = 6, + [107963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3394), 1, - sym_type_annotation, - STATE(3743), 1, - sym__initializer, - ACTIONS(5939), 3, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3848), 1, + sym_statement_block, + ACTIONS(5928), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107597] = 4, + anon_sym_PIPE_RBRACE, + [107980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3377), 1, - sym_type_annotation, - ACTIONS(5941), 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(5932), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4024), 1, + sym__call_signature, + [108005] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4069), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [108030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3957), 1, + sym_statement_block, + ACTIONS(5926), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107614] = 4, + [108047] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5806), 1, anon_sym_LBRACE, - STATE(4000), 1, + ACTIONS(5808), 1, + anon_sym_LBRACK, + ACTIONS(5934), 1, + sym_identifier, + STATE(3464), 1, + sym_variable_declarator, + STATE(2705), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [108068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_LBRACE, + ACTIONS(5808), 1, + anon_sym_LBRACK, + ACTIONS(5936), 1, + sym_identifier, + STATE(3499), 1, + sym_variable_declarator, + STATE(2702), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [108089] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5631), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(5681), 1, + anon_sym_implements, + STATE(1463), 1, + sym_class_body, + STATE(3621), 1, + sym_extends_clause, + STATE(4061), 1, + sym_class_heritage, + STATE(4323), 1, + sym_implements_clause, + [108114] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3976), 1, sym_statement_block, - ACTIONS(5933), 5, + ACTIONS(5928), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107631] = 4, + [108131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5806), 1, anon_sym_LBRACE, - STATE(4025), 1, - sym_statement_block, - ACTIONS(5943), 5, + ACTIONS(5808), 1, + anon_sym_LBRACK, + ACTIONS(5846), 1, + sym_identifier, + STATE(3738), 1, + sym_variable_declarator, + STATE(2955), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [108152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 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, - [107648] = 2, + anon_sym_COLON, + [108165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 7, + ACTIONS(4421), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -196742,12 +197210,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [107661] = 4, + [108178] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5938), 1, + sym_identifier, + ACTIONS(5940), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3911), 1, + sym__call_signature, + [108203] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(5590), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_type, + STATE(4032), 1, + sym__import_identifier, + STATE(4131), 2, + sym__module_export_name, + sym_string, + [108226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5942), 1, + anon_sym_EQ, + ACTIONS(3062), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [108241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4026), 1, + STATE(3855), 1, sym_statement_block, ACTIONS(5945), 5, sym__automatic_semicolon, @@ -196755,294 +197268,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107678] = 4, + [108258] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(3895), 1, - sym_statement_block, - ACTIONS(5943), 5, - sym__automatic_semicolon, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5947), 1, + sym_identifier, + ACTIONS(5949), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4024), 1, + sym__call_signature, + [108283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5951), 1, + anon_sym_EQ, + ACTIONS(3038), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107695] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [108298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3892), 1, + STATE(3856), 1, sym_statement_block, - ACTIONS(5945), 5, + ACTIONS(5953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107712] = 4, + [108315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4035), 1, + STATE(3832), 1, sym_statement_block, - ACTIONS(5947), 5, + ACTIONS(5945), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107729] = 4, + [108332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4039), 1, + STATE(3827), 1, sym_statement_block, - ACTIONS(5874), 5, + ACTIONS(5953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107746] = 4, + [108349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4033), 1, - sym_statement_block, - ACTIONS(5947), 5, + ACTIONS(5699), 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, - [107763] = 6, + anon_sym_COLON, + [108362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(5286), 1, - anon_sym_LT, - STATE(1427), 1, - sym_arguments, - STATE(3928), 1, - sym_type_arguments, - ACTIONS(5925), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [107784] = 8, + ACTIONS(5737), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [108375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, ACTIONS(5681), 1, - anon_sym_LBRACE, - STATE(708), 1, + anon_sym_implements, + STATE(1979), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4010), 1, + STATE(4011), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [107809] = 8, + [108400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [108419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(1517), 2, + anon_sym_LT, + sym_identifier, + ACTIONS(1515), 5, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1960), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3846), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [107834] = 4, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [108434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(1555), 2, + anon_sym_LT, + sym_identifier, + ACTIONS(1553), 5, anon_sym_LBRACE, - STATE(3845), 1, - sym_statement_block, - ACTIONS(5949), 5, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [108449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 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, - [107851] = 4, + anon_sym_COLON, + [108462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4040), 1, - sym_statement_block, - ACTIONS(5951), 5, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LT, + STATE(1373), 1, + sym_arguments, + STATE(3985), 1, + sym_type_arguments, + ACTIONS(5955), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [108483] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LT, + STATE(1880), 1, + sym_arguments, + STATE(4085), 1, + sym_type_arguments, + ACTIONS(5955), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [108504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5751), 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, - [107868] = 8, + anon_sym_COLON, + [108517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - ACTIONS(5733), 1, - anon_sym_LBRACE, - STATE(145), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3965), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [107893] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5957), 1, + sym_identifier, + ACTIONS(5959), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4024), 1, + sym__call_signature, + [108542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4041), 1, + STATE(3860), 1, sym_statement_block, - ACTIONS(5953), 5, + ACTIONS(5961), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107910] = 4, + [108559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3871), 1, + STATE(4089), 1, sym_statement_block, - ACTIONS(5953), 5, + ACTIONS(5842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107927] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5278), 1, - anon_sym_EQ, - STATE(3533), 1, - sym_constraint, - STATE(3962), 1, - sym_default_type, - ACTIONS(5282), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5955), 2, - anon_sym_COLON, - anon_sym_extends, - [107948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5713), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [107961] = 4, + [108576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3873), 1, + STATE(4074), 1, sym_statement_block, - ACTIONS(5951), 5, + ACTIONS(5961), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107978] = 8, + [108593] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(210), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1224), 1, + anon_sym_LBRACE, + ACTIONS(5963), 1, anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5957), 1, - sym_identifier, - ACTIONS(5959), 1, - anon_sym_STAR, - STATE(2953), 1, - sym_formal_parameters, - STATE(3851), 1, - sym__call_signature, - STATE(3886), 1, + ACTIONS(5965), 1, + anon_sym_extends, + STATE(631), 1, + sym_object_type, + STATE(3207), 1, sym_type_parameters, - [108003] = 8, + STATE(3705), 1, + sym_extends_type_clause, + [108618] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(752), 1, anon_sym_LBRACE_PIPE, ACTIONS(1277), 1, anon_sym_LBRACE, - ACTIONS(5917), 1, + ACTIONS(5963), 1, anon_sym_LT, - ACTIONS(5919), 1, + ACTIONS(5965), 1, anon_sym_extends, - STATE(3195), 1, + STATE(3126), 1, sym_type_parameters, - STATE(3227), 1, + STATE(3254), 1, sym_object_type, - STATE(3702), 1, + STATE(3680), 1, sym_extends_type_clause, - [108028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(5963), 1, - anon_sym_EQ, - ACTIONS(5961), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5965), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108047] = 8, + [108643] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, ACTIONS(5967), 1, sym_identifier, ACTIONS(5969), 1, - anon_sym_STAR, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3926), 1, - sym__call_signature, - [108072] = 8, + anon_sym_DOT, + STATE(591), 1, + sym_nested_identifier, + STATE(608), 1, + sym_string, + STATE(642), 1, + sym__module, + [108668] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, @@ -197053,425 +197583,305 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(5973), 1, anon_sym_DOT, - STATE(2833), 1, + STATE(2839), 1, sym_nested_identifier, - STATE(2862), 1, + STATE(2846), 1, sym_string, - STATE(3328), 1, + STATE(3125), 1, sym__module, - [108097] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1875), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(4068), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [108122] = 6, + [108693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3205), 1, - sym_type_annotation, - STATE(3687), 1, - sym__initializer, - ACTIONS(5518), 3, + ACTIONS(5776), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [108143] = 8, + anon_sym_COLON, + [108706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(1476), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3925), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [108168] = 6, + ACTIONS(5872), 1, + anon_sym_GT, + ACTIONS(5975), 1, + sym_identifier, + ACTIONS(5977), 1, + sym_jsx_identifier, + ACTIONS(5979), 1, + anon_sym_SLASH_GT, + STATE(2548), 1, + sym_nested_identifier, + STATE(2725), 1, + sym_jsx_namespace_name, + STATE(3622), 1, + sym_type_parameter, + [108731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3173), 1, - sym_type_annotation, - STATE(3746), 1, - sym__initializer, - ACTIONS(5524), 3, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(4050), 1, + sym_statement_block, + ACTIONS(5981), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [108189] = 8, + anon_sym_PIPE_RBRACE, + [108748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5975), 1, - anon_sym_LBRACE, - ACTIONS(5977), 1, - anon_sym_COMMA, - ACTIONS(5979), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_DOT, + ACTIONS(5852), 1, + anon_sym_LPAREN, ACTIONS(5983), 1, - anon_sym_LBRACE_PIPE, - STATE(3544), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3777), 1, - sym_type_arguments, - [108214] = 8, + sym_identifier, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4024), 1, + sym__call_signature, + [108773] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, + ACTIONS(5613), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, ACTIONS(5681), 1, - anon_sym_LBRACE, - STATE(748), 1, + anon_sym_implements, + STATE(1924), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4049), 1, + STATE(4020), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [108239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(5047), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [108258] = 8, + [108798] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5679), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_implements, - STATE(1831), 1, + STATE(1412), 1, sym_class_body, - STATE(3711), 1, + STATE(3621), 1, sym_extends_clause, - STATE(4073), 1, + STATE(3961), 1, sym_class_heritage, - STATE(4250), 1, + STATE(4323), 1, sym_implements_clause, - [108283] = 2, + [108823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 7, - sym__automatic_semicolon, + ACTIONS(3019), 1, + anon_sym_COLON, + ACTIONS(5987), 1, anon_sym_EQ, + ACTIONS(5991), 1, + anon_sym_QMARK, + STATE(3559), 1, + sym_type_annotation, + STATE(4010), 1, + sym__initializer, + ACTIONS(5989), 2, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + [108846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - [108296] = 6, + anon_sym_RBRACK, + anon_sym_QMARK, + [108859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, - anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - sym_identifier, - STATE(3421), 1, - sym_variable_declarator, - STATE(2787), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [108317] = 4, + ACTIONS(5993), 1, + anon_sym_EQ, + ACTIONS(3062), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [108874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4048), 1, - sym_statement_block, - ACTIONS(5987), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3148), 1, + sym_type_annotation, + STATE(3679), 1, + sym__initializer, + ACTIONS(5655), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108334] = 6, + [108895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, + ACTIONS(5806), 1, anon_sym_LBRACE, - ACTIONS(5827), 1, + ACTIONS(5808), 1, anon_sym_LBRACK, - ACTIONS(5989), 1, + ACTIONS(5846), 1, sym_identifier, - STATE(3419), 1, + STATE(3499), 1, sym_variable_declarator, - STATE(2734), 3, + STATE(2955), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [108355] = 3, + [108916] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3436), 5, - anon_sym_LBRACE, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [108370] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5609), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(2045), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3883), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [108395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(3842), 1, - sym_statement_block, - ACTIONS(5987), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108412] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(5547), 1, + ACTIONS(5996), 1, sym_identifier, - ACTIONS(5653), 1, - anon_sym_type, - STATE(3950), 1, - sym__import_identifier, - STATE(4085), 2, - sym__module_export_name, - sym_string, - [108435] = 8, + ACTIONS(5998), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3911), 1, + sym__call_signature, + [108941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5991), 1, + ACTIONS(6000), 1, sym_identifier, - ACTIONS(5993), 1, + ACTIONS(6002), 1, anon_sym_STAR, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3851), 1, - sym__call_signature, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - [108460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3213), 1, - sym_type_annotation, - ACTIONS(5995), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5825), 1, - anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5849), 1, - sym_identifier, - STATE(3612), 1, - sym_variable_declarator, - STATE(2839), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [108498] = 8, + STATE(3911), 1, + sym__call_signature, + [108966] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5997), 1, - sym_identifier, - ACTIONS(5999), 1, - anon_sym_STAR, - STATE(2953), 1, + ACTIONS(5900), 1, + anon_sym_QMARK, + ACTIONS(6004), 1, + anon_sym_COLON, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3998), 1, + STATE(3972), 1, sym__call_signature, - [108523] = 8, + [108991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_implements, - STATE(2063), 1, - sym_class_body, - STATE(3711), 1, - sym_extends_clause, - STATE(3827), 1, - sym_class_heritage, - STATE(4250), 1, - sym_implements_clause, - [108548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4220), 7, + STATE(3889), 1, + sym_statement_block, + ACTIONS(5844), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [108561] = 3, + anon_sym_PIPE_RBRACE, + [109008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3454), 5, + ACTIONS(2067), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [108576] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3038), 1, - aux_sym_object_type_repeat1, - ACTIONS(3216), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6001), 3, + STATE(3882), 1, + sym_statement_block, + ACTIONS(6006), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [108592] = 7, + anon_sym_PIPE_RBRACE, + [109025] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(6003), 1, + ACTIONS(6008), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3156), 1, + STATE(3042), 1, sym__call_signature, - STATE(4053), 1, + STATE(3878), 1, sym_type_parameters, - [108614] = 7, + [109047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(1295), 1, + ACTIONS(1240), 1, anon_sym_SQUOTE, - ACTIONS(5971), 1, + ACTIONS(5967), 1, sym_identifier, - STATE(2833), 1, + STATE(591), 1, sym_nested_identifier, - STATE(2862), 1, + STATE(608), 1, sym_string, - STATE(3178), 1, + STATE(721), 1, sym__module, - [108636] = 4, + [109069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(5625), 2, + ACTIONS(6010), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(4031), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [108652] = 7, + STATE(2226), 1, + sym_statement_block, + ACTIONS(5961), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6007), 1, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3247), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6012), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6009), 1, - anon_sym_GT, - STATE(3575), 1, - aux_sym_implements_clause_repeat1, - [108674] = 7, + anon_sym_SEMI, + [109101] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, @@ -197480,16031 +197890,15811 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(5971), 1, sym_identifier, - STATE(2833), 1, + STATE(2839), 1, sym_nested_identifier, - STATE(2862), 1, + STATE(2846), 1, sym_string, - STATE(3328), 1, + STATE(3125), 1, sym__module, - [108696] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6011), 1, - anon_sym_export, - ACTIONS(6013), 1, - anon_sym_class, - ACTIONS(6015), 1, - anon_sym_abstract, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [108718] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6017), 1, - sym_identifier, - ACTIONS(6019), 1, - anon_sym_import, - STATE(1208), 1, - sym__type_query_member_expression, - STATE(1218), 1, - sym__type_query_subscript_expression, - STATE(1249), 1, - sym__type_query_call_expression, - STATE(4012), 1, - sym_import, - [108740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6021), 1, - anon_sym_default, - ACTIONS(6023), 1, - anon_sym_RBRACE, - ACTIONS(6025), 1, - anon_sym_case, - STATE(3019), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [108758] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6031), 1, - anon_sym_SLASH, - ACTIONS(6033), 1, - sym_jsx_identifier, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [108780] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - anon_sym_LBRACE, - ACTIONS(6035), 1, - sym_identifier, - ACTIONS(6037), 1, - anon_sym_LBRACK, - STATE(3516), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [108798] = 5, + [109123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - ACTIONS(6037), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - sym_identifier, - STATE(3876), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [108816] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6041), 1, - anon_sym_QMARK, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3898), 1, - sym__call_signature, - [108838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5888), 6, + STATE(2229), 1, + sym_statement_block, + ACTIONS(5842), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [108850] = 2, + [109139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 6, + STATE(2969), 1, + aux_sym_object_type_repeat1, + ACTIONS(3247), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6012), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [108862] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6043), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [108884] = 4, + [109155] = 4, ACTIONS(3), 1, sym_comment, - STATE(3008), 1, + STATE(2987), 1, aux_sym_object_type_repeat1, - ACTIONS(3230), 2, + ACTIONS(3235), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6045), 3, + ACTIONS(6014), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108900] = 5, + [109171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6016), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, + ACTIONS(6018), 1, anon_sym_QMARK_COLON, - STATE(3363), 3, + STATE(3368), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [108918] = 5, + [109189] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6021), 1, - anon_sym_default, - ACTIONS(6025), 1, - anon_sym_case, - ACTIONS(6051), 1, - anon_sym_RBRACE, - STATE(2958), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [108936] = 7, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(6020), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(3761), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [109211] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(6053), 1, - sym_identifier, - STATE(2953), 1, + ACTIONS(6022), 1, + anon_sym_QMARK, + STATE(2712), 1, sym_formal_parameters, - STATE(3849), 1, + STATE(3028), 1, sym__call_signature, - STATE(3886), 1, + STATE(3878), 1, sym_type_parameters, - [108958] = 5, + [109233] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6024), 1, + sym_identifier, + ACTIONS(6026), 1, + anon_sym_import, + STATE(2516), 1, + sym__type_query_subscript_expression, + STATE(2517), 1, + sym__type_query_member_expression, + STATE(2620), 1, + sym__type_query_call_expression, + STATE(3937), 1, + sym_import, + [109255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5880), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, - anon_sym_QMARK_COLON, - STATE(3333), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [108976] = 4, + [109267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2201), 1, + STATE(2233), 1, sym_statement_block, - ACTIONS(5874), 4, + ACTIONS(5842), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108992] = 5, + [109283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, - anon_sym_QMARK_COLON, - STATE(3318), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [109010] = 4, + STATE(2965), 1, + aux_sym_object_type_repeat1, + ACTIONS(6030), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6028), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109299] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2215), 1, - sym_statement_block, - ACTIONS(5947), 4, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6032), 1, + anon_sym_COMMA, + ACTIONS(6034), 1, + anon_sym_GT, + STATE(3647), 1, + aux_sym_implements_clause_repeat1, + [109321] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2984), 1, + aux_sym_object_type_repeat1, + ACTIONS(6038), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109337] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6040), 1, + anon_sym_COMMA, + ACTIONS(6042), 1, + anon_sym_GT, + STATE(3578), 1, + aux_sym_implements_clause_repeat1, + [109359] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3214), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6044), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109026] = 7, + [109375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6057), 1, + ACTIONS(6046), 1, anon_sym_QMARK, - STATE(2706), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3025), 1, + STATE(3359), 1, sym__call_signature, - STATE(3882), 1, + STATE(3935), 1, sym_type_parameters, - [109048] = 4, + [109397] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, + STATE(2986), 1, aux_sym_object_type_repeat1, - ACTIONS(3237), 2, + ACTIONS(3241), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6059), 3, + ACTIONS(6048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109064] = 4, + [109413] = 4, ACTIONS(3), 1, sym_comment, - STATE(3001), 1, - aux_sym_object_type_repeat1, - ACTIONS(6063), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6061), 3, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2232), 1, + sym_statement_block, + ACTIONS(5961), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109080] = 4, + [109429] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, + STATE(2987), 1, aux_sym_object_type_repeat1, - ACTIONS(3184), 2, + ACTIONS(3241), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6065), 3, + ACTIONS(6048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109096] = 4, + [109445] = 7, ACTIONS(3), 1, sym_comment, - STATE(2975), 1, + ACTIONS(6026), 1, + anon_sym_import, + ACTIONS(6050), 1, + sym_identifier, + STATE(1214), 1, + sym__type_query_subscript_expression, + STATE(1217), 1, + sym__type_query_member_expression, + STATE(1283), 1, + sym__type_query_call_expression, + STATE(3936), 1, + sym_import, + [109467] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2987), 1, aux_sym_object_type_repeat1, - ACTIONS(3184), 2, + ACTIONS(3237), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6065), 3, + ACTIONS(6052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109112] = 4, + [109483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2225), 1, - sym_statement_block, - ACTIONS(5923), 4, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(6057), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6054), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109128] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6067), 1, - anon_sym_BQUOTE, - ACTIONS(6069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5807), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3007), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [109146] = 7, + [109499] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6071), 1, + ACTIONS(6059), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3398), 1, + STATE(3847), 1, sym__call_signature, - STATE(4053), 1, + STATE(3859), 1, sym_type_parameters, - [109168] = 4, + [109521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2218), 1, - sym_statement_block, - ACTIONS(5927), 4, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6061), 1, + anon_sym_COMMA, + ACTIONS(6063), 1, + anon_sym_GT, + STATE(3717), 1, + aux_sym_implements_clause_repeat1, + [109543] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2993), 1, + aux_sym_object_type_repeat1, + ACTIONS(6067), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6065), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5525), 1, + anon_sym_is, + ACTIONS(5882), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [109184] = 4, + [109573] = 4, ACTIONS(3), 1, sym_comment, - STATE(2977), 1, + STATE(2994), 1, aux_sym_object_type_repeat1, - ACTIONS(6075), 2, + ACTIONS(3192), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6073), 3, + ACTIONS(6069), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109200] = 4, + [109589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2214), 1, - sym_statement_block, - ACTIONS(5931), 4, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3192), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6069), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109216] = 4, + [109605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym_statement_block, - ACTIONS(5987), 4, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3251), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6071), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109232] = 5, + [109621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, - anon_sym_QMARK_COLON, - STATE(3296), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [109250] = 7, + ACTIONS(5890), 1, + anon_sym_DOT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(6073), 1, + anon_sym_LBRACE, + STATE(3574), 1, + sym_type_arguments, + ACTIONS(6075), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [109641] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, ACTIONS(6077), 1, anon_sym_COMMA, ACTIONS(6079), 1, anon_sym_GT, - STATE(3796), 1, + STATE(3744), 1, aux_sym_implements_clause_repeat1, - [109272] = 5, + [109663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6081), 3, anon_sym_LBRACE, - ACTIONS(6037), 1, - anon_sym_LBRACK, - ACTIONS(6081), 1, - sym_identifier, - STATE(3636), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [109290] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6083), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [109312] = 7, + [109681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6085), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [109334] = 7, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3224), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6083), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109697] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6085), 1, + anon_sym_export, ACTIONS(6087), 1, - anon_sym_QMARK, - STATE(2953), 1, - sym_formal_parameters, - STATE(3866), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [109356] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, + anon_sym_class, ACTIONS(6089), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [109378] = 4, + anon_sym_abstract, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [109719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2223), 1, - sym_statement_block, - ACTIONS(5947), 4, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3249), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6091), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(6091), 1, - anon_sym_QMARK, - STATE(2706), 1, - sym_formal_parameters, - STATE(3115), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [109416] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6019), 1, - anon_sym_import, - ACTIONS(6093), 1, - sym_identifier, - STATE(2409), 1, - sym__type_query_member_expression, - STATE(2410), 1, - sym__type_query_subscript_expression, - STATE(2510), 1, - sym__type_query_call_expression, - STATE(4069), 1, - sym_import, - [109438] = 7, + [109735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6095), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [109460] = 7, + STATE(2980), 1, + aux_sym_object_type_repeat1, + ACTIONS(3249), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6091), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6097), 1, + ACTIONS(6093), 1, anon_sym_QMARK, - STATE(2953), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4020), 1, + STATE(3243), 1, sym__call_signature, - [109482] = 7, + STATE(3935), 1, + sym_type_parameters, + [109773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym_COMMA, - ACTIONS(5979), 1, - anon_sym_LT, - ACTIONS(6099), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - ACTIONS(6101), 1, - anon_sym_LBRACE_PIPE, - STATE(3546), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3779), 1, - sym_type_arguments, - [109504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(5864), 1, - anon_sym_EQ, - STATE(3470), 1, - sym_type_annotation, - STATE(4043), 1, - sym__initializer, - ACTIONS(6103), 2, + STATE(2205), 1, + sym_statement_block, + ACTIONS(6006), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [109524] = 3, + anon_sym_SEMI, + [109789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5409), 4, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [109538] = 4, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3226), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109805] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, + STATE(2998), 1, aux_sym_object_type_repeat1, - ACTIONS(3230), 2, + ACTIONS(3226), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6045), 3, + ACTIONS(6095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109554] = 7, + [109821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6105), 1, + ACTIONS(6097), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3413), 1, + STATE(3584), 1, sym__call_signature, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - [109576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(3206), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_QMARK, - [109590] = 4, + [109843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(2203), 1, sym_statement_block, - ACTIONS(5987), 4, + ACTIONS(5844), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109606] = 7, + [109859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(5967), 1, sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6107), 1, - anon_sym_SLASH, - STATE(2564), 1, + STATE(591), 1, sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [109628] = 5, + STATE(608), 1, + sym_string, + STATE(642), 1, + sym__module, + [109881] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6109), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [109646] = 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + ACTIONS(6099), 1, + anon_sym_QMARK, + STATE(2712), 1, + sym_formal_parameters, + STATE(2975), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [109903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6113), 1, + ACTIONS(6101), 1, anon_sym_BQUOTE, - ACTIONS(6111), 2, + ACTIONS(6103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5796), 2, sym__template_chars, sym_escape_sequence, - STATE(3106), 2, + STATE(3023), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [109664] = 4, + [109921] = 7, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3221), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6115), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109680] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6105), 1, + sym_identifier, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4027), 1, + sym__call_signature, + [109943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(6016), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6018), 1, + anon_sym_QMARK_COLON, + STATE(3205), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [109961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2209), 1, + STATE(2215), 1, sym_statement_block, - ACTIONS(5933), 4, + ACTIONS(5844), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109696] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6117), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [109718] = 7, + [109977] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6119), 1, - anon_sym_QMARK, - STATE(2706), 1, + ACTIONS(6107), 1, + sym_identifier, + STATE(3113), 1, sym_formal_parameters, - STATE(2985), 1, - sym__call_signature, - STATE(3882), 1, + STATE(3859), 1, sym_type_parameters, - [109740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(6121), 1, - anon_sym_QMARK, - STATE(2706), 1, - sym_formal_parameters, - STATE(2982), 1, + STATE(3970), 1, sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [109762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6125), 1, - anon_sym_EQ, - ACTIONS(6123), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6127), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [109778] = 6, + [109999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_DOT, - ACTIONS(6129), 1, - anon_sym_LBRACE, - STATE(3777), 1, - sym_type_arguments, - ACTIONS(6131), 2, + STATE(3004), 1, + aux_sym_object_type_repeat1, + ACTIONS(6111), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6109), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [109798] = 7, + anon_sym_SEMI, + [110015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6133), 1, - sym_identifier, - STATE(2953), 1, + ACTIONS(6113), 1, + anon_sym_QMARK, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3887), 1, + STATE(3958), 1, sym__call_signature, - [109820] = 6, + [110037] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6137), 1, - anon_sym_QMARK, - ACTIONS(6135), 2, + ACTIONS(6115), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [109840] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6019), 1, - anon_sym_import, - ACTIONS(6139), 1, - sym_identifier, - STATE(2493), 1, - sym__type_query_subscript_expression, - STATE(2494), 1, - sym__type_query_member_expression, - STATE(2630), 1, - sym__type_query_call_expression, - STATE(3853), 1, - sym_import, - [109862] = 7, + ACTIONS(6117), 1, + anon_sym_GT, + STATE(3810), 1, + aux_sym_implements_clause_repeat1, + [110059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6141), 1, - sym_identifier, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3887), 1, - sym__call_signature, - [109884] = 5, + ACTIONS(5896), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [110071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6143), 1, + ACTIONS(6119), 1, anon_sym_default, - ACTIONS(6146), 1, + ACTIONS(6122), 1, anon_sym_RBRACE, - ACTIONS(6148), 1, + ACTIONS(6124), 1, anon_sym_case, STATE(3019), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [109902] = 7, + [110089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5913), 1, - sym_identifier, - STATE(588), 1, - sym_nested_identifier, - STATE(606), 1, - sym_string, - STATE(696), 1, - sym__module, - [109924] = 7, + ACTIONS(6103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6129), 1, + anon_sym_BQUOTE, + ACTIONS(6127), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3094), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [110107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6151), 1, - anon_sym_COMMA, - ACTIONS(6153), 1, - anon_sym_GT, - STATE(3620), 1, - aux_sym_implements_clause_repeat1, - [109946] = 4, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(6016), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6018), 1, + anon_sym_QMARK_COLON, + STATE(3330), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [110125] = 5, ACTIONS(3), 1, sym_comment, - STATE(3033), 1, - aux_sym_object_type_repeat1, - ACTIONS(6157), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6155), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109962] = 4, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(6016), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6018), 1, + anon_sym_QMARK_COLON, + STATE(3328), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [110143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6131), 1, + anon_sym_BQUOTE, + ACTIONS(6127), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3094), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [110161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2194), 1, + STATE(2212), 1, sym_statement_block, - ACTIONS(5945), 4, + ACTIONS(5953), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109978] = 7, + [110177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(6016), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6018), 1, + anon_sym_QMARK_COLON, + STATE(3325), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [110195] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6133), 1, + sym_identifier, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4022), 1, + sym__call_signature, + [110217] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, + ACTIONS(6026), 1, anon_sym_import, - ACTIONS(6159), 1, + ACTIONS(6135), 1, sym_identifier, - STATE(2331), 1, - sym__type_query_subscript_expression, - STATE(2336), 1, + STATE(2415), 1, sym__type_query_member_expression, - STATE(2368), 1, + STATE(2416), 1, + sym__type_query_subscript_expression, + STATE(2532), 1, sym__type_query_call_expression, - STATE(3922), 1, + STATE(3844), 1, sym_import, - [110000] = 4, + [110239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2193), 1, + STATE(2210), 1, sym_statement_block, - ACTIONS(5943), 4, + ACTIONS(5945), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110016] = 7, + [110255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(5913), 1, - sym_identifier, - STATE(588), 1, - sym_nested_identifier, - STATE(606), 1, - sym_string, - STATE(729), 1, - sym__module, - [110038] = 3, + ACTIONS(1981), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [110267] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_is, - ACTIONS(5882), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [110052] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6137), 1, + anon_sym_QMARK, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4055), 1, + sym__call_signature, + [110289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 6, + ACTIONS(5882), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110064] = 2, + [110301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 6, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2217), 1, + sym_statement_block, + ACTIONS(5953), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [110076] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(6163), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(3723), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [110098] = 4, + [110317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, + ACTIONS(6139), 1, anon_sym_AMP, - ACTIONS(6167), 1, - anon_sym_PIPE, - ACTIONS(3711), 4, + ACTIONS(3587), 5, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_extends, - [110114] = 7, + [110331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(6169), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2893), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [110136] = 4, + ACTIONS(6139), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_PIPE, + ACTIONS(6143), 1, + anon_sym_extends, + ACTIONS(3611), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [110349] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3216), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6001), 3, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2237), 1, + sym_statement_block, + ACTIONS(5945), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110152] = 7, + [110365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6171), 1, + ACTIONS(6145), 1, anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2897), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [110174] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6173), 1, - sym_identifier, - STATE(2953), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3849), 1, + STATE(3304), 1, sym__call_signature, - STATE(3886), 1, + STATE(3935), 1, sym_type_parameters, - [110196] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(6178), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6175), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [110212] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(5643), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(3837), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [110228] = 4, + [110387] = 7, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3214), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6180), 3, - sym__automatic_semicolon, + ACTIONS(5888), 1, anon_sym_COMMA, - anon_sym_SEMI, - [110244] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, + ACTIONS(5892), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(6182), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2906), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [110266] = 7, + ACTIONS(6147), 1, + anon_sym_LBRACE, + ACTIONS(6149), 1, + anon_sym_LBRACE_PIPE, + STATE(3485), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3595), 1, + sym_type_arguments, + [110409] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, + ACTIONS(5872), 1, anon_sym_GT, - ACTIONS(6033), 1, + ACTIONS(6151), 1, + sym_identifier, + ACTIONS(6153), 1, sym_jsx_identifier, - ACTIONS(6184), 1, - anon_sym_SLASH, - STATE(2564), 1, + ACTIONS(6155), 1, + anon_sym_SLASH_GT, + STATE(2539), 1, sym_nested_identifier, - STATE(2790), 1, + STATE(2704), 1, sym_jsx_namespace_name, - [110288] = 7, + [110431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1993), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [110443] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6186), 1, + ACTIONS(6157), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3235), 1, - sym__call_signature, - STATE(4053), 1, + STATE(3859), 1, sym_type_parameters, - [110310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6165), 1, - anon_sym_AMP, - ACTIONS(6167), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(3783), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [110328] = 4, + STATE(4042), 1, + sym__call_signature, + [110465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2198), 1, + STATE(2220), 1, sym_statement_block, - ACTIONS(5949), 4, + ACTIONS(5928), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110344] = 4, + [110481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2213), 1, + STATE(2222), 1, sym_statement_block, - ACTIONS(5935), 4, + ACTIONS(5926), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110360] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3226), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6190), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [110376] = 7, + [110497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6192), 1, - anon_sym_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6159), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(3675), 1, - aux_sym_implements_clause_repeat1, - [110398] = 4, + anon_sym_GT, + [110515] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + ACTIONS(6161), 1, + anon_sym_QMARK, + STATE(2712), 1, + sym_formal_parameters, + STATE(3084), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [110537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2190), 1, + STATE(2202), 1, sym_statement_block, - ACTIONS(5933), 4, + ACTIONS(5928), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110414] = 7, + [110553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, + ACTIONS(5374), 1, sym_identifier, - ACTIONS(6029), 1, + ACTIONS(5376), 5, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(6033), 1, sym_jsx_identifier, - ACTIONS(6196), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [110436] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6165), 1, - anon_sym_AMP, - ACTIONS(6167), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(3572), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [110454] = 5, + anon_sym_SLASH_GT, + [110567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6016), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, + ACTIONS(6018), 1, anon_sym_QMARK_COLON, - STATE(3390), 3, + STATE(3228), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [110472] = 5, + [110585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6016), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, + ACTIONS(6018), 1, anon_sym_QMARK_COLON, - STATE(3389), 3, + STATE(3222), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [110490] = 4, + [110603] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3186), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6198), 3, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2236), 1, + sym_statement_block, + ACTIONS(5926), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110506] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(6200), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2910), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [110528] = 7, + [110619] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6202), 1, + ACTIONS(6163), 1, anon_sym_QMARK, - STATE(2953), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3868), 1, + STATE(3178), 1, sym__call_signature, - STATE(3886), 1, + STATE(3935), 1, sym_type_parameters, - [110550] = 3, + [110641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, + ACTIONS(6139), 1, anon_sym_AMP, - ACTIONS(3518), 5, + ACTIONS(6141), 1, + anon_sym_PIPE, + ACTIONS(3636), 4, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_extends, - [110564] = 7, + [110657] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, + anon_sym_GT, + ACTIONS(6165), 1, + sym_identifier, + ACTIONS(6167), 1, + sym_jsx_identifier, + ACTIONS(6169), 1, + anon_sym_SLASH_GT, + STATE(2575), 1, + sym_nested_identifier, + STATE(2771), 1, + sym_jsx_namespace_name, + [110679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6171), 1, + anon_sym_COLON, + ACTIONS(5671), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(4080), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [110695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6204), 1, + ACTIONS(6173), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3731), 1, + STATE(2899), 1, sym__call_signature, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - [110586] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6206), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [110608] = 5, + [110717] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6208), 1, - anon_sym_BQUOTE, - ACTIONS(6111), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3106), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [110626] = 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(6175), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2904), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [110739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(6167), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(6188), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(3450), 3, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_QMARK, + ACTIONS(6177), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [110644] = 4, + [110759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(5058), 2, + STATE(3000), 1, + aux_sym_object_type_repeat1, + ACTIONS(6183), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6181), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2207), 1, + sym_statement_block, + ACTIONS(5981), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6185), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [110660] = 7, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110803] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6210), 1, + ACTIONS(6187), 1, anon_sym_QMARK, - STATE(2953), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4036), 1, + STATE(2911), 1, sym__call_signature, - [110682] = 7, + STATE(3935), 1, + sym_type_parameters, + [110825] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, - anon_sym_import, - ACTIONS(6212), 1, - sym_identifier, - STATE(1591), 1, - sym__type_query_member_expression, - STATE(1592), 1, - sym__type_query_subscript_expression, - STATE(1669), 1, - sym__type_query_call_expression, - STATE(3956), 1, - sym_import, - [110704] = 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + ACTIONS(6189), 1, + anon_sym_QMARK, + STATE(2712), 1, + sym_formal_parameters, + STATE(3013), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [110847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, + ACTIONS(6139), 1, anon_sym_AMP, - ACTIONS(6167), 1, + ACTIONS(6141), 1, anon_sym_PIPE, - ACTIONS(6188), 1, + ACTIONS(6143), 1, anon_sym_extends, - ACTIONS(3440), 3, + ACTIONS(3549), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [110722] = 5, + [110865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(6191), 1, + sym_identifier, + ACTIONS(6193), 1, + anon_sym_LBRACK, + STATE(3793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [110883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1977), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5403), 1, anon_sym_PIPE, - ACTIONS(5405), 1, anon_sym_extends, - ACTIONS(6214), 3, + [110895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2647), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [110740] = 7, + ACTIONS(6193), 1, + anon_sym_LBRACK, + ACTIONS(6195), 1, + sym_identifier, + STATE(3969), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [110913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, + ACTIONS(2647), 1, + anon_sym_LBRACE, + ACTIONS(6193), 1, + anon_sym_LBRACK, + ACTIONS(6197), 1, sym_identifier, - ACTIONS(6218), 1, - anon_sym_GT, - ACTIONS(6220), 1, - sym_jsx_identifier, - STATE(2534), 1, - sym_nested_identifier, - STATE(2764), 1, - sym_jsx_namespace_name, - STATE(3767), 1, - sym_type_parameter, - [110762] = 7, + STATE(3456), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [110931] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6199), 1, + anon_sym_default, + ACTIONS(6201), 1, + anon_sym_RBRACE, + ACTIONS(6203), 1, + anon_sym_case, + STATE(3019), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [110949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(3210), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6222), 1, anon_sym_QMARK, - STATE(2706), 1, + [110963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6205), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110975] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6207), 1, + anon_sym_QMARK, + STATE(3113), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3859), 1, + sym_type_parameters, + STATE(4062), 1, sym__call_signature, - STATE(3882), 1, + [110997] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2987), 1, + aux_sym_object_type_repeat1, + ACTIONS(3228), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6209), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [111013] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(6211), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2926), 1, + sym__call_signature, + STATE(3935), 1, sym_type_parameters, - [110784] = 5, + [111035] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6224), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3058), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [110802] = 7, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6213), 1, + sym_identifier, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3964), 1, + sym__call_signature, + [111057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(1985), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5403), 1, anon_sym_PIPE, - ACTIONS(5405), 1, anon_sym_extends, - ACTIONS(6226), 1, - anon_sym_COMMA, - ACTIONS(6228), 1, - anon_sym_GT, - STATE(3688), 1, - aux_sym_implements_clause_repeat1, - [110824] = 3, + [111069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, + ACTIONS(1989), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [111081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6139), 1, anon_sym_AMP, - ACTIONS(3699), 5, + ACTIONS(6141), 1, + anon_sym_PIPE, + ACTIONS(6143), 1, + anon_sym_extends, + ACTIONS(3788), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [111099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6139), 1, + anon_sym_AMP, + ACTIONS(6141), 1, anon_sym_PIPE, + ACTIONS(6143), 1, anon_sym_extends, - [110838] = 5, + ACTIONS(3776), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [111117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6026), 1, + anon_sym_import, + ACTIONS(6215), 1, + sym_identifier, + STATE(1544), 1, + sym__type_query_subscript_expression, + STATE(1545), 1, + sym__type_query_member_expression, + STATE(1781), 1, + sym__type_query_call_expression, + STATE(4017), 1, + sym_import, + [111139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(6016), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6018), 1, + anon_sym_QMARK_COLON, + STATE(3159), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [111157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, - anon_sym_AMP, - ACTIONS(6167), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(3658), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [110856] = 4, + ACTIONS(5401), 1, + anon_sym_COLON, + ACTIONS(6016), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6018), 1, + anon_sym_QMARK_COLON, + STATE(3153), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [111175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2221), 1, - sym_statement_block, - ACTIONS(5862), 4, + ACTIONS(5902), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [110872] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6230), 1, - sym_identifier, - STATE(2953), 1, - sym_formal_parameters, - STATE(3849), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [110894] = 4, + anon_sym_COLON, + [111187] = 4, ACTIONS(3), 1, sym_comment, - STATE(3080), 1, - aux_sym_object_type_repeat1, - ACTIONS(6234), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6232), 3, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2224), 1, + sym_statement_block, + ACTIONS(5920), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110910] = 4, + [111203] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3228), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6236), 3, - sym__automatic_semicolon, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(5073), 2, anon_sym_COMMA, - anon_sym_SEMI, - [110926] = 4, + anon_sym_RBRACE, + ACTIONS(3210), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [111219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2212), 1, + STATE(2221), 1, sym_statement_block, - ACTIONS(5945), 4, + ACTIONS(5922), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110942] = 4, + [111235] = 3, ACTIONS(3), 1, sym_comment, - STATE(3052), 1, - aux_sym_object_type_repeat1, - ACTIONS(3228), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6236), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [110958] = 7, + ACTIONS(6139), 1, + anon_sym_AMP, + ACTIONS(3730), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [111249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(6238), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2918), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [110980] = 7, + ACTIONS(6139), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_PIPE, + ACTIONS(6143), 1, + anon_sym_extends, + ACTIONS(3762), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [111267] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6240), 1, - sym_identifier, - STATE(2953), 1, + ACTIONS(6217), 1, + anon_sym_QMARK, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3960), 1, + STATE(3887), 1, sym__call_signature, - [111002] = 4, + [111289] = 4, ACTIONS(3), 1, sym_comment, - STATE(3088), 1, + STATE(2987), 1, aux_sym_object_type_repeat1, - ACTIONS(3244), 2, + ACTIONS(3253), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6242), 3, + ACTIONS(6219), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111018] = 4, + [111305] = 4, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, + STATE(3071), 1, aux_sym_object_type_repeat1, - ACTIONS(3244), 2, + ACTIONS(3253), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6242), 3, + ACTIONS(6219), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111034] = 7, + [111321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6244), 1, - sym_identifier, - STATE(2953), 1, + ACTIONS(6221), 1, + anon_sym_QMARK, + STATE(2693), 1, sym_formal_parameters, - STATE(3849), 1, + STATE(2940), 1, sym__call_signature, - STATE(3886), 1, + STATE(3935), 1, sym_type_parameters, - [111056] = 7, + [111343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6246), 1, - anon_sym_QMARK, - STATE(2953), 1, + ACTIONS(6223), 1, + sym_identifier, + STATE(3113), 1, sym_formal_parameters, - STATE(3844), 1, - sym__call_signature, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - [111078] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - ACTIONS(6248), 1, - anon_sym_SLASH, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [111100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1983), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [111112] = 2, + STATE(3964), 1, + sym__call_signature, + [111365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 6, + ACTIONS(6225), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111124] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3103), 1, - aux_sym_object_type_repeat1, - ACTIONS(6252), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6250), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [111152] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3250), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6254), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1975), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [111180] = 7, + [111377] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6256), 1, + ACTIONS(6227), 1, anon_sym_COMMA, - ACTIONS(6258), 1, + ACTIONS(6229), 1, anon_sym_GT, - STATE(3715), 1, + STATE(3760), 1, aux_sym_implements_clause_repeat1, - [111202] = 2, + [111399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [111214] = 7, + ACTIONS(6234), 1, + anon_sym_BQUOTE, + ACTIONS(6236), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6231), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3094), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [111417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 1, + ACTIONS(6239), 1, sym_identifier, - ACTIONS(6262), 1, + ACTIONS(6241), 1, + anon_sym_EQ, + ACTIONS(6243), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(6264), 1, sym_jsx_identifier, - STATE(2531), 1, - sym_nested_identifier, - STATE(2740), 1, - sym_jsx_namespace_name, - STATE(3767), 1, - sym_type_parameter, - [111236] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6266), 1, - sym_identifier, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3887), 1, - sym__call_signature, - [111258] = 7, + anon_sym_SLASH_GT, + [111433] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - ACTIONS(6268), 1, + ACTIONS(6245), 1, anon_sym_QMARK, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3242), 1, + STATE(3109), 1, sym__call_signature, - STATE(4053), 1, + STATE(3878), 1, sym_type_parameters, - [111280] = 4, + [111455] = 4, ACTIONS(3), 1, sym_comment, - STATE(3045), 1, - aux_sym_object_type_repeat1, - ACTIONS(3210), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6270), 3, + ACTIONS(6010), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_statement_block, + ACTIONS(5920), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111296] = 7, + [111471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6247), 1, + anon_sym_BQUOTE, + ACTIONS(5820), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3020), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [111489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, + ACTIONS(6026), 1, anon_sym_import, - ACTIONS(6272), 1, + ACTIONS(6249), 1, sym_identifier, - STATE(2368), 1, + STATE(2383), 1, sym__type_query_call_expression, - STATE(2655), 1, + STATE(2673), 1, sym__type_query_subscript_expression, - STATE(2657), 1, + STATE(2680), 1, sym__type_query_member_expression, - STATE(3877), 1, + STATE(3892), 1, sym_import, - [111318] = 7, + [111511] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(6026), 1, + anon_sym_import, + ACTIONS(6251), 1, + sym_identifier, + STATE(2335), 1, + sym__type_query_member_expression, + STATE(2362), 1, + sym__type_query_subscript_expression, + STATE(2383), 1, + sym__type_query_call_expression, + STATE(3980), 1, + sym_import, + [111533] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(6253), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(3121), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [111555] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6274), 1, + ACTIONS(6255), 1, + anon_sym_LBRACE, + ACTIONS(6257), 1, anon_sym_COMMA, - ACTIONS(6276), 1, - anon_sym_GT, STATE(3748), 1, aux_sym_implements_clause_repeat1, - [111340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [111352] = 7, + [111577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6278), 1, + ACTIONS(6259), 1, sym_identifier, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3887), 1, + STATE(3964), 1, sym__call_signature, - [111374] = 7, + [111599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_QMARK, - STATE(2672), 1, + ACTIONS(6261), 1, + sym_identifier, + STATE(3113), 1, sym_formal_parameters, - STATE(3346), 1, - sym__call_signature, - STATE(4053), 1, + STATE(3859), 1, sym_type_parameters, - [111396] = 5, + STATE(4027), 1, + sym__call_signature, + [111621] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, - anon_sym_QMARK_COLON, - STATE(3174), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [111414] = 4, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6089), 1, + anon_sym_abstract, + ACTIONS(6263), 1, + anon_sym_export, + ACTIONS(6265), 1, + anon_sym_class, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [111643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2227), 1, + STATE(2214), 1, sym_statement_block, - ACTIONS(5951), 4, + ACTIONS(5918), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111430] = 4, + [111659] = 2, ACTIONS(3), 1, sym_comment, - STATE(3036), 1, - aux_sym_object_type_repeat1, - ACTIONS(3210), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6270), 3, + ACTIONS(5906), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [111446] = 7, + anon_sym_COLON, + [111671] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - ACTIONS(6282), 1, - anon_sym_QMARK, - STATE(2672), 1, - sym_formal_parameters, - STATE(2941), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [111468] = 2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6267), 1, + anon_sym_COMMA, + ACTIONS(6269), 1, + anon_sym_GT, + STATE(3700), 1, + aux_sym_implements_clause_repeat1, + [111693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6284), 6, - sym__automatic_semicolon, + ACTIONS(6010), 1, anon_sym_LBRACE, + STATE(2213), 1, + sym_statement_block, + ACTIONS(5916), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111480] = 5, + [111709] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6289), 1, - anon_sym_BQUOTE, - ACTIONS(6291), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6286), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3106), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [111498] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(6271), 1, + anon_sym_QMARK, + STATE(2693), 1, + sym_formal_parameters, + STATE(2960), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [111731] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111510] = 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6273), 1, + sym_identifier, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4027), 1, + sym__call_signature, + [111753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, - anon_sym_QMARK_COLON, - STATE(3260), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [111528] = 5, + ACTIONS(6199), 1, + anon_sym_default, + ACTIONS(6203), 1, + anon_sym_case, + ACTIONS(6275), 1, + anon_sym_RBRACE, + STATE(3067), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [111771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(6171), 1, anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6049), 1, - anon_sym_QMARK_COLON, - STATE(3265), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [111546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6055), 1, + ACTIONS(5667), 2, anon_sym_LBRACE, - STATE(2195), 1, - sym_statement_block, - ACTIONS(5953), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111562] = 7, + anon_sym_EQ_GT, + STATE(3932), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [111787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6015), 1, - anon_sym_abstract, - ACTIONS(6296), 1, - anon_sym_export, - ACTIONS(6298), 1, - anon_sym_class, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [111584] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6277), 1, + sym_identifier, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4027), 1, + sym__call_signature, + [111809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2196), 1, - sym_statement_block, - ACTIONS(5943), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111600] = 7, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(5971), 1, + sym_identifier, + STATE(2839), 1, + sym_nested_identifier, + STATE(2846), 1, + sym_string, + STATE(3231), 1, + sym__module, + [111831] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - ACTIONS(6300), 1, + ACTIONS(6279), 1, anon_sym_QMARK, - STATE(2706), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2973), 1, + STATE(3138), 1, sym__call_signature, - STATE(3882), 1, + STATE(3935), 1, sym_type_parameters, - [111622] = 2, + [111853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3019), 1, anon_sym_COLON, - [111634] = 4, + ACTIONS(5987), 1, + anon_sym_EQ, + STATE(3527), 1, + sym_type_annotation, + STATE(4009), 1, + sym__initializer, + ACTIONS(6281), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [111873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - STATE(2208), 1, + STATE(2211), 1, sym_statement_block, - ACTIONS(5953), 4, + ACTIONS(5914), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111650] = 4, + [111889] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2207), 1, - sym_statement_block, - ACTIONS(5951), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111666] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(6283), 1, + sym_identifier, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3964), 1, + sym__call_signature, + [111911] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(3088), 1, aux_sym_object_type_repeat1, - ACTIONS(6304), 2, + ACTIONS(6287), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6302), 3, + ACTIONS(6285), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111682] = 7, + [111927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6306), 1, - sym_identifier, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3927), 1, - sym__call_signature, - [111704] = 4, + ACTIONS(5916), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(2216), 1, - sym_statement_block, - ACTIONS(5874), 4, + ACTIONS(6171), 1, + anon_sym_COLON, + ACTIONS(6289), 1, + anon_sym_EQ_GT, + STATE(3932), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [111953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3771), 1, + sym__initializer, + ACTIONS(6292), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111720] = 7, + [111968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6308), 1, + ACTIONS(1473), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6310), 1, - anon_sym_GT, - STATE(3769), 1, - aux_sym_implements_clause_repeat1, - [111742] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(6314), 1, - anon_sym_PIPE, - ACTIONS(6312), 2, + ACTIONS(2143), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111759] = 3, + anon_sym_PIPE_RBRACE, + [111990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6316), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6318), 3, + ACTIONS(752), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1277), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [111772] = 2, + ACTIONS(5965), 1, + anon_sym_extends, + STATE(3347), 1, + sym_object_type, + STATE(3697), 1, + sym_extends_type_clause, + [112009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6320), 5, + ACTIONS(2139), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111783] = 2, + [112020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 5, + ACTIONS(1591), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111794] = 2, + [112031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 5, + ACTIONS(2259), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111805] = 6, + anon_sym_PIPE_RBRACE, + [112042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3131), 1, - sym__call_signature, - STATE(3882), 1, + STATE(3859), 1, sym_type_parameters, - [111824] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5864), 1, - anon_sym_EQ, - ACTIONS(6322), 1, - anon_sym_COMMA, - ACTIONS(6324), 1, - anon_sym_RBRACE, - STATE(3672), 1, - aux_sym_enum_body_repeat1, - STATE(4072), 1, - sym__initializer, - [111843] = 4, + STATE(4039), 1, + sym__call_signature, + [112061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3603), 1, - sym__initializer, - ACTIONS(6326), 3, + ACTIONS(1591), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6015), 1, - anon_sym_abstract, - ACTIONS(6298), 1, - anon_sym_class, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [111877] = 2, + anon_sym_PIPE_RBRACE, + [112072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(5914), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111888] = 6, + [112083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - ACTIONS(6328), 1, - anon_sym_SEMI, - ACTIONS(6330), 1, - sym__automatic_semicolon, - ACTIONS(6332), 1, - sym__function_signature_automatic_semicolon, - STATE(3188), 1, - sym_statement_block, - [111907] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(3132), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [112102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(5918), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111918] = 5, + [112113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(6314), 1, - anon_sym_PIPE, - ACTIONS(6334), 2, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6294), 1, + anon_sym_class, + ACTIONS(6296), 1, + anon_sym_abstract, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [112132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111935] = 2, + anon_sym_PIPE_RBRACE, + [112143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 5, + ACTIONS(5920), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111946] = 2, + [112154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 5, + ACTIONS(5922), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111957] = 2, + [112165] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(3134), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [112184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 5, + ACTIONS(2383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111968] = 4, + [112195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(6171), 1, anon_sym_COLON, - ACTIONS(6336), 1, + ACTIONS(6300), 1, anon_sym_EQ_GT, - STATE(4031), 3, + STATE(3932), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [111983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6284), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [111994] = 2, + [112210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [112005] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3118), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [112229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(2379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112016] = 2, + [112240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(2443), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112027] = 2, + [112251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, - sym__automatic_semicolon, + ACTIONS(3210), 1, + anon_sym_COLON, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4812), 1, anon_sym_COMMA, + ACTIONS(6303), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112038] = 2, + STATE(3632), 1, + aux_sym_object_pattern_repeat1, + [112270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(1513), 1, + sym_identifier, + ACTIONS(1511), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [112283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112049] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3945), 1, - sym__call_signature, - [112068] = 6, + [112294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, - anon_sym_AMP, - ACTIONS(6167), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(6339), 1, - anon_sym_as, - ACTIONS(6341), 1, - anon_sym_RBRACK, - [112087] = 6, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3732), 1, + sym__initializer, + ACTIONS(6305), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3204), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [112106] = 2, + ACTIONS(2371), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 5, + ACTIONS(5393), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [112117] = 2, + STATE(3668), 1, + sym__initializer, + ACTIONS(6307), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 5, + ACTIONS(1439), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112128] = 2, + [112346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 5, + ACTIONS(2411), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112139] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6343), 1, - anon_sym_BQUOTE, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, - sym__template_chars, - STATE(3211), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [112156] = 2, + [112357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 5, + ACTIONS(6309), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112167] = 5, + [112368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6349), 2, + ACTIONS(2359), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [112184] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(6351), 1, - anon_sym_EQ_GT, - STATE(3837), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [112199] = 2, + ACTIONS(1545), 1, + sym_identifier, + ACTIONS(1543), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [112392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 5, + ACTIONS(2455), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112210] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(3338), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [112229] = 2, + [112403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 5, + ACTIONS(2363), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6354), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6356), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [112253] = 6, + [112414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6311), 1, anon_sym_SEMI, - ACTIONS(6360), 1, + ACTIONS(6313), 1, sym__automatic_semicolon, - ACTIONS(6362), 1, + ACTIONS(6315), 1, sym__function_signature_automatic_semicolon, - STATE(1857), 1, + STATE(3209), 1, sym_statement_block, - [112272] = 2, + [112433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4717), 5, - anon_sym_EQ, + ACTIONS(6317), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [112283] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3158), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [112302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3908), 1, - sym__call_signature, - [112321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(6364), 1, - anon_sym_EQ_GT, - STATE(4031), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [112336] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1224), 1, - anon_sym_LBRACE, - ACTIONS(5919), 1, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5586), 1, anon_sym_extends, - STATE(648), 1, - sym_object_type, - STATE(3585), 1, - sym_extends_type_clause, - [112355] = 6, + ACTIONS(6321), 1, + anon_sym_PIPE, + ACTIONS(6319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5864), 1, + ACTIONS(4493), 5, anon_sym_EQ, - ACTIONS(6367), 1, anon_sym_COMMA, - ACTIONS(6369), 1, - anon_sym_RBRACE, - STATE(3676), 1, - aux_sym_enum_body_repeat1, - STATE(4072), 1, - sym__initializer, - [112374] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [112472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3961), 1, - sym__call_signature, - [112393] = 6, + ACTIONS(2363), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3771), 1, + STATE(3798), 1, sym__call_signature, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - [112412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_GT, - ACTIONS(6033), 1, - sym_jsx_identifier, - STATE(2564), 1, - sym_nested_identifier, - STATE(2790), 1, - sym_jsx_namespace_name, - [112431] = 4, + [112502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(4719), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6371), 1, - anon_sym_EQ_GT, - STATE(4031), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [112446] = 6, + anon_sym_QMARK, + [112513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3896), 1, - sym__call_signature, - [112465] = 2, + ACTIONS(6323), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1514), 5, + ACTIONS(6325), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112476] = 4, + [112535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(6374), 1, - anon_sym_EQ_GT, - STATE(3837), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [112491] = 4, + ACTIONS(2363), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - STATE(3694), 1, + STATE(3772), 1, sym__initializer, - ACTIONS(6377), 3, + ACTIONS(6327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112506] = 4, + [112561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3699), 1, - sym__initializer, - ACTIONS(6379), 3, + ACTIONS(2439), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [112521] = 2, + anon_sym_PIPE_RBRACE, + [112572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 5, + ACTIONS(2183), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112532] = 6, + [112583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, - anon_sym_LBRACE, - ACTIONS(6383), 1, - anon_sym_SEMI, - ACTIONS(6385), 1, - sym__automatic_semicolon, - ACTIONS(6387), 1, - sym__function_signature_automatic_semicolon, - STATE(144), 1, - sym_statement_block, - [112551] = 6, + ACTIONS(6329), 1, + anon_sym_BQUOTE, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6333), 1, + sym__template_chars, + STATE(3383), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3885), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [112570] = 6, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6333), 1, + sym__template_chars, + ACTIONS(6335), 1, + anon_sym_BQUOTE, + STATE(3383), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3344), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [112589] = 2, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6337), 1, + anon_sym_BQUOTE, + ACTIONS(6339), 1, + sym__template_chars, + STATE(3201), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 5, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6341), 1, + anon_sym_BQUOTE, + ACTIONS(6343), 1, + sym__template_chars, + STATE(3294), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5926), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112600] = 2, + [112662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 5, + ACTIONS(6345), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112611] = 4, + [112673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(6389), 1, + ACTIONS(5928), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3582), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [112626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(6391), 1, - sym_identifier, - STATE(3835), 2, - sym__module_export_name, - sym_string, - [112643] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6393), 5, + ACTIONS(5926), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112654] = 6, + [112695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3782), 1, + STATE(3311), 1, sym__call_signature, - STATE(4053), 1, + STATE(3878), 1, sym_type_parameters, - [112673] = 5, + [112714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(6395), 1, - sym_identifier, - STATE(3891), 2, - sym__module_export_name, - sym_string, - [112690] = 6, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + anon_sym_SEMI, + ACTIONS(6349), 1, + sym__automatic_semicolon, + ACTIONS(6351), 1, + sym__function_signature_automatic_semicolon, + STATE(1958), 1, + sym_statement_block, + [112733] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3216), 1, + STATE(3237), 1, sym__call_signature, - STATE(3882), 1, + STATE(3935), 1, sym_type_parameters, - [112709] = 2, + [112752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 5, + ACTIONS(5928), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112720] = 6, + [112763] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3962), 1, + sym__call_signature, + [112782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, + ACTIONS(1401), 1, anon_sym_LBRACE, - ACTIONS(6397), 1, + ACTIONS(6353), 1, anon_sym_SEMI, - ACTIONS(6399), 1, + ACTIONS(6355), 1, sym__automatic_semicolon, - ACTIONS(6401), 1, + ACTIONS(6357), 1, sym__function_signature_automatic_semicolon, - STATE(3232), 1, + STATE(165), 1, sym_statement_block, - [112739] = 3, + [112801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(2211), 5, sym__automatic_semicolon, - ACTIONS(1425), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112752] = 6, - ACTIONS(3), 1, + [112812] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(6359), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3187), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [112771] = 6, - ACTIONS(3), 1, + [112823] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(4192), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3838), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [112790] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(6314), 1, - anon_sym_PIPE, - ACTIONS(6403), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112807] = 6, + [112834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(6383), 1, + ACTIONS(6353), 1, anon_sym_SEMI, - ACTIONS(6385), 1, + ACTIONS(6355), 1, sym__automatic_semicolon, - ACTIONS(6387), 1, + ACTIONS(6357), 1, sym__function_signature_automatic_semicolon, - STATE(604), 1, + STATE(1973), 1, sym_statement_block, - [112826] = 2, + [112853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 5, - sym__automatic_semicolon, + ACTIONS(5987), 1, + anon_sym_EQ, + ACTIONS(6361), 1, anon_sym_COMMA, + ACTIONS(6363), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112837] = 5, + STATE(3720), 1, + aux_sym_enum_body_repeat1, + STATE(4021), 1, + sym__initializer, + [112872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(6314), 1, - anon_sym_PIPE, - ACTIONS(6405), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112854] = 6, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3024), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [112891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1277), 1, + ACTIONS(6365), 1, + sym_identifier, + ACTIONS(6367), 4, anon_sym_LBRACE, - ACTIONS(5919), 1, - anon_sym_extends, - STATE(3208), 1, - sym_object_type, - STATE(3756), 1, - sym_extends_type_clause, - [112873] = 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [112904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 5, + ACTIONS(1463), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112884] = 4, + [112915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3660), 1, - sym__initializer, - ACTIONS(6407), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [112899] = 2, + ACTIONS(6171), 1, + anon_sym_COLON, + ACTIONS(6369), 1, + anon_sym_EQ_GT, + STATE(3932), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [112930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 5, + ACTIONS(2299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112910] = 2, + [112941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6409), 5, + ACTIONS(2243), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112921] = 6, + [112952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(2921), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [112940] = 2, + ACTIONS(6171), 1, + anon_sym_COLON, + ACTIONS(6372), 1, + anon_sym_EQ_GT, + STATE(4080), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [112967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3672), 1, + sym__initializer, + ACTIONS(6375), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3841), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [112970] = 2, + [112982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 5, + ACTIONS(1453), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - ACTIONS(6383), 1, - anon_sym_SEMI, - ACTIONS(6385), 1, - sym__automatic_semicolon, - ACTIONS(6387), 1, - sym__function_signature_automatic_semicolon, - STATE(1908), 1, - sym_statement_block, - [113000] = 4, + [112993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(6377), 5, anon_sym_EQ, - STATE(3619), 1, - sym__initializer, - ACTIONS(6411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [113015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1582), 3, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [113028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3175), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [113047] = 2, + anon_sym_extends, + anon_sym_implements, + [113004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 5, + ACTIONS(2339), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(6413), 1, - anon_sym_EQ_GT, - STATE(4031), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [113073] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3875), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [113092] = 5, + [113015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6416), 1, - anon_sym_BQUOTE, - ACTIONS(6418), 1, + ACTIONS(6331), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6421), 1, + ACTIONS(6333), 1, sym__template_chars, - STATE(3211), 2, + ACTIONS(6379), 1, + anon_sym_BQUOTE, + STATE(3383), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [113109] = 6, + [113032] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(6424), 1, - anon_sym_class, - ACTIONS(6426), 1, + ACTIONS(6089), 1, anon_sym_abstract, - STATE(1113), 1, + ACTIONS(6381), 1, + anon_sym_class, + STATE(1112), 1, aux_sym_export_statement_repeat1, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - [113128] = 2, + [113051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 5, + ACTIONS(2355), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113139] = 2, + [113062] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4120), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 5, + ACTIONS(6383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113150] = 6, + [113084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(2971), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [113169] = 6, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3678), 1, + sym__initializer, + ACTIONS(6385), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [113099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(210), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1224), 1, + anon_sym_LBRACE, + ACTIONS(5965), 1, + anon_sym_extends, + STATE(716), 1, + sym_object_type, + STATE(3756), 1, + sym_extends_type_clause, + [113118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6387), 1, anon_sym_SEMI, - ACTIONS(6360), 1, + ACTIONS(6389), 1, sym__automatic_semicolon, - ACTIONS(6362), 1, + ACTIONS(6391), 1, sym__function_signature_automatic_semicolon, - STATE(611), 1, + STATE(3251), 1, sym_statement_block, - [113188] = 5, + [113137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, + ACTIONS(4699), 1, + sym__automatic_semicolon, + ACTIONS(1557), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [113150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [113161] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4049), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, anon_sym_AMP, - ACTIONS(5545), 1, + ACTIONS(5586), 1, anon_sym_extends, - ACTIONS(6314), 1, + ACTIONS(6321), 1, anon_sym_PIPE, - ACTIONS(6432), 2, + ACTIONS(6393), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113205] = 6, + [113189] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6395), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [113211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(6397), 1, + sym_identifier, + STATE(3908), 2, + sym__module_export_name, + sym_string, + [113228] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4033), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113239] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(3952), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3980), 1, + STATE(3374), 1, sym__call_signature, - [113224] = 6, + STATE(3878), 1, + sym_type_parameters, + [113269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4030), 1, + STATE(2941), 1, sym__call_signature, - [113243] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, - anon_sym_BQUOTE, - ACTIONS(6436), 1, - sym__template_chars, - STATE(3150), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [113260] = 2, - ACTIONS(3), 1, + STATE(3935), 1, + sym_type_parameters, + [113288] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(5951), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113271] = 6, + ACTIONS(6399), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3981), 1, + STATE(4052), 1, sym__call_signature, - [113290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - STATE(3959), 1, - sym_type_annotation, - ACTIONS(3037), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [113305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1556), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [113318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(6438), 1, - anon_sym_EQ_GT, - STATE(3837), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [113333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113344] = 2, + [113318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 5, + ACTIONS(6401), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113355] = 6, + [113329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3154), 1, - sym__call_signature, - STATE(4053), 1, + STATE(3859), 1, sym_type_parameters, - [113374] = 6, + STATE(3910), 1, + sym__call_signature, + [113348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3865), 1, - sym__call_signature, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - [113393] = 2, + STATE(3904), 1, + sym__call_signature, + [113367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 5, + ACTIONS(5832), 1, + anon_sym_LBRACE, + ACTIONS(6353), 1, + anon_sym_SEMI, + ACTIONS(6355), 1, + sym__automatic_semicolon, + ACTIONS(6357), 1, + sym__function_signature_automatic_semicolon, + STATE(599), 1, + sym_statement_block, + [113386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(6321), 1, + anon_sym_PIPE, + ACTIONS(6403), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113404] = 6, + [113403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(3990), 1, + STATE(3890), 1, sym__call_signature, - [113423] = 3, + [113422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(6405), 5, sym__automatic_semicolon, - ACTIONS(1542), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113436] = 3, + [113433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, - sym__automatic_semicolon, - ACTIONS(1504), 4, + ACTIONS(1553), 1, + anon_sym_DOT, + ACTIONS(3442), 2, + anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(3444), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113449] = 3, + anon_sym_LBRACE_PIPE, + [113448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6443), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [113462] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3852), 1, + sym__call_signature, + STATE(3859), 1, + sym_type_parameters, + [113467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5953), 5, + ACTIONS(1567), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113473] = 2, + [113478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6445), 5, + ACTIONS(6139), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_PIPE, + ACTIONS(6143), 1, + anon_sym_extends, + ACTIONS(6407), 1, + anon_sym_as, + ACTIONS(6409), 1, + anon_sym_RBRACK, + [113497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2207), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113484] = 6, + [113508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3221), 1, - sym__call_signature, - STATE(4053), 1, + STATE(3859), 1, sym_type_parameters, - [113503] = 6, + STATE(3922), 1, + sym__call_signature, + [113527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(2860), 1, + STATE(3361), 1, sym__call_signature, - STATE(4053), 1, + STATE(3935), 1, sym_type_parameters, - [113522] = 6, + [113546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 1, - sym_identifier, - ACTIONS(6449), 1, - anon_sym_GT, - ACTIONS(6451), 1, - sym_jsx_identifier, - STATE(2575), 1, - sym_nested_identifier, - STATE(2806), 1, - sym_jsx_namespace_name, - [113541] = 4, + ACTIONS(2195), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [113557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3681), 1, - sym__initializer, - ACTIONS(6453), 3, + ACTIONS(5920), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [113556] = 6, + anon_sym_PIPE_RBRACE, + [113568] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(3960), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [113579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4013), 1, + STATE(3106), 1, sym__call_signature, - [113575] = 2, + STATE(3878), 1, + sym_type_parameters, + [113598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113586] = 6, + ACTIONS(6171), 1, + anon_sym_COLON, + ACTIONS(6411), 1, + anon_sym_EQ_GT, + STATE(3932), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [113613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6414), 1, + anon_sym_BQUOTE, + ACTIONS(6416), 1, + sym__template_chars, + STATE(3172), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [113630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4066), 1, + STATE(3830), 1, sym__call_signature, - [113605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6455), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113616] = 2, + STATE(3859), 1, + sym_type_parameters, + [113649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 5, + ACTIONS(5844), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113627] = 2, + [113660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6457), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113638] = 2, + ACTIONS(6171), 1, + anon_sym_COLON, + ACTIONS(6418), 1, + anon_sym_EQ_GT, + STATE(4080), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [113675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 5, + ACTIONS(2395), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113649] = 2, + [113686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5949), 5, - sym__automatic_semicolon, + ACTIONS(6421), 1, + anon_sym_EQ, + ACTIONS(3038), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [113660] = 2, + anon_sym_COLON, + anon_sym_RBRACK, + [113699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6459), 5, + ACTIONS(2119), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113671] = 6, + [113710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(2984), 1, + STATE(3435), 1, sym__call_signature, - STATE(3882), 1, + STATE(3878), 1, sym_type_parameters, - [113690] = 2, + [113729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5953), 5, + ACTIONS(2431), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113701] = 2, + [113740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 5, + ACTIONS(1443), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113712] = 2, + [113751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5951), 5, + ACTIONS(4689), 1, sym__automatic_semicolon, + ACTIONS(1427), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4092), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [113736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4088), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [113749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3670), 1, - sym__initializer, - ACTIONS(6463), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [113764] = 5, + [113764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(6314), 1, - anon_sym_PIPE, - ACTIONS(6465), 2, + ACTIONS(4687), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [113781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_COLON, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4825), 1, + ACTIONS(1571), 4, anon_sym_COMMA, - ACTIONS(6467), 1, anon_sym_RBRACE, - STATE(3640), 1, - aux_sym_object_pattern_repeat1, - [113800] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6469), 1, - anon_sym_BQUOTE, - ACTIONS(6471), 1, - sym__template_chars, - STATE(3400), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [113817] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [113777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6473), 5, + ACTIONS(6423), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113828] = 3, + [113788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(2127), 5, sym__automatic_semicolon, - ACTIONS(1600), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113841] = 6, + [113799] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6296), 1, + anon_sym_abstract, + ACTIONS(6425), 1, + anon_sym_class, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [113818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(2907), 1, - sym__call_signature, - STATE(4053), 1, + STATE(3859), 1, sym_type_parameters, - [113860] = 5, + STATE(3874), 1, + sym__call_signature, + [113837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, - sym__template_chars, - ACTIONS(6475), 1, - anon_sym_BQUOTE, - STATE(3211), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [113877] = 3, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(2927), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [113856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 2, - anon_sym_SLASH, + ACTIONS(4033), 1, sym_identifier, - ACTIONS(4024), 3, + ACTIONS(4035), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [113890] = 2, + anon_sym_SLASH_GT, + [113869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4008), 1, + sym__call_signature, + [113888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113901] = 2, + [113899] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3873), 1, + sym__call_signature, + [113918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 5, + ACTIONS(2131), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113912] = 2, + [113929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3401), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [113948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113923] = 4, + [113959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3735), 1, - sym__initializer, - ACTIONS(6479), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [113938] = 5, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6427), 1, + anon_sym_BQUOTE, + ACTIONS(6429), 1, + sym__template_chars, + STATE(3171), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [113976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - ACTIONS(6481), 1, + ACTIONS(6395), 1, sym_identifier, - STATE(4425), 2, - sym__module_export_name, - sym_string, - [113955] = 2, + ACTIONS(6431), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [113989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3225), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [114008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [113966] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [114019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 5, + ACTIONS(2107), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [113977] = 4, + [114030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 1, - anon_sym_in, - ACTIONS(6489), 1, - anon_sym_of, - ACTIONS(6485), 3, + ACTIONS(5844), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [113992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6013), 1, - anon_sym_class, - ACTIONS(6015), 1, - anon_sym_abstract, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [114011] = 2, + anon_sym_PIPE_RBRACE, + [114041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4220), 5, + ACTIONS(4600), 5, anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - [114022] = 2, + anon_sym_QMARK, + [114052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(4600), 5, anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - [114033] = 5, + anon_sym_QMARK, + [114063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6491), 1, - anon_sym_BQUOTE, - ACTIONS(6493), 1, - sym__template_chars, - STATE(3263), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [114050] = 6, + ACTIONS(4600), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [114074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(2902), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [114069] = 4, + ACTIONS(2107), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [114085] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - anon_sym_in, - ACTIONS(6497), 1, - anon_sym_of, - ACTIONS(6485), 3, + sym_comment, + ACTIONS(6205), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [114084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3858), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [114103] = 6, + [114096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(2895), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [114122] = 2, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(6321), 1, + anon_sym_PIPE, + ACTIONS(6433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [114113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 5, - anon_sym_EQ, + ACTIONS(6435), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [114133] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [114124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6015), 1, - anon_sym_abstract, - ACTIONS(6499), 1, - anon_sym_class, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [114152] = 6, + ACTIONS(6437), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [114135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(2890), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [114171] = 5, + ACTIONS(6185), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [114146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_SQUOTE, - ACTIONS(6501), 1, - sym_identifier, - STATE(3729), 2, - sym__module_export_name, - sym_string, - [114188] = 6, + ACTIONS(4682), 1, + sym__automatic_semicolon, + ACTIONS(1483), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [114159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3862), 1, + STATE(2915), 1, sym__call_signature, - STATE(3886), 1, + STATE(3935), 1, sym_type_parameters, - [114207] = 3, + [114178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3861), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [114220] = 2, + ACTIONS(3210), 1, + anon_sym_COLON, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4812), 1, + anon_sym_COMMA, + ACTIONS(6439), 1, + anon_sym_RBRACE, + STATE(3642), 1, + aux_sym_object_pattern_repeat1, + [114197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 5, + ACTIONS(5945), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114231] = 2, + [114208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 5, + ACTIONS(2255), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114242] = 2, + [114219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 5, + ACTIONS(2283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114253] = 2, + [114230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3811), 1, + sym__initializer, + ACTIONS(6441), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 5, + ACTIONS(6443), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114264] = 2, + [114256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 5, + ACTIONS(3977), 1, + sym_identifier, + ACTIONS(3979), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [114269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114275] = 2, + [114280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 5, + ACTIONS(6445), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114286] = 2, + [114291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 5, + ACTIONS(4725), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [114302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2235), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114297] = 3, + [114313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 2, - anon_sym_SLASH, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(6447), 1, sym_identifier, - ACTIONS(4211), 3, - anon_sym_LBRACE, + STATE(3712), 2, + sym__module_export_name, + sym_string, + [114330] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6331), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6333), 1, + sym__template_chars, + ACTIONS(6449), 1, + anon_sym_BQUOTE, + STATE(3383), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [114347] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6451), 1, + sym_identifier, + ACTIONS(6453), 1, anon_sym_GT, + ACTIONS(6455), 1, sym_jsx_identifier, - [114310] = 2, + STATE(3940), 1, + sym_nested_identifier, + STATE(4289), 1, + sym_jsx_namespace_name, + [114366] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(2901), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [114385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 5, + ACTIONS(6057), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114321] = 2, + [114396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6503), 5, + ACTIONS(5953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114332] = 6, + [114407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(2693), 1, sym_formal_parameters, - STATE(3047), 1, + STATE(2900), 1, sym__call_signature, - STATE(3882), 1, + STATE(3935), 1, sym_type_parameters, - [114351] = 4, + [114426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3739), 1, - sym__initializer, - ACTIONS(6505), 3, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6089), 1, + anon_sym_abstract, + ACTIONS(6265), 1, + anon_sym_class, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [114445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(6457), 1, + sym_identifier, + STATE(4263), 2, + sym__module_export_name, + sym_string, + [114462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(2897), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [114481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2287), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [114366] = 2, + anon_sym_PIPE_RBRACE, + [114492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 5, + ACTIONS(5945), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114377] = 2, + [114503] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(3182), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [114522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114388] = 2, + [114533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 5, + ACTIONS(5882), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [114399] = 2, + [114544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3949), 1, + sym__call_signature, + [114563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6459), 1, + sym_identifier, + ACTIONS(6461), 1, + anon_sym_GT, + ACTIONS(6463), 1, + sym_jsx_identifier, + STATE(4082), 1, + sym_nested_identifier, + STATE(4094), 1, + sym_jsx_namespace_name, + [114582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3704), 1, + sym__initializer, + ACTIONS(6465), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [114410] = 2, + [114597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6507), 5, - anon_sym_EQ, + ACTIONS(1401), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [114421] = 2, + ACTIONS(6347), 1, + anon_sym_SEMI, + ACTIONS(6349), 1, + sym__automatic_semicolon, + ACTIONS(6351), 1, + sym__function_signature_automatic_semicolon, + STATE(144), 1, + sym_statement_block, + [114616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 5, + ACTIONS(4192), 1, + sym_identifier, + ACTIONS(4194), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [114629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6006), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114432] = 2, + [114640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 5, + ACTIONS(2291), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114443] = 2, + [114651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 5, + ACTIONS(1581), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114454] = 2, + [114662] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6467), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [114673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 5, + ACTIONS(6469), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114465] = 2, + [114684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3719), 1, + sym__initializer, + ACTIONS(6471), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [114476] = 2, + [114699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2151), 5, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6473), 2, + anon_sym_COMMA, + anon_sym_GT, + [114716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114487] = 2, + [114727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 5, + ACTIONS(2283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114498] = 2, + [114738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 5, + ACTIONS(2283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114509] = 3, + [114749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3861), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [114522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3859), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3861), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [114535] = 6, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3082), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [114768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3192), 1, + STATE(3829), 1, sym__call_signature, - STATE(3882), 1, + STATE(3859), 1, sym_type_parameters, - [114554] = 4, + [114787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3745), 1, - sym__initializer, - ACTIONS(6509), 3, + ACTIONS(6475), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [114569] = 3, + anon_sym_PIPE_RBRACE, + [114798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6511), 2, - anon_sym_SLASH, + ACTIONS(6477), 1, sym_identifier, - ACTIONS(6513), 3, + ACTIONS(6479), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [114582] = 3, + anon_sym_SLASH_GT, + [114811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3865), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [114595] = 2, + ACTIONS(2311), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [114822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 5, + ACTIONS(6481), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114606] = 3, + [114833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_SLASH, + ACTIONS(4137), 1, sym_identifier, - ACTIONS(3861), 3, + ACTIONS(4139), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [114619] = 2, + anon_sym_SLASH_GT, + [114846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 5, + ACTIONS(6483), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114630] = 5, + [114857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(2283), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [114868] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6485), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [114879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4004), 1, + sym__call_signature, + [114898] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6467), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(6517), 1, + [114909] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6467), 5, anon_sym_LBRACE, - STATE(3779), 1, - sym_type_arguments, - ACTIONS(6519), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [114647] = 3, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [114920] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6467), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [114931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 2, - anon_sym_SLASH, + ACTIONS(4141), 1, sym_identifier, - ACTIONS(3869), 3, + ACTIONS(4143), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [114660] = 6, + anon_sym_SLASH_GT, + [114944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(6487), 5, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3872), 1, - sym__call_signature, - STATE(3886), 1, - sym_type_parameters, - [114679] = 2, + anon_sym_extends, + anon_sym_implements, + [114955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6171), 1, anon_sym_COLON, - anon_sym_QMARK, - [114690] = 2, + ACTIONS(6489), 1, + anon_sym_EQ_GT, + STATE(4080), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [114970] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4196), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [114981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 5, + ACTIONS(2451), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114701] = 2, + [114992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 5, + ACTIONS(2435), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114712] = 2, + [115003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(6321), 1, + anon_sym_PIPE, + ACTIONS(6492), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [115020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 5, + ACTIONS(5987), 1, anon_sym_EQ, + ACTIONS(6494), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [114723] = 2, + ACTIONS(6496), 1, + anon_sym_RBRACE, + STATE(3735), 1, + aux_sym_enum_body_repeat1, + STATE(4021), 1, + sym__initializer, + [115039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 5, - sym__automatic_semicolon, + ACTIONS(3019), 1, + anon_sym_COLON, + STATE(3898), 1, + sym_type_annotation, + ACTIONS(3062), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [114734] = 2, + anon_sym_RBRACK, + [115054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 5, + ACTIONS(6225), 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, - [114745] = 2, + [115065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 5, + ACTIONS(2315), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114756] = 5, - ACTIONS(3), 1, + [115076] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, - sym__template_chars, - ACTIONS(6521), 1, - anon_sym_BQUOTE, - STATE(3211), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [114773] = 2, + ACTIONS(4192), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 5, - sym__automatic_semicolon, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(6498), 1, + anon_sym_LBRACE, + STATE(3595), 1, + sym_type_arguments, + ACTIONS(6500), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [114784] = 2, + anon_sym_LBRACE_PIPE, + [115104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6523), 5, + ACTIONS(2331), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114795] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3378), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [114814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4655), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [114825] = 2, + [115115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 5, + ACTIONS(6502), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114836] = 2, + [115126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6525), 5, + ACTIONS(6504), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [114847] = 2, + [115137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5945), 5, + ACTIONS(6506), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114858] = 4, + [115148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3609), 1, - sym__initializer, - ACTIONS(6527), 3, + ACTIONS(5961), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [114873] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(3404), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [114892] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6529), 1, - anon_sym_BQUOTE, - ACTIONS(6531), 1, - sym__template_chars, - STATE(3331), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [114909] = 2, + anon_sym_PIPE_RBRACE, + [115159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 5, - anon_sym_EQ, + ACTIONS(6508), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [114920] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [115170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 5, - anon_sym_EQ, + ACTIONS(5842), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [114931] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [115181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_SEMI, - ACTIONS(6360), 1, - sym__automatic_semicolon, - ACTIONS(6362), 1, - sym__function_signature_automatic_semicolon, - STATE(161), 1, - sym_statement_block, - [114950] = 2, + ACTIONS(6510), 1, + sym_identifier, + ACTIONS(6512), 1, + anon_sym_GT, + ACTIONS(6514), 1, + sym_jsx_identifier, + STATE(3989), 1, + sym_nested_identifier, + STATE(4194), 1, + sym_jsx_namespace_name, + [115200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 5, + ACTIONS(6516), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114961] = 2, + [115211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 5, + ACTIONS(5842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114972] = 2, + [115222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(3306), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [115241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5961), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [114983] = 6, + [115252] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4192), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(6171), 1, anon_sym_COLON, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_COMMA, - ACTIONS(6533), 1, - anon_sym_RBRACE, - STATE(3598), 1, - aux_sym_object_pattern_repeat1, - [115002] = 2, + ACTIONS(6518), 1, + anon_sym_EQ_GT, + STATE(4080), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [115278] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6477), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115289] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2693), 1, + sym_formal_parameters, + STATE(3745), 1, + sym__call_signature, + STATE(3935), 1, + sym_type_parameters, + [115308] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4192), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115319] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + ACTIONS(6521), 1, + sym_identifier, + STATE(4035), 2, + sym__module_export_name, + sym_string, + [115336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 5, + ACTIONS(6523), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115013] = 5, + [115347] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6525), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6535), 2, - anon_sym_COMMA, - anon_sym_GT, - [115030] = 6, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4044), 1, + sym__call_signature, + [115377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6426), 1, - anon_sym_abstract, - ACTIONS(6537), 1, - anon_sym_class, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [115049] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(3925), 1, + sym__call_signature, + [115396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115060] = 2, + ACTIONS(6527), 1, + sym_identifier, + ACTIONS(6529), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [115409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3750), 1, + sym__initializer, + ACTIONS(6531), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115071] = 2, + [115424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5832), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115082] = 6, + ACTIONS(6349), 1, + sym__automatic_semicolon, + ACTIONS(6351), 1, + sym__function_signature_automatic_semicolon, + STATE(598), 1, + sym_statement_block, + [115443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(4046), 1, + STATE(4057), 1, sym__call_signature, - [115101] = 2, + [115462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 5, + ACTIONS(2419), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115112] = 2, + [115473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 5, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6535), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [115486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2343), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115123] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3893), 1, - sym__call_signature, - [115142] = 3, + [115497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 2, - anon_sym_SLASH, + ACTIONS(4192), 1, sym_identifier, - ACTIONS(6541), 3, + ACTIONS(4194), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [115155] = 2, + anon_sym_SLASH_GT, + [115510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [115166] = 2, + ACTIONS(4192), 1, + sym_identifier, + ACTIONS(4194), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [115523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 5, + ACTIONS(2403), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115177] = 2, + [115534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + sym_identifier, + ACTIONS(6539), 1, + anon_sym_GT, + ACTIONS(6541), 1, + sym_jsx_identifier, + STATE(3851), 1, + sym_nested_identifier, + STATE(4416), 1, + sym_jsx_namespace_name, + [115553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6543), 1, + anon_sym_BQUOTE, + ACTIONS(6545), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6548), 1, + sym__template_chars, + STATE(3383), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [115570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 5, + ACTIONS(2399), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115188] = 2, + [115581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 5, + ACTIONS(5393), 1, + anon_sym_EQ, + STATE(3753), 1, + sym__initializer, + ACTIONS(6551), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115199] = 2, + [115596] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4137), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5945), 5, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(6321), 1, + anon_sym_PIPE, + ACTIONS(6553), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115210] = 2, + [115624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 5, + ACTIONS(2219), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115221] = 4, + [115635] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4088), 1, + sym__call_signature, + [115654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(4425), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(6545), 1, - anon_sym_EQ_GT, - STATE(3837), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [115236] = 2, + [115665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5328), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115247] = 2, + ACTIONS(3621), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [115680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2419), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115258] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4078), 1, + sym__call_signature, + [115699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 5, + ACTIONS(2327), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115269] = 6, + [115710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2706), 1, - sym_formal_parameters, - STATE(3408), 1, - sym__call_signature, - STATE(3882), 1, - sym_type_parameters, - [115288] = 2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6557), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 5, + ACTIONS(2275), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115299] = 6, + [115738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4084), 1, + STATE(3041), 1, sym__call_signature, - [115318] = 6, + STATE(3878), 1, + sym_type_parameters, + [115757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3859), 1, sym_type_parameters, - STATE(4006), 1, + STATE(4084), 1, sym__call_signature, - [115337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1490), 1, - anon_sym_DOT, - ACTIONS(3649), 2, - anon_sym_LBRACE, - anon_sym_LT, - ACTIONS(3651), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [115352] = 5, + [115776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, + ACTIONS(6331), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6550), 1, + ACTIONS(6559), 1, anon_sym_BQUOTE, - ACTIONS(6552), 1, + ACTIONS(6561), 1, sym__template_chars, - STATE(3403), 2, + STATE(3429), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [115369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6554), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115380] = 2, + [115793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 5, + ACTIONS(1493), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115391] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - ACTIONS(6328), 1, - anon_sym_SEMI, - ACTIONS(6330), 1, - sym__automatic_semicolon, - ACTIONS(6332), 1, - sym__function_signature_automatic_semicolon, - STATE(1867), 1, - sym_statement_block, - [115410] = 6, + [115804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2953), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(4074), 1, + STATE(3208), 1, sym__call_signature, - [115429] = 3, + STATE(3878), 1, + sym_type_parameters, + [115823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4002), 3, + ACTIONS(3378), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [115442] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3940), 1, - sym__call_signature, - [115461] = 2, + ACTIONS(6311), 1, + anon_sym_SEMI, + ACTIONS(6313), 1, + sym__automatic_semicolon, + ACTIONS(6315), 1, + sym__function_signature_automatic_semicolon, + STATE(1901), 1, + sym_statement_block, + [115842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 5, + ACTIONS(1519), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115472] = 2, + [115853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 5, + ACTIONS(1533), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115483] = 2, + [115864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 5, + ACTIONS(2263), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115494] = 2, + [115875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115505] = 6, + ACTIONS(4192), 1, + sym_identifier, + ACTIONS(4194), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [115888] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(3977), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + sym_identifier, + ACTIONS(4122), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [115912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(3023), 1, - sym__call_signature, - STATE(3882), 1, + STATE(3859), 1, sym_type_parameters, - [115524] = 2, + STATE(4045), 1, + sym__call_signature, + [115931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4049), 1, + sym_identifier, + ACTIONS(4051), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [115944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 5, + ACTIONS(6563), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115535] = 2, + [115955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 5, + ACTIONS(6567), 1, + anon_sym_in, + ACTIONS(6569), 1, + anon_sym_of, + ACTIONS(6565), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115546] = 2, + [115970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 5, + ACTIONS(6571), 1, + anon_sym_in, + ACTIONS(6573), 1, + anon_sym_of, + ACTIONS(6565), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115557] = 2, + [115985] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(4141), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, + anon_sym_LT, + [115996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 5, + ACTIONS(2271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115568] = 2, + [116007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 5, - sym__automatic_semicolon, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3188), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [116026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4693), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115579] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [116037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 2, - anon_sym_SLASH, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(4030), 3, + ACTIONS(3954), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [115592] = 2, + anon_sym_SLASH_GT, + [116050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5923), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115603] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4023), 1, + sym__call_signature, + [116069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3680), 1, - sym__initializer, - ACTIONS(6562), 3, + ACTIONS(5981), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [115618] = 2, + anon_sym_PIPE_RBRACE, + [116080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 5, + ACTIONS(4697), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [115629] = 6, + [116091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(3113), 1, sym_formal_parameters, - STATE(2979), 1, - sym__call_signature, - STATE(3882), 1, + STATE(3859), 1, sym_type_parameters, - [115648] = 6, + STATE(3955), 1, + sym__call_signature, + [116110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5359), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2706), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3116), 1, + STATE(3180), 1, sym__call_signature, - STATE(3882), 1, + STATE(3878), 1, sym_type_parameters, - [115667] = 2, + [116129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5927), 5, - sym__automatic_semicolon, + ACTIONS(4565), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115678] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [116140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4697), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [116151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4196), 1, + sym_identifier, + ACTIONS(4198), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [116164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 5, + ACTIONS(2303), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115689] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, - sym__template_chars, - ACTIONS(6564), 1, - anon_sym_BQUOTE, - STATE(3211), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [115706] = 6, + [116175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(2953), 1, - sym_formal_parameters, - STATE(3886), 1, - sym_type_parameters, - STATE(3918), 1, - sym__call_signature, - [115725] = 6, + ACTIONS(4697), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [116186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5399), 1, anon_sym_LPAREN, - STATE(2672), 1, + STATE(2712), 1, sym_formal_parameters, - STATE(3393), 1, + STATE(2983), 1, sym__call_signature, - STATE(4053), 1, + STATE(3878), 1, sym_type_parameters, - [115744] = 5, + [116205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, + ACTIONS(6331), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, + ACTIONS(6333), 1, sym__template_chars, - ACTIONS(6566), 1, + ACTIONS(6575), 1, anon_sym_BQUOTE, - STATE(3211), 2, + STATE(3383), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [115761] = 2, + [116222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_formal_parameters, + STATE(3859), 1, + sym_type_parameters, + STATE(4002), 1, + sym__call_signature, + [116241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2411), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115772] = 2, + [116252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5931), 5, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [116265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2279), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4630), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [115794] = 6, - ACTIONS(3), 1, + [116276] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(6577), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_formal_parameters, - STATE(3405), 1, - sym__call_signature, - STATE(4053), 1, - sym_type_parameters, - [115813] = 6, + [116287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(6397), 1, + ACTIONS(6387), 1, anon_sym_SEMI, - ACTIONS(6399), 1, + ACTIONS(6389), 1, sym__automatic_semicolon, - ACTIONS(6401), 1, + ACTIONS(6391), 1, sym__function_signature_automatic_semicolon, - STATE(1836), 1, + STATE(1888), 1, sym_statement_block, - [115832] = 3, + [116306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 1, - anon_sym_EQ, - ACTIONS(3028), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [115845] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3184), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [116325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 5, + ACTIONS(5393), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [115856] = 2, + STATE(3575), 1, + sym__initializer, + ACTIONS(6579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [116340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 5, + ACTIONS(2303), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115867] = 2, + [116351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [115878] = 2, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2712), 1, + sym_formal_parameters, + STATE(3158), 1, + sym__call_signature, + STATE(3878), 1, + sym_type_parameters, + [116370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115889] = 4, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6087), 1, + anon_sym_class, + ACTIONS(6089), 1, + anon_sym_abstract, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [116389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5393), 1, anon_sym_EQ, - STATE(3734), 1, + STATE(3600), 1, sym__initializer, - ACTIONS(6572), 3, + ACTIONS(6581), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115904] = 2, + [116404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [115915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5933), 5, + ACTIONS(2423), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [115926] = 5, + [116415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 1, + ACTIONS(1515), 1, + anon_sym_DOT, + ACTIONS(3442), 2, anon_sym_LBRACE, - ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(3444), 2, anon_sym_COMMA, - ACTIONS(6581), 1, anon_sym_LBRACE_PIPE, - STATE(3417), 1, - aux_sym_extends_type_clause_repeat1, - [115942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6583), 1, - anon_sym_RBRACK, - [115958] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6585), 1, - anon_sym_COMMA, - STATE(3513), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6587), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [115972] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6589), 1, - anon_sym_RBRACK, - [115988] = 4, + [116430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - anon_sym_COMMA, - STATE(3515), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6591), 2, + ACTIONS(2411), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [116002] = 5, + anon_sym_PIPE_RBRACE, + [116441] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6583), 1, + anon_sym_SQUOTE, + STATE(3542), 1, + aux_sym_string_repeat2, + ACTIONS(6585), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [116455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6593), 1, - anon_sym_RBRACK, - [116018] = 5, + ACTIONS(6587), 1, + anon_sym_COLON, + [116471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2857), 1, - sym_formal_parameters, - STATE(4001), 1, + STATE(3896), 1, sym_type_parameters, - [116034] = 5, + STATE(4149), 1, + sym_formal_parameters, + [116487] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + STATE(3449), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6589), 2, + anon_sym_LBRACE, + anon_sym_implements, + [116501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6593), 1, + anon_sym_COMMA, + STATE(3449), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6591), 2, + anon_sym_LBRACE, + anon_sym_implements, + [116515] = 5, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6596), 1, + sym__glimmer_template_content, + ACTIONS(6598), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1404), 1, + sym_glimmer_closing_tag, + STATE(3569), 1, + aux_sym_glimmer_template_repeat1, + [116531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, + ACTIONS(1417), 1, anon_sym_COMMA, - ACTIONS(6595), 1, + ACTIONS(6600), 1, anon_sym_EQ, - ACTIONS(6597), 1, + ACTIONS(6602), 1, anon_sym_RBRACK, - STATE(3555), 1, + STATE(3650), 1, aux_sym_array_pattern_repeat1, - [116050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - sym_identifier, - ACTIONS(6601), 1, - sym_jsx_identifier, - STATE(3822), 1, - sym_nested_identifier, - STATE(4446), 1, - sym_jsx_namespace_name, - [116066] = 5, + [116547] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6603), 1, + ACTIONS(6604), 1, anon_sym_RPAREN, - [116082] = 4, + [116563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(6605), 1, - anon_sym_EQ_GT, - ACTIONS(3206), 2, + ACTIONS(2653), 1, anon_sym_LPAREN, - anon_sym_QMARK, - [116096] = 3, - ACTIONS(3), 1, + STATE(2851), 1, + sym_formal_parameters, + STATE(4016), 1, + sym_type_parameters, + [116579] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6607), 1, + ACTIONS(6606), 1, + anon_sym_SQUOTE, + STATE(3509), 1, + aux_sym_string_repeat2, + ACTIONS(6608), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - ACTIONS(6609), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [116108] = 4, - ACTIONS(3), 1, + [116593] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(4109), 1, - anon_sym_COMMA, - STATE(3451), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6612), 2, - anon_sym_LBRACE, - anon_sym_implements, - [116122] = 5, + ACTIONS(6606), 1, + anon_sym_DQUOTE, + STATE(3457), 1, + aux_sym_string_repeat1, + ACTIONS(6610), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [116607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3881), 1, - sym_type_parameters, - STATE(4278), 1, - sym_formal_parameters, - [116138] = 5, + ACTIONS(6612), 1, + anon_sym_EQ, + STATE(3991), 1, + sym__initializer, + ACTIONS(5659), 2, + anon_sym_in, + anon_sym_of, + [116621] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6614), 1, + anon_sym_DQUOTE, + STATE(3545), 1, + aux_sym_string_repeat1, + ACTIONS(6616), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [116635] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(6614), 1, + ACTIONS(6618), 1, anon_sym_class, - STATE(1113), 1, + STATE(1112), 1, aux_sym_export_statement_repeat1, - STATE(1150), 1, + STATE(1152), 1, sym_decorator, - [116154] = 5, + [116651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6616), 1, - anon_sym_QMARK, - [116170] = 5, - ACTIONS(3), 1, + ACTIONS(6620), 1, + anon_sym_RBRACK, + [116667] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6618), 1, - anon_sym_RPAREN, - [116186] = 5, - ACTIONS(3), 1, + ACTIONS(6622), 1, + anon_sym_SQUOTE, + STATE(3445), 1, + aux_sym_string_repeat2, + ACTIONS(6624), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [116681] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6620), 1, - sym_identifier, - STATE(2998), 1, - sym_nested_type_identifier, - STATE(3540), 1, - sym_generic_type, - STATE(4189), 1, - sym_nested_identifier, - [116202] = 4, + ACTIONS(6626), 1, + anon_sym_SQUOTE, + STATE(3542), 1, + aux_sym_string_repeat2, + ACTIONS(6585), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [116695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LT, - ACTIONS(5088), 1, - anon_sym_EQ_GT, - ACTIONS(3206), 2, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3872), 1, anon_sym_LPAREN, - anon_sym_QMARK, - [116216] = 5, + STATE(1841), 2, + sym_template_string, + sym_arguments, + [116709] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6628), 1, + anon_sym_SQUOTE, + STATE(3570), 1, + aux_sym_string_repeat2, + ACTIONS(6630), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [116723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3964), 1, - sym_type_parameters, - STATE(4349), 1, - sym_formal_parameters, - [116232] = 5, + ACTIONS(6632), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6634), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [116737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(6555), 1, + anon_sym_RBRACE, + ACTIONS(3621), 3, anon_sym_AMP, - ACTIONS(5403), 1, anon_sym_PIPE, - ACTIONS(5405), 1, anon_sym_extends, - ACTIONS(6622), 1, - anon_sym_RBRACK, - [116248] = 5, + [116749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(1120), 1, + anon_sym_BQUOTE, + ACTIONS(3270), 1, anon_sym_LPAREN, - STATE(2901), 1, - sym_formal_parameters, - STATE(3913), 1, - sym_type_parameters, - [116264] = 4, - ACTIONS(5577), 1, + STATE(1372), 2, + sym_template_string, + sym_arguments, + [116763] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6624), 1, + ACTIONS(6636), 1, anon_sym_SQUOTE, - STATE(3439), 1, + STATE(3542), 1, aux_sym_string_repeat2, - ACTIONS(6626), 2, + ACTIONS(6585), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [116278] = 4, - ACTIONS(5577), 1, + [116777] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6629), 1, + ACTIONS(6636), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3545), 1, aux_sym_string_repeat1, - ACTIONS(6631), 2, + ACTIONS(6616), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6585), 1, - anon_sym_COMMA, - STATE(3503), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6634), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [116306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6585), 1, - anon_sym_COMMA, - STATE(3504), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6636), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [116320] = 5, + [116791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(3967), 1, + STATE(3919), 1, sym_type_parameters, - STATE(4401), 1, + STATE(4109), 1, sym_formal_parameters, - [116336] = 4, + [116807] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6638), 1, - anon_sym_from, - STATE(3936), 1, - sym__from_clause, - ACTIONS(4094), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [116350] = 5, + anon_sym_COMMA, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(6081), 2, + anon_sym_LBRACE, + anon_sym_GT, + [116821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6640), 1, - anon_sym_QMARK, - [116366] = 5, - ACTIONS(3), 1, + ACTIONS(6641), 1, + anon_sym_RBRACK, + [116837] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6642), 1, - sym_identifier, - ACTIONS(6644), 1, - sym_jsx_identifier, - STATE(3970), 1, - sym_nested_identifier, - STATE(4258), 1, - sym_jsx_namespace_name, - [116382] = 5, + ACTIONS(6643), 1, + anon_sym_DQUOTE, + STATE(3507), 1, + aux_sym_string_repeat1, + ACTIONS(6645), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [116851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6646), 1, + ACTIONS(6647), 1, anon_sym_RBRACK, - [116398] = 3, + [116867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6389), 1, - anon_sym_RBRACE, - ACTIONS(3582), 3, + ACTIONS(5368), 1, anon_sym_AMP, + ACTIONS(5370), 1, anon_sym_PIPE, + ACTIONS(5372), 1, anon_sym_extends, - [116410] = 5, + ACTIONS(6649), 1, + anon_sym_RBRACK, + [116883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(6595), 1, + ACTIONS(5987), 1, anon_sym_EQ, - ACTIONS(6648), 1, - anon_sym_RBRACK, - STATE(3648), 1, - aux_sym_array_pattern_repeat1, - [116426] = 5, + STATE(4021), 1, + sym__initializer, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4002), 1, - sym_type_parameters, - STATE(4200), 1, - sym_formal_parameters, - [116442] = 4, + ACTIONS(6653), 1, + sym_escape_sequence, + ACTIONS(6655), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [116909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_COMMA, - STATE(3451), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6650), 2, + ACTIONS(6658), 1, anon_sym_LBRACE, - anon_sym_implements, - [116456] = 4, - ACTIONS(5577), 1, + ACTIONS(6660), 1, + anon_sym_COMMA, + ACTIONS(6663), 1, + anon_sym_LBRACE_PIPE, + STATE(3477), 1, + aux_sym_extends_type_clause_repeat1, + [116925] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6655), 1, + ACTIONS(6665), 1, anon_sym_SQUOTE, - STATE(3439), 1, + STATE(3542), 1, aux_sym_string_repeat2, - ACTIONS(6657), 2, + ACTIONS(6585), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [116470] = 4, - ACTIONS(5577), 1, + [116939] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6655), 1, + ACTIONS(6665), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3545), 1, aux_sym_string_repeat1, - ACTIONS(6659), 2, + ACTIONS(6616), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116484] = 4, - ACTIONS(5577), 1, + [116953] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6661), 1, + ACTIONS(6667), 1, anon_sym_SQUOTE, - STATE(3452), 1, + STATE(3478), 1, aux_sym_string_repeat2, - ACTIONS(6663), 2, + ACTIONS(6669), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [116498] = 4, - ACTIONS(5577), 1, + [116967] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6661), 1, + ACTIONS(6667), 1, anon_sym_DQUOTE, - STATE(3453), 1, + STATE(3479), 1, aux_sym_string_repeat1, - ACTIONS(6665), 2, + ACTIONS(6671), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116512] = 5, + [116981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6667), 1, - anon_sym_class, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [116528] = 4, + ACTIONS(6673), 1, + sym_identifier, + STATE(3349), 1, + sym_nested_type_identifier, + STATE(3733), 1, + sym_generic_type, + STATE(4178), 1, + sym_nested_identifier, + [116997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 1, + ACTIONS(5888), 1, anon_sym_COMMA, - STATE(3451), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6669), 2, + ACTIONS(6675), 1, anon_sym_LBRACE, - anon_sym_implements, - [116542] = 4, - ACTIONS(5577), 1, + ACTIONS(6677), 1, + anon_sym_LBRACE_PIPE, + STATE(3477), 1, + aux_sym_extends_type_clause_repeat1, + [117013] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6679), 1, anon_sym_SQUOTE, - STATE(3439), 1, + STATE(3467), 1, aux_sym_string_repeat2, - ACTIONS(6657), 2, + ACTIONS(6681), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [116556] = 5, + [117027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_type_parameters, - STATE(4095), 1, - sym_formal_parameters, - [116572] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6671), 1, - anon_sym_DQUOTE, - STATE(3440), 1, - aux_sym_string_repeat1, - ACTIONS(6659), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [116586] = 5, + ACTIONS(5888), 1, + anon_sym_COMMA, + ACTIONS(6683), 1, + anon_sym_LBRACE, + ACTIONS(6685), 1, + anon_sym_LBRACE_PIPE, + STATE(3477), 1, + aux_sym_extends_type_clause_repeat1, + [117043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6675), 1, - sym_jsx_identifier, - STATE(4082), 1, - sym_nested_identifier, - STATE(4094), 1, - sym_jsx_namespace_name, - [116602] = 4, - ACTIONS(5577), 1, + ACTIONS(5888), 1, + anon_sym_COMMA, + ACTIONS(6683), 1, + anon_sym_LBRACE, + ACTIONS(6685), 1, + anon_sym_LBRACE_PIPE, + STATE(3477), 1, + aux_sym_extends_type_clause_repeat1, + [117059] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6677), 1, + ACTIONS(6687), 1, anon_sym_SQUOTE, - STATE(3458), 1, + STATE(3542), 1, aux_sym_string_repeat2, - ACTIONS(6679), 2, + ACTIONS(6585), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [116616] = 4, - ACTIONS(5577), 1, + [117073] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 1, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6689), 1, + anon_sym_COLON, + [117089] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6687), 1, anon_sym_DQUOTE, - STATE(3460), 1, + STATE(3545), 1, aux_sym_string_repeat1, - ACTIONS(6681), 2, + ACTIONS(6616), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116630] = 4, - ACTIONS(5577), 1, + [117103] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6683), 1, + ACTIONS(6679), 1, anon_sym_DQUOTE, - STATE(3471), 1, + STATE(3468), 1, aux_sym_string_repeat1, - ACTIONS(6685), 2, + ACTIONS(6691), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116644] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6683), 1, - anon_sym_SQUOTE, - STATE(3476), 1, - aux_sym_string_repeat2, - ACTIONS(6687), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [116658] = 5, + [117117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6689), 1, + ACTIONS(6693), 1, anon_sym_COLON, - [116674] = 5, + [117133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6691), 1, - anon_sym_RBRACK, - [116690] = 5, + ACTIONS(5888), 1, + anon_sym_COMMA, + ACTIONS(6147), 1, + anon_sym_LBRACE, + ACTIONS(6149), 1, + anon_sym_LBRACE_PIPE, + STATE(3486), 1, + aux_sym_extends_type_clause_repeat1, + [117149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(6695), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [117159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_QMARK, - [116706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, + ACTIONS(6697), 1, anon_sym_COLON, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(6695), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116720] = 4, - ACTIONS(3), 1, + [117175] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(5864), 1, - anon_sym_EQ, - STATE(3879), 1, - sym__initializer, - ACTIONS(6697), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [116734] = 4, - ACTIONS(5577), 1, + ACTIONS(6699), 1, + anon_sym_SQUOTE, + STATE(3487), 1, + aux_sym_string_repeat2, + ACTIONS(6701), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [117189] = 4, + ACTIONS(5543), 1, sym_comment, ACTIONS(6699), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3489), 1, aux_sym_string_repeat1, - ACTIONS(6659), 2, + ACTIONS(6703), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116748] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6701), 1, - anon_sym_SQUOTE, - STATE(3439), 1, - aux_sym_string_repeat2, - ACTIONS(6657), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [116762] = 5, + [117203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6703), 1, - anon_sym_COLON, - [116778] = 4, - ACTIONS(5577), 1, + ACTIONS(6705), 1, + anon_sym_RBRACK, + [117219] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_DQUOTE, - STATE(3440), 1, - aux_sym_string_repeat1, - ACTIONS(6659), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [116792] = 5, + ACTIONS(6707), 1, + anon_sym_from, + STATE(3945), 1, + sym__from_clause, + ACTIONS(6709), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4056), 1, - sym_type_parameters, - STATE(4100), 1, - sym_formal_parameters, - [116808] = 4, - ACTIONS(5577), 1, + ACTIONS(6632), 1, + anon_sym_COMMA, + STATE(3567), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6711), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117247] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6699), 1, - anon_sym_SQUOTE, - STATE(3439), 1, - aux_sym_string_repeat2, - ACTIONS(6657), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [116822] = 4, - ACTIONS(5577), 1, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6713), 1, + anon_sym_RBRACK, + [117263] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 1, - anon_sym_SQUOTE, - STATE(3472), 1, - aux_sym_string_repeat2, - ACTIONS(6707), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [116836] = 4, - ACTIONS(5577), 1, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6715), 1, + anon_sym_RBRACK, + [117279] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6705), 1, + ACTIONS(6717), 1, anon_sym_DQUOTE, - STATE(3474), 1, + STATE(3515), 1, aux_sym_string_repeat1, - ACTIONS(6709), 2, + ACTIONS(6719), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116850] = 4, - ACTIONS(5577), 1, + [117293] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6711), 1, + ACTIONS(6717), 1, anon_sym_SQUOTE, - STATE(3439), 1, + STATE(3516), 1, aux_sym_string_repeat2, - ACTIONS(6657), 2, + ACTIONS(6721), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [116864] = 4, - ACTIONS(5577), 1, + [117307] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 1, - anon_sym_DQUOTE, - STATE(3490), 1, - aux_sym_string_repeat1, - ACTIONS(6715), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [116878] = 4, - ACTIONS(5577), 1, + ACTIONS(6632), 1, + anon_sym_COMMA, + STATE(3526), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117321] = 5, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6713), 1, - anon_sym_SQUOTE, - STATE(3491), 1, - aux_sym_string_repeat2, - ACTIONS(6717), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [116892] = 4, - ACTIONS(5577), 1, + ACTIONS(6725), 1, + sym__glimmer_template_content, + ACTIONS(6727), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1866), 1, + sym_glimmer_closing_tag, + STATE(3710), 1, + aux_sym_glimmer_template_repeat1, + [117337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6632), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6729), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117351] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6711), 1, + ACTIONS(6626), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3545), 1, aux_sym_string_repeat1, - ACTIONS(6659), 2, + ACTIONS(6616), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [116916] = 5, + [117365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6719), 1, + ACTIONS(6731), 1, anon_sym_QMARK, - [116932] = 4, - ACTIONS(5577), 1, + [117381] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6614), 1, + anon_sym_SQUOTE, + STATE(3542), 1, + aux_sym_string_repeat2, + ACTIONS(6585), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [117395] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6721), 1, + ACTIONS(6622), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3511), 1, aux_sym_string_repeat1, - ACTIONS(6659), 2, + ACTIONS(6733), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [116946] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6723), 1, - anon_sym_COLON, - [116962] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4059), 1, - sym_type_parameters, - STATE(4212), 1, - sym_formal_parameters, - [116978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6725), 1, - anon_sym_export, - STATE(1113), 1, - aux_sym_export_statement_repeat1, - STATE(1150), 1, - sym_decorator, - [116994] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - sym_jsx_identifier, - STATE(4004), 1, - sym_nested_identifier, - STATE(4215), 1, - sym_jsx_namespace_name, - [117010] = 4, - ACTIONS(5577), 1, + [117409] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6731), 1, + ACTIONS(6583), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3545), 1, aux_sym_string_repeat1, - ACTIONS(6659), 2, + ACTIONS(6616), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [117024] = 4, - ACTIONS(5577), 1, + [117423] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - anon_sym_SQUOTE, - STATE(3439), 1, - aux_sym_string_repeat2, - ACTIONS(6657), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [117038] = 5, + ACTIONS(6707), 1, + anon_sym_from, + STATE(3994), 1, + sym__from_clause, + ACTIONS(4177), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117437] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 1, + anon_sym_COMMA, + ACTIONS(6600), 1, + anon_sym_EQ, + ACTIONS(6735), 1, + anon_sym_RBRACK, + STATE(3689), 1, + aux_sym_array_pattern_repeat1, + [117453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(3905), 1, + STATE(3927), 1, sym_type_parameters, - STATE(4228), 1, + STATE(4429), 1, sym_formal_parameters, - [117054] = 4, - ACTIONS(5577), 1, + [117469] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(6737), 1, + anon_sym_DQUOTE, + STATE(3545), 1, + aux_sym_string_repeat1, + ACTIONS(6616), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [117483] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6721), 1, + ACTIONS(6737), 1, anon_sym_SQUOTE, - STATE(3439), 1, + STATE(3542), 1, aux_sym_string_repeat2, - ACTIONS(6657), 2, + ACTIONS(6585), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [117068] = 4, + [117497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3809), 1, - anon_sym_LPAREN, - STATE(1923), 2, - sym_template_string, - sym_arguments, - [117082] = 4, + ACTIONS(6707), 1, + anon_sym_from, + STATE(4076), 1, + sym__from_clause, + ACTIONS(4172), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, - anon_sym_STAR, - STATE(4224), 2, - sym_namespace_import, - sym_named_imports, - [117096] = 5, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6739), 1, + anon_sym_COLON, + [117527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6733), 1, - anon_sym_RBRACK, - [117112] = 5, + ACTIONS(6741), 1, + anon_sym_QMARK, + [117543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4022), 1, - sym_type_parameters, - STATE(4332), 1, - sym_formal_parameters, - [117128] = 5, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6743), 1, + anon_sym_RPAREN, + [117559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6745), 1, + anon_sym_export, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [117575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_RBRACK, - [117144] = 5, + [117591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(4023), 1, - sym_type_parameters, - STATE(4309), 1, + STATE(2857), 1, sym_formal_parameters, - [117160] = 5, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6737), 1, - sym__glimmer_template_content, - ACTIONS(6739), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1930), 1, - sym_glimmer_closing_tag, - STATE(3784), 1, - aux_sym_glimmer_template_repeat1, - [117176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4057), 1, + STATE(3817), 1, sym_type_parameters, - STATE(4231), 1, - sym_formal_parameters, - [117192] = 5, + [117607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6741), 1, - anon_sym_COLON, - [117208] = 4, + ACTIONS(3824), 1, + anon_sym_COMMA, + STATE(3449), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6749), 2, + anon_sym_LBRACE, + anon_sym_implements, + [117621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6632), 1, anon_sym_COMMA, - STATE(3505), 1, + STATE(3529), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6743), 2, + ACTIONS(6751), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117222] = 4, + [117635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6632), 1, anon_sym_COMMA, - STATE(3505), 1, + STATE(3529), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6745), 2, + ACTIONS(6753), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117236] = 4, + [117649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(5987), 1, + anon_sym_EQ, + STATE(3850), 1, + sym__initializer, + ACTIONS(6755), 2, anon_sym_COMMA, - STATE(3505), 1, + anon_sym_RPAREN, + [117663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [117673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6757), 1, + anon_sym_COMMA, + STATE(3529), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6750), 2, + ACTIONS(6760), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117250] = 5, + [117687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6762), 1, + anon_sym_QMARK, + [117703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1813), 1, anon_sym_LT, - ACTIONS(5860), 1, + ACTIONS(5169), 1, + anon_sym_EQ_GT, + ACTIONS(3210), 2, anon_sym_LPAREN, - STATE(3902), 1, + anon_sym_QMARK, + [117717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4058), 1, sym_type_parameters, - STATE(4351), 1, + STATE(4427), 1, sym_formal_parameters, - [117266] = 5, + [117733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6752), 1, - anon_sym_RPAREN, - [117282] = 5, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6764), 1, + anon_sym_class, + STATE(1112), 1, + aux_sym_export_statement_repeat1, + STATE(1152), 1, + sym_decorator, + [117749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6754), 1, - anon_sym_RPAREN, - [117298] = 5, + ACTIONS(1813), 1, + anon_sym_LT, + ACTIONS(6766), 1, + anon_sym_EQ_GT, + ACTIONS(3210), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + [117763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6768), 1, anon_sym_QMARK, - [117314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(3854), 1, - sym__from_clause, - ACTIONS(3985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117328] = 4, + [117779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(3912), 1, - sym__from_clause, - ACTIONS(6758), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117342] = 5, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6770), 1, + anon_sym_RBRACK, + [117795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6760), 1, - anon_sym_COLON, - [117358] = 4, + ACTIONS(6772), 1, + anon_sym_RBRACK, + [117811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(3210), 1, + anon_sym_COLON, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(6774), 2, anon_sym_COMMA, - STATE(3505), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6762), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117372] = 4, + anon_sym_RBRACE, + [117825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(4052), 1, - sym__from_clause, - ACTIONS(6764), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117386] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4063), 1, + sym_type_parameters, + STATE(4139), 1, + sym_formal_parameters, + [117841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - anon_sym_COMMA, - STATE(3505), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6766), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117400] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3959), 1, + sym_type_parameters, + STATE(4302), 1, + sym_formal_parameters, + [117857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, - anon_sym_EQ, - STATE(3830), 1, - sym__initializer, - ACTIONS(5603), 2, - anon_sym_in, - anon_sym_of, - [117414] = 4, - ACTIONS(5577), 1, + ACTIONS(6776), 1, + sym_identifier, + STATE(3037), 1, + sym_nested_type_identifier, + STATE(3492), 1, + sym_generic_type, + STATE(4178), 1, + sym_nested_identifier, + [117873] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(6778), 1, anon_sym_SQUOTE, - STATE(3439), 1, + STATE(3542), 1, aux_sym_string_repeat2, - ACTIONS(6657), 2, + ACTIONS(6780), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [117428] = 5, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6772), 1, - sym__glimmer_template_content, - ACTIONS(6774), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1496), 1, - sym_glimmer_closing_tag, - STATE(3531), 1, - aux_sym_glimmer_template_repeat1, - [117444] = 2, - ACTIONS(3), 1, + [117887] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6776), 4, - sym__template_chars, + ACTIONS(6643), 1, + anon_sym_SQUOTE, + STATE(3461), 1, + aux_sym_string_repeat2, + ACTIONS(6783), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [117454] = 5, + [117901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6778), 1, + ACTIONS(6785), 1, anon_sym_RPAREN, - [117470] = 4, - ACTIONS(5577), 1, + [117917] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(6787), 1, anon_sym_DQUOTE, - STATE(3440), 1, + STATE(3545), 1, aux_sym_string_repeat1, - ACTIONS(6659), 2, + ACTIONS(6789), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [117484] = 2, + [117931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5295), 1, + anon_sym_EQ, + STATE(3956), 1, + sym_default_type, + ACTIONS(6792), 2, anon_sym_COMMA, - anon_sym_SEMI, - [117494] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6780), 1, - anon_sym_SQUOTE, - STATE(3517), 1, - aux_sym_string_repeat2, - ACTIONS(6782), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [117508] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6784), 1, - anon_sym_SQUOTE, - STATE(3479), 1, - aux_sym_string_repeat2, - ACTIONS(6786), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [117522] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6784), 1, - anon_sym_DQUOTE, - STATE(3482), 1, - aux_sym_string_repeat1, - ACTIONS(6788), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [117536] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6780), 1, - anon_sym_DQUOTE, - STATE(3521), 1, - aux_sym_string_repeat1, - ACTIONS(6790), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [117550] = 5, + anon_sym_GT, + [117945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6792), 1, - anon_sym_QMARK, - [117566] = 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3966), 1, + sym_type_parameters, + STATE(4340), 1, + sym_formal_parameters, + [117961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, ACTIONS(6794), 1, - anon_sym_COLON, - [117582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - anon_sym_COMMA, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(6214), 2, - anon_sym_LBRACE, - anon_sym_GT, - [117596] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6799), 1, - anon_sym_SQUOTE, - STATE(3493), 1, - aux_sym_string_repeat2, - ACTIONS(6801), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [117610] = 5, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6737), 1, - sym__glimmer_template_content, - ACTIONS(6774), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1426), 1, - sym_glimmer_closing_tag, - STATE(3784), 1, - aux_sym_glimmer_template_repeat1, - [117626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6803), 1, anon_sym_RBRACK, - [117642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5278), 1, - anon_sym_EQ, - STATE(4058), 1, - sym_default_type, - ACTIONS(6805), 2, - anon_sym_COMMA, - anon_sym_GT, - [117656] = 5, + [117977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6807), 1, - anon_sym_RBRACK, - [117672] = 4, + ACTIONS(6796), 1, + anon_sym_RPAREN, + [117993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(1428), 2, - sym_template_string, - sym_arguments, - [117686] = 5, + STATE(4038), 1, + sym_type_parameters, + STATE(4303), 1, + sym_formal_parameters, + [118009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(5405), 1, - anon_sym_extends, - ACTIONS(6809), 1, - anon_sym_RBRACK, - [117702] = 5, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4034), 1, + sym_type_parameters, + STATE(4409), 1, + sym_formal_parameters, + [118025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6811), 1, - sym_identifier, - STATE(3321), 1, - sym_nested_type_identifier, - STATE(3554), 1, - sym_generic_type, - STATE(4189), 1, - sym_nested_identifier, - [117718] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6799), 1, - anon_sym_DQUOTE, - STATE(3485), 1, - aux_sym_string_repeat1, - ACTIONS(6813), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [117732] = 5, - ACTIONS(5577), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3973), 1, + sym_type_parameters, + STATE(4242), 1, + sym_formal_parameters, + [118041] = 5, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6739), 1, + ACTIONS(6727), 1, anon_sym_LT_SLASHtemplate_GT, - ACTIONS(6815), 1, + ACTIONS(6798), 1, sym__glimmer_template_content, - STATE(1891), 1, + STATE(1951), 1, sym_glimmer_closing_tag, - STATE(3500), 1, + STATE(3505), 1, aux_sym_glimmer_template_repeat1, - [117748] = 5, + [118057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym_COMMA, - ACTIONS(6099), 1, - anon_sym_LBRACE, - ACTIONS(6101), 1, - anon_sym_LBRACE_PIPE, - STATE(3543), 1, - aux_sym_extends_type_clause_repeat1, - [117764] = 4, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6800), 1, + anon_sym_QMARK, + [118073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5864), 1, - anon_sym_EQ, - STATE(4044), 1, - sym__initializer, - ACTIONS(6817), 2, - anon_sym_COMMA, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6802), 1, anon_sym_RPAREN, - [117778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5864), 1, - anon_sym_EQ, - STATE(4072), 1, - sym__initializer, - ACTIONS(6819), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [117792] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5977), 1, - anon_sym_COMMA, - ACTIONS(6821), 1, - anon_sym_LBRACE, - ACTIONS(6823), 1, - anon_sym_LBRACE_PIPE, - STATE(3417), 1, - aux_sym_extends_type_clause_repeat1, - [117808] = 5, + [118089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(5185), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - ACTIONS(6825), 1, - anon_sym_LBRACE, - ACTIONS(6827), 1, - anon_sym_LBRACE_PIPE, - STATE(3417), 1, - aux_sym_extends_type_clause_repeat1, - [117824] = 4, + anon_sym_SEMI, + [118099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, + ACTIONS(6804), 1, anon_sym_COMMA, - STATE(3545), 1, + STATE(3557), 1, aux_sym_array_repeat1, - ACTIONS(4304), 2, + ACTIONS(4403), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [117838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5977), 1, - anon_sym_COMMA, - ACTIONS(6821), 1, - anon_sym_LBRACE, - ACTIONS(6823), 1, - anon_sym_LBRACE_PIPE, - STATE(3417), 1, - aux_sym_extends_type_clause_repeat1, - [117854] = 5, + [118113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - ACTIONS(6832), 1, + ACTIONS(6807), 1, anon_sym_RBRACK, - [117870] = 4, + [118129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(5987), 1, + anon_sym_EQ, + STATE(4007), 1, + sym__initializer, + ACTIONS(6809), 2, anon_sym_COMMA, - ACTIONS(6836), 1, - anon_sym_RBRACE, - STATE(3750), 1, - aux_sym_object_repeat1, - [117883] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(3859), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [117892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_DOT, - ACTIONS(6838), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117903] = 4, + anon_sym_RPAREN, + [118143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - anon_sym_RBRACE, - ACTIONS(6840), 1, - anon_sym_COMMA, - STATE(3607), 1, - aux_sym_named_imports_repeat1, - [117916] = 4, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3999), 1, + sym_type_parameters, + STATE(4281), 1, + sym_formal_parameters, + [118159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_RBRACK, - ACTIONS(6842), 1, - anon_sym_COMMA, - STATE(3570), 1, - aux_sym_tuple_type_repeat1, - [117929] = 4, - ACTIONS(3), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3997), 1, + sym_type_parameters, + STATE(4241), 1, + sym_formal_parameters, + [118175] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(6844), 1, - anon_sym_RBRACK, + ACTIONS(6811), 1, + anon_sym_DQUOTE, STATE(3545), 1, - aux_sym_array_repeat1, - [117942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - anon_sym_LBRACE, - ACTIONS(6519), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [117953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(6846), 1, - anon_sym_RBRACK, - STATE(3557), 1, - aux_sym_array_pattern_repeat1, - [117966] = 4, + aux_sym_string_repeat1, + ACTIONS(6616), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [118189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_RPAREN, - ACTIONS(6848), 1, - anon_sym_COMMA, - STATE(3668), 1, - aux_sym_formal_parameters_repeat1, - [117979] = 4, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6813), 1, + anon_sym_QMARK, + [118205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, + ACTIONS(6632), 1, anon_sym_COMMA, - ACTIONS(6853), 1, - anon_sym_RBRACK, - STATE(3557), 1, - aux_sym_array_pattern_repeat1, - [117992] = 2, + STATE(3529), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6815), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [118001] = 4, + ACTIONS(6707), 1, + anon_sym_from, + STATE(3931), 1, + sym__from_clause, + ACTIONS(6817), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - anon_sym_LPAREN, - STATE(608), 1, - sym_statement_block, - [118014] = 4, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_extends, + ACTIONS(6819), 1, + anon_sym_COLON, + [118249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_RPAREN, - ACTIONS(6857), 1, + ACTIONS(6632), 1, anon_sym_COMMA, - STATE(3668), 1, - aux_sym_formal_parameters_repeat1, - [118027] = 2, - ACTIONS(5577), 1, + STATE(3529), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6821), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118263] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 3, + ACTIONS(3186), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [118036] = 4, - ACTIONS(3), 1, + ACTIONS(5411), 1, + anon_sym_STAR, + STATE(4134), 2, + sym_namespace_import, + sym_named_imports, + [118277] = 5, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym_COMMA, - ACTIONS(6863), 1, - anon_sym_RBRACK, - STATE(3747), 1, - aux_sym_tuple_type_repeat1, - [118049] = 4, - ACTIONS(3), 1, + ACTIONS(6598), 1, + anon_sym_LT_SLASHtemplate_GT, + ACTIONS(6725), 1, + sym__glimmer_template_content, + STATE(1375), 1, + sym_glimmer_closing_tag, + STATE(3710), 1, + aux_sym_glimmer_template_repeat1, + [118293] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(6865), 1, - sym_identifier, - ACTIONS(6867), 1, - anon_sym_LBRACK, - ACTIONS(6869), 1, - sym_private_property_identifier, - [118062] = 2, - ACTIONS(3), 1, + ACTIONS(6811), 1, + anon_sym_SQUOTE, + STATE(3542), 1, + aux_sym_string_repeat2, + ACTIONS(6585), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [118307] = 4, + ACTIONS(5543), 1, sym_comment, - ACTIONS(5854), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [118071] = 4, + ACTIONS(6628), 1, + anon_sym_DQUOTE, + STATE(3562), 1, + aux_sym_string_repeat1, + ACTIONS(6823), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [118321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_type, - ACTIONS(6871), 1, - sym_identifier, - STATE(3870), 1, - sym__import_identifier, - [118084] = 2, + ACTIONS(5693), 1, + anon_sym_AMP, + ACTIONS(5695), 1, + anon_sym_PIPE, + ACTIONS(5701), 1, + anon_sym_extends, + [118334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6873), 3, + ACTIONS(6825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118093] = 4, + [118343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, + ACTIONS(3499), 1, + anon_sym_LBRACE, + ACTIONS(3501), 2, anon_sym_COMMA, - ACTIONS(6878), 1, - anon_sym_RBRACE, - STATE(3567), 1, - aux_sym_enum_body_repeat1, - [118106] = 4, + anon_sym_LBRACE_PIPE, + [118354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(6827), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6880), 1, - anon_sym_RBRACE, - STATE(3750), 1, - aux_sym_object_repeat1, - [118119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6882), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [118128] = 4, + anon_sym_SEMI, + [118363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6884), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(6887), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym_tuple_type_repeat1, - [118141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6889), 1, - sym_identifier, - ACTIONS(6891), 1, - anon_sym_GT, - STATE(4054), 1, - sym_type_parameter, - [118154] = 2, + ACTIONS(6829), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [118376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 3, + ACTIONS(6831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6891), 1, - anon_sym_GT, - ACTIONS(6895), 1, - anon_sym_COMMA, - STATE(3592), 1, - aux_sym_type_parameters_repeat1, - [118176] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(6897), 1, - anon_sym_GT, - [118189] = 4, + [118385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(2891), 1, anon_sym_GT, - ACTIONS(6899), 1, + ACTIONS(6833), 1, anon_sym_COMMA, - STATE(3529), 1, + STATE(3470), 1, aux_sym_implements_clause_repeat1, - [118202] = 4, + [118398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(6835), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6901), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [118215] = 3, + anon_sym_SEMI, + [118407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6903), 1, - anon_sym_EQ, - ACTIONS(3082), 2, - anon_sym_in, - anon_sym_of, - [118226] = 3, + ACTIONS(6837), 1, + anon_sym_LPAREN, + ACTIONS(6839), 1, + anon_sym_await, + STATE(49), 1, + sym__for_header, + [118420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6905), 1, - anon_sym_as, - ACTIONS(6907), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118237] = 4, + ACTIONS(6841), 1, + sym_identifier, + ACTIONS(6843), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_COMMA, - ACTIONS(6911), 1, - anon_sym_RBRACE, - STATE(3726), 1, - aux_sym_export_clause_repeat1, - [118250] = 4, + ACTIONS(6845), 1, + sym_identifier, + ACTIONS(6847), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_type, - ACTIONS(6913), 1, + ACTIONS(6849), 1, sym_identifier, - STATE(3867), 1, - sym__import_identifier, - [118263] = 2, + STATE(1127), 1, + sym_decorator_member_expression, + STATE(1161), 1, + sym_decorator_call_expression, + [118455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6915), 3, + ACTIONS(6851), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(6917), 1, - anon_sym_AMP, - ACTIONS(6919), 1, - anon_sym_PIPE, - [118285] = 3, + [118464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(5399), 2, + ACTIONS(2507), 1, + anon_sym_RBRACK, + ACTIONS(6853), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [118296] = 4, + STATE(3730), 1, + aux_sym_tuple_type_repeat1, + [118477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6923), 1, - anon_sym_COMMA, - ACTIONS(6925), 1, - anon_sym_RPAREN, - STATE(3641), 1, - aux_sym_formal_parameters_repeat1, - [118309] = 4, + ACTIONS(6855), 1, + anon_sym_LBRACE, + ACTIONS(6504), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [118488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1224), 1, + ACTIONS(3712), 1, anon_sym_LBRACE, - STATE(752), 1, - sym_object_type, - [118322] = 2, + ACTIONS(3714), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [118499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 3, + ACTIONS(6857), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118331] = 2, + [118508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, + ACTIONS(3814), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [118340] = 4, + ACTIONS(3816), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [118519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_COMMA, - ACTIONS(6929), 1, - anon_sym_RBRACK, - STATE(3552), 1, - aux_sym_tuple_type_repeat1, - [118353] = 4, + ACTIONS(6707), 1, + anon_sym_from, + ACTIONS(6859), 1, + anon_sym_as, + STATE(3938), 1, + sym__from_clause, + [118532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(6861), 1, sym_identifier, - STATE(2189), 1, - sym_decorator_member_expression, - STATE(2264), 1, - sym_decorator_call_expression, - [118366] = 2, + STATE(3517), 1, + sym_export_clause, + [118545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 3, - sym__automatic_semicolon, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(3603), 2, anon_sym_COMMA, - anon_sym_SEMI, - [118375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [118384] = 4, + anon_sym_LBRACE_PIPE, + [118556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, - anon_sym_COMMA, - ACTIONS(6938), 1, - anon_sym_GT, - STATE(3592), 1, - aux_sym_type_parameters_repeat1, - [118397] = 3, + ACTIONS(6863), 1, + sym_identifier, + STATE(2199), 1, + sym_decorator_member_expression, + STATE(2269), 1, + sym_decorator_call_expression, + [118569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(6865), 1, anon_sym_EQ, - ACTIONS(3037), 2, + ACTIONS(3062), 2, anon_sym_COMMA, anon_sym_RBRACK, - [118408] = 2, + [118580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 3, - sym__automatic_semicolon, + ACTIONS(3696), 1, + anon_sym_LBRACE, + ACTIONS(3698), 2, anon_sym_COMMA, - anon_sym_SEMI, - [118417] = 4, + anon_sym_LBRACE_PIPE, + [118591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(6945), 1, + ACTIONS(6868), 1, anon_sym_EQ, - STATE(4147), 1, + STATE(4271), 1, sym_type_parameters, - [118430] = 4, + [118604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(4812), 1, anon_sym_COMMA, - ACTIONS(6947), 1, + ACTIONS(6870), 1, anon_sym_RBRACE, - STATE(3750), 1, + STATE(3653), 1, + aux_sym_object_pattern_repeat1, + [118617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6872), 1, + anon_sym_COMMA, + ACTIONS(6874), 1, + anon_sym_RBRACE, + STATE(3655), 1, + aux_sym_object_repeat1, + [118630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6872), 1, + anon_sym_COMMA, + ACTIONS(6876), 1, + anon_sym_RBRACE, + STATE(3635), 1, aux_sym_object_repeat1, - [118443] = 2, + [118643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6485), 3, + ACTIONS(6878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118452] = 4, + [118652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(6872), 1, anon_sym_COMMA, - ACTIONS(6949), 1, + ACTIONS(6874), 1, anon_sym_RBRACE, - STATE(3749), 1, - aux_sym_object_pattern_repeat1, - [118465] = 4, + STATE(3662), 1, + aux_sym_object_repeat1, + [118665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, - sym_identifier, - ACTIONS(6951), 1, - anon_sym_GT, - STATE(4054), 1, - sym_type_parameter, - [118478] = 4, + ACTIONS(4812), 1, + anon_sym_COMMA, + ACTIONS(6870), 1, + anon_sym_RBRACE, + STATE(3663), 1, + aux_sym_object_pattern_repeat1, + [118678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(6872), 1, anon_sym_COMMA, - ACTIONS(6953), 1, + ACTIONS(6876), 1, anon_sym_RBRACE, - STATE(3749), 1, - aux_sym_object_pattern_repeat1, - [118491] = 4, + STATE(3662), 1, + aux_sym_object_repeat1, + [118691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(4812), 1, anon_sym_COMMA, - ACTIONS(4255), 1, - anon_sym_RPAREN, - STATE(3618), 1, - aux_sym_array_repeat1, - [118504] = 4, + ACTIONS(6880), 1, + anon_sym_RBRACE, + STATE(3663), 1, + aux_sym_object_pattern_repeat1, + [118704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(6882), 1, anon_sym_COMMA, - ACTIONS(4255), 1, + ACTIONS(6884), 1, anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [118517] = 2, + STATE(3644), 1, + aux_sym_formal_parameters_repeat1, + [118717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6955), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [118526] = 2, + ACTIONS(6886), 1, + anon_sym_LBRACE, + ACTIONS(6487), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [118728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 3, - sym__automatic_semicolon, + ACTIONS(1417), 1, anon_sym_COMMA, - anon_sym_SEMI, - [118535] = 4, + ACTIONS(6602), 1, + anon_sym_RBRACK, + STATE(3650), 1, + aux_sym_array_pattern_repeat1, + [118741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_DQUOTE, - ACTIONS(1295), 1, - anon_sym_SQUOTE, - STATE(3850), 1, - sym_string, - [118548] = 4, + ACTIONS(5906), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [118750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - ACTIONS(1240), 1, - anon_sym_SQUOTE, - STATE(4428), 1, - sym_string, - [118561] = 4, + ACTIONS(6888), 1, + anon_sym_COMMA, + ACTIONS(6890), 1, + anon_sym_RPAREN, + STATE(3682), 1, + aux_sym_formal_parameters_repeat1, + [118763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6959), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(6962), 1, - anon_sym_RBRACE, - STATE(3607), 1, - aux_sym_named_imports_repeat1, - [118574] = 2, + ACTIONS(4276), 1, + anon_sym_RBRACK, + STATE(3649), 1, + aux_sym_array_repeat1, + [118776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 3, + ACTIONS(6831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118583] = 2, + [118785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6964), 3, + ACTIONS(6831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118592] = 2, + [118794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6966), 3, + ACTIONS(6857), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118601] = 4, + [118803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6968), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(6970), 1, + ACTIONS(4276), 1, anon_sym_RBRACK, - STATE(3633), 1, - aux_sym_tuple_type_repeat1, - [118614] = 2, + STATE(3557), 1, + aux_sym_array_repeat1, + [118816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 3, - sym__automatic_semicolon, + ACTIONS(1417), 1, anon_sym_COMMA, - anon_sym_SEMI, - [118623] = 2, + ACTIONS(6602), 1, + anon_sym_RBRACK, + STATE(3690), 1, + aux_sym_array_pattern_repeat1, + [118829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 3, - sym__automatic_semicolon, + ACTIONS(1417), 1, anon_sym_COMMA, - anon_sym_SEMI, - [118632] = 4, + ACTIONS(6735), 1, + anon_sym_RBRACK, + STATE(3689), 1, + aux_sym_array_pattern_repeat1, + [118842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4412), 1, - anon_sym_RPAREN, - STATE(3545), 1, + ACTIONS(4384), 1, + anon_sym_RBRACK, + STATE(3688), 1, aux_sym_array_repeat1, - [118645] = 4, + [118855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_AMP, - ACTIONS(5663), 1, - anon_sym_PIPE, - ACTIONS(5696), 1, - anon_sym_extends, - [118658] = 2, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(4384), 1, + anon_sym_RBRACK, + STATE(3557), 1, + aux_sym_array_repeat1, + [118868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 3, - sym__automatic_semicolon, + ACTIONS(1417), 1, anon_sym_COMMA, - anon_sym_SEMI, - [118667] = 3, + ACTIONS(6735), 1, + anon_sym_RBRACK, + STATE(3690), 1, + aux_sym_array_pattern_repeat1, + [118881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5876), 1, - anon_sym_EQ, - ACTIONS(3082), 2, - anon_sym_in, - anon_sym_of, - [118678] = 4, + ACTIONS(3555), 1, + anon_sym_extends, + ACTIONS(6892), 1, + anon_sym_AMP, + ACTIONS(6894), 1, + anon_sym_PIPE, + [118894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(6974), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [118691] = 2, + ACTIONS(5681), 1, + anon_sym_implements, + ACTIONS(6896), 1, + anon_sym_LBRACE, + STATE(4138), 1, + sym_implements_clause, + [118907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 3, - sym__automatic_semicolon, + ACTIONS(6898), 1, anon_sym_COMMA, - anon_sym_SEMI, - [118700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2665), 1, + ACTIONS(6900), 1, anon_sym_GT, - ACTIONS(6978), 1, - anon_sym_COMMA, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - [118713] = 4, + STATE(3703), 1, + aux_sym_type_parameters_repeat1, + [118920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(4812), 1, anon_sym_COMMA, - ACTIONS(4412), 1, - anon_sym_RPAREN, - STATE(3576), 1, - aux_sym_array_repeat1, - [118726] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6980), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [118735] = 2, + ACTIONS(6880), 1, + anon_sym_RBRACE, + STATE(3634), 1, + aux_sym_object_pattern_repeat1, + [118933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6966), 3, - sym__automatic_semicolon, + ACTIONS(6902), 1, + anon_sym_EQ, + ACTIONS(6904), 2, anon_sym_COMMA, - anon_sym_SEMI, - [118744] = 2, + anon_sym_from, + [118944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6485), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [118753] = 4, + ACTIONS(5951), 1, + anon_sym_EQ, + ACTIONS(3090), 2, + anon_sym_in, + anon_sym_of, + [118955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, - sym_identifier, - ACTIONS(6984), 1, + ACTIONS(5955), 3, anon_sym_LBRACK, - ACTIONS(6986), 1, + sym_identifier, sym_private_property_identifier, - [118766] = 2, - ACTIONS(5577), 1, + [118964] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6980), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [118775] = 4, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(4378), 1, + anon_sym_RPAREN, + STATE(3645), 1, + aux_sym_array_repeat1, + [118977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6988), 1, - sym_identifier, - ACTIONS(6990), 1, - anon_sym_LBRACK, - ACTIONS(6992), 1, - sym_private_property_identifier, - [118788] = 3, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(4378), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [118990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 1, - anon_sym_LBRACE, - ACTIONS(6507), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [118799] = 4, + ACTIONS(6906), 1, + anon_sym_COMMA, + ACTIONS(6908), 1, + anon_sym_RBRACK, + STATE(3585), 1, + aux_sym_tuple_type_repeat1, + [119003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, + ACTIONS(6910), 1, sym_identifier, - ACTIONS(6998), 1, + ACTIONS(6912), 1, anon_sym_LBRACK, - ACTIONS(7000), 1, + ACTIONS(6914), 1, sym_private_property_identifier, - [118812] = 2, - ACTIONS(5577), 1, + [119016] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [118821] = 4, + ACTIONS(6872), 1, + anon_sym_COMMA, + ACTIONS(6916), 1, + anon_sym_RBRACE, + STATE(3662), 1, + aux_sym_object_repeat1, + [119029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, - sym_identifier, - ACTIONS(7004), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - sym_private_property_identifier, - [118834] = 2, - ACTIONS(5577), 1, + ACTIONS(4812), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + anon_sym_RBRACE, + STATE(3663), 1, + aux_sym_object_pattern_repeat1, + [119042] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6980), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [118843] = 4, + ACTIONS(1293), 1, + anon_sym_DQUOTE, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + STATE(4077), 1, + sym_string, + [119055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_RBRACK, - ACTIONS(7008), 1, + ACTIONS(4812), 1, anon_sym_COMMA, - STATE(3570), 1, - aux_sym_tuple_type_repeat1, - [118856] = 4, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(3663), 1, + aux_sym_object_pattern_repeat1, + [119068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_type, - ACTIONS(7010), 1, - sym_identifier, - STATE(3816), 1, - sym__import_identifier, - [118869] = 2, + ACTIONS(6872), 1, + anon_sym_COMMA, + ACTIONS(6922), 1, + anon_sym_RBRACE, + STATE(3662), 1, + aux_sym_object_repeat1, + [119081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 3, + ACTIONS(6924), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [118878] = 4, + [119090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(7012), 1, - anon_sym_RPAREN, - STATE(4450), 1, - sym_type_annotation, - [118891] = 3, + ACTIONS(6926), 1, + anon_sym_COMMA, + ACTIONS(6928), 1, + anon_sym_RBRACK, + STATE(3660), 1, + aux_sym_tuple_type_repeat1, + [119103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(7014), 2, + ACTIONS(6930), 1, anon_sym_COMMA, + ACTIONS(6932), 1, anon_sym_RBRACE, - [118902] = 4, + STATE(3714), 1, + aux_sym_export_clause_repeat1, + [119116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_type, - ACTIONS(7016), 1, - sym_identifier, - STATE(3856), 1, - sym__import_identifier, - [118915] = 3, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(6934), 1, + anon_sym_GT, + [119129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_LBRACE, - ACTIONS(3436), 2, + ACTIONS(6936), 1, + anon_sym_as, + ACTIONS(6938), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [118926] = 4, + anon_sym_RBRACE, + [119140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(6872), 1, anon_sym_COMMA, - ACTIONS(7018), 1, + ACTIONS(6940), 1, anon_sym_RBRACE, - STATE(3749), 1, + STATE(3662), 1, + aux_sym_object_repeat1, + [119153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + anon_sym_COMMA, + ACTIONS(6942), 1, + anon_sym_RBRACE, + STATE(3663), 1, aux_sym_object_pattern_repeat1, - [118939] = 4, + [119166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1337), 1, + ACTIONS(6857), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [119175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1327), 1, anon_sym_RPAREN, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_COMMA, - STATE(3668), 1, + STATE(3740), 1, aux_sym_formal_parameters_repeat1, - [118952] = 3, + [119188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_LBRACE, - ACTIONS(3454), 2, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [118963] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(4090), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [118972] = 3, + ACTIONS(6946), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [119201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_LBRACE, - ACTIONS(3470), 2, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [118983] = 4, + ACTIONS(4316), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [119214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7022), 1, - sym_identifier, - STATE(1127), 1, - sym_decorator_member_expression, - STATE(1158), 1, - sym_decorator_call_expression, - [118996] = 2, - ACTIONS(5577), 1, + ACTIONS(2805), 1, + anon_sym_GT, + ACTIONS(6948), 1, + anon_sym_COMMA, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + [119227] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7024), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119005] = 4, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_RPAREN, + STATE(3576), 1, + aux_sym_array_repeat1, + [119240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(7026), 1, + ACTIONS(6950), 1, anon_sym_RBRACK, - STATE(3545), 1, + STATE(3557), 1, aux_sym_array_repeat1, - [119018] = 4, + [119253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, + ACTIONS(1417), 1, anon_sym_COMMA, - ACTIONS(7028), 1, + ACTIONS(6952), 1, anon_sym_RBRACK, - STATE(3557), 1, + STATE(3690), 1, aux_sym_array_pattern_repeat1, - [119031] = 4, + [119266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6954), 1, + anon_sym_LBRACE, + ACTIONS(6377), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [119277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6956), 1, + sym_identifier, + ACTIONS(6958), 1, + anon_sym_LBRACK, + ACTIONS(6960), 1, + sym_private_property_identifier, + [119290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(4812), 1, anon_sym_COMMA, - ACTIONS(7030), 1, + ACTIONS(6962), 1, anon_sym_RBRACE, - STATE(3797), 1, + STATE(3663), 1, aux_sym_object_pattern_repeat1, - [119044] = 4, + [119303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7032), 1, + ACTIONS(6964), 1, sym_identifier, - ACTIONS(7034), 1, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(7036), 1, + ACTIONS(6968), 1, sym_private_property_identifier, - [119057] = 2, + [119316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 3, - anon_sym_LBRACK, + ACTIONS(6872), 1, + anon_sym_COMMA, + ACTIONS(6970), 1, + anon_sym_RBRACE, + STATE(3662), 1, + aux_sym_object_repeat1, + [119329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6972), 1, sym_identifier, + ACTIONS(6974), 1, + anon_sym_LBRACK, + ACTIONS(6976), 1, sym_private_property_identifier, - [119066] = 4, + [119342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(6978), 1, sym_identifier, - ACTIONS(7038), 1, + ACTIONS(6980), 1, anon_sym_GT, - STATE(4054), 1, + STATE(3951), 1, sym_type_parameter, - [119079] = 4, + [119355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6982), 1, + sym_identifier, + ACTIONS(6984), 1, + anon_sym_LBRACK, + ACTIONS(6986), 1, + sym_private_property_identifier, + [119368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7038), 1, + ACTIONS(6980), 1, anon_sym_GT, - ACTIONS(7040), 1, + ACTIONS(6988), 1, anon_sym_COMMA, - STATE(3592), 1, + STATE(3755), 1, aux_sym_type_parameters_repeat1, - [119092] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(4086), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119101] = 4, + [119381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - sym_identifier, - ACTIONS(7044), 1, - anon_sym_require, - STATE(3550), 1, - sym_nested_identifier, - [119114] = 4, + ACTIONS(2503), 1, + anon_sym_RBRACK, + ACTIONS(6990), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_tuple_type_repeat1, + [119394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, - anon_sym_AMP, - ACTIONS(6167), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - [119127] = 4, + ACTIONS(6992), 1, + anon_sym_COMMA, + ACTIONS(6994), 1, + anon_sym_GT, + STATE(3659), 1, + aux_sym_type_parameters_repeat1, + [119407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(6996), 1, anon_sym_COMMA, - ACTIONS(7046), 1, + ACTIONS(6999), 1, anon_sym_RBRACE, - STATE(3774), 1, + STATE(3662), 1, aux_sym_object_repeat1, - [119140] = 2, - ACTIONS(5577), 1, + [119420] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119149] = 4, + ACTIONS(7001), 1, + anon_sym_COMMA, + ACTIONS(7004), 1, + anon_sym_RBRACE, + STATE(3663), 1, + aux_sym_object_pattern_repeat1, + [119433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7006), 1, + sym_identifier, + ACTIONS(7008), 1, + anon_sym_LBRACK, + ACTIONS(7010), 1, + sym_private_property_identifier, + [119446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(7050), 1, + ACTIONS(4274), 1, anon_sym_RPAREN, - STATE(3556), 1, - aux_sym_formal_parameters_repeat1, - [119162] = 2, + STATE(3699), 1, + aux_sym_array_repeat1, + [119459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7052), 3, - sym__automatic_semicolon, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119171] = 2, + ACTIONS(4274), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [119472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 3, - sym__automatic_semicolon, + ACTIONS(5415), 3, anon_sym_COMMA, - anon_sym_SEMI, - [119180] = 2, + anon_sym_RBRACE, + anon_sym_from, + [119481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7056), 3, + ACTIONS(7012), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119189] = 4, + [119490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, + ACTIONS(7014), 1, + anon_sym_EQ, + ACTIONS(6904), 2, + anon_sym_COMMA, anon_sym_from, - ACTIONS(7058), 1, - anon_sym_as, - STATE(4034), 1, - sym__from_clause, - [119202] = 4, + [119501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(7016), 1, + anon_sym_EQ, + STATE(4236), 1, + sym_type_parameters, + [119514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7060), 1, + ACTIONS(7018), 1, + anon_sym_as, + ACTIONS(6904), 2, anon_sym_COMMA, - ACTIONS(7062), 1, anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_named_imports_repeat1, - [119215] = 2, + [119525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7064), 3, + ACTIONS(7020), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [119224] = 4, + [119534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(7066), 1, + ACTIONS(7022), 1, + anon_sym_COMMA, + ACTIONS(7024), 1, + anon_sym_RBRACE, + STATE(3726), 1, + aux_sym_named_imports_repeat1, + [119547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7026), 1, sym_identifier, - STATE(3510), 1, - sym_export_clause, - [119237] = 2, + ACTIONS(7028), 1, + anon_sym_require, + STATE(3728), 1, + sym_nested_identifier, + [119560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 3, - anon_sym_LBRACE, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5465), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [119246] = 4, + ACTIONS(7030), 1, + anon_sym_GT, + [119573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7068), 1, + ACTIONS(6565), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7071), 1, - anon_sym_RPAREN, - STATE(3668), 1, - aux_sym_formal_parameters_repeat1, - [119259] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6980), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119268] = 2, + anon_sym_SEMI, + [119582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7073), 3, + ACTIONS(7032), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119277] = 2, + [119591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 3, + ACTIONS(7034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119286] = 4, + [119600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(6565), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7079), 1, - anon_sym_RBRACE, - STATE(3567), 1, - aux_sym_enum_body_repeat1, - [119299] = 4, + anon_sym_SEMI, + [119609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 1, - anon_sym_COMMA, - ACTIONS(7083), 1, - anon_sym_RBRACE, - STATE(3567), 1, - aux_sym_enum_body_repeat1, - [119312] = 4, + ACTIONS(752), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1277), 1, + anon_sym_LBRACE, + STATE(3350), 1, + sym_object_type, + [119622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 1, - anon_sym_COMMA, - ACTIONS(7087), 1, - anon_sym_RBRACE, - STATE(3567), 1, - aux_sym_enum_body_repeat1, - [119325] = 4, + ACTIONS(5902), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [119631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6194), 1, + ACTIONS(1339), 1, + anon_sym_RPAREN, + ACTIONS(7036), 1, anon_sym_COMMA, - ACTIONS(7089), 1, + STATE(3740), 1, + aux_sym_formal_parameters_repeat1, + [119644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5838), 1, + anon_sym_DOT, + ACTIONS(7038), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5834), 1, + anon_sym_DOT, + ACTIONS(7038), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - [119338] = 4, + ACTIONS(7040), 1, + anon_sym_LPAREN, + STATE(610), 1, + sym_statement_block, + [119679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(4403), 3, anon_sym_COMMA, - ACTIONS(7093), 1, - anon_sym_RBRACE, - STATE(3567), 1, - aux_sym_enum_body_repeat1, - [119351] = 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + [119688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, + ACTIONS(6600), 1, anon_sym_EQ, - ACTIONS(6853), 2, + ACTIONS(7042), 2, anon_sym_COMMA, anon_sym_RBRACK, - [119362] = 4, + [119699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_RPAREN, - STATE(3686), 1, + ACTIONS(7044), 1, + anon_sym_RBRACK, + STATE(3557), 1, aux_sym_array_repeat1, - [119375] = 4, + [119712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1417), 1, anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [119388] = 2, + ACTIONS(7046), 1, + anon_sym_RBRACK, + STATE(3690), 1, + aux_sym_array_pattern_repeat1, + [119725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7095), 3, - sym__automatic_semicolon, + ACTIONS(7042), 1, + anon_sym_RBRACK, + ACTIONS(7048), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119397] = 2, + STATE(3690), 1, + aux_sym_array_pattern_repeat1, + [119738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7097), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119406] = 2, + ACTIONS(7051), 1, + anon_sym_EQ, + ACTIONS(3090), 2, + anon_sym_in, + anon_sym_of, + [119749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 3, + ACTIONS(5185), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119415] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(3859), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119424] = 3, + [119758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_as, - ACTIONS(7103), 2, + ACTIONS(7053), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [119435] = 3, + ACTIONS(7055), 1, + anon_sym_RBRACK, + STATE(3718), 1, + aux_sym_tuple_type_repeat1, + [119771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7105), 1, - anon_sym_LBRACE, - ACTIONS(6570), 2, + ACTIONS(4506), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [119446] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(7107), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [119459] = 2, + ACTIONS(7057), 1, + anon_sym_AMP, + ACTIONS(7059), 1, + anon_sym_PIPE, + [119784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7109), 3, + ACTIONS(7061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119468] = 4, + [119793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(6978), 1, + sym_identifier, + ACTIONS(7063), 1, anon_sym_GT, - ACTIONS(7111), 1, - anon_sym_COMMA, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - [119481] = 4, + STATE(3951), 1, + sym_type_parameter, + [119806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_RBRACK, - ACTIONS(7113), 1, - anon_sym_COMMA, - STATE(3570), 1, - aux_sym_tuple_type_repeat1, - [119494] = 4, + ACTIONS(752), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1277), 1, + anon_sym_LBRACE, + STATE(3200), 1, + sym_object_type, + [119819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(7065), 1, anon_sym_COMMA, - ACTIONS(7046), 1, + ACTIONS(7067), 1, anon_sym_RBRACE, - STATE(3750), 1, - aux_sym_object_repeat1, - [119507] = 2, + STATE(3758), 1, + aux_sym_enum_body_repeat1, + [119832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 3, - sym__automatic_semicolon, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LT, - ACTIONS(7115), 1, - anon_sym_EQ, - STATE(4249), 1, - sym_type_parameters, - [119529] = 4, + ACTIONS(7069), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [119845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(2755), 1, + anon_sym_GT, + ACTIONS(7071), 1, anon_sym_COMMA, - ACTIONS(7030), 1, - anon_sym_RBRACE, - STATE(3749), 1, - aux_sym_object_pattern_repeat1, - [119542] = 2, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + [119858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7117), 3, + ACTIONS(7073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119551] = 2, + [119867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7119), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119560] = 2, + ACTIONS(6978), 1, + sym_identifier, + ACTIONS(7075), 1, + anon_sym_GT, + STATE(3951), 1, + sym_type_parameter, + [119880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 3, - sym__automatic_semicolon, + ACTIONS(7075), 1, + anon_sym_GT, + ACTIONS(7077), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119569] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(3859), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119578] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(3863), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119587] = 2, + STATE(3755), 1, + aux_sym_type_parameters_repeat1, + [119893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 3, + ACTIONS(7079), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119596] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(7125), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119605] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(3859), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119614] = 4, + [119902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 1, + ACTIONS(210), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1277), 1, + ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(3203), 1, + STATE(723), 1, sym_object_type, - [119627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7127), 1, - anon_sym_COMMA, - ACTIONS(7129), 1, - anon_sym_GT, - STATE(3653), 1, - aux_sym_type_parameters_repeat1, - [119640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(6648), 1, - anon_sym_RBRACK, - STATE(3557), 1, - aux_sym_array_pattern_repeat1, - [119653] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(3867), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [119662] = 4, + [119915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4367), 1, + ACTIONS(4399), 1, anon_sym_RPAREN, - STATE(3751), 1, + STATE(3715), 1, aux_sym_array_repeat1, - [119675] = 4, + [119928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4396), 1, + ACTIONS(4399), 1, anon_sym_RPAREN, - STATE(3713), 1, + STATE(3557), 1, aux_sym_array_repeat1, - [119688] = 4, + [119941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4396), 1, + ACTIONS(4415), 1, anon_sym_RPAREN, - STATE(3545), 1, + STATE(3757), 1, aux_sym_array_repeat1, - [119701] = 4, + [119954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4367), 1, + ACTIONS(4415), 1, anon_sym_RPAREN, - STATE(3545), 1, + STATE(3557), 1, aux_sym_array_repeat1, - [119714] = 4, + [119967] = 4, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(7081), 1, + sym__glimmer_template_content, + ACTIONS(7084), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3710), 1, + aux_sym_glimmer_template_repeat1, + [119980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(7086), 1, + anon_sym_GT, + [119993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(7088), 1, + anon_sym_as, + ACTIONS(7090), 2, anon_sym_COMMA, - ACTIONS(4390), 1, - anon_sym_RBRACK, - STATE(3545), 1, - aux_sym_array_repeat1, - [119727] = 4, + anon_sym_RBRACE, + [120004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_implements, - ACTIONS(7131), 1, - anon_sym_LBRACE, - STATE(4421), 1, - sym_implements_clause, - [119740] = 4, + ACTIONS(7092), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [120013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7133), 1, - anon_sym_COMMA, - ACTIONS(7136), 1, + ACTIONS(5794), 1, anon_sym_RBRACE, - STATE(3712), 1, + ACTIONS(7094), 1, + anon_sym_COMMA, + STATE(3769), 1, aux_sym_export_clause_repeat1, - [119753] = 4, + [120026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(7138), 1, + ACTIONS(7096), 1, anon_sym_RPAREN, - STATE(3545), 1, + STATE(3557), 1, aux_sym_array_repeat1, - [119766] = 3, + [120039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7140), 1, - anon_sym_EQ, - ACTIONS(7103), 2, + ACTIONS(7061), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [119777] = 4, + anon_sym_SEMI, + [120048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 1, + ACTIONS(2759), 1, anon_sym_GT, - ACTIONS(7142), 1, + ACTIONS(7098), 1, anon_sym_COMMA, - STATE(3529), 1, + STATE(3470), 1, aux_sym_implements_clause_repeat1, - [119790] = 2, + [120061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_RBRACK, + ACTIONS(7100), 1, + anon_sym_COMMA, + STATE(3730), 1, + aux_sym_tuple_type_repeat1, + [120074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 3, + ACTIONS(7102), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [119799] = 2, + [120083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 3, + ACTIONS(7104), 1, anon_sym_COMMA, + ACTIONS(7106), 1, anon_sym_RBRACE, - anon_sym_from, - [119808] = 4, + STATE(3790), 1, + aux_sym_enum_body_repeat1, + [120096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(6600), 1, + anon_sym_EQ, + ACTIONS(7108), 2, anon_sym_COMMA, - ACTIONS(7146), 1, anon_sym_RBRACE, - STATE(3548), 1, - aux_sym_object_repeat1, - [119821] = 4, + [120107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(4300), 1, - anon_sym_RPAREN, - STATE(3790), 1, - aux_sym_array_repeat1, - [119834] = 4, + ACTIONS(7110), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [120116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(7112), 1, + anon_sym_as, + ACTIONS(5415), 2, anon_sym_COMMA, - ACTIONS(7146), 1, anon_sym_RBRACE, - STATE(3750), 1, - aux_sym_object_repeat1, - [119847] = 2, + [120127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7109), 3, - sym__automatic_semicolon, + ACTIONS(5413), 1, + anon_sym_type, + ACTIONS(7114), 1, + sym_identifier, + STATE(3868), 1, + sym__import_identifier, + [120140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5413), 1, + anon_sym_type, + ACTIONS(7116), 1, + sym_identifier, + STATE(3866), 1, + sym__import_identifier, + [120153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_RBRACE, + ACTIONS(7118), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119856] = 2, + STATE(3784), 1, + aux_sym_named_imports_repeat1, + [120166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 3, + ACTIONS(5838), 1, + anon_sym_DOT, + ACTIONS(7120), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [119865] = 2, + [120177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7056), 3, + ACTIONS(5834), 1, + anon_sym_DOT, + ACTIONS(7120), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [119874] = 4, + [120188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(7122), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4300), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [119887] = 4, + anon_sym_SEMI, + [120197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(7124), 1, anon_sym_COMMA, - ACTIONS(7150), 1, - anon_sym_RBRACE, - STATE(3749), 1, - aux_sym_object_pattern_repeat1, - [119900] = 4, + ACTIONS(7127), 1, + anon_sym_RBRACK, + STATE(3730), 1, + aux_sym_tuple_type_repeat1, + [120210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_RBRACE, - ACTIONS(7152), 1, - anon_sym_COMMA, - STATE(3712), 1, - aux_sym_export_clause_repeat1, - [119913] = 2, + ACTIONS(7129), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [120219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 3, + ACTIONS(7131), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119922] = 2, + [120228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7154), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [119931] = 3, + ACTIONS(6498), 1, + anon_sym_LBRACE, + ACTIONS(6500), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [120239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7156), 1, - anon_sym_as, - ACTIONS(7158), 2, + ACTIONS(7133), 1, anon_sym_COMMA, + ACTIONS(7135), 1, anon_sym_RBRACE, - [119942] = 2, + STATE(3790), 1, + aux_sym_enum_body_repeat1, + [120252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 3, - sym__automatic_semicolon, + ACTIONS(7137), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119951] = 2, + ACTIONS(7139), 1, + anon_sym_RBRACE, + STATE(3790), 1, + aux_sym_enum_body_repeat1, + [120265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 3, - sym__automatic_semicolon, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119960] = 4, + ACTIONS(4439), 1, + anon_sym_RPAREN, + STATE(3742), 1, + aux_sym_array_repeat1, + [120278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4390), 1, - anon_sym_RBRACK, - STATE(3647), 1, + ACTIONS(4439), 1, + anon_sym_RPAREN, + STATE(3557), 1, aux_sym_array_repeat1, - [119973] = 4, + [120291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, + ACTIONS(6760), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6648), 1, - anon_sym_RBRACK, - STATE(3648), 1, - aux_sym_array_pattern_repeat1, - [119986] = 2, + anon_sym_SEMI, + [120300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 3, - sym__automatic_semicolon, + ACTIONS(5896), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [120309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, anon_sym_COMMA, - anon_sym_SEMI, - [119995] = 2, + ACTIONS(7144), 1, + anon_sym_RPAREN, + STATE(3740), 1, + aux_sym_formal_parameters_repeat1, + [120322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7164), 3, + ACTIONS(7146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7166), 1, - anon_sym_LPAREN, - ACTIONS(7168), 1, - anon_sym_await, - STATE(46), 1, - sym__for_header, - [120017] = 4, + [120331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(7170), 1, - anon_sym_GT, - [120030] = 4, + ACTIONS(1622), 1, + anon_sym_COMMA, + ACTIONS(7148), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [120344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_COMMA, - ACTIONS(7174), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym_enum_body_repeat1, - [120043] = 2, + ACTIONS(7150), 1, + anon_sym_COMMA, + ACTIONS(7152), 1, + anon_sym_RBRACK, + STATE(3774), 1, + aux_sym_tuple_type_repeat1, + [120357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7176), 3, - sym__automatic_semicolon, + ACTIONS(2875), 1, + anon_sym_GT, + ACTIONS(7154), 1, anon_sym_COMMA, - anon_sym_SEMI, - [120052] = 2, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + [120370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 3, + ACTIONS(7156), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5299), 1, - anon_sym_is, - ACTIONS(5882), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [120072] = 4, + [120379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5370), 1, anon_sym_PIPE, - ACTIONS(5405), 1, + ACTIONS(5372), 1, anon_sym_extends, - [120085] = 2, + [120392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7178), 3, + ACTIONS(7158), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120094] = 2, - ACTIONS(5577), 1, + [120401] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 3, + ACTIONS(6257), 1, + anon_sym_COMMA, + ACTIONS(7160), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [120103] = 2, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + [120414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 3, + ACTIONS(7158), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120112] = 2, + [120423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 3, + ACTIONS(7162), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120121] = 4, + [120432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_RBRACK, - ACTIONS(7182), 1, + ACTIONS(7164), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3570), 1, - aux_sym_tuple_type_repeat1, - [120134] = 4, + anon_sym_SEMI, + [120441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, - anon_sym_GT, - ACTIONS(7184), 1, + ACTIONS(7164), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - [120147] = 4, + anon_sym_SEMI, + [120450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7166), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_RBRACE, - STATE(3749), 1, - aux_sym_object_pattern_repeat1, - [120160] = 4, + anon_sym_SEMI, + [120459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 1, - anon_sym_COMMA, - ACTIONS(7194), 1, - anon_sym_RBRACE, - STATE(3750), 1, - aux_sym_object_repeat1, - [120173] = 4, + ACTIONS(6978), 1, + sym_identifier, + ACTIONS(7168), 1, + anon_sym_GT, + STATE(3951), 1, + sym_type_parameter, + [120472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(7170), 1, anon_sym_COMMA, - ACTIONS(7196), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [120186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - ACTIONS(7058), 1, - anon_sym_as, - STATE(3907), 1, - sym__from_clause, - [120199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(7198), 1, - sym_identifier, - STATE(3444), 1, - sym_export_clause, - [120212] = 4, + ACTIONS(7173), 1, + anon_sym_GT, + STATE(3755), 1, + aux_sym_type_parameters_repeat1, + [120485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(210), 1, anon_sym_LBRACE_PIPE, ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(649), 1, + STATE(725), 1, sym_object_type, - [120225] = 4, + [120498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_RBRACE, - STATE(3674), 1, - aux_sym_enum_body_repeat1, - [120238] = 4, + ACTIONS(7175), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [120511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1277), 1, - anon_sym_LBRACE, - STATE(3368), 1, - sym_object_type, - [120251] = 3, + ACTIONS(7177), 1, + anon_sym_COMMA, + ACTIONS(7179), 1, + anon_sym_RBRACE, + STATE(3790), 1, + aux_sym_enum_body_repeat1, + [120524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, - sym_identifier, - ACTIONS(7206), 2, + ACTIONS(7181), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [120262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2495), 1, - anon_sym_RBRACK, - ACTIONS(7208), 1, anon_sym_COMMA, - STATE(3570), 1, - aux_sym_tuple_type_repeat1, - [120275] = 4, + anon_sym_SEMI, + [120533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(7210), 1, + ACTIONS(2761), 1, anon_sym_GT, - [120288] = 3, + ACTIONS(7183), 1, + anon_sym_COMMA, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + [120546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7212), 1, - anon_sym_LBRACE, - ACTIONS(6525), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [120299] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(4209), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [120308] = 3, + ACTIONS(7185), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - sym_identifier, - ACTIONS(7216), 2, + ACTIONS(7187), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [120319] = 2, - ACTIONS(5577), 1, + [120564] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 3, + ACTIONS(5291), 1, + anon_sym_is, + ACTIONS(5882), 2, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [120328] = 4, + anon_sym_EQ_GT, + [120575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - sym_identifier, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_private_property_identifier, - [120341] = 4, + ACTIONS(7189), 1, + anon_sym_COMMA, + ACTIONS(7191), 1, + anon_sym_RBRACE, + STATE(3734), 1, + aux_sym_enum_body_repeat1, + [120588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7224), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - ACTIONS(7226), 1, + ACTIONS(7195), 1, anon_sym_await, - STATE(33), 1, + STATE(41), 1, sym__for_header, - [120354] = 4, + [120601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(7197), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7230), 1, - anon_sym_RBRACK, - STATE(3758), 1, - aux_sym_tuple_type_repeat1, - [120367] = 4, + anon_sym_SEMI, + [120610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7232), 1, + ACTIONS(7199), 1, anon_sym_COMMA, - ACTIONS(7234), 1, - anon_sym_GT, - STATE(3573), 1, - aux_sym_type_parameters_repeat1, - [120380] = 4, + ACTIONS(7201), 1, + anon_sym_RPAREN, + STATE(3777), 1, + aux_sym_formal_parameters_repeat1, + [120623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - sym_identifier, - ACTIONS(7238), 1, - anon_sym_LBRACK, - ACTIONS(7240), 1, - sym_private_property_identifier, - [120393] = 4, + ACTIONS(7203), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [120632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, - anon_sym_GT, - ACTIONS(7242), 1, + ACTIONS(7205), 1, anon_sym_COMMA, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - [120406] = 4, + ACTIONS(7208), 1, + anon_sym_RBRACE, + STATE(3769), 1, + aux_sym_export_clause_repeat1, + [120645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 1, - anon_sym_extends, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7246), 1, - anon_sym_PIPE, - [120419] = 2, + ACTIONS(7197), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7248), 3, + ACTIONS(7210), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120428] = 4, + [120663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7212), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7252), 1, - anon_sym_RBRACK, - STATE(3689), 1, - aux_sym_tuple_type_repeat1, - [120441] = 4, + anon_sym_SEMI, + [120672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(6597), 1, - anon_sym_RBRACK, - STATE(3557), 1, - aux_sym_array_pattern_repeat1, - [120454] = 4, + ACTIONS(6139), 1, + anon_sym_AMP, + ACTIONS(6141), 1, + anon_sym_PIPE, + ACTIONS(6143), 1, + anon_sym_extends, + [120685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(2491), 1, + anon_sym_RBRACK, + ACTIONS(7214), 1, anon_sym_COMMA, - ACTIONS(7254), 1, - anon_sym_RBRACE, - STATE(3750), 1, - aux_sym_object_repeat1, - [120467] = 4, + STATE(3730), 1, + aux_sym_tuple_type_repeat1, + [120698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7256), 1, - sym_identifier, - ACTIONS(7258), 1, - anon_sym_LBRACK, - ACTIONS(7260), 1, - sym_private_property_identifier, - [120480] = 4, + ACTIONS(7187), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(7187), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7262), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [120493] = 3, + anon_sym_SEMI, + [120716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, - anon_sym_LBRACE, - ACTIONS(3568), 2, + ACTIONS(1337), 1, + anon_sym_RPAREN, + ACTIONS(7216), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [120504] = 4, + STATE(3740), 1, + aux_sym_formal_parameters_repeat1, + [120729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4400), 1, - anon_sym_RBRACK, - STATE(3545), 1, + ACTIONS(4382), 1, + anon_sym_RPAREN, + STATE(3799), 1, aux_sym_array_repeat1, - [120517] = 3, + [120742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_LBRACE, - ACTIONS(3601), 2, + ACTIONS(1622), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [120528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7264), 1, - sym_identifier, - ACTIONS(7266), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, - sym_private_property_identifier, - [120541] = 4, + ACTIONS(4382), 1, + anon_sym_RPAREN, + STATE(3557), 1, + aux_sym_array_repeat1, + [120755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_AMP, - ACTIONS(5545), 1, - anon_sym_extends, - ACTIONS(6314), 1, - anon_sym_PIPE, - [120554] = 2, + ACTIONS(6707), 1, + anon_sym_from, + ACTIONS(6859), 1, + anon_sym_as, + STATE(3929), 1, + sym__from_clause, + [120768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120563] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(6354), 3, + ACTIONS(1786), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [120572] = 4, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(7270), 1, - sym__glimmer_template_content, - ACTIONS(7273), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3784), 1, - aux_sym_glimmer_template_repeat1, - [120585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6889), 1, + ACTIONS(7218), 1, sym_identifier, - ACTIONS(7275), 1, - anon_sym_GT, - STATE(4054), 1, - sym_type_parameter, - [120598] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym_while, - ACTIONS(7277), 1, - anon_sym_else, - STATE(755), 1, - sym_else_clause, - [120611] = 4, + STATE(3512), 1, + sym_export_clause, + [120781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(4400), 1, - anon_sym_RBRACK, - STATE(3553), 1, - aux_sym_array_repeat1, - [120624] = 4, + ACTIONS(5413), 1, + anon_sym_type, + ACTIONS(7220), 1, + sym_identifier, + STATE(4031), 1, + sym__import_identifier, + [120794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(6597), 1, - anon_sym_RBRACK, - STATE(3555), 1, - aux_sym_array_pattern_repeat1, - [120637] = 2, + ACTIONS(5413), 1, + anon_sym_type, + ACTIONS(7222), 1, + sym_identifier, + STATE(4025), 1, + sym__import_identifier, + [120807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 3, - sym__automatic_semicolon, + ACTIONS(7224), 1, anon_sym_COMMA, - anon_sym_SEMI, - [120646] = 4, + ACTIONS(7227), 1, + anon_sym_RBRACE, + STATE(3784), 1, + aux_sym_named_imports_repeat1, + [120820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_COMMA, - ACTIONS(7281), 1, - anon_sym_RPAREN, - STATE(3545), 1, - aux_sym_array_repeat1, - [120659] = 4, + ACTIONS(1238), 1, + anon_sym_DQUOTE, + ACTIONS(1240), 1, + anon_sym_SQUOTE, + STATE(4154), 1, + sym_string, + [120833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7229), 1, sym_identifier, - ACTIONS(7285), 1, + ACTIONS(7231), 1, anon_sym_LBRACK, - ACTIONS(7287), 1, + ACTIONS(7233), 1, sym_private_property_identifier, - [120672] = 3, + [120846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5308), 1, anon_sym_DOT, - ACTIONS(7289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [120683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7291), 1, - anon_sym_COMMA, - ACTIONS(7293), 1, - anon_sym_RPAREN, - STATE(3560), 1, - aux_sym_formal_parameters_repeat1, - [120696] = 4, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(7235), 1, + anon_sym_GT, + [120859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(7237), 1, sym_identifier, - ACTIONS(7297), 1, + ACTIONS(7239), 1, anon_sym_LBRACK, - ACTIONS(7299), 1, + ACTIONS(7241), 1, sym_private_property_identifier, - [120709] = 2, + [120872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 3, + ACTIONS(5880), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [120718] = 4, + [120881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_GT, - ACTIONS(7301), 1, + ACTIONS(7243), 1, anon_sym_COMMA, - STATE(3529), 1, - aux_sym_implements_clause_repeat1, - [120731] = 4, + ACTIONS(7246), 1, + anon_sym_RBRACE, + STATE(3790), 1, + aux_sym_enum_body_repeat1, + [120894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + sym_private_property_identifier, + [120907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7254), 1, anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_RBRACE, - STATE(3749), 1, - aux_sym_object_pattern_repeat1, - [120744] = 4, + ACTIONS(7256), 1, + anon_sym_RBRACK, + STATE(3801), 1, + aux_sym_tuple_type_repeat1, + [120920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5476), 1, + ACTIONS(3019), 1, anon_sym_COLON, - ACTIONS(7305), 1, - anon_sym_GT, - [120757] = 4, + ACTIONS(7258), 1, + anon_sym_RPAREN, + STATE(4247), 1, + sym_type_annotation, + [120933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_while, + ACTIONS(7260), 1, + anon_sym_else, + STATE(703), 1, + sym_else_clause, + [120946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_extends, + ACTIONS(6321), 1, + anon_sym_PIPE, + [120959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7309), 1, + ACTIONS(7264), 1, anon_sym_LBRACK, - ACTIONS(7311), 1, + ACTIONS(7266), 1, sym_private_property_identifier, - [120770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7279), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120779] = 4, + [120972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, + ACTIONS(7268), 1, sym_identifier, - ACTIONS(7315), 1, + ACTIONS(7270), 1, anon_sym_LBRACK, - ACTIONS(7317), 1, + ACTIONS(7272), 1, sym_private_property_identifier, - [120792] = 2, + [120985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 3, + ACTIONS(7181), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7319), 1, - anon_sym_EQ, - ACTIONS(7103), 2, - anon_sym_COMMA, - anon_sym_from, - [120812] = 4, + [120994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(4289), 1, + ACTIONS(7274), 1, anon_sym_RPAREN, - STATE(3545), 1, + STATE(3557), 1, aux_sym_array_repeat1, - [120825] = 4, + [121007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(6825), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4289), 1, - anon_sym_RPAREN, - STATE(3776), 1, - aux_sym_array_repeat1, - [120838] = 4, + anon_sym_SEMI, + [121016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(2497), 1, + anon_sym_RBRACK, + ACTIONS(7276), 1, anon_sym_COMMA, - ACTIONS(7150), 1, - anon_sym_RBRACE, - STATE(3600), 1, - aux_sym_object_pattern_repeat1, - [120851] = 2, + STATE(3730), 1, + aux_sym_tuple_type_repeat1, + [121029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 2, + ACTIONS(6851), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [120859] = 2, + [121038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7278), 1, + sym_identifier, + ACTIONS(7280), 1, + anon_sym_LBRACK, + ACTIONS(7282), 1, + sym_private_property_identifier, + [121051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 2, + ACTIONS(7284), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [120867] = 3, + anon_sym_SEMI, + [121060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3366), 1, - sym_formal_parameters, - [120877] = 3, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - STATE(1928), 1, - sym_arguments, - [120887] = 3, + ACTIONS(7284), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3153), 1, - sym_formal_parameters, - [120897] = 3, + ACTIONS(7288), 1, + sym_identifier, + ACTIONS(7290), 1, + anon_sym_LBRACK, + ACTIONS(7292), 1, + sym_private_property_identifier, + [121091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, - [120907] = 3, + ACTIONS(7284), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(3942), 1, - sym_parenthesized_expression, - [120917] = 3, + ACTIONS(7294), 1, + sym_identifier, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7298), 1, + sym_private_property_identifier, + [121113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(7210), 1, + ACTIONS(2827), 1, anon_sym_GT, - [120927] = 2, + ACTIONS(7300), 1, + anon_sym_COMMA, + STATE(3470), 1, + aux_sym_implements_clause_repeat1, + [121126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 2, + ACTIONS(7302), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [120935] = 2, + [121135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 2, + ACTIONS(5163), 2, anon_sym_COMMA, anon_sym_RBRACE, - [120943] = 3, + [121143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, - [120953] = 3, + ACTIONS(3690), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [121151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym_in, - ACTIONS(7329), 1, - anon_sym_COLON, - [120963] = 3, + ACTIONS(6978), 1, + sym_identifier, + STATE(3661), 1, + sym_type_parameter, + [121161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_statement_block, - [120973] = 3, + ACTIONS(7304), 1, + sym_identifier, + ACTIONS(7306), 1, + sym_private_property_identifier, + [121171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, + ACTIONS(7308), 1, anon_sym_LPAREN, - STATE(42), 1, + STATE(40), 1, sym_parenthesized_expression, - [120983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7331), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym__for_header, - [120993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(7210), 1, - anon_sym_GT, - [121003] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7333), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [121011] = 3, + [121181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, - STATE(4275), 1, + STATE(2850), 1, sym_formal_parameters, - [121021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(605), 1, - sym_statement_block, - [121031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [121039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5609), 1, - anon_sym_LBRACE, - STATE(2041), 1, - sym_class_body, - [121049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6294), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [121057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(3910), 1, - sym__from_clause, - [121067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6487), 1, - anon_sym_in, - ACTIONS(6489), 1, - anon_sym_of, - [121077] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(7335), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [121085] = 3, + [121191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - anon_sym_LBRACE, - STATE(148), 1, - sym_class_body, - [121095] = 3, + ACTIONS(7310), 1, + sym_identifier, + ACTIONS(7312), 1, + sym_private_property_identifier, + [121201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1838), 1, - sym_class_body, - [121105] = 2, + ACTIONS(7314), 1, + sym_identifier, + ACTIONS(7316), 1, + sym_private_property_identifier, + [121211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7136), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [121113] = 2, + ACTIONS(7318), 1, + sym_identifier, + ACTIONS(7320), 1, + sym_private_property_identifier, + [121221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [121121] = 3, + ACTIONS(7268), 1, + sym_identifier, + ACTIONS(7272), 1, + sym_private_property_identifier, + [121231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5721), 1, anon_sym_LBRACE, - STATE(612), 1, + STATE(734), 1, sym_class_body, - [121131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6284), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [121139] = 3, + [121241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - STATE(595), 1, - sym_statement_block, - [121149] = 3, + ACTIONS(7308), 1, + anon_sym_LPAREN, + STATE(3888), 1, + sym_parenthesized_expression, + [121251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(596), 1, + STATE(1883), 1, sym_class_body, - [121159] = 3, + [121261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1903), 1, - sym_class_body, - [121169] = 3, + ACTIONS(7322), 1, + sym_identifier, + ACTIONS(7324), 1, + sym_private_property_identifier, + [121271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(3873), 1, - sym_statement_block, - [121179] = 2, + ACTIONS(7308), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym_parenthesized_expression, + [121281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5139), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3171), 1, - sym_formal_parameters, - [121197] = 3, + [121289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3871), 1, + STATE(567), 1, sym_statement_block, - [121207] = 2, + [121299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [121215] = 3, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3976), 1, + sym_statement_block, + [121309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - STATE(1913), 1, - sym_class_body, - [121225] = 3, + STATE(1887), 1, + sym_statement_block, + [121319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, + ACTIONS(7308), 1, anon_sym_LPAREN, - STATE(47), 1, + STATE(44), 1, sym_parenthesized_expression, - [121235] = 3, + [121329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, - [121245] = 3, + ACTIONS(5131), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(1879), 1, - sym_statement_block, - [121255] = 2, + ACTIONS(7326), 1, + sym_identifier, + ACTIONS(7328), 1, + sym_private_property_identifier, + [121347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [121263] = 3, + ACTIONS(7330), 1, + sym_identifier, + ACTIONS(7332), 1, + sym_private_property_identifier, + [121357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym_statement_block, - [121273] = 3, + ACTIONS(7334), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym__for_header, + [121367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, - [121283] = 3, + ACTIONS(7336), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [121375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, - anon_sym_LPAREN, - STATE(2622), 1, - sym_arguments, - [121293] = 3, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, + sym_private_property_identifier, + [121385] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(7342), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [121393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - anon_sym_SEMI, - ACTIONS(7343), 1, + ACTIONS(2523), 2, sym__automatic_semicolon, - [121303] = 2, + anon_sym_SEMI, + [121401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 2, + ACTIONS(2527), 2, sym__automatic_semicolon, anon_sym_SEMI, - [121311] = 2, + [121409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 2, + ACTIONS(5167), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121319] = 3, + [121417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1847), 1, - sym_class_body, - [121329] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4140), 1, + sym_formal_parameters, + [121427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(1802), 1, - sym_statement_block, - [121339] = 3, + ACTIONS(5151), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, - sym_identifier, - STATE(3550), 1, - sym_nested_identifier, - [121349] = 3, + ACTIONS(3030), 1, + anon_sym_LPAREN, + STATE(2524), 1, + sym_arguments, + [121445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(1850), 1, + STATE(1891), 1, sym_class_body, - [121359] = 3, + [121455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(601), 1, + STATE(2068), 1, sym_class_body, - [121369] = 3, + [121465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(1920), 1, + STATE(3957), 1, sym_statement_block, - [121379] = 3, + [121475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 1, - sym_identifier, - STATE(3792), 1, - sym_nested_identifier, - [121389] = 3, + ACTIONS(5105), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(1921), 1, + STATE(2071), 1, sym_class_body, - [121399] = 3, + [121493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(7344), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [121501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5547), 1, + anon_sym_DOT, + ACTIONS(7346), 1, + anon_sym_GT, + [121511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3378), 1, anon_sym_LBRACE, - STATE(1851), 1, + STATE(1872), 1, sym_statement_block, - [121409] = 3, + [121521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5882), 2, anon_sym_LBRACE, - STATE(3842), 1, - sym_statement_block, - [121419] = 2, + anon_sym_EQ_GT, + [121529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + sym_identifier, + ACTIONS(7350), 1, + sym_private_property_identifier, + [121539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 2, + ACTIONS(5131), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121427] = 3, + [121547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4033), 1, - sym_statement_block, - [121437] = 3, + ACTIONS(5139), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(7235), 1, + anon_sym_GT, + [121565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [121573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(4374), 1, + STATE(3053), 1, sym_formal_parameters, - [121447] = 2, + [121583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 2, + ACTIONS(5179), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121455] = 2, + [121591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 2, + ACTIONS(5189), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4011), 1, - sym_statement_block, - [121473] = 2, + [121599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [121481] = 3, + ACTIONS(7352), 1, + sym_identifier, + ACTIONS(7354), 1, + sym_private_property_identifier, + [121609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(600), 1, + STATE(1867), 1, sym_class_body, - [121491] = 3, + [121619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_statement_block, - [121501] = 2, + ACTIONS(7227), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5603), 2, - anon_sym_in, - anon_sym_of, - [121509] = 3, + ACTIONS(5109), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5597), 1, - anon_sym_LPAREN, - STATE(2372), 1, - sym_arguments, - [121519] = 3, + ACTIONS(7356), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, - anon_sym_LBRACE, - STATE(676), 1, - sym_class_body, - [121529] = 2, + ACTIONS(6707), 1, + anon_sym_from, + STATE(3930), 1, + sym__from_clause, + [121653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 2, + ACTIONS(7358), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [121537] = 3, + anon_sym_RBRACE, + [121661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - anon_sym_LBRACE, - STATE(2065), 1, - sym_class_body, - [121547] = 3, + ACTIONS(3019), 1, + anon_sym_COLON, + STATE(4028), 1, + sym_type_annotation, + [121671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(4229), 1, + STATE(3196), 1, sym_formal_parameters, - [121557] = 3, + [121681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_LPAREN, - STATE(2724), 1, - sym_formal_parameters, - [121567] = 3, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7362), 1, + anon_sym_STAR, + [121691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(2059), 1, + STATE(1954), 1, sym_class_body, - [121577] = 2, + [121701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [121585] = 3, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1953), 1, + sym_statement_block, + [121711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - STATE(155), 1, + STATE(1950), 1, sym_statement_block, - [121595] = 3, + [121721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3037), 1, - sym_formal_parameters, - [121605] = 3, + ACTIONS(6707), 1, + anon_sym_from, + STATE(3944), 1, + sym__from_clause, + [121731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(1904), 1, - sym_statement_block, - [121615] = 2, + STATE(1972), 1, + sym_class_body, + [121741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6962), 2, + ACTIONS(7364), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121623] = 3, + [121749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, - sym_identifier, - STATE(4054), 1, - sym_type_parameter, - [121633] = 3, + ACTIONS(5399), 1, + anon_sym_LPAREN, + STATE(2756), 1, + sym_formal_parameters, + [121759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6707), 1, + anon_sym_from, + STATE(3987), 1, + sym__from_clause, + [121769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(7366), 1, sym_identifier, - STATE(3703), 1, - sym_type_parameter, - [121643] = 2, + STATE(3684), 1, + sym_nested_identifier, + [121779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [121651] = 2, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(602), 1, + sym_statement_block, + [121789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 2, + ACTIONS(5113), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4000), 1, - sym_statement_block, - [121669] = 3, + [121797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3225), 1, - sym_formal_parameters, - [121679] = 2, + ACTIONS(7368), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [121805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 2, + ACTIONS(7370), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [121687] = 3, + ACTIONS(7372), 1, + anon_sym_from, + [121815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - STATE(3233), 1, - sym_statement_block, - [121697] = 3, + ACTIONS(7374), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [121823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(1477), 1, + STATE(1904), 1, sym_class_body, - [121707] = 3, + [121833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4071), 1, + STATE(4089), 1, sym_statement_block, - [121717] = 3, + [121843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(7376), 1, anon_sym_LBRACE, - STATE(1472), 1, - sym_statement_block, - [121727] = 3, + STATE(661), 1, + sym_switch_body, + [121853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - STATE(3230), 1, - sym_statement_block, - [121737] = 3, + ACTIONS(5109), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [121861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3226), 1, - sym_enum_body, - [121747] = 3, + STATE(4074), 1, + sym_statement_block, + [121871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(7334), 1, anon_sym_LPAREN, - STATE(4310), 1, - sym_formal_parameters, - [121757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7363), 1, - sym_identifier, - ACTIONS(7365), 1, - sym_private_property_identifier, - [121767] = 3, + STATE(42), 1, + sym__for_header, + [121881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - STATE(3959), 1, - sym_type_annotation, - [121777] = 3, + ACTIONS(5619), 1, + anon_sym_LPAREN, + STATE(2385), 1, + sym_arguments, + [121891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4183), 1, - sym_formal_parameters, - [121787] = 2, + ACTIONS(5631), 1, + anon_sym_LBRACE, + STATE(1394), 1, + sym_class_body, + [121901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(7378), 2, sym__automatic_semicolon, anon_sym_SEMI, - [121795] = 3, + [121909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, - anon_sym_SEMI, - ACTIONS(7369), 1, + ACTIONS(7380), 2, sym__automatic_semicolon, - [121805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5843), 1, - anon_sym_LBRACE, - STATE(3261), 1, - sym_statement_block, - [121815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 1, - sym_identifier, - ACTIONS(7373), 1, - anon_sym_STAR, - [121825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7375), 1, anon_sym_SEMI, - ACTIONS(7377), 1, - sym__automatic_semicolon, - [121835] = 3, + [121917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(4050), 1, - sym__from_clause, - [121845] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4121), 1, + sym_formal_parameters, + [121927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_SEMI, - ACTIONS(7381), 1, + ACTIONS(4401), 2, sym__automatic_semicolon, - [121855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2944), 1, - sym_formal_parameters, - [121865] = 2, + anon_sym_SEMI, + [121935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7014), 2, + ACTIONS(7382), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [121873] = 3, + anon_sym_RBRACK, + [121943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_enum_body, - [121883] = 2, + ACTIONS(7384), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [121951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 2, + ACTIONS(4394), 2, sym__automatic_semicolon, anon_sym_SEMI, - [121891] = 3, + [121959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1944), 1, - sym_class_body, - [121901] = 3, + ACTIONS(7386), 1, + anon_sym_in, + ACTIONS(7388), 1, + anon_sym_COLON, + [121969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(3845), 1, - sym_statement_block, - [121911] = 3, + STATE(605), 1, + sym_class_body, + [121979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 1, + ACTIONS(6978), 1, sym_identifier, - ACTIONS(7385), 1, - sym_private_property_identifier, - [121921] = 3, + STATE(3622), 1, + sym_type_parameter, + [121989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 1, - sym_identifier, - ACTIONS(7389), 1, - sym_private_property_identifier, - [121931] = 3, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_statement_block, + [121999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, - sym_identifier, - ACTIONS(7393), 1, - sym_private_property_identifier, - [121941] = 3, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1926), 1, + sym_class_body, + [122009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(2372), 1, - sym_arguments, - [121951] = 3, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1410), 1, + sym_statement_block, + [122019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, - sym_identifier, - ACTIONS(6986), 1, - sym_private_property_identifier, - [121961] = 2, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(614), 1, + sym_class_body, + [122029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(7390), 2, anon_sym_COMMA, anon_sym_RBRACE, - [121969] = 3, + [122037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym_class_body, - [121979] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3244), 1, + sym_formal_parameters, + [122047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(1386), 1, + STATE(3252), 1, sym_statement_block, - [121989] = 3, + [122057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - STATE(1383), 1, + STATE(1920), 1, sym_statement_block, - [121999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - STATE(1375), 1, - sym_arguments, - [122009] = 3, + [122067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(1971), 1, - sym_class_body, - [122019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7313), 1, - sym_identifier, - ACTIONS(7317), 1, - sym_private_property_identifier, - [122029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 1, - sym_identifier, - ACTIONS(7397), 1, - sym_private_property_identifier, - [122039] = 2, + STATE(3247), 1, + sym_statement_block, + [122077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122047] = 3, + ACTIONS(7392), 1, + anon_sym_LBRACE, + STATE(3262), 1, + sym_enum_body, + [122087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7401), 1, + ACTIONS(7208), 2, anon_sym_COMMA, - ACTIONS(7403), 1, - anon_sym_from, - [122057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7405), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122065] = 3, + anon_sym_RBRACE, + [122095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(1372), 1, - sym_class_body, - [122075] = 3, + STATE(627), 1, + sym_statement_block, + [122105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 1, - anon_sym_SEMI, - ACTIONS(7409), 1, - sym__automatic_semicolon, - [122085] = 3, + ACTIONS(7308), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, + [122115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(7394), 1, anon_sym_LBRACE, - STATE(158), 1, - sym_class_body, - [122095] = 2, + STATE(634), 1, + sym_enum_body, + [122125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122103] = 3, + ACTIONS(7396), 1, + sym_identifier, + ACTIONS(7398), 1, + sym_private_property_identifier, + [122135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - STATE(3399), 1, - sym_class_body, - [122113] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4101), 1, + sym_formal_parameters, + [122145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(1955), 1, - sym_statement_block, - [122123] = 3, + STATE(1936), 1, + sym_class_body, + [122155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7413), 1, - sym_identifier, - ACTIONS(7415), 1, - sym_private_property_identifier, - [122133] = 3, + ACTIONS(7308), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, + [122165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7417), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(666), 1, - sym_switch_body, - [122143] = 3, + STATE(3280), 1, + sym_statement_block, + [122175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7331), 1, - anon_sym_LPAREN, - STATE(31), 1, - sym__for_header, - [122153] = 3, + ACTIONS(5747), 1, + anon_sym_LBRACE, + STATE(157), 1, + sym_class_body, + [122185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(1368), 1, + STATE(2054), 1, sym_class_body, - [122163] = 3, + [122195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(597), 1, sym_statement_block, - [122173] = 3, + [122205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 1, - sym_identifier, - ACTIONS(7421), 1, - sym_private_property_identifier, - [122183] = 2, + ACTIONS(7308), 1, + anon_sym_LPAREN, + STATE(38), 1, + sym_parenthesized_expression, + [122215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122191] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4137), 1, + sym_formal_parameters, + [122225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - anon_sym_LBRACE, - STATE(154), 1, - sym_class_body, - [122201] = 3, + ACTIONS(7400), 1, + sym_identifier, + ACTIONS(7402), 1, + sym_private_property_identifier, + [122235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7425), 1, + ACTIONS(7404), 1, anon_sym_SEMI, - ACTIONS(7427), 1, + ACTIONS(7406), 1, sym__automatic_semicolon, - [122211] = 2, + [122245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [122219] = 2, + ACTIONS(7408), 1, + anon_sym_SEMI, + ACTIONS(7410), 1, + sym__automatic_semicolon, + [122255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 2, - sym__automatic_semicolon, + ACTIONS(7412), 1, anon_sym_SEMI, - [122227] = 2, + ACTIONS(7414), 1, + sym__automatic_semicolon, + [122265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122235] = 2, + ACTIONS(6225), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [122273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [122243] = 2, + ACTIONS(7262), 1, + sym_identifier, + ACTIONS(7266), 1, + sym_private_property_identifier, + [122283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [122251] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3339), 1, + sym_formal_parameters, + [122293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1813), 1, - sym_class_body, - [122261] = 3, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2694), 1, + sym_formal_parameters, + [122303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - STATE(1632), 1, + STATE(1358), 1, sym_arguments, - [122271] = 3, + [122313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - STATE(3954), 1, - sym_type_annotation, - [122281] = 2, + ACTIONS(5499), 1, + anon_sym_LPAREN, + STATE(2654), 1, + sym_arguments, + [122323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [122289] = 2, + ACTIONS(7416), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, + sym__automatic_semicolon, + [122333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7435), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [122297] = 3, + ACTIONS(5747), 1, + anon_sym_LBRACE, + STATE(160), 1, + sym_class_body, + [122343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(1403), 1, - sym_statement_block, - [122307] = 3, + ACTIONS(5547), 1, + anon_sym_DOT, + ACTIONS(7420), 1, + anon_sym_GT, + [122353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(7392), 1, anon_sym_LBRACE, - STATE(1859), 1, - sym_statement_block, - [122317] = 2, + STATE(3414), 1, + sym_enum_body, + [122363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 2, - anon_sym_COMMA, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(6934), 1, anon_sym_GT, - [122325] = 3, + [122373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - STATE(3383), 1, - sym_class_body, - [122335] = 3, + ACTIONS(7422), 1, + sym_identifier, + ACTIONS(7424), 1, + anon_sym_STAR, + [122383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4330), 1, - sym_formal_parameters, - [122345] = 3, + ACTIONS(7426), 1, + anon_sym_SEMI, + ACTIONS(7428), 1, + sym__automatic_semicolon, + [122393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(7430), 1, + anon_sym_SEMI, + ACTIONS(7432), 1, + sym__automatic_semicolon, + [122403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5721), 1, anon_sym_LBRACE, - STATE(157), 1, + STATE(759), 1, sym_class_body, - [122355] = 2, + [122413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6956), 1, + sym_identifier, + ACTIONS(6960), 1, + sym_private_property_identifier, + [122423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 2, + ACTIONS(7004), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [122363] = 3, + anon_sym_RBRACE, + [122431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4352), 1, - sym_formal_parameters, - [122373] = 3, + ACTIONS(1401), 1, + anon_sym_LBRACE, + STATE(151), 1, + sym_statement_block, + [122441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, - sym_identifier, - STATE(3767), 1, - sym_type_parameter, - [122383] = 3, + ACTIONS(6999), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [122449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(7170), 1, + ACTIONS(7173), 2, + anon_sym_COMMA, anon_sym_GT, - [122393] = 3, + [122457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(7170), 1, - anon_sym_GT, - [122403] = 3, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1982), 1, + sym_class_body, + [122467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4382), 1, - sym_formal_parameters, - [122413] = 3, + ACTIONS(7434), 1, + sym_identifier, + ACTIONS(7436), 1, + sym_private_property_identifier, + [122477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1886), 1, - sym_class_body, - [122423] = 3, + ACTIONS(7438), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [122485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(1432), 1, - sym_class_body, - [122433] = 3, + STATE(4003), 1, + sym_statement_block, + [122495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - STATE(3332), 1, - sym_class_body, - [122443] = 3, + ACTIONS(7440), 2, + anon_sym_COMMA, + anon_sym_GT, + [122503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1950), 1, - sym_class_body, - [122453] = 3, + ACTIONS(5167), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [122511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3329), 1, - sym_class_body, - [122463] = 3, + STATE(3812), 1, + sym_statement_block, + [122521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - sym_jsx_identifier, - ACTIONS(7441), 1, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4297), 1, + sym_formal_parameters, + [122531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7442), 1, sym_identifier, - [122473] = 3, + ACTIONS(7444), 1, + sym_private_property_identifier, + [122541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(1433), 1, + STATE(1510), 1, sym_class_body, - [122483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7443), 1, - sym_identifier, - ACTIONS(7445), 1, - anon_sym_STAR, - [122493] = 3, + [122551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(1401), 1, anon_sym_LBRACE, - STATE(1434), 1, + STATE(167), 1, sym_statement_block, - [122503] = 3, + [122561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(6978), 1, + sym_identifier, + STATE(3951), 1, + sym_type_parameter, + [122571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3378), 1, anon_sym_LBRACE, - STATE(1435), 1, + STATE(1923), 1, sym_statement_block, - [122513] = 3, + [122581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5721), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(753), 1, sym_class_body, - [122523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7447), 1, - sym_identifier, - ACTIONS(7449), 1, - sym_private_property_identifier, - [122533] = 3, + [122591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, - sym_identifier, - ACTIONS(7453), 1, - sym_private_property_identifier, - [122543] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4305), 1, + sym_formal_parameters, + [122601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, - sym_identifier, - ACTIONS(7457), 1, - sym_private_property_identifier, - [122553] = 3, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1507), 1, + sym_statement_block, + [122611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, + ACTIONS(7446), 1, sym_identifier, - ACTIONS(7461), 1, + ACTIONS(7448), 1, sym_private_property_identifier, - [122563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7463), 1, - sym_identifier, - ACTIONS(7465), 1, - anon_sym_STAR, - [122573] = 2, + [122621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [122581] = 3, + ACTIONS(5659), 2, + anon_sym_in, + anon_sym_of, + [122629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(715), 1, + STATE(1500), 1, sym_statement_block, - [122591] = 3, + [122639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4337), 1, + sym_formal_parameters, + [122649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(1818), 1, + STATE(4050), 1, sym_statement_block, - [122601] = 3, + [122659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(4063), 1, - sym_parenthesized_expression, - [122611] = 3, + STATE(4338), 1, + sym_formal_parameters, + [122669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, - sym_identifier, - ACTIONS(7471), 1, - sym_private_property_identifier, - [122621] = 3, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(613), 1, + sym_statement_block, + [122679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 1, + ACTIONS(7450), 1, sym_identifier, - ACTIONS(7475), 1, - sym_private_property_identifier, - [122631] = 2, + ACTIONS(7452), 1, + anon_sym_STAR, + [122689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 2, + ACTIONS(5105), 2, anon_sym_COMMA, anon_sym_RBRACE, - [122639] = 3, + [122697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 1, - sym_identifier, - ACTIONS(7481), 1, - sym_private_property_identifier, - [122649] = 2, + ACTIONS(3019), 1, + anon_sym_COLON, + STATE(3898), 1, + sym_type_annotation, + [122707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6707), 1, + anon_sym_from, + STATE(4036), 1, + sym__from_clause, + [122717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 2, + ACTIONS(5135), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [122657] = 3, + anon_sym_RBRACE, + [122725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, - sym_identifier, - ACTIONS(7487), 1, - sym_private_property_identifier, - [122667] = 3, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(2385), 1, + sym_arguments, + [122735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(1926), 1, - sym_statement_block, - [122677] = 3, + ACTIONS(7454), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [122743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - STATE(3309), 1, - sym_class_body, - [122687] = 2, + ACTIONS(7456), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [122751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 2, + ACTIONS(5147), 2, anon_sym_COMMA, anon_sym_RBRACE, - [122695] = 3, + [122759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2683), 1, - anon_sym_LPAREN, - STATE(2898), 1, - sym_formal_parameters, - [122705] = 3, + ACTIONS(7458), 1, + sym_identifier, + ACTIONS(7460), 1, + anon_sym_STAR, + [122769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - STATE(4271), 1, - sym_formal_parameters, - [122715] = 3, + STATE(1471), 1, + sym_arguments, + [122779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_class_body, - [122725] = 3, + ACTIONS(7462), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [122787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(6897), 1, - anon_sym_GT, - [122735] = 3, + ACTIONS(7464), 1, + anon_sym_SEMI, + ACTIONS(7466), 1, + sym__automatic_semicolon, + [122797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5465), 1, anon_sym_COLON, - ACTIONS(6897), 1, + ACTIONS(7030), 1, anon_sym_GT, - [122745] = 3, + [122807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACE, - STATE(4064), 1, - sym_statement_block, - [122755] = 3, + ACTIONS(5547), 1, + anon_sym_DOT, + ACTIONS(7468), 1, + anon_sym_GT, + [122817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - STATE(3304), 1, - sym_class_body, - [122765] = 3, + ACTIONS(5401), 1, + anon_sym_COLON, + STATE(3729), 1, + sym_type_annotation, + [122827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_LBRACE, - STATE(3302), 1, - sym_class_body, - [122775] = 3, + ACTIONS(6567), 1, + anon_sym_in, + ACTIONS(6569), 1, + anon_sym_of, + [122837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(617), 1, - sym_statement_block, - [122785] = 3, + STATE(1464), 1, + sym_class_body, + [122847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, + ACTIONS(7394), 1, anon_sym_LBRACE, - STATE(757), 1, - sym_class_body, - [122795] = 2, + STATE(704), 1, + sym_enum_body, + [122857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [122803] = 3, + ACTIONS(7470), 1, + anon_sym_SEMI, + ACTIONS(7472), 1, + sym__automatic_semicolon, + [122867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - STATE(1273), 1, - sym_arguments, - [122813] = 3, + ACTIONS(7474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [122875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(1459), 1, - sym_statement_block, - [122823] = 3, + STATE(3250), 1, + sym_class_body, + [122885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_enum_body, - [122833] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4192), 1, + sym_formal_parameters, + [122895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_enum_body, - [122843] = 3, + ACTIONS(5143), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [122903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7491), 1, - sym_identifier, - ACTIONS(7493), 1, - sym_private_property_identifier, - [122853] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4244), 1, + sym_formal_parameters, + [122913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(1460), 1, + STATE(3154), 1, sym_class_body, - [122863] = 3, + [122923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(4027), 1, - sym__from_clause, - [122873] = 2, + ACTIONS(7476), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [122931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1453), 1, + sym_statement_block, + [122941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 2, + ACTIONS(5151), 2, anon_sym_COMMA, anon_sym_RBRACE, - [122881] = 3, + [122949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4067), 1, + STATE(3983), 1, sym_statement_block, - [122891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_COLON, - STATE(3581), 1, - sym_type_annotation, - [122901] = 3, + [122959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(4369), 1, + STATE(4267), 1, sym_formal_parameters, - [122911] = 3, + [122969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_formal_parameters, - [122921] = 3, + ACTIONS(5631), 1, + anon_sym_LBRACE, + STATE(2063), 1, + sym_class_body, + [122979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4321), 1, - sym_formal_parameters, - [122931] = 2, + ACTIONS(7478), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [122987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [122939] = 2, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3979), 1, + sym_statement_block, + [122997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 2, + ACTIONS(7480), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [122947] = 3, + anon_sym_RPAREN, + [123005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7495), 1, - anon_sym_SEMI, - ACTIONS(7497), 1, - sym__automatic_semicolon, - [122957] = 3, + ACTIONS(7482), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [123013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(3289), 1, + STATE(1963), 1, sym_class_body, - [122967] = 2, + [123023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 2, + ACTIONS(7144), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [122975] = 3, + anon_sym_RPAREN, + [123031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7484), 1, + anon_sym_LPAREN, + STATE(4001), 1, + sym_parenthesized_expression, + [123041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(3892), 1, + STATE(643), 1, sym_statement_block, - [122985] = 2, + [123051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [122993] = 3, + ACTIONS(7042), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [123059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(2877), 1, + sym_formal_parameters, + [123069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_LPAREN, + STATE(1766), 1, + sym_arguments, + [123079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(147), 1, sym_class_body, - [123003] = 2, + [123089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [123011] = 3, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4252), 1, + sym_formal_parameters, + [123099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_SEMI, - ACTIONS(7503), 1, - sym__automatic_semicolon, - [123021] = 2, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1831), 1, + sym_class_body, + [123109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 2, + ACTIONS(7486), 2, anon_sym_COMMA, anon_sym_RBRACE, - [123029] = 3, + [123117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(3895), 1, + STATE(1399), 1, sym_statement_block, - [123039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7071), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [123047] = 2, + [123127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [123055] = 2, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1957), 1, + sym_statement_block, + [123137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [123063] = 2, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1833), 1, + sym_statement_block, + [123147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 2, + ACTIONS(7488), 2, anon_sym_COMMA, anon_sym_RBRACE, - [123071] = 2, + [123155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 2, + ACTIONS(7127), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [123079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4098), 1, - sym_formal_parameters, - [123089] = 2, + anon_sym_RBRACK, + [123163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7507), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [123097] = 2, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1837), 1, + sym_statement_block, + [123173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7509), 2, + ACTIONS(7490), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [123105] = 3, + anon_sym_RBRACK, + [123181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, + ACTIONS(5747), 1, anon_sym_LBRACE, - STATE(2047), 1, + STATE(150), 1, sym_class_body, - [123115] = 3, + [123191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(5721), 1, anon_sym_LBRACE, - STATE(173), 1, - sym_statement_block, - [123125] = 3, + STATE(745), 1, + sym_class_body, + [123201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, - sym_identifier, - ACTIONS(7513), 1, - anon_sym_STAR, - [123135] = 2, + ACTIONS(7492), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [123209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 2, + ACTIONS(7494), 2, anon_sym_COMMA, anon_sym_RBRACE, - [123143] = 3, + [123217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_class_body, - [123153] = 3, + ACTIONS(2765), 1, + sym_jsx_identifier, + ACTIONS(7496), 1, + sym_identifier, + [123227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, - anon_sym_SEMI, - ACTIONS(7517), 1, - sym__automatic_semicolon, - [123163] = 2, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4367), 1, + sym_formal_parameters, + [123237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7519), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [123171] = 3, + ACTIONS(7498), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [123245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7521), 1, + ACTIONS(7500), 1, anon_sym_SEMI, - ACTIONS(7523), 1, + ACTIONS(7502), 1, sym__automatic_semicolon, - [123181] = 3, + [123255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3144), 1, + sym_class_body, + [123265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(2680), 1, + STATE(4412), 1, sym_formal_parameters, - [123191] = 2, + [123275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6938), 2, - anon_sym_COMMA, - anon_sym_GT, - [123199] = 3, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1885), 1, + sym_statement_block, + [123285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - anon_sym_from, - STATE(3949), 1, - sym__from_clause, - [123209] = 3, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1986), 1, + sym_class_body, + [123295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(4097), 1, + STATE(4309), 1, sym_formal_parameters, - [123219] = 3, + [123305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - [123229] = 2, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3998), 1, + sym_statement_block, + [123315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 2, - anon_sym_COMMA, - anon_sym_GT, - [123237] = 3, + ACTIONS(5631), 1, + anon_sym_LBRACE, + STATE(1397), 1, + sym_class_body, + [123325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4230), 1, - sym_formal_parameters, - [123247] = 3, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1395), 1, + sym_statement_block, + [123335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(4214), 1, - sym_formal_parameters, - [123257] = 3, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1985), 1, + sym_statement_block, + [123345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - STATE(4118), 1, + STATE(4431), 1, sym_formal_parameters, - [123267] = 3, + [123355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(1876), 1, + STATE(3124), 1, sym_class_body, - [123277] = 2, + [123365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7527), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [123285] = 2, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym_class_body, + [123375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1870), 1, + sym_class_body, + [123385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 2, + ACTIONS(5123), 2, anon_sym_COMMA, anon_sym_RBRACE, - [123293] = 3, + [123393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(609), 1, - sym_statement_block, - [123303] = 3, + STATE(1932), 1, + sym_class_body, + [123403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(4080), 1, + STATE(3882), 1, sym_statement_block, - [123313] = 2, + [123413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 2, + anon_sym_COMMA, + anon_sym_GT, + [123421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 2, + ACTIONS(7108), 2, anon_sym_COMMA, anon_sym_RBRACE, - [123321] = 3, + [123429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(1841), 1, + STATE(3832), 1, + sym_statement_block, + [123439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3376), 1, sym_class_body, - [123331] = 3, + [123449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_LPAREN, - STATE(2501), 1, - sym_arguments, - [123341] = 2, + ACTIONS(3378), 1, + anon_sym_LBRACE, + STATE(1933), 1, + sym_statement_block, + [123459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7189), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [123349] = 2, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4315), 1, + sym_formal_parameters, + [123469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [123357] = 2, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1948), 1, + sym_class_body, + [123479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [123365] = 3, + ACTIONS(5631), 1, + anon_sym_LBRACE, + STATE(1456), 1, + sym_class_body, + [123489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(1817), 1, + STATE(1389), 1, sym_class_body, - [123375] = 3, + [123499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(2067), 1, anon_sym_LBRACE, - STATE(1820), 1, + STATE(3889), 1, sym_statement_block, - [123385] = 3, + [123509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(4256), 1, + sym_formal_parameters, + [123519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(3924), 1, - sym_statement_block, - [123395] = 3, + STATE(603), 1, + sym_class_body, + [123529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(7533), 1, + ACTIONS(7508), 1, sym_private_property_identifier, - [123405] = 3, + [123539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7535), 1, + ACTIONS(7510), 1, sym_identifier, - ACTIONS(7537), 1, + ACTIONS(7512), 1, sym_private_property_identifier, - [123415] = 3, + [123549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, + ACTIONS(7514), 1, sym_identifier, - ACTIONS(7541), 1, + ACTIONS(7516), 1, sym_private_property_identifier, - [123425] = 3, + [123559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7264), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7268), 1, + ACTIONS(7520), 1, sym_private_property_identifier, - [123435] = 2, + [123569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [123443] = 3, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(3403), 1, + sym_class_body, + [123579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - STATE(1832), 1, + STATE(3402), 1, sym_class_body, - [123453] = 3, + [123589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(7305), 1, - anon_sym_GT, - [123463] = 3, + ACTIONS(5729), 1, + anon_sym_LBRACE, + STATE(611), 1, + sym_class_body, + [123599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_COLON, - ACTIONS(7305), 1, - anon_sym_GT, - [123473] = 3, + ACTIONS(7522), 1, + sym_identifier, + STATE(3728), 1, + sym_nested_identifier, + [123609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(1835), 1, - sym_statement_block, - [123483] = 2, + STATE(1379), 1, + sym_class_body, + [123619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, - anon_sym_as, - [123490] = 2, + ACTIONS(5179), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [123627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7545), 1, - anon_sym_RBRACK, - [123497] = 2, + ACTIONS(7524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [123635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7547), 1, - anon_sym_RBRACK, - [123504] = 2, + ACTIONS(7526), 1, + anon_sym_SEMI, + ACTIONS(7528), 1, + sym__automatic_semicolon, + [123645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_RBRACK, - [123511] = 2, + ACTIONS(7530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [123653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_GT, - [123518] = 2, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1380), 1, + sym_statement_block, + [123663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7553), 1, - anon_sym_GT, - [123525] = 2, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1859), 1, + sym_class_body, + [123673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - anon_sym_RBRACK, - [123532] = 2, + ACTIONS(6185), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [123681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, - anon_sym_RBRACK, - [123539] = 2, + ACTIONS(6205), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [123689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_is, - [123546] = 2, + ACTIONS(5547), 1, + anon_sym_DOT, + ACTIONS(7532), 1, + anon_sym_GT, + [123699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, + ACTIONS(5465), 1, + anon_sym_COLON, + ACTIONS(7086), 1, anon_sym_GT, - [123553] = 2, + [123709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_EQ_GT, - [123560] = 2, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1384), 1, + sym_statement_block, + [123719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_RBRACK, - [123567] = 2, + ACTIONS(3872), 1, + anon_sym_LPAREN, + STATE(1814), 1, + sym_arguments, + [123729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 1, - anon_sym_EQ_GT, - [123574] = 2, + ACTIONS(5852), 1, + anon_sym_LPAREN, + STATE(3363), 1, + sym_formal_parameters, + [123739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, - anon_sym_EQ_GT, - [123581] = 2, + ACTIONS(5631), 1, + anon_sym_LBRACE, + STATE(1385), 1, + sym_class_body, + [123749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(3827), 1, + sym_statement_block, + [123759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5189), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [123767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, - sym_identifier, - [123588] = 2, + ACTIONS(7534), 1, + anon_sym_RBRACK, + [123774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 1, - anon_sym_EQ_GT, - [123595] = 2, + ACTIONS(7536), 1, + anon_sym_RBRACK, + [123781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(7538), 1, anon_sym_RBRACK, - [123602] = 2, + [123788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_RBRACK, - [123609] = 2, + ACTIONS(7540), 1, + sym_identifier, + [123795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, - anon_sym_EQ, - [123616] = 2, + ACTIONS(7086), 1, + anon_sym_GT, + [123802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, + ACTIONS(7542), 1, sym_identifier, - [123623] = 2, + [123809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7577), 1, - anon_sym_RBRACK, - [123630] = 2, + ACTIONS(7544), 1, + anon_sym_readonly, + [123816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(4527), 1, anon_sym_RBRACK, - [123637] = 2, + [123823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_GT, - [123644] = 2, + ACTIONS(7546), 1, + anon_sym_RBRACK, + [123830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, - anon_sym_GT, - [123651] = 2, + ACTIONS(7548), 1, + sym_identifier, + [123837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 1, - anon_sym_GT, - [123658] = 2, + ACTIONS(4543), 1, + anon_sym_RBRACE, + [123844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 1, + ACTIONS(7550), 1, anon_sym_EQ_GT, - [123665] = 2, + [123851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - anon_sym_GT, - [123672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, - anon_sym_GT, - [123679] = 2, + ACTIONS(7552), 1, + anon_sym_RBRACK, + [123858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, - anon_sym_EQ_GT, - [123686] = 2, + ACTIONS(7554), 1, + anon_sym_RBRACK, + [123865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_EQ_GT, - [123693] = 2, + ACTIONS(7556), 1, + sym_identifier, + [123872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, - anon_sym_EQ_GT, - [123700] = 2, + ACTIONS(7558), 1, + sym_identifier, + [123879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym_GT, - [123707] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(7601), 1, - sym_regex_pattern, - [123714] = 2, + ACTIONS(7560), 1, + sym_identifier, + [123886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 1, - anon_sym_EQ_GT, - [123721] = 2, + ACTIONS(4525), 1, + anon_sym_RBRACE, + [123893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, + ACTIONS(7562), 1, anon_sym_RBRACK, - [123728] = 2, + [123900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7564), 1, anon_sym_EQ_GT, - [123735] = 2, + [123907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_RPAREN, - [123742] = 2, + ACTIONS(7566), 1, + anon_sym_RBRACK, + [123914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - anon_sym_GT, - [123749] = 2, + ACTIONS(5633), 1, + anon_sym_is, + [123921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, + ACTIONS(7568), 1, anon_sym_EQ_GT, - [123756] = 2, + [123928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, + ACTIONS(7570), 1, sym_identifier, - [123763] = 2, + [123935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, - sym_number, - [123770] = 2, + ACTIONS(7572), 1, + anon_sym_RBRACK, + [123942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, - anon_sym_RPAREN, - [123777] = 2, + ACTIONS(7574), 1, + anon_sym_EQ_GT, + [123949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7621), 1, - anon_sym_GT, - [123784] = 2, + ACTIONS(7576), 1, + anon_sym_EQ_GT, + [123956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - anon_sym_RPAREN, - [123791] = 2, + ACTIONS(7578), 1, + anon_sym_EQ_GT, + [123963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7580), 1, sym_identifier, - [123798] = 2, + [123970] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(7582), 1, + sym_regex_pattern, + [123977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - anon_sym_GT, - [123805] = 2, + ACTIONS(4580), 1, + anon_sym_RBRACK, + [123984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 1, - anon_sym_DOT, - [123812] = 2, + ACTIONS(7584), 1, + anon_sym_EQ_GT, + [123991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(4181), 1, anon_sym_RPAREN, - [123819] = 2, + [123998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, - anon_sym_SLASH2, - [123826] = 2, + ACTIONS(7586), 1, + anon_sym_DOT, + [124005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_RPAREN, - [123833] = 2, + ACTIONS(7588), 1, + anon_sym_DOT, + [124012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(7590), 1, anon_sym_RBRACK, - [123840] = 2, + [124019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_GT, - [123847] = 2, + ACTIONS(7592), 1, + anon_sym_RBRACK, + [124026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 1, + ACTIONS(7594), 1, anon_sym_RBRACK, - [123854] = 2, + [124033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 1, + ACTIONS(7596), 1, anon_sym_RBRACK, - [123861] = 2, + [124040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_RBRACK, - [123868] = 2, + ACTIONS(7598), 1, + anon_sym_require, + [124047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 1, - anon_sym_GT, - [123875] = 2, + ACTIONS(7600), 1, + anon_sym_RBRACK, + [124054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_GT, - [123882] = 2, + ACTIONS(7602), 1, + anon_sym_as, + [124061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, - anon_sym_GT, - [123889] = 2, + ACTIONS(7604), 1, + anon_sym_from, + [124068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, - anon_sym_RBRACK, - [123896] = 2, + ACTIONS(7606), 1, + anon_sym_LPAREN, + [124075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_RPAREN, - [123903] = 2, + ACTIONS(7608), 1, + anon_sym_from, + [124082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 1, + ACTIONS(7610), 1, anon_sym_RBRACK, - [123910] = 2, + [124089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 1, - sym_identifier, - [123917] = 2, + ACTIONS(7612), 1, + anon_sym_RBRACK, + [124096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_EQ, - [123924] = 2, + ACTIONS(7614), 1, + anon_sym_EQ_GT, + [124103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 1, - sym_identifier, - [123931] = 2, + ACTIONS(7616), 1, + anon_sym_LBRACE, + [124110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, - anon_sym_RBRACK, - [123938] = 2, + ACTIONS(7618), 1, + anon_sym_EQ_GT, + [124117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 1, - anon_sym_RBRACK, - [123945] = 2, + ACTIONS(7620), 1, + anon_sym_EQ_GT, + [124124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 1, - anon_sym_RBRACK, - [123952] = 2, + ACTIONS(7622), 1, + anon_sym_EQ_GT, + [124131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, - anon_sym_RBRACK, - [123959] = 2, + ACTIONS(7624), 1, + anon_sym_DOT, + [124138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 1, + ACTIONS(7626), 1, sym_identifier, - [123966] = 2, + [124145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7062), 1, - anon_sym_RBRACE, - [123973] = 2, + ACTIONS(7628), 1, + anon_sym_new, + [124152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 1, - anon_sym_LBRACK, - [123980] = 2, + ACTIONS(7630), 1, + sym_identifier, + [124159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_EQ, - [123987] = 2, + ACTIONS(7632), 1, + sym_number, + [124166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7634), 1, anon_sym_RBRACK, - [123994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7677), 1, - anon_sym_from, - [124001] = 2, + [124173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5323), 1, - anon_sym_DOT, - [124008] = 2, + ACTIONS(7636), 1, + sym_identifier, + [124180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_RBRACE, - [124015] = 2, + ACTIONS(7638), 1, + anon_sym_EQ_GT, + [124187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7679), 1, + ACTIONS(7640), 1, anon_sym_RBRACK, - [124022] = 2, + [124194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, - sym_identifier, - [124029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7683), 1, - anon_sym_as, - [124036] = 2, + ACTIONS(7642), 1, + anon_sym_SLASH2, + [124201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(7055), 1, anon_sym_RBRACK, - [124043] = 2, + [124208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7687), 1, - anon_sym_RBRACK, - [124050] = 2, + ACTIONS(7644), 1, + anon_sym_from, + [124215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 1, - anon_sym_RBRACK, - [124057] = 2, + ACTIONS(7646), 1, + anon_sym_RPAREN, + [124222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, + ACTIONS(4555), 1, anon_sym_RPAREN, - [124064] = 2, + [124229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7648), 1, + anon_sym_COLON, + [124236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7650), 1, anon_sym_RBRACK, - [124071] = 2, + [124243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, + ACTIONS(7652), 1, anon_sym_RBRACK, - [124078] = 2, + [124250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_class, - [124085] = 2, + ACTIONS(7654), 1, + anon_sym_RBRACK, + [124257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, + ACTIONS(7656), 1, anon_sym_RBRACK, - [124092] = 2, + [124264] = 2, + ACTIONS(5543), 1, + sym_comment, + ACTIONS(7658), 1, + sym_regex_pattern, + [124271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7660), 1, anon_sym_RBRACK, - [124099] = 2, + [124278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, + ACTIONS(7662), 1, anon_sym_RBRACK, - [124106] = 2, + [124285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_SLASH2, - [124113] = 2, + ACTIONS(7664), 1, + anon_sym_RBRACK, + [124292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, + ACTIONS(7666), 1, anon_sym_RBRACK, - [124120] = 2, + [124299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, + ACTIONS(7668), 1, anon_sym_RBRACK, - [124127] = 2, + [124306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7709), 1, - sym_identifier, - [124134] = 2, + ACTIONS(7670), 1, + anon_sym_RBRACK, + [124313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(7672), 1, anon_sym_EQ_GT, - [124141] = 2, + [124320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, - anon_sym_RPAREN, - [124148] = 2, + ACTIONS(7674), 1, + anon_sym_RBRACK, + [124327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7715), 1, + ACTIONS(7676), 1, anon_sym_EQ_GT, - [124155] = 2, + [124334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(7678), 1, anon_sym_EQ_GT, - [124162] = 2, + [124341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7680), 1, anon_sym_EQ_GT, - [124169] = 2, + [124348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_EQ_GT, - [124176] = 2, - ACTIONS(5577), 1, + ACTIONS(7682), 1, + anon_sym_RBRACK, + [124355] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(7684), 1, sym_regex_pattern, - [124183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7725), 1, - anon_sym_GT, - [124190] = 2, + [124362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(7686), 1, anon_sym_RBRACK, - [124197] = 2, + [124369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7729), 1, - anon_sym_RBRACK, - [124204] = 2, + ACTIONS(7688), 1, + anon_sym_RPAREN, + [124376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, + ACTIONS(7690), 1, anon_sym_RBRACK, - [124211] = 2, + [124383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 1, + ACTIONS(7692), 1, anon_sym_DOT, - [124218] = 2, + [124390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, - anon_sym_COLON, - [124225] = 2, + ACTIONS(7694), 1, + anon_sym_RBRACK, + [124397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_RBRACK, - [124232] = 2, + ACTIONS(7696), 1, + sym_identifier, + [124404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, - sym_number, - [124239] = 2, + ACTIONS(7698), 1, + anon_sym_EQ_GT, + [124411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(7700), 1, anon_sym_RBRACK, - [124246] = 2, + [124418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 1, - anon_sym_COLON, - [124253] = 2, + ACTIONS(7702), 1, + anon_sym_RBRACK, + [124425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(7704), 1, anon_sym_RBRACK, - [124260] = 2, + [124432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_RBRACK, - [124267] = 2, + ACTIONS(7706), 1, + anon_sym_LBRACK, + [124439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 1, - sym_identifier, - [124274] = 2, + ACTIONS(7708), 1, + anon_sym_RBRACK, + [124446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, + ACTIONS(7710), 1, anon_sym_RBRACK, - [124281] = 2, + [124453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7712), 1, anon_sym_RBRACK, - [124288] = 2, + [124460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 1, - anon_sym_EQ_GT, - [124295] = 2, + ACTIONS(7714), 1, + anon_sym_RBRACK, + [124467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, - sym_number, - [124302] = 2, + ACTIONS(7716), 1, + anon_sym_RBRACK, + [124474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, - anon_sym_GT, - [124309] = 2, + ACTIONS(7718), 1, + anon_sym_from, + [124481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 1, - anon_sym_GT, - [124316] = 2, + ACTIONS(7720), 1, + anon_sym_EQ_GT, + [124488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(7722), 1, anon_sym_DOT, - [124323] = 2, + [124495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, + ACTIONS(7030), 1, anon_sym_GT, - [124330] = 2, + [124502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, - anon_sym_GT, - [124337] = 2, + ACTIONS(7724), 1, + anon_sym_RBRACK, + [124509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7765), 1, - anon_sym_GT, - [124344] = 2, + ACTIONS(7726), 1, + anon_sym_RBRACK, + [124516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, - sym_identifier, - [124351] = 2, + ACTIONS(7728), 1, + anon_sym_RBRACK, + [124523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 1, - anon_sym_GT, - [124358] = 2, + ACTIONS(7730), 1, + anon_sym_COLON, + [124530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, + ACTIONS(7732), 1, anon_sym_RBRACK, - [124365] = 2, + [124537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7066), 1, - sym_identifier, - [124372] = 2, + ACTIONS(7734), 1, + anon_sym_EQ_GT, + [124544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_RBRACE, + [124551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 1, + ACTIONS(7736), 1, anon_sym_EQ_GT, - [124379] = 2, + [124558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 1, - sym_identifier, - [124386] = 2, + ACTIONS(7738), 1, + anon_sym_RBRACK, + [124565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, + ACTIONS(7740), 1, anon_sym_EQ_GT, - [124393] = 2, + [124572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_GT, - [124400] = 2, + ACTIONS(7742), 1, + anon_sym_RBRACK, + [124579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, - anon_sym_GT, - [124407] = 2, + ACTIONS(7744), 1, + anon_sym_RBRACK, + [124586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, - anon_sym_LPAREN, - [124414] = 2, - ACTIONS(5577), 1, - sym_comment, - ACTIONS(7779), 1, - sym_regex_pattern, - [124421] = 2, + ACTIONS(7746), 1, + anon_sym_as, + [124593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym_target, - [124428] = 2, + ACTIONS(7748), 1, + anon_sym_RBRACK, + [124600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, - anon_sym_RPAREN, - [124435] = 2, + ACTIONS(7750), 1, + anon_sym_new, + [124607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7785), 1, + ACTIONS(7752), 1, anon_sym_class, - [124442] = 2, + [124614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7787), 1, - anon_sym_GT, - [124449] = 2, + ACTIONS(7754), 1, + anon_sym_from, + [124621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(7756), 1, anon_sym_EQ_GT, - [124456] = 2, + [124628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7791), 1, - anon_sym_from, - [124463] = 2, + ACTIONS(7024), 1, + anon_sym_RBRACE, + [124635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7793), 1, + ACTIONS(7758), 1, anon_sym_EQ, - [124470] = 2, + [124642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7795), 1, + ACTIONS(7760), 1, anon_sym_namespace, - [124477] = 2, + [124649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7797), 1, - anon_sym_LPAREN, - [124484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7799), 1, - anon_sym_EQ_GT, - [124491] = 2, + ACTIONS(6421), 1, + anon_sym_EQ, + [124656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7801), 1, - anon_sym_EQ_GT, - [124498] = 2, + ACTIONS(7762), 1, + anon_sym_RBRACK, + [124663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, - anon_sym_EQ_GT, - [124505] = 2, + ACTIONS(7764), 1, + anon_sym_RBRACK, + [124670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7805), 1, + ACTIONS(7766), 1, anon_sym_EQ_GT, - [124512] = 2, + [124677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7807), 1, + ACTIONS(7768), 1, anon_sym_RBRACK, - [124519] = 2, + [124684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - anon_sym_EQ_GT, - [124526] = 2, + ACTIONS(7770), 1, + anon_sym_RBRACK, + [124691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_EQ_GT, - [124533] = 2, + ACTIONS(7772), 1, + anon_sym_RBRACK, + [124698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7811), 1, + ACTIONS(7774), 1, anon_sym_RBRACK, - [124540] = 2, + [124705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7813), 1, + ACTIONS(7776), 1, anon_sym_EQ_GT, - [124547] = 2, + [124712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7815), 1, - anon_sym_GT, - [124554] = 2, + ACTIONS(7778), 1, + anon_sym_RBRACK, + [124719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(7780), 1, anon_sym_EQ_GT, - [124561] = 2, + [124726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, + ACTIONS(7782), 1, anon_sym_EQ_GT, - [124568] = 2, + [124733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - anon_sym_GT, - [124575] = 2, + ACTIONS(4545), 1, + anon_sym_RBRACK, + [124740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7823), 1, + ACTIONS(7784), 1, anon_sym_RBRACK, - [124582] = 2, + [124747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7198), 1, + ACTIONS(7218), 1, sym_identifier, - [124589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7825), 1, - anon_sym_RBRACK, - [124596] = 2, + [124754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7827), 1, + ACTIONS(7786), 1, anon_sym_class, - [124603] = 2, + [124761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, - anon_sym_EQ_GT, - [124610] = 2, + ACTIONS(7788), 1, + sym_identifier, + [124768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7829), 1, + ACTIONS(7790), 1, anon_sym_RBRACK, - [124617] = 2, + [124775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7831), 1, + ACTIONS(7792), 1, anon_sym_EQ, - [124624] = 2, + [124782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7833), 1, + ACTIONS(7152), 1, anon_sym_RBRACK, - [124631] = 2, + [124789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(7794), 1, anon_sym_EQ, - [124638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7131), 1, - anon_sym_LBRACE, - [124645] = 2, + [124796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7837), 1, - anon_sym_RBRACK, - [124652] = 2, + ACTIONS(7796), 1, + sym_identifier, + [124803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7839), 1, - anon_sym_RBRACK, - [124659] = 2, + ACTIONS(7798), 1, + anon_sym_RPAREN, + [124810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7841), 1, + ACTIONS(7800), 1, anon_sym_RBRACK, - [124666] = 2, + [124817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7843), 1, - anon_sym_EQ_GT, - [124673] = 2, + ACTIONS(7802), 1, + sym_number, + [124824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7845), 1, + ACTIONS(7804), 1, anon_sym_EQ_GT, - [124680] = 2, + [124831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7847), 1, + ACTIONS(7806), 1, anon_sym_EQ_GT, - [124687] = 2, + [124838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_is, - [124694] = 2, + ACTIONS(7808), 1, + sym_identifier, + [124845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7170), 1, - anon_sym_GT, - [124701] = 2, + ACTIONS(7810), 1, + anon_sym_EQ_GT, + [124852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(7812), 1, anon_sym_new, - [124708] = 2, + [124859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(7814), 1, anon_sym_RBRACK, - [124715] = 2, + [124866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 1, - anon_sym_EQ, - [124722] = 2, + ACTIONS(7816), 1, + anon_sym_RPAREN, + [124873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7853), 1, + ACTIONS(7818), 1, sym_identifier, - [124729] = 2, + [124880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7855), 1, - anon_sym_EQ_GT, - [124736] = 2, + ACTIONS(7820), 1, + anon_sym_RBRACK, + [124887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, - anon_sym_RBRACK, - [124743] = 2, + ACTIONS(7822), 1, + sym_identifier, + [124894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_GT, - [124750] = 2, + ACTIONS(7824), 1, + anon_sym_RBRACK, + [124901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, + ACTIONS(7826), 1, anon_sym_EQ_GT, - [124757] = 2, + [124908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7861), 1, + ACTIONS(7828), 1, anon_sym_COLON, - [124764] = 2, + [124915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7863), 1, + ACTIONS(7830), 1, + anon_sym_EQ_GT, + [124922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7832), 1, anon_sym_RBRACK, - [124771] = 2, + [124929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7865), 1, - anon_sym_SLASH2, - [124778] = 2, + ACTIONS(7834), 1, + anon_sym_EQ_GT, + [124936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_RBRACK, - [124785] = 2, + ACTIONS(7836), 1, + sym_identifier, + [124943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7869), 1, - anon_sym_EQ_GT, - [124792] = 2, + ACTIONS(7838), 1, + sym_number, + [124950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7871), 1, + ACTIONS(7840), 1, anon_sym_RBRACK, - [124799] = 2, + [124957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7873), 1, + ACTIONS(7842), 1, anon_sym_RBRACK, - [124806] = 2, + [124964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7875), 1, + ACTIONS(7844), 1, anon_sym_RBRACK, - [124813] = 2, + [124971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_EQ_GT, - [124820] = 2, + ACTIONS(7846), 1, + anon_sym_EQ, + [124978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 1, + anon_sym_from, + [124985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7879), 1, + ACTIONS(7850), 1, anon_sym_RBRACK, - [124827] = 2, + [124992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7881), 1, + ACTIONS(7852), 1, sym_identifier, - [124834] = 2, + [124999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7883), 1, + ACTIONS(7854), 1, anon_sym_EQ_GT, - [124841] = 2, + [125006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7252), 1, - anon_sym_RBRACK, - [124848] = 2, + ACTIONS(7856), 1, + anon_sym_EQ_GT, + [125013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7885), 1, - anon_sym_RBRACK, - [124855] = 2, + ACTIONS(7858), 1, + sym_identifier, + [125020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7887), 1, - anon_sym_RBRACK, - [124862] = 2, + ACTIONS(7860), 1, + sym_identifier, + [125027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7889), 1, - anon_sym_GT, - [124869] = 2, + ACTIONS(7862), 1, + sym_identifier, + [125034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7891), 1, - anon_sym_GT, - [124876] = 2, + ACTIONS(7864), 1, + anon_sym_EQ, + [125041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7893), 1, - anon_sym_RBRACK, - [124883] = 2, + ACTIONS(7866), 1, + sym_identifier, + [125048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7868), 1, + anon_sym_COLON, + [125055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7895), 1, + ACTIONS(7870), 1, anon_sym_RBRACK, - [124890] = 2, + [125062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7897), 1, - anon_sym_from, - [124897] = 2, + ACTIONS(7872), 1, + anon_sym_RPAREN, + [125069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7899), 1, - anon_sym_readonly, - [124904] = 2, + ACTIONS(7874), 1, + sym_identifier, + [125076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7901), 1, - anon_sym_while, - [124911] = 2, + ACTIONS(7876), 1, + anon_sym_RBRACK, + [125083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_GT, - [124918] = 2, + ACTIONS(7878), 1, + anon_sym_EQ, + [125090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7905), 1, - anon_sym_GT, - [124925] = 2, + ACTIONS(7880), 1, + anon_sym_RBRACK, + [125097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7907), 1, - anon_sym_GT, - [124932] = 2, + ACTIONS(7882), 1, + sym_identifier, + [125104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 1, - anon_sym_RPAREN, - [124939] = 2, + ACTIONS(7884), 1, + anon_sym_EQ_GT, + [125111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_GT, - [124946] = 2, + ACTIONS(6932), 1, + anon_sym_RBRACE, + [125118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, + ACTIONS(7886), 1, anon_sym_RBRACK, - [124953] = 2, + [125125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, - anon_sym_RBRACK, - [124960] = 2, + ACTIONS(7888), 1, + sym_identifier, + [125132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7915), 1, + ACTIONS(6928), 1, anon_sym_RBRACK, - [124967] = 2, + [125139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7917), 1, + ACTIONS(7890), 1, anon_sym_RBRACK, - [124974] = 2, + [125146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7919), 1, - anon_sym_SLASH2, - [124981] = 2, + ACTIONS(7892), 1, + anon_sym_RBRACK, + [125153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, - sym_identifier, - [124988] = 2, + ACTIONS(7894), 1, + anon_sym_RBRACK, + [125160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_from, - [124995] = 2, + ACTIONS(6934), 1, + anon_sym_GT, + [125167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7925), 1, - sym_identifier, - [125002] = 2, + ACTIONS(7896), 1, + anon_sym_class, + [125174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(7898), 1, anon_sym_RBRACK, - [125009] = 2, + [125181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7929), 1, - anon_sym_EQ_GT, - [125016] = 2, + ACTIONS(7900), 1, + anon_sym_RBRACK, + [125188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7931), 1, + ACTIONS(7902), 1, sym_identifier, - [125023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7933), 1, - anon_sym_EQ_GT, - [125030] = 2, + [125195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7935), 1, - anon_sym_require, - [125037] = 2, + ACTIONS(7904), 1, + sym_identifier, + [125202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(7906), 1, anon_sym_RBRACK, - [125044] = 2, + [125209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 1, - anon_sym_from, - [125051] = 2, + ACTIONS(7908), 1, + anon_sym_RBRACK, + [125216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7937), 1, + ACTIONS(7910), 1, anon_sym_EQ_GT, - [125058] = 2, + [125223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_EQ_GT, - [125065] = 2, + ACTIONS(6908), 1, + anon_sym_RBRACK, + [125230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, - anon_sym_RBRACE, - [125072] = 2, + ACTIONS(7912), 1, + anon_sym_RBRACK, + [125237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7941), 1, + ACTIONS(4553), 1, anon_sym_RBRACK, - [125079] = 2, + [125244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7943), 1, - sym_identifier, - [125086] = 2, + ACTIONS(5350), 1, + anon_sym_is, + [125251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7945), 1, - anon_sym_GT, - [125093] = 2, + ACTIONS(7914), 1, + anon_sym_EQ_GT, + [125258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, - anon_sym_as, - [125100] = 2, + ACTIONS(7916), 1, + anon_sym_EQ_GT, + [125265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_new, - [125107] = 2, + ACTIONS(7918), 1, + sym_identifier, + [125272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, - anon_sym_RBRACK, - [125114] = 2, + ACTIONS(7920), 1, + anon_sym_EQ_GT, + [125279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, - sym_identifier, - [125121] = 2, + ACTIONS(7922), 1, + anon_sym_RBRACK, + [125286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7953), 1, - sym_number, - [125128] = 2, + ACTIONS(6861), 1, + sym_identifier, + [125293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7955), 1, - anon_sym_RBRACK, - [125135] = 2, + ACTIONS(4547), 1, + anon_sym_RPAREN, + [125300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 1, + ACTIONS(7924), 1, anon_sym_EQ_GT, - [125142] = 2, + [125307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 1, - anon_sym_EQ_GT, - [125149] = 2, + ACTIONS(7926), 1, + sym_identifier, + [125314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7961), 1, + ACTIONS(7928), 1, sym_identifier, - [125156] = 2, + [125321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7963), 1, - sym_number, - [125163] = 2, + ACTIONS(7930), 1, + anon_sym_SLASH2, + [125328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7965), 1, - anon_sym_RBRACK, - [125170] = 2, + ACTIONS(7932), 1, + anon_sym_SLASH2, + [125335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7967), 1, - anon_sym_EQ, - [125177] = 2, + ACTIONS(7934), 1, + anon_sym_target, + [125342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym_RBRACK, - [125184] = 2, + ACTIONS(7936), 1, + anon_sym_EQ_GT, + [125349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, - anon_sym_RBRACE, - [125191] = 2, + ACTIONS(7938), 1, + anon_sym_target, + [125356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(3818), 1, anon_sym_RPAREN, - [125198] = 2, + [125363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7973), 1, + ACTIONS(7940), 1, anon_sym_EQ_GT, - [125205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7975), 1, - sym_identifier, - [125212] = 2, + [125370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7977), 1, + ACTIONS(6766), 1, anon_sym_EQ_GT, - [125219] = 2, + [125377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, - anon_sym_RBRACK, - [125226] = 2, + ACTIONS(7942), 1, + anon_sym_EQ_GT, + [125384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7981), 1, - anon_sym_RBRACK, - [125233] = 2, + ACTIONS(5169), 1, + anon_sym_EQ_GT, + [125391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, - anon_sym_RBRACK, - [125240] = 2, + ACTIONS(7944), 1, + anon_sym_EQ_GT, + [125398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - anon_sym_RBRACK, - [125247] = 2, + ACTIONS(6896), 1, + anon_sym_LBRACE, + [125405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7985), 1, - anon_sym_RBRACK, - [125254] = 2, - ACTIONS(3), 1, + ACTIONS(7946), 1, + sym_number, + [125412] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(7987), 1, - anon_sym_function, - [125261] = 2, + ACTIONS(7948), 1, + sym_regex_pattern, + [125419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7989), 1, - sym_identifier, - [125268] = 2, + ACTIONS(7950), 1, + anon_sym_SLASH2, + [125426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, - sym_identifier, - [125275] = 2, + ACTIONS(7952), 1, + anon_sym_COLON, + [125433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7993), 1, + ACTIONS(7954), 1, anon_sym_RBRACK, - [125282] = 2, + [125440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7995), 1, - anon_sym_new, - [125289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7997), 1, + ACTIONS(7956), 1, anon_sym_EQ_GT, - [125296] = 2, + [125447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7999), 1, - sym_identifier, - [125303] = 2, + ACTIONS(7958), 1, + anon_sym_EQ_GT, + [125454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 1, + ACTIONS(7960), 1, anon_sym_EQ, - [125310] = 2, + [125461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(7962), 1, anon_sym_EQ_GT, - [125317] = 2, + [125468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 1, + ACTIONS(7964), 1, anon_sym_EQ_GT, - [125324] = 2, + [125475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, + ACTIONS(7966), 1, anon_sym_EQ_GT, - [125331] = 2, + [125482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8009), 1, - anon_sym_EQ_GT, - [125338] = 2, + ACTIONS(7968), 1, + anon_sym_RBRACK, + [125489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8011), 1, - anon_sym_namespace, - [125345] = 2, + ACTIONS(7970), 1, + sym_identifier, + [125496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8013), 1, + ACTIONS(7972), 1, anon_sym_EQ_GT, - [125352] = 2, + [125503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 1, + ACTIONS(7974), 1, anon_sym_EQ_GT, - [125359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8017), 1, - anon_sym_RBRACK, - [125366] = 2, + [125510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8019), 1, - anon_sym_RBRACK, - [125373] = 2, + ACTIONS(7976), 1, + sym_identifier, + [125517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8021), 1, - anon_sym_target, - [125380] = 2, + ACTIONS(7978), 1, + anon_sym_EQ_GT, + [125524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8023), 1, - anon_sym_RBRACK, - [125387] = 2, + ACTIONS(7980), 1, + anon_sym_while, + [125531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8025), 1, - anon_sym_EQ_GT, - [125394] = 2, + ACTIONS(7982), 1, + sym_identifier, + [125538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8027), 1, - anon_sym_EQ_GT, - [125401] = 2, + ACTIONS(7984), 1, + sym_identifier, + [125545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8029), 1, - anon_sym_EQ_GT, - [125408] = 2, + ACTIONS(7986), 1, + sym_identifier, + [125552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(3981), 1, anon_sym_RPAREN, - [125415] = 2, + [125559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8031), 1, - anon_sym_RBRACK, - [125422] = 2, + ACTIONS(7988), 1, + anon_sym_SLASH2, + [125566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8033), 1, + ACTIONS(7990), 1, anon_sym_RBRACK, - [125429] = 2, + [125573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8035), 1, + ACTIONS(7992), 1, anon_sym_RBRACK, - [125436] = 2, + [125580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_DOT, - [125443] = 2, + ACTIONS(7994), 1, + anon_sym_RPAREN, + [125587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8037), 1, - anon_sym_EQ_GT, - [125450] = 2, + ACTIONS(7996), 1, + sym_identifier, + [125594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, - anon_sym_SLASH2, - [125457] = 2, + ACTIONS(7998), 1, + sym_identifier, + [125601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, - anon_sym_RPAREN, - [125464] = 2, + ACTIONS(8000), 1, + anon_sym_RBRACK, + [125608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8041), 1, - sym_identifier, - [125471] = 2, + ACTIONS(8002), 1, + anon_sym_RBRACK, + [125615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 1, - anon_sym_EQ_GT, - [125478] = 2, + ACTIONS(4183), 1, + anon_sym_RPAREN, + [125622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8045), 1, - anon_sym_GT, - [125485] = 2, + ACTIONS(8004), 1, + sym_identifier, + [125629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8047), 1, - anon_sym_RBRACK, - [125492] = 2, + ACTIONS(8006), 1, + sym_number, + [125636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8049), 1, - anon_sym_RBRACK, - [125499] = 2, + ACTIONS(8008), 1, + sym_identifier, + [125643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, - anon_sym_RBRACK, - [125506] = 2, + ACTIONS(7372), 1, + anon_sym_from, + [125650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8053), 1, + ACTIONS(8010), 1, anon_sym_EQ_GT, - [125513] = 2, + [125657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8055), 1, - anon_sym_GT, - [125520] = 2, + ACTIONS(8012), 1, + anon_sym_RBRACK, + [125664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8057), 1, - anon_sym_RBRACK, - [125527] = 2, + ACTIONS(8014), 1, + anon_sym_as, + [125671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, + ACTIONS(8016), 1, anon_sym_RBRACK, - [125534] = 2, + [125678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8061), 1, + ACTIONS(8018), 1, anon_sym_RBRACK, - [125541] = 2, + [125685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8063), 1, + ACTIONS(8020), 1, anon_sym_RBRACK, - [125548] = 2, + [125692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8065), 1, + ACTIONS(8022), 1, anon_sym_RBRACK, - [125555] = 2, + [125699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 1, + ACTIONS(8024), 1, anon_sym_RBRACK, - [125562] = 2, + [125706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8069), 1, + ACTIONS(8026), 1, anon_sym_EQ_GT, - [125569] = 2, + [125713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8071), 1, + ACTIONS(8028), 1, anon_sym_EQ, - [125576] = 2, + [125720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8073), 1, - anon_sym_RBRACK, - [125583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6903), 1, + ACTIONS(8030), 1, anon_sym_EQ, - [125590] = 2, + [125727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8075), 1, + ACTIONS(8032), 1, anon_sym_RBRACK, - [125597] = 2, + [125734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 1, + ACTIONS(8034), 1, anon_sym_RBRACK, - [125604] = 2, + [125741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, + ACTIONS(8036), 1, anon_sym_RBRACK, - [125611] = 2, + [125748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_EQ_GT, - [125618] = 2, + ACTIONS(8038), 1, + sym_identifier, + [125755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8083), 1, - anon_sym_EQ_GT, - [125625] = 2, + ACTIONS(5951), 1, + anon_sym_EQ, + [125762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8085), 1, - anon_sym_RBRACK, - [125632] = 2, + ACTIONS(8040), 1, + anon_sym_RPAREN, + [125769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym_EQ, - [125639] = 2, + ACTIONS(8042), 1, + anon_sym_EQ_GT, + [125776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8089), 1, - anon_sym_RBRACK, - [125646] = 2, + ACTIONS(8044), 1, + anon_sym_EQ_GT, + [125783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8091), 1, - anon_sym_RBRACK, - [125653] = 2, + ACTIONS(8046), 1, + sym_identifier, + [125790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5876), 1, + ACTIONS(8048), 1, anon_sym_EQ, - [125660] = 2, + [125797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_EQ_GT, - [125667] = 2, + ACTIONS(8050), 1, + anon_sym_function, + [125804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8095), 1, + ACTIONS(8052), 1, anon_sym_RBRACK, - [125674] = 2, + [125811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8097), 1, + ACTIONS(8054), 1, anon_sym_EQ_GT, - [125681] = 2, + [125818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8099), 1, - anon_sym_EQ_GT, - [125688] = 2, + ACTIONS(8056), 1, + anon_sym_RBRACK, + [125825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8101), 1, + ACTIONS(8058), 1, anon_sym_EQ_GT, - [125695] = 2, + [125832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8103), 1, + ACTIONS(8060), 1, anon_sym_EQ_GT, - [125702] = 2, + [125839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8105), 1, - anon_sym_COLON, - [125709] = 2, + ACTIONS(8062), 1, + anon_sym_RPAREN, + [125846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, - anon_sym_RBRACK, - [125716] = 2, + ACTIONS(8064), 1, + sym_identifier, + [125853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8109), 1, + ACTIONS(8066), 1, anon_sym_new, - [125723] = 2, + [125860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8111), 1, - anon_sym_RBRACK, - [125730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 1, - anon_sym_RPAREN, - [125737] = 2, + ACTIONS(8068), 1, + anon_sym_from, + [125867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - anon_sym_RPAREN, - [125744] = 2, + ACTIONS(8070), 1, + sym_identifier, + [125874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4541), 1, anon_sym_COLON, - [125751] = 2, + [125881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, - anon_sym_RPAREN, - [125758] = 2, + ACTIONS(8072), 1, + anon_sym_RBRACK, + [125888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8113), 1, - anon_sym_from, - [125765] = 2, + ACTIONS(8074), 1, + anon_sym_namespace, + [125895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8115), 1, - ts_builtin_sym_end, - [125772] = 2, + ACTIONS(8076), 1, + anon_sym_RBRACK, + [125902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8117), 1, - sym_identifier, - [125779] = 2, + ACTIONS(8078), 1, + anon_sym_RBRACK, + [125909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8119), 1, - sym_identifier, - [125786] = 2, + ACTIONS(8080), 1, + anon_sym_RBRACK, + [125916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8121), 1, - anon_sym_class, - [125793] = 2, + ACTIONS(8082), 1, + anon_sym_RPAREN, + [125923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8123), 1, + ACTIONS(8084), 1, anon_sym_RBRACK, - [125800] = 2, + [125930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8125), 1, - sym_identifier, - [125807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8127), 1, - sym_identifier, - [125814] = 2, + ACTIONS(4539), 1, + anon_sym_RPAREN, + [125937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8129), 1, + ACTIONS(7051), 1, anon_sym_EQ, - [125821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8131), 1, - sym_identifier, - [125828] = 2, + [125944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8133), 1, - sym_identifier, - [125835] = 2, + ACTIONS(8086), 1, + anon_sym_EQ_GT, + [125951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8135), 1, - anon_sym_LBRACE, - [125842] = 2, + ACTIONS(8088), 1, + anon_sym_EQ, + [125958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8137), 1, + ACTIONS(8090), 1, anon_sym_new, - [125849] = 2, - ACTIONS(5577), 1, + [125965] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 1, - sym_regex_pattern, - [125856] = 2, + ACTIONS(8092), 1, + anon_sym_RPAREN, + [125972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8141), 1, - anon_sym_from, - [125863] = 2, + ACTIONS(4537), 1, + anon_sym_RPAREN, + [125979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, - anon_sym_from, - [125870] = 2, + ACTIONS(8094), 1, + ts_builtin_sym_end, + [125986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 1, + ACTIONS(8096), 1, sym_identifier, - [125877] = 2, + [125993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(8098), 1, anon_sym_new, - [125884] = 2, + [126000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8149), 1, - anon_sym_RPAREN, - [125891] = 2, + ACTIONS(8100), 1, + anon_sym_EQ_GT, + [126007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 1, - anon_sym_RPAREN, - [125898] = 2, + ACTIONS(8102), 1, + sym_identifier, + [126014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, - anon_sym_RBRACE, - [125905] = 2, + ACTIONS(8104), 1, + anon_sym_class, + [126021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8151), 1, - sym_identifier, - [125912] = 2, + ACTIONS(8106), 1, + anon_sym_EQ_GT, + [126028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8153), 1, - anon_sym_RBRACK, - [125919] = 2, + ACTIONS(4535), 1, + anon_sym_RPAREN, + [126035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8155), 1, + ACTIONS(8108), 1, sym_identifier, - [125926] = 2, + [126042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8157), 1, + ACTIONS(8110), 1, anon_sym_function, - [125933] = 2, - ACTIONS(5577), 1, + [126049] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8159), 1, - sym_regex_pattern, - [125940] = 2, + ACTIONS(7235), 1, + anon_sym_GT, + [126056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8161), 1, - sym_identifier, - [125947] = 2, + ACTIONS(3188), 1, + anon_sym_LPAREN, + [126063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8163), 1, - sym_identifier, - [125954] = 2, + ACTIONS(7256), 1, + anon_sym_RBRACK, + [126070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8165), 1, + ACTIONS(8112), 1, sym_identifier, - [125961] = 2, + [126077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8167), 1, + ACTIONS(8114), 1, anon_sym_new, - [125968] = 2, + [126084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8169), 1, + ACTIONS(8116), 1, sym_identifier, - [125975] = 2, + [126091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8171), 1, + ACTIONS(8118), 1, sym_identifier, - [125982] = 2, - ACTIONS(3), 1, + [126098] = 2, + ACTIONS(5543), 1, sym_comment, - ACTIONS(8173), 1, - sym_identifier, - [125989] = 2, + ACTIONS(8120), 1, + sym_regex_pattern, + [126105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5327), 1, - anon_sym_is, - [125996] = 2, + ACTIONS(8122), 1, + anon_sym_EQ_GT, + [126112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8175), 1, - sym_identifier, - [126003] = 2, + ACTIONS(8124), 1, + anon_sym_DOT, + [126119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8126), 1, sym_identifier, - [126010] = 2, + [126126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_GT, - [126017] = 2, + ACTIONS(8128), 1, + anon_sym_EQ_GT, + [126133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8179), 1, - anon_sym_EQ_GT, - [126024] = 2, + ACTIONS(8130), 1, + sym_identifier, + [126140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_DOT, - [126031] = 2, + ACTIONS(8132), 1, + anon_sym_EQ_GT, + [126147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8181), 1, - anon_sym_RBRACK, - [126038] = 2, + ACTIONS(8134), 1, + sym_identifier, + [126154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8183), 1, - anon_sym_RPAREN, - [126045] = 2, + ACTIONS(8136), 1, + anon_sym_EQ_GT, + [126161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, - anon_sym_COLON, - [126052] = 2, + ACTIONS(8138), 1, + sym_identifier, + [126168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8187), 1, + ACTIONS(8140), 1, sym_identifier, - [126059] = 2, + [126175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, - anon_sym_RBRACK, - [126066] = 2, + ACTIONS(5574), 1, + anon_sym_is, + [126182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(8142), 1, anon_sym_RBRACK, - [126073] = 2, + [126189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 1, + ACTIONS(8144), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(981)] = 0, - [SMALL_STATE(982)] = 89, - [SMALL_STATE(983)] = 182, - [SMALL_STATE(984)] = 273, - [SMALL_STATE(985)] = 362, - [SMALL_STATE(986)] = 451, - [SMALL_STATE(987)] = 542, - [SMALL_STATE(988)] = 633, - [SMALL_STATE(989)] = 722, - [SMALL_STATE(990)] = 815, - [SMALL_STATE(991)] = 906, - [SMALL_STATE(992)] = 998, - [SMALL_STATE(993)] = 1090, - [SMALL_STATE(994)] = 1178, - [SMALL_STATE(995)] = 1266, - [SMALL_STATE(996)] = 1358, - [SMALL_STATE(997)] = 1446, - [SMALL_STATE(998)] = 1534, - [SMALL_STATE(999)] = 1628, - [SMALL_STATE(1000)] = 1697, - [SMALL_STATE(1001)] = 1830, - [SMALL_STATE(1002)] = 1899, - [SMALL_STATE(1003)] = 1988, - [SMALL_STATE(1004)] = 2077, - [SMALL_STATE(1005)] = 2146, - [SMALL_STATE(1006)] = 2235, - [SMALL_STATE(1007)] = 2304, - [SMALL_STATE(1008)] = 2393, - [SMALL_STATE(1009)] = 2462, - [SMALL_STATE(1010)] = 2551, - [SMALL_STATE(1011)] = 2640, - [SMALL_STATE(1012)] = 2727, - [SMALL_STATE(1013)] = 2814, - [SMALL_STATE(1014)] = 2901, - [SMALL_STATE(1015)] = 2988, - [SMALL_STATE(1016)] = 3057, - [SMALL_STATE(1017)] = 3146, - [SMALL_STATE(1018)] = 3279, - [SMALL_STATE(1019)] = 3370, - [SMALL_STATE(1020)] = 3439, - [SMALL_STATE(1021)] = 3528, - [SMALL_STATE(1022)] = 3615, - [SMALL_STATE(1023)] = 3701, - [SMALL_STATE(1024)] = 3787, - [SMALL_STATE(1025)] = 3875, - [SMALL_STATE(1026)] = 3943, - [SMALL_STATE(1027)] = 4033, - [SMALL_STATE(1028)] = 4119, - [SMALL_STATE(1029)] = 4213, - [SMALL_STATE(1030)] = 4301, - [SMALL_STATE(1031)] = 4387, - [SMALL_STATE(1032)] = 4459, - [SMALL_STATE(1033)] = 4545, - [SMALL_STATE(1034)] = 4613, - [SMALL_STATE(1035)] = 4698, - [SMALL_STATE(1036)] = 4775, - [SMALL_STATE(1037)] = 4866, - [SMALL_STATE(1038)] = 4951, - [SMALL_STATE(1039)] = 5028, - [SMALL_STATE(1040)] = 5105, - [SMALL_STATE(1041)] = 5184, - [SMALL_STATE(1042)] = 5269, - [SMALL_STATE(1043)] = 5354, - [SMALL_STATE(1044)] = 5445, - [SMALL_STATE(1045)] = 5530, - [SMALL_STATE(1046)] = 5615, - [SMALL_STATE(1047)] = 5692, - [SMALL_STATE(1048)] = 5777, - [SMALL_STATE(1049)] = 5856, - [SMALL_STATE(1050)] = 5933, - [SMALL_STATE(1051)] = 6018, - [SMALL_STATE(1052)] = 6095, - [SMALL_STATE(1053)] = 6177, - [SMALL_STATE(1054)] = 6253, - [SMALL_STATE(1055)] = 6331, - [SMALL_STATE(1056)] = 6413, - [SMALL_STATE(1057)] = 6487, - [SMALL_STATE(1058)] = 6565, - [SMALL_STATE(1059)] = 6637, - [SMALL_STATE(1060)] = 6709, - [SMALL_STATE(1061)] = 6797, - [SMALL_STATE(1062)] = 6869, - [SMALL_STATE(1063)] = 6953, - [SMALL_STATE(1064)] = 7039, - [SMALL_STATE(1065)] = 7117, - [SMALL_STATE(1066)] = 7201, - [SMALL_STATE(1067)] = 7275, - [SMALL_STATE(1068)] = 7347, - [SMALL_STATE(1069)] = 7423, - [SMALL_STATE(1070)] = 7507, - [SMALL_STATE(1071)] = 7581, - [SMALL_STATE(1072)] = 7665, - [SMALL_STATE(1073)] = 7749, - [SMALL_STATE(1074)] = 7826, - [SMALL_STATE(1075)] = 7899, - [SMALL_STATE(1076)] = 7968, - [SMALL_STATE(1077)] = 8045, - [SMALL_STATE(1078)] = 8116, - [SMALL_STATE(1079)] = 8187, - [SMALL_STATE(1080)] = 8270, - [SMALL_STATE(1081)] = 8335, - [SMALL_STATE(1082)] = 8408, - [SMALL_STATE(1083)] = 8479, - [SMALL_STATE(1084)] = 8554, - [SMALL_STATE(1085)] = 8629, - [SMALL_STATE(1086)] = 8708, - [SMALL_STATE(1087)] = 8779, - [SMALL_STATE(1088)] = 8858, - [SMALL_STATE(1089)] = 8929, - [SMALL_STATE(1090)] = 8998, - [SMALL_STATE(1091)] = 9063, - [SMALL_STATE(1092)] = 9128, - [SMALL_STATE(1093)] = 9203, - [SMALL_STATE(1094)] = 9274, - [SMALL_STATE(1095)] = 9339, - [SMALL_STATE(1096)] = 9422, - [SMALL_STATE(1097)] = 9487, - [SMALL_STATE(1098)] = 9552, - [SMALL_STATE(1099)] = 9635, - [SMALL_STATE(1100)] = 9700, - [SMALL_STATE(1101)] = 9783, - [SMALL_STATE(1102)] = 9856, - [SMALL_STATE(1103)] = 9929, - [SMALL_STATE(1104)] = 10000, - [SMALL_STATE(1105)] = 10071, - [SMALL_STATE(1106)] = 10136, - [SMALL_STATE(1107)] = 10217, - [SMALL_STATE(1108)] = 10282, - [SMALL_STATE(1109)] = 10358, - [SMALL_STATE(1110)] = 10430, - [SMALL_STATE(1111)] = 10512, - [SMALL_STATE(1112)] = 10582, - [SMALL_STATE(1113)] = 10658, - [SMALL_STATE(1114)] = 10728, - [SMALL_STATE(1115)] = 10798, - [SMALL_STATE(1116)] = 10866, - [SMALL_STATE(1117)] = 10948, - [SMALL_STATE(1118)] = 11018, - [SMALL_STATE(1119)] = 11090, - [SMALL_STATE(1120)] = 11162, - [SMALL_STATE(1121)] = 11240, - [SMALL_STATE(1122)] = 11316, - [SMALL_STATE(1123)] = 11386, - [SMALL_STATE(1124)] = 11454, - [SMALL_STATE(1125)] = 11526, - [SMALL_STATE(1126)] = 11608, - [SMALL_STATE(1127)] = 11678, - [SMALL_STATE(1128)] = 11748, - [SMALL_STATE(1129)] = 11818, - [SMALL_STATE(1130)] = 11888, - [SMALL_STATE(1131)] = 11958, - [SMALL_STATE(1132)] = 12030, - [SMALL_STATE(1133)] = 12101, - [SMALL_STATE(1134)] = 12172, - [SMALL_STATE(1135)] = 12245, - [SMALL_STATE(1136)] = 12314, - [SMALL_STATE(1137)] = 12389, - [SMALL_STATE(1138)] = 12460, - [SMALL_STATE(1139)] = 12527, - [SMALL_STATE(1140)] = 12590, - [SMALL_STATE(1141)] = 12657, - [SMALL_STATE(1142)] = 12730, - [SMALL_STATE(1143)] = 12799, - [SMALL_STATE(1144)] = 12868, - [SMALL_STATE(1145)] = 12941, - [SMALL_STATE(1146)] = 13010, - [SMALL_STATE(1147)] = 13083, - [SMALL_STATE(1148)] = 13153, - [SMALL_STATE(1149)] = 13221, - [SMALL_STATE(1150)] = 13293, - [SMALL_STATE(1151)] = 13355, - [SMALL_STATE(1152)] = 13423, - [SMALL_STATE(1153)] = 13489, - [SMALL_STATE(1154)] = 13557, - [SMALL_STATE(1155)] = 13629, - [SMALL_STATE(1156)] = 13697, - [SMALL_STATE(1157)] = 13767, - [SMALL_STATE(1158)] = 13829, - [SMALL_STATE(1159)] = 13891, - [SMALL_STATE(1160)] = 13958, - [SMALL_STATE(1161)] = 14025, - [SMALL_STATE(1162)] = 14090, - [SMALL_STATE(1163)] = 14157, - [SMALL_STATE(1164)] = 14226, - [SMALL_STATE(1165)] = 14342, - [SMALL_STATE(1166)] = 14458, - [SMALL_STATE(1167)] = 14574, - [SMALL_STATE(1168)] = 14690, - [SMALL_STATE(1169)] = 14806, - [SMALL_STATE(1170)] = 14922, - [SMALL_STATE(1171)] = 15005, - [SMALL_STATE(1172)] = 15117, - [SMALL_STATE(1173)] = 15229, - [SMALL_STATE(1174)] = 15341, - [SMALL_STATE(1175)] = 15461, - [SMALL_STATE(1176)] = 15573, - [SMALL_STATE(1177)] = 15685, - [SMALL_STATE(1178)] = 15797, - [SMALL_STATE(1179)] = 15909, - [SMALL_STATE(1180)] = 16029, - [SMALL_STATE(1181)] = 16141, - [SMALL_STATE(1182)] = 16261, - [SMALL_STATE(1183)] = 16373, - [SMALL_STATE(1184)] = 16485, - [SMALL_STATE(1185)] = 16597, - [SMALL_STATE(1186)] = 16717, - [SMALL_STATE(1187)] = 16829, - [SMALL_STATE(1188)] = 16941, - [SMALL_STATE(1189)] = 17053, - [SMALL_STATE(1190)] = 17173, - [SMALL_STATE(1191)] = 17285, - [SMALL_STATE(1192)] = 17397, - [SMALL_STATE(1193)] = 17509, - [SMALL_STATE(1194)] = 17621, - [SMALL_STATE(1195)] = 17733, - [SMALL_STATE(1196)] = 17841, - [SMALL_STATE(1197)] = 17951, - [SMALL_STATE(1198)] = 18059, - [SMALL_STATE(1199)] = 18167, - [SMALL_STATE(1200)] = 18223, - [SMALL_STATE(1201)] = 18331, - [SMALL_STATE(1202)] = 18387, - [SMALL_STATE(1203)] = 18495, - [SMALL_STATE(1204)] = 18603, - [SMALL_STATE(1205)] = 18711, - [SMALL_STATE(1206)] = 18782, - [SMALL_STATE(1207)] = 18845, - [SMALL_STATE(1208)] = 18905, - [SMALL_STATE(1209)] = 18965, - [SMALL_STATE(1210)] = 19063, - [SMALL_STATE(1211)] = 19121, - [SMALL_STATE(1212)] = 19219, - [SMALL_STATE(1213)] = 19317, - [SMALL_STATE(1214)] = 19415, - [SMALL_STATE(1215)] = 19513, - [SMALL_STATE(1216)] = 19571, - [SMALL_STATE(1217)] = 19669, - [SMALL_STATE(1218)] = 19729, - [SMALL_STATE(1219)] = 19789, - [SMALL_STATE(1220)] = 19843, - [SMALL_STATE(1221)] = 19897, - [SMALL_STATE(1222)] = 19953, - [SMALL_STATE(1223)] = 20051, - [SMALL_STATE(1224)] = 20107, - [SMALL_STATE(1225)] = 20161, - [SMALL_STATE(1226)] = 20219, - [SMALL_STATE(1227)] = 20279, - [SMALL_STATE(1228)] = 20332, - [SMALL_STATE(1229)] = 20385, - [SMALL_STATE(1230)] = 20438, - [SMALL_STATE(1231)] = 20493, - [SMALL_STATE(1232)] = 20550, - [SMALL_STATE(1233)] = 20609, - [SMALL_STATE(1234)] = 20662, - [SMALL_STATE(1235)] = 20721, - [SMALL_STATE(1236)] = 20780, - [SMALL_STATE(1237)] = 20833, - [SMALL_STATE(1238)] = 20886, - [SMALL_STATE(1239)] = 20939, - [SMALL_STATE(1240)] = 20992, - [SMALL_STATE(1241)] = 21045, - [SMALL_STATE(1242)] = 21098, - [SMALL_STATE(1243)] = 21151, - [SMALL_STATE(1244)] = 21212, - [SMALL_STATE(1245)] = 21265, - [SMALL_STATE(1246)] = 21318, - [SMALL_STATE(1247)] = 21371, - [SMALL_STATE(1248)] = 21426, - [SMALL_STATE(1249)] = 21501, - [SMALL_STATE(1250)] = 21556, - [SMALL_STATE(1251)] = 21609, - [SMALL_STATE(1252)] = 21662, - [SMALL_STATE(1253)] = 21715, - [SMALL_STATE(1254)] = 21796, - [SMALL_STATE(1255)] = 21849, - [SMALL_STATE(1256)] = 21904, - [SMALL_STATE(1257)] = 22017, - [SMALL_STATE(1258)] = 22070, - [SMALL_STATE(1259)] = 22123, - [SMALL_STATE(1260)] = 22176, - [SMALL_STATE(1261)] = 22235, - [SMALL_STATE(1262)] = 22294, - [SMALL_STATE(1263)] = 22365, - [SMALL_STATE(1264)] = 22418, - [SMALL_STATE(1265)] = 22473, - [SMALL_STATE(1266)] = 22526, - [SMALL_STATE(1267)] = 22579, - [SMALL_STATE(1268)] = 22632, - [SMALL_STATE(1269)] = 22685, - [SMALL_STATE(1270)] = 22738, - [SMALL_STATE(1271)] = 22793, - [SMALL_STATE(1272)] = 22846, - [SMALL_STATE(1273)] = 22959, - [SMALL_STATE(1274)] = 23012, - [SMALL_STATE(1275)] = 23065, - [SMALL_STATE(1276)] = 23118, - [SMALL_STATE(1277)] = 23171, - [SMALL_STATE(1278)] = 23284, - [SMALL_STATE(1279)] = 23337, - [SMALL_STATE(1280)] = 23390, - [SMALL_STATE(1281)] = 23443, - [SMALL_STATE(1282)] = 23496, - [SMALL_STATE(1283)] = 23549, - [SMALL_STATE(1284)] = 23604, - [SMALL_STATE(1285)] = 23659, - [SMALL_STATE(1286)] = 23712, - [SMALL_STATE(1287)] = 23771, - [SMALL_STATE(1288)] = 23824, - [SMALL_STATE(1289)] = 23937, - [SMALL_STATE(1290)] = 23994, - [SMALL_STATE(1291)] = 24047, - [SMALL_STATE(1292)] = 24160, - [SMALL_STATE(1293)] = 24213, - [SMALL_STATE(1294)] = 24266, - [SMALL_STATE(1295)] = 24379, - [SMALL_STATE(1296)] = 24456, - [SMALL_STATE(1297)] = 24515, - [SMALL_STATE(1298)] = 24630, - [SMALL_STATE(1299)] = 24683, - [SMALL_STATE(1300)] = 24736, - [SMALL_STATE(1301)] = 24789, - [SMALL_STATE(1302)] = 24844, - [SMALL_STATE(1303)] = 24931, - [SMALL_STATE(1304)] = 24984, - [SMALL_STATE(1305)] = 25037, - [SMALL_STATE(1306)] = 25138, - [SMALL_STATE(1307)] = 25241, - [SMALL_STATE(1308)] = 25294, - [SMALL_STATE(1309)] = 25377, - [SMALL_STATE(1310)] = 25472, - [SMALL_STATE(1311)] = 25569, - [SMALL_STATE(1312)] = 25622, - [SMALL_STATE(1313)] = 25721, - [SMALL_STATE(1314)] = 25778, - [SMALL_STATE(1315)] = 25859, - [SMALL_STATE(1316)] = 25942, - [SMALL_STATE(1317)] = 26033, - [SMALL_STATE(1318)] = 26138, - [SMALL_STATE(1319)] = 26191, - [SMALL_STATE(1320)] = 26250, - [SMALL_STATE(1321)] = 26363, - [SMALL_STATE(1322)] = 26476, - [SMALL_STATE(1323)] = 26529, - [SMALL_STATE(1324)] = 26582, - [SMALL_STATE(1325)] = 26635, - [SMALL_STATE(1326)] = 26748, - [SMALL_STATE(1327)] = 26801, - [SMALL_STATE(1328)] = 26854, - [SMALL_STATE(1329)] = 26907, - [SMALL_STATE(1330)] = 26960, - [SMALL_STATE(1331)] = 27013, - [SMALL_STATE(1332)] = 27066, - [SMALL_STATE(1333)] = 27119, - [SMALL_STATE(1334)] = 27172, - [SMALL_STATE(1335)] = 27225, - [SMALL_STATE(1336)] = 27282, - [SMALL_STATE(1337)] = 27395, - [SMALL_STATE(1338)] = 27448, - [SMALL_STATE(1339)] = 27509, - [SMALL_STATE(1340)] = 27562, - [SMALL_STATE(1341)] = 27615, - [SMALL_STATE(1342)] = 27668, - [SMALL_STATE(1343)] = 27781, - [SMALL_STATE(1344)] = 27838, - [SMALL_STATE(1345)] = 27891, - [SMALL_STATE(1346)] = 27944, - [SMALL_STATE(1347)] = 27997, - [SMALL_STATE(1348)] = 28050, - [SMALL_STATE(1349)] = 28103, - [SMALL_STATE(1350)] = 28162, - [SMALL_STATE(1351)] = 28215, - [SMALL_STATE(1352)] = 28268, - [SMALL_STATE(1353)] = 28329, - [SMALL_STATE(1354)] = 28382, - [SMALL_STATE(1355)] = 28435, - [SMALL_STATE(1356)] = 28548, - [SMALL_STATE(1357)] = 28660, - [SMALL_STATE(1358)] = 28712, - [SMALL_STATE(1359)] = 28764, - [SMALL_STATE(1360)] = 28816, - [SMALL_STATE(1361)] = 28868, - [SMALL_STATE(1362)] = 28920, - [SMALL_STATE(1363)] = 28972, - [SMALL_STATE(1364)] = 29024, - [SMALL_STATE(1365)] = 29076, - [SMALL_STATE(1366)] = 29128, - [SMALL_STATE(1367)] = 29180, - [SMALL_STATE(1368)] = 29232, - [SMALL_STATE(1369)] = 29284, - [SMALL_STATE(1370)] = 29358, - [SMALL_STATE(1371)] = 29426, - [SMALL_STATE(1372)] = 29478, - [SMALL_STATE(1373)] = 29530, - [SMALL_STATE(1374)] = 29600, - [SMALL_STATE(1375)] = 29654, - [SMALL_STATE(1376)] = 29706, - [SMALL_STATE(1377)] = 29764, - [SMALL_STATE(1378)] = 29880, - [SMALL_STATE(1379)] = 29932, - [SMALL_STATE(1380)] = 29986, - [SMALL_STATE(1381)] = 30038, - [SMALL_STATE(1382)] = 30092, - [SMALL_STATE(1383)] = 30144, - [SMALL_STATE(1384)] = 30196, - [SMALL_STATE(1385)] = 30248, - [SMALL_STATE(1386)] = 30300, - [SMALL_STATE(1387)] = 30352, - [SMALL_STATE(1388)] = 30404, - [SMALL_STATE(1389)] = 30456, - [SMALL_STATE(1390)] = 30572, - [SMALL_STATE(1391)] = 30690, - [SMALL_STATE(1392)] = 30742, - [SMALL_STATE(1393)] = 30794, - [SMALL_STATE(1394)] = 30880, - [SMALL_STATE(1395)] = 30992, - [SMALL_STATE(1396)] = 31108, - [SMALL_STATE(1397)] = 31178, - [SMALL_STATE(1398)] = 31290, - [SMALL_STATE(1399)] = 31402, - [SMALL_STATE(1400)] = 31514, - [SMALL_STATE(1401)] = 31630, - [SMALL_STATE(1402)] = 31682, - [SMALL_STATE(1403)] = 31794, - [SMALL_STATE(1404)] = 31846, - [SMALL_STATE(1405)] = 31958, - [SMALL_STATE(1406)] = 32076, - [SMALL_STATE(1407)] = 32128, - [SMALL_STATE(1408)] = 32202, - [SMALL_STATE(1409)] = 32254, - [SMALL_STATE(1410)] = 32306, - [SMALL_STATE(1411)] = 32358, - [SMALL_STATE(1412)] = 32410, - [SMALL_STATE(1413)] = 32522, - [SMALL_STATE(1414)] = 32634, - [SMALL_STATE(1415)] = 32686, - [SMALL_STATE(1416)] = 32738, - [SMALL_STATE(1417)] = 32790, - [SMALL_STATE(1418)] = 32842, - [SMALL_STATE(1419)] = 32894, - [SMALL_STATE(1420)] = 33006, - [SMALL_STATE(1421)] = 33110, - [SMALL_STATE(1422)] = 33200, - [SMALL_STATE(1423)] = 33252, - [SMALL_STATE(1424)] = 33304, - [SMALL_STATE(1425)] = 33356, - [SMALL_STATE(1426)] = 33408, - [SMALL_STATE(1427)] = 33460, - [SMALL_STATE(1428)] = 33512, - [SMALL_STATE(1429)] = 33564, - [SMALL_STATE(1430)] = 33646, - [SMALL_STATE(1431)] = 33726, - [SMALL_STATE(1432)] = 33844, - [SMALL_STATE(1433)] = 33896, - [SMALL_STATE(1434)] = 33948, - [SMALL_STATE(1435)] = 34000, - [SMALL_STATE(1436)] = 34052, - [SMALL_STATE(1437)] = 34104, - [SMALL_STATE(1438)] = 34156, - [SMALL_STATE(1439)] = 34270, - [SMALL_STATE(1440)] = 34350, - [SMALL_STATE(1441)] = 34462, - [SMALL_STATE(1442)] = 34518, - [SMALL_STATE(1443)] = 34616, - [SMALL_STATE(1444)] = 34712, - [SMALL_STATE(1445)] = 34806, - [SMALL_STATE(1446)] = 34888, - [SMALL_STATE(1447)] = 34990, - [SMALL_STATE(1448)] = 35050, - [SMALL_STATE(1449)] = 35102, - [SMALL_STATE(1450)] = 35160, - [SMALL_STATE(1451)] = 35260, - [SMALL_STATE(1452)] = 35318, - [SMALL_STATE(1453)] = 35370, - [SMALL_STATE(1454)] = 35482, - [SMALL_STATE(1455)] = 35600, - [SMALL_STATE(1456)] = 35652, - [SMALL_STATE(1457)] = 35704, - [SMALL_STATE(1458)] = 35756, - [SMALL_STATE(1459)] = 35870, - [SMALL_STATE(1460)] = 35922, - [SMALL_STATE(1461)] = 35974, - [SMALL_STATE(1462)] = 36054, - [SMALL_STATE(1463)] = 36166, - [SMALL_STATE(1464)] = 36218, - [SMALL_STATE(1465)] = 36270, - [SMALL_STATE(1466)] = 36322, - [SMALL_STATE(1467)] = 36438, - [SMALL_STATE(1468)] = 36490, - [SMALL_STATE(1469)] = 36576, - [SMALL_STATE(1470)] = 36630, - [SMALL_STATE(1471)] = 36682, - [SMALL_STATE(1472)] = 36734, - [SMALL_STATE(1473)] = 36786, - [SMALL_STATE(1474)] = 36898, - [SMALL_STATE(1475)] = 37010, - [SMALL_STATE(1476)] = 37122, - [SMALL_STATE(1477)] = 37174, - [SMALL_STATE(1478)] = 37226, - [SMALL_STATE(1479)] = 37338, - [SMALL_STATE(1480)] = 37450, - [SMALL_STATE(1481)] = 37526, - [SMALL_STATE(1482)] = 37638, - [SMALL_STATE(1483)] = 37750, - [SMALL_STATE(1484)] = 37840, - [SMALL_STATE(1485)] = 37952, - [SMALL_STATE(1486)] = 38028, - [SMALL_STATE(1487)] = 38080, - [SMALL_STATE(1488)] = 38192, - [SMALL_STATE(1489)] = 38304, - [SMALL_STATE(1490)] = 38408, - [SMALL_STATE(1491)] = 38520, - [SMALL_STATE(1492)] = 38610, - [SMALL_STATE(1493)] = 38662, - [SMALL_STATE(1494)] = 38714, - [SMALL_STATE(1495)] = 38826, - [SMALL_STATE(1496)] = 38878, - [SMALL_STATE(1497)] = 38930, - [SMALL_STATE(1498)] = 38986, - [SMALL_STATE(1499)] = 39040, - [SMALL_STATE(1500)] = 39092, - [SMALL_STATE(1501)] = 39192, - [SMALL_STATE(1502)] = 39244, - [SMALL_STATE(1503)] = 39346, - [SMALL_STATE(1504)] = 39428, - [SMALL_STATE(1505)] = 39522, - [SMALL_STATE(1506)] = 39618, - [SMALL_STATE(1507)] = 39670, - [SMALL_STATE(1508)] = 39726, - [SMALL_STATE(1509)] = 39824, - [SMALL_STATE(1510)] = 39876, - [SMALL_STATE(1511)] = 39958, - [SMALL_STATE(1512)] = 40010, - [SMALL_STATE(1513)] = 40090, - [SMALL_STATE(1514)] = 40143, - [SMALL_STATE(1515)] = 40194, - [SMALL_STATE(1516)] = 40249, - [SMALL_STATE(1517)] = 40360, - [SMALL_STATE(1518)] = 40439, - [SMALL_STATE(1519)] = 40498, - [SMALL_STATE(1520)] = 40593, - [SMALL_STATE(1521)] = 40688, - [SMALL_STATE(1522)] = 40803, - [SMALL_STATE(1523)] = 40914, - [SMALL_STATE(1524)] = 41025, - [SMALL_STATE(1525)] = 41082, - [SMALL_STATE(1526)] = 41195, - [SMALL_STATE(1527)] = 41250, - [SMALL_STATE(1528)] = 41365, - [SMALL_STATE(1529)] = 41420, - [SMALL_STATE(1530)] = 41531, - [SMALL_STATE(1531)] = 41600, - [SMALL_STATE(1532)] = 41711, - [SMALL_STATE(1533)] = 41806, - [SMALL_STATE(1534)] = 41921, - [SMALL_STATE(1535)] = 42032, - [SMALL_STATE(1536)] = 42143, - [SMALL_STATE(1537)] = 42254, - [SMALL_STATE(1538)] = 42365, - [SMALL_STATE(1539)] = 42476, - [SMALL_STATE(1540)] = 42587, - [SMALL_STATE(1541)] = 42698, - [SMALL_STATE(1542)] = 42773, - [SMALL_STATE(1543)] = 42858, - [SMALL_STATE(1544)] = 42971, - [SMALL_STATE(1545)] = 43070, - [SMALL_STATE(1546)] = 43171, - [SMALL_STATE(1547)] = 43252, - [SMALL_STATE(1548)] = 43363, - [SMALL_STATE(1549)] = 43466, - [SMALL_STATE(1550)] = 43545, - [SMALL_STATE(1551)] = 43602, - [SMALL_STATE(1552)] = 43675, - [SMALL_STATE(1553)] = 43770, - [SMALL_STATE(1554)] = 43863, - [SMALL_STATE(1555)] = 43958, - [SMALL_STATE(1556)] = 44055, - [SMALL_STATE(1557)] = 44166, - [SMALL_STATE(1558)] = 44279, - [SMALL_STATE(1559)] = 44338, - [SMALL_STATE(1560)] = 44427, - [SMALL_STATE(1561)] = 44508, - [SMALL_STATE(1562)] = 44597, - [SMALL_STATE(1563)] = 44678, - [SMALL_STATE(1564)] = 44731, - [SMALL_STATE(1565)] = 44834, - [SMALL_STATE(1566)] = 44945, - [SMALL_STATE(1567)] = 45002, - [SMALL_STATE(1568)] = 45113, - [SMALL_STATE(1569)] = 45224, - [SMALL_STATE(1570)] = 45303, - [SMALL_STATE(1571)] = 45360, - [SMALL_STATE(1572)] = 45471, - [SMALL_STATE(1573)] = 45582, - [SMALL_STATE(1574)] = 45693, - [SMALL_STATE(1575)] = 45804, - [SMALL_STATE(1576)] = 45901, - [SMALL_STATE(1577)] = 45996, - [SMALL_STATE(1578)] = 46111, - [SMALL_STATE(1579)] = 46206, - [SMALL_STATE(1580)] = 46317, - [SMALL_STATE(1581)] = 46412, - [SMALL_STATE(1582)] = 46485, - [SMALL_STATE(1583)] = 46564, - [SMALL_STATE(1584)] = 46675, - [SMALL_STATE(1585)] = 46744, - [SMALL_STATE(1586)] = 46839, - [SMALL_STATE(1587)] = 46950, - [SMALL_STATE(1588)] = 47007, - [SMALL_STATE(1589)] = 47122, - [SMALL_STATE(1590)] = 47217, - [SMALL_STATE(1591)] = 47332, - [SMALL_STATE(1592)] = 47389, - [SMALL_STATE(1593)] = 47446, - [SMALL_STATE(1594)] = 47561, - [SMALL_STATE(1595)] = 47672, - [SMALL_STATE(1596)] = 47787, - [SMALL_STATE(1597)] = 47898, - [SMALL_STATE(1598)] = 47979, - [SMALL_STATE(1599)] = 48090, - [SMALL_STATE(1600)] = 48203, - [SMALL_STATE(1601)] = 48314, - [SMALL_STATE(1602)] = 48375, - [SMALL_STATE(1603)] = 48436, - [SMALL_STATE(1604)] = 48495, - [SMALL_STATE(1605)] = 48554, - [SMALL_STATE(1606)] = 48649, - [SMALL_STATE(1607)] = 48750, - [SMALL_STATE(1608)] = 48865, - [SMALL_STATE(1609)] = 48980, - [SMALL_STATE(1610)] = 49091, - [SMALL_STATE(1611)] = 49146, - [SMALL_STATE(1612)] = 49221, - [SMALL_STATE(1613)] = 49306, - [SMALL_STATE(1614)] = 49419, - [SMALL_STATE(1615)] = 49514, - [SMALL_STATE(1616)] = 49609, - [SMALL_STATE(1617)] = 49702, - [SMALL_STATE(1618)] = 49801, - [SMALL_STATE(1619)] = 49860, - [SMALL_STATE(1620)] = 49919, - [SMALL_STATE(1621)] = 49969, - [SMALL_STATE(1622)] = 50019, - [SMALL_STATE(1623)] = 50103, - [SMALL_STATE(1624)] = 50153, - [SMALL_STATE(1625)] = 50209, - [SMALL_STATE(1626)] = 50261, - [SMALL_STATE(1627)] = 50311, - [SMALL_STATE(1628)] = 50365, - [SMALL_STATE(1629)] = 50415, - [SMALL_STATE(1630)] = 50465, - [SMALL_STATE(1631)] = 50515, - [SMALL_STATE(1632)] = 50565, - [SMALL_STATE(1633)] = 50615, - [SMALL_STATE(1634)] = 50677, - [SMALL_STATE(1635)] = 50727, - [SMALL_STATE(1636)] = 50811, - [SMALL_STATE(1637)] = 50863, - [SMALL_STATE(1638)] = 50925, - [SMALL_STATE(1639)] = 50975, - [SMALL_STATE(1640)] = 51029, - [SMALL_STATE(1641)] = 51087, - [SMALL_STATE(1642)] = 51197, - [SMALL_STATE(1643)] = 51247, - [SMALL_STATE(1644)] = 51297, - [SMALL_STATE(1645)] = 51347, - [SMALL_STATE(1646)] = 51403, - [SMALL_STATE(1647)] = 51487, - [SMALL_STATE(1648)] = 51571, - [SMALL_STATE(1649)] = 51621, - [SMALL_STATE(1650)] = 51733, - [SMALL_STATE(1651)] = 51783, - [SMALL_STATE(1652)] = 51833, - [SMALL_STATE(1653)] = 51883, - [SMALL_STATE(1654)] = 51933, - [SMALL_STATE(1655)] = 51983, - [SMALL_STATE(1656)] = 52035, - [SMALL_STATE(1657)] = 52085, - [SMALL_STATE(1658)] = 52141, - [SMALL_STATE(1659)] = 52197, - [SMALL_STATE(1660)] = 52247, - [SMALL_STATE(1661)] = 52297, - [SMALL_STATE(1662)] = 52347, - [SMALL_STATE(1663)] = 52399, - [SMALL_STATE(1664)] = 52449, - [SMALL_STATE(1665)] = 52499, - [SMALL_STATE(1666)] = 52549, - [SMALL_STATE(1667)] = 52661, - [SMALL_STATE(1668)] = 52723, - [SMALL_STATE(1669)] = 52785, - [SMALL_STATE(1670)] = 52837, - [SMALL_STATE(1671)] = 52887, - [SMALL_STATE(1672)] = 52937, - [SMALL_STATE(1673)] = 52987, - [SMALL_STATE(1674)] = 53037, - [SMALL_STATE(1675)] = 53087, - [SMALL_STATE(1676)] = 53137, - [SMALL_STATE(1677)] = 53209, - [SMALL_STATE(1678)] = 53287, - [SMALL_STATE(1679)] = 53337, - [SMALL_STATE(1680)] = 53447, - [SMALL_STATE(1681)] = 53497, - [SMALL_STATE(1682)] = 53547, - [SMALL_STATE(1683)] = 53597, - [SMALL_STATE(1684)] = 53647, - [SMALL_STATE(1685)] = 53697, - [SMALL_STATE(1686)] = 53765, - [SMALL_STATE(1687)] = 53815, - [SMALL_STATE(1688)] = 53927, - [SMALL_STATE(1689)] = 53983, - [SMALL_STATE(1690)] = 54039, - [SMALL_STATE(1691)] = 54097, - [SMALL_STATE(1692)] = 54153, - [SMALL_STATE(1693)] = 54209, - [SMALL_STATE(1694)] = 54321, - [SMALL_STATE(1695)] = 54377, - [SMALL_STATE(1696)] = 54427, - [SMALL_STATE(1697)] = 54491, - [SMALL_STATE(1698)] = 54603, - [SMALL_STATE(1699)] = 54653, - [SMALL_STATE(1700)] = 54703, - [SMALL_STATE(1701)] = 54815, - [SMALL_STATE(1702)] = 54873, - [SMALL_STATE(1703)] = 54937, - [SMALL_STATE(1704)] = 54991, - [SMALL_STATE(1705)] = 55049, - [SMALL_STATE(1706)] = 55099, - [SMALL_STATE(1707)] = 55149, - [SMALL_STATE(1708)] = 55199, - [SMALL_STATE(1709)] = 55249, - [SMALL_STATE(1710)] = 55299, - [SMALL_STATE(1711)] = 55349, - [SMALL_STATE(1712)] = 55399, - [SMALL_STATE(1713)] = 55449, - [SMALL_STATE(1714)] = 55499, - [SMALL_STATE(1715)] = 55549, - [SMALL_STATE(1716)] = 55599, - [SMALL_STATE(1717)] = 55709, - [SMALL_STATE(1718)] = 55759, - [SMALL_STATE(1719)] = 55809, - [SMALL_STATE(1720)] = 55919, - [SMALL_STATE(1721)] = 56029, - [SMALL_STATE(1722)] = 56079, - [SMALL_STATE(1723)] = 56135, - [SMALL_STATE(1724)] = 56247, - [SMALL_STATE(1725)] = 56297, - [SMALL_STATE(1726)] = 56349, - [SMALL_STATE(1727)] = 56399, - [SMALL_STATE(1728)] = 56451, - [SMALL_STATE(1729)] = 56501, - [SMALL_STATE(1730)] = 56551, - [SMALL_STATE(1731)] = 56601, - [SMALL_STATE(1732)] = 56651, - [SMALL_STATE(1733)] = 56707, - [SMALL_STATE(1734)] = 56757, - [SMALL_STATE(1735)] = 56807, - [SMALL_STATE(1736)] = 56857, - [SMALL_STATE(1737)] = 56913, - [SMALL_STATE(1738)] = 56963, - [SMALL_STATE(1739)] = 57015, - [SMALL_STATE(1740)] = 57127, - [SMALL_STATE(1741)] = 57177, - [SMALL_STATE(1742)] = 57227, - [SMALL_STATE(1743)] = 57277, - [SMALL_STATE(1744)] = 57389, - [SMALL_STATE(1745)] = 57439, - [SMALL_STATE(1746)] = 57489, - [SMALL_STATE(1747)] = 57539, - [SMALL_STATE(1748)] = 57651, - [SMALL_STATE(1749)] = 57701, - [SMALL_STATE(1750)] = 57813, - [SMALL_STATE(1751)] = 57867, - [SMALL_STATE(1752)] = 57977, - [SMALL_STATE(1753)] = 58031, - [SMALL_STATE(1754)] = 58143, - [SMALL_STATE(1755)] = 58255, - [SMALL_STATE(1756)] = 58311, - [SMALL_STATE(1757)] = 58365, - [SMALL_STATE(1758)] = 58475, - [SMALL_STATE(1759)] = 58585, - [SMALL_STATE(1760)] = 58695, - [SMALL_STATE(1761)] = 58757, - [SMALL_STATE(1762)] = 58867, - [SMALL_STATE(1763)] = 58919, - [SMALL_STATE(1764)] = 58975, - [SMALL_STATE(1765)] = 59085, - [SMALL_STATE(1766)] = 59197, - [SMALL_STATE(1767)] = 59299, - [SMALL_STATE(1768)] = 59387, - [SMALL_STATE(1769)] = 59467, - [SMALL_STATE(1770)] = 59545, - [SMALL_STATE(1771)] = 59641, - [SMALL_STATE(1772)] = 59735, - [SMALL_STATE(1773)] = 59827, - [SMALL_STATE(1774)] = 59937, - [SMALL_STATE(1775)] = 60017, - [SMALL_STATE(1776)] = 60117, - [SMALL_STATE(1777)] = 60169, - [SMALL_STATE(1778)] = 60267, - [SMALL_STATE(1779)] = 60329, - [SMALL_STATE(1780)] = 60413, - [SMALL_STATE(1781)] = 60475, - [SMALL_STATE(1782)] = 60587, - [SMALL_STATE(1783)] = 60671, - [SMALL_STATE(1784)] = 60745, - [SMALL_STATE(1785)] = 60857, - [SMALL_STATE(1786)] = 60967, - [SMALL_STATE(1787)] = 61079, - [SMALL_STATE(1788)] = 61189, - [SMALL_STATE(1789)] = 61301, - [SMALL_STATE(1790)] = 61413, - [SMALL_STATE(1791)] = 61469, - [SMALL_STATE(1792)] = 61525, - [SMALL_STATE(1793)] = 61581, - [SMALL_STATE(1794)] = 61637, - [SMALL_STATE(1795)] = 61747, - [SMALL_STATE(1796)] = 61809, - [SMALL_STATE(1797)] = 61861, - [SMALL_STATE(1798)] = 61913, - [SMALL_STATE(1799)] = 61975, - [SMALL_STATE(1800)] = 62085, - [SMALL_STATE(1801)] = 62195, - [SMALL_STATE(1802)] = 62305, - [SMALL_STATE(1803)] = 62354, - [SMALL_STATE(1804)] = 62451, - [SMALL_STATE(1805)] = 62526, - [SMALL_STATE(1806)] = 62599, - [SMALL_STATE(1807)] = 62660, - [SMALL_STATE(1808)] = 62769, - [SMALL_STATE(1809)] = 62824, - [SMALL_STATE(1810)] = 62875, - [SMALL_STATE(1811)] = 62924, - [SMALL_STATE(1812)] = 63033, - [SMALL_STATE(1813)] = 63084, - [SMALL_STATE(1814)] = 63137, - [SMALL_STATE(1815)] = 63190, - [SMALL_STATE(1816)] = 63243, - [SMALL_STATE(1817)] = 63292, - [SMALL_STATE(1818)] = 63343, - [SMALL_STATE(1819)] = 63396, - [SMALL_STATE(1820)] = 63471, - [SMALL_STATE(1821)] = 63524, - [SMALL_STATE(1822)] = 63633, - [SMALL_STATE(1823)] = 63710, - [SMALL_STATE(1824)] = 63819, - [SMALL_STATE(1825)] = 63868, - [SMALL_STATE(1826)] = 63921, - [SMALL_STATE(1827)] = 63974, - [SMALL_STATE(1828)] = 64023, - [SMALL_STATE(1829)] = 64132, - [SMALL_STATE(1830)] = 64183, - [SMALL_STATE(1831)] = 64236, - [SMALL_STATE(1832)] = 64287, - [SMALL_STATE(1833)] = 64338, - [SMALL_STATE(1834)] = 64387, - [SMALL_STATE(1835)] = 64496, - [SMALL_STATE(1836)] = 64549, - [SMALL_STATE(1837)] = 64602, - [SMALL_STATE(1838)] = 64659, - [SMALL_STATE(1839)] = 64708, - [SMALL_STATE(1840)] = 64761, - [SMALL_STATE(1841)] = 64810, - [SMALL_STATE(1842)] = 64861, - [SMALL_STATE(1843)] = 64910, - [SMALL_STATE(1844)] = 65021, - [SMALL_STATE(1845)] = 65070, - [SMALL_STATE(1846)] = 65119, - [SMALL_STATE(1847)] = 65170, - [SMALL_STATE(1848)] = 65219, - [SMALL_STATE(1849)] = 65328, - [SMALL_STATE(1850)] = 65381, - [SMALL_STATE(1851)] = 65430, - [SMALL_STATE(1852)] = 65479, - [SMALL_STATE(1853)] = 65528, - [SMALL_STATE(1854)] = 65577, - [SMALL_STATE(1855)] = 65626, - [SMALL_STATE(1856)] = 65683, - [SMALL_STATE(1857)] = 65736, - [SMALL_STATE(1858)] = 65789, - [SMALL_STATE(1859)] = 65838, - [SMALL_STATE(1860)] = 65891, - [SMALL_STATE(1861)] = 65940, - [SMALL_STATE(1862)] = 65995, - [SMALL_STATE(1863)] = 66072, - [SMALL_STATE(1864)] = 66121, - [SMALL_STATE(1865)] = 66170, - [SMALL_STATE(1866)] = 66245, - [SMALL_STATE(1867)] = 66298, - [SMALL_STATE(1868)] = 66351, - [SMALL_STATE(1869)] = 66404, - [SMALL_STATE(1870)] = 66457, - [SMALL_STATE(1871)] = 66506, - [SMALL_STATE(1872)] = 66555, - [SMALL_STATE(1873)] = 66614, - [SMALL_STATE(1874)] = 66667, - [SMALL_STATE(1875)] = 66716, - [SMALL_STATE(1876)] = 66767, - [SMALL_STATE(1877)] = 66818, - [SMALL_STATE(1878)] = 66927, - [SMALL_STATE(1879)] = 66976, - [SMALL_STATE(1880)] = 67025, - [SMALL_STATE(1881)] = 67074, - [SMALL_STATE(1882)] = 67127, - [SMALL_STATE(1883)] = 67176, - [SMALL_STATE(1884)] = 67225, - [SMALL_STATE(1885)] = 67334, - [SMALL_STATE(1886)] = 67383, - [SMALL_STATE(1887)] = 67436, - [SMALL_STATE(1888)] = 67487, - [SMALL_STATE(1889)] = 67540, - [SMALL_STATE(1890)] = 67649, - [SMALL_STATE(1891)] = 67698, - [SMALL_STATE(1892)] = 67747, - [SMALL_STATE(1893)] = 67796, - [SMALL_STATE(1894)] = 67845, - [SMALL_STATE(1895)] = 67922, - [SMALL_STATE(1896)] = 67979, - [SMALL_STATE(1897)] = 68056, - [SMALL_STATE(1898)] = 68131, - [SMALL_STATE(1899)] = 68184, - [SMALL_STATE(1900)] = 68293, - [SMALL_STATE(1901)] = 68402, - [SMALL_STATE(1902)] = 68511, - [SMALL_STATE(1903)] = 68562, - [SMALL_STATE(1904)] = 68611, - [SMALL_STATE(1905)] = 68660, - [SMALL_STATE(1906)] = 68709, - [SMALL_STATE(1907)] = 68786, - [SMALL_STATE(1908)] = 68843, - [SMALL_STATE(1909)] = 68896, - [SMALL_STATE(1910)] = 69005, - [SMALL_STATE(1911)] = 69080, - [SMALL_STATE(1912)] = 69129, - [SMALL_STATE(1913)] = 69188, - [SMALL_STATE(1914)] = 69237, - [SMALL_STATE(1915)] = 69292, - [SMALL_STATE(1916)] = 69369, - [SMALL_STATE(1917)] = 69478, - [SMALL_STATE(1918)] = 69527, - [SMALL_STATE(1919)] = 69576, - [SMALL_STATE(1920)] = 69659, - [SMALL_STATE(1921)] = 69708, - [SMALL_STATE(1922)] = 69757, - [SMALL_STATE(1923)] = 69806, - [SMALL_STATE(1924)] = 69855, - [SMALL_STATE(1925)] = 69904, - [SMALL_STATE(1926)] = 69959, - [SMALL_STATE(1927)] = 70008, - [SMALL_STATE(1928)] = 70059, - [SMALL_STATE(1929)] = 70108, - [SMALL_STATE(1930)] = 70157, - [SMALL_STATE(1931)] = 70206, - [SMALL_STATE(1932)] = 70273, - [SMALL_STATE(1933)] = 70324, - [SMALL_STATE(1934)] = 70433, - [SMALL_STATE(1935)] = 70510, - [SMALL_STATE(1936)] = 70581, - [SMALL_STATE(1937)] = 70690, - [SMALL_STATE(1938)] = 70739, - [SMALL_STATE(1939)] = 70788, - [SMALL_STATE(1940)] = 70837, - [SMALL_STATE(1941)] = 70946, - [SMALL_STATE(1942)] = 71055, - [SMALL_STATE(1943)] = 71154, - [SMALL_STATE(1944)] = 71207, - [SMALL_STATE(1945)] = 71260, - [SMALL_STATE(1946)] = 71319, - [SMALL_STATE(1947)] = 71378, - [SMALL_STATE(1948)] = 71431, - [SMALL_STATE(1949)] = 71540, - [SMALL_STATE(1950)] = 71589, - [SMALL_STATE(1951)] = 71638, - [SMALL_STATE(1952)] = 71747, - [SMALL_STATE(1953)] = 71796, - [SMALL_STATE(1954)] = 71849, - [SMALL_STATE(1955)] = 71906, - [SMALL_STATE(1956)] = 71955, - [SMALL_STATE(1957)] = 72064, - [SMALL_STATE(1958)] = 72173, - [SMALL_STATE(1959)] = 72274, - [SMALL_STATE(1960)] = 72331, - [SMALL_STATE(1961)] = 72380, - [SMALL_STATE(1962)] = 72429, - [SMALL_STATE(1963)] = 72516, - [SMALL_STATE(1964)] = 72595, - [SMALL_STATE(1965)] = 72644, - [SMALL_STATE(1966)] = 72699, - [SMALL_STATE(1967)] = 72754, - [SMALL_STATE(1968)] = 72845, - [SMALL_STATE(1969)] = 72894, - [SMALL_STATE(1970)] = 72943, - [SMALL_STATE(1971)] = 73036, - [SMALL_STATE(1972)] = 73085, - [SMALL_STATE(1973)] = 73180, - [SMALL_STATE(1974)] = 73237, - [SMALL_STATE(1975)] = 73290, - [SMALL_STATE(1976)] = 73369, - [SMALL_STATE(1977)] = 73426, - [SMALL_STATE(1978)] = 73475, - [SMALL_STATE(1979)] = 73552, - [SMALL_STATE(1980)] = 73646, - [SMALL_STATE(1981)] = 73700, - [SMALL_STATE(1982)] = 73806, - [SMALL_STATE(1983)] = 73912, - [SMALL_STATE(1984)] = 73982, - [SMALL_STATE(1985)] = 74088, - [SMALL_STATE(1986)] = 74194, - [SMALL_STATE(1987)] = 74300, - [SMALL_STATE(1988)] = 74354, - [SMALL_STATE(1989)] = 74460, - [SMALL_STATE(1990)] = 74516, - [SMALL_STATE(1991)] = 74572, - [SMALL_STATE(1992)] = 74642, - [SMALL_STATE(1993)] = 74696, - [SMALL_STATE(1994)] = 74766, - [SMALL_STATE(1995)] = 74842, - [SMALL_STATE(1996)] = 74948, - [SMALL_STATE(1997)] = 75002, - [SMALL_STATE(1998)] = 75058, - [SMALL_STATE(1999)] = 75164, - [SMALL_STATE(2000)] = 75234, - [SMALL_STATE(2001)] = 75330, - [SMALL_STATE(2002)] = 75380, - [SMALL_STATE(2003)] = 75486, - [SMALL_STATE(2004)] = 75592, - [SMALL_STATE(2005)] = 75664, - [SMALL_STATE(2006)] = 75746, - [SMALL_STATE(2007)] = 75844, - [SMALL_STATE(2008)] = 75922, - [SMALL_STATE(2009)] = 76012, - [SMALL_STATE(2010)] = 76068, - [SMALL_STATE(2011)] = 76160, - [SMALL_STATE(2012)] = 76234, - [SMALL_STATE(2013)] = 76310, - [SMALL_STATE(2014)] = 76386, - [SMALL_STATE(2015)] = 76436, - [SMALL_STATE(2016)] = 76514, - [SMALL_STATE(2017)] = 76600, - [SMALL_STATE(2018)] = 76700, - [SMALL_STATE(2019)] = 76806, - [SMALL_STATE(2020)] = 76912, - [SMALL_STATE(2021)] = 76982, - [SMALL_STATE(2022)] = 77052, - [SMALL_STATE(2023)] = 77108, - [SMALL_STATE(2024)] = 77214, - [SMALL_STATE(2025)] = 77266, - [SMALL_STATE(2026)] = 77318, - [SMALL_STATE(2027)] = 77384, - [SMALL_STATE(2028)] = 77434, - [SMALL_STATE(2029)] = 77540, - [SMALL_STATE(2030)] = 77595, - [SMALL_STATE(2031)] = 77676, - [SMALL_STATE(2032)] = 77757, - [SMALL_STATE(2033)] = 77810, - [SMALL_STATE(2034)] = 77879, - [SMALL_STATE(2035)] = 77928, - [SMALL_STATE(2036)] = 77977, - [SMALL_STATE(2037)] = 78048, - [SMALL_STATE(2038)] = 78129, - [SMALL_STATE(2039)] = 78196, - [SMALL_STATE(2040)] = 78265, - [SMALL_STATE(2041)] = 78318, - [SMALL_STATE(2042)] = 78367, - [SMALL_STATE(2043)] = 78434, - [SMALL_STATE(2044)] = 78515, - [SMALL_STATE(2045)] = 78564, - [SMALL_STATE(2046)] = 78613, - [SMALL_STATE(2047)] = 78682, - [SMALL_STATE(2048)] = 78731, - [SMALL_STATE(2049)] = 78802, - [SMALL_STATE(2050)] = 78855, - [SMALL_STATE(2051)] = 78904, - [SMALL_STATE(2052)] = 78971, - [SMALL_STATE(2053)] = 79024, - [SMALL_STATE(2054)] = 79077, - [SMALL_STATE(2055)] = 79128, - [SMALL_STATE(2056)] = 79199, - [SMALL_STATE(2057)] = 79280, - [SMALL_STATE(2058)] = 79351, - [SMALL_STATE(2059)] = 79404, - [SMALL_STATE(2060)] = 79453, - [SMALL_STATE(2061)] = 79506, - [SMALL_STATE(2062)] = 79555, - [SMALL_STATE(2063)] = 79636, - [SMALL_STATE(2064)] = 79685, - [SMALL_STATE(2065)] = 79738, - [SMALL_STATE(2066)] = 79787, - [SMALL_STATE(2067)] = 79868, - [SMALL_STATE(2068)] = 79930, - [SMALL_STATE(2069)] = 79994, - [SMALL_STATE(2070)] = 80068, - [SMALL_STATE(2071)] = 80142, - [SMALL_STATE(2072)] = 80202, - [SMALL_STATE(2073)] = 80264, - [SMALL_STATE(2074)] = 80326, - [SMALL_STATE(2075)] = 80386, - [SMALL_STATE(2076)] = 80446, - [SMALL_STATE(2077)] = 80494, - [SMALL_STATE(2078)] = 80554, - [SMALL_STATE(2079)] = 80614, - [SMALL_STATE(2080)] = 80666, - [SMALL_STATE(2081)] = 80738, - [SMALL_STATE(2082)] = 80798, - [SMALL_STATE(2083)] = 80860, - [SMALL_STATE(2084)] = 80934, - [SMALL_STATE(2085)] = 80998, - [SMALL_STATE(2086)] = 81060, - [SMALL_STATE(2087)] = 81120, - [SMALL_STATE(2088)] = 81180, - [SMALL_STATE(2089)] = 81244, - [SMALL_STATE(2090)] = 81292, - [SMALL_STATE(2091)] = 81356, - [SMALL_STATE(2092)] = 81430, - [SMALL_STATE(2093)] = 81502, - [SMALL_STATE(2094)] = 81562, - [SMALL_STATE(2095)] = 81626, - [SMALL_STATE(2096)] = 81688, - [SMALL_STATE(2097)] = 81760, - [SMALL_STATE(2098)] = 81812, - [SMALL_STATE(2099)] = 81886, - [SMALL_STATE(2100)] = 81958, - [SMALL_STATE(2101)] = 82030, - [SMALL_STATE(2102)] = 82082, - [SMALL_STATE(2103)] = 82144, - [SMALL_STATE(2104)] = 82218, - [SMALL_STATE(2105)] = 82280, - [SMALL_STATE(2106)] = 82344, - [SMALL_STATE(2107)] = 82408, - [SMALL_STATE(2108)] = 82468, - [SMALL_STATE(2109)] = 82520, - [SMALL_STATE(2110)] = 82592, - [SMALL_STATE(2111)] = 82642, - [SMALL_STATE(2112)] = 82704, - [SMALL_STATE(2113)] = 82778, - [SMALL_STATE(2114)] = 82850, - [SMALL_STATE(2115)] = 82914, - [SMALL_STATE(2116)] = 82978, - [SMALL_STATE(2117)] = 83040, - [SMALL_STATE(2118)] = 83102, - [SMALL_STATE(2119)] = 83164, - [SMALL_STATE(2120)] = 83226, - [SMALL_STATE(2121)] = 83288, - [SMALL_STATE(2122)] = 83350, - [SMALL_STATE(2123)] = 83414, - [SMALL_STATE(2124)] = 83478, - [SMALL_STATE(2125)] = 83545, - [SMALL_STATE(2126)] = 83602, - [SMALL_STATE(2127)] = 83659, - [SMALL_STATE(2128)] = 83726, - [SMALL_STATE(2129)] = 83783, - [SMALL_STATE(2130)] = 83840, - [SMALL_STATE(2131)] = 83897, - [SMALL_STATE(2132)] = 83954, - [SMALL_STATE(2133)] = 84011, - [SMALL_STATE(2134)] = 84068, - [SMALL_STATE(2135)] = 84125, - [SMALL_STATE(2136)] = 84192, - [SMALL_STATE(2137)] = 84249, - [SMALL_STATE(2138)] = 84316, - [SMALL_STATE(2139)] = 84373, - [SMALL_STATE(2140)] = 84430, - [SMALL_STATE(2141)] = 84487, - [SMALL_STATE(2142)] = 84544, - [SMALL_STATE(2143)] = 84611, - [SMALL_STATE(2144)] = 84668, - [SMALL_STATE(2145)] = 84745, - [SMALL_STATE(2146)] = 84818, - [SMALL_STATE(2147)] = 84875, - [SMALL_STATE(2148)] = 84924, - [SMALL_STATE(2149)] = 84991, - [SMALL_STATE(2150)] = 85058, - [SMALL_STATE(2151)] = 85115, - [SMALL_STATE(2152)] = 85172, - [SMALL_STATE(2153)] = 85236, - [SMALL_STATE(2154)] = 85292, - [SMALL_STATE(2155)] = 85352, - [SMALL_STATE(2156)] = 85418, - [SMALL_STATE(2157)] = 85478, - [SMALL_STATE(2158)] = 85530, - [SMALL_STATE(2159)] = 85582, - [SMALL_STATE(2160)] = 85638, - [SMALL_STATE(2161)] = 85708, - [SMALL_STATE(2162)] = 85765, - [SMALL_STATE(2163)] = 85826, - [SMALL_STATE(2164)] = 85879, - [SMALL_STATE(2165)] = 85936, - [SMALL_STATE(2166)] = 85993, - [SMALL_STATE(2167)] = 86050, - [SMALL_STATE(2168)] = 86107, - [SMALL_STATE(2169)] = 86164, - [SMALL_STATE(2170)] = 86221, - [SMALL_STATE(2171)] = 86278, - [SMALL_STATE(2172)] = 86335, - [SMALL_STATE(2173)] = 86392, - [SMALL_STATE(2174)] = 86449, - [SMALL_STATE(2175)] = 86506, - [SMALL_STATE(2176)] = 86563, - [SMALL_STATE(2177)] = 86620, - [SMALL_STATE(2178)] = 86683, - [SMALL_STATE(2179)] = 86736, - [SMALL_STATE(2180)] = 86795, - [SMALL_STATE(2181)] = 86851, - [SMALL_STATE(2182)] = 86930, - [SMALL_STATE(2183)] = 86979, - [SMALL_STATE(2184)] = 87058, - [SMALL_STATE(2185)] = 87107, - [SMALL_STATE(2186)] = 87186, - [SMALL_STATE(2187)] = 87265, - [SMALL_STATE(2188)] = 87330, - [SMALL_STATE(2189)] = 87409, - [SMALL_STATE(2190)] = 87456, - [SMALL_STATE(2191)] = 87496, - [SMALL_STATE(2192)] = 87536, - [SMALL_STATE(2193)] = 87590, - [SMALL_STATE(2194)] = 87630, - [SMALL_STATE(2195)] = 87670, - [SMALL_STATE(2196)] = 87710, - [SMALL_STATE(2197)] = 87750, - [SMALL_STATE(2198)] = 87790, - [SMALL_STATE(2199)] = 87830, - [SMALL_STATE(2200)] = 87876, - [SMALL_STATE(2201)] = 87922, - [SMALL_STATE(2202)] = 87962, - [SMALL_STATE(2203)] = 88020, - [SMALL_STATE(2204)] = 88076, - [SMALL_STATE(2205)] = 88118, - [SMALL_STATE(2206)] = 88176, - [SMALL_STATE(2207)] = 88218, - [SMALL_STATE(2208)] = 88258, - [SMALL_STATE(2209)] = 88298, - [SMALL_STATE(2210)] = 88338, - [SMALL_STATE(2211)] = 88394, - [SMALL_STATE(2212)] = 88452, - [SMALL_STATE(2213)] = 88492, - [SMALL_STATE(2214)] = 88532, - [SMALL_STATE(2215)] = 88572, - [SMALL_STATE(2216)] = 88612, - [SMALL_STATE(2217)] = 88652, - [SMALL_STATE(2218)] = 88708, - [SMALL_STATE(2219)] = 88748, - [SMALL_STATE(2220)] = 88788, - [SMALL_STATE(2221)] = 88844, - [SMALL_STATE(2222)] = 88884, - [SMALL_STATE(2223)] = 88924, - [SMALL_STATE(2224)] = 88964, - [SMALL_STATE(2225)] = 89004, - [SMALL_STATE(2226)] = 89044, - [SMALL_STATE(2227)] = 89086, - [SMALL_STATE(2228)] = 89126, - [SMALL_STATE(2229)] = 89177, - [SMALL_STATE(2230)] = 89228, - [SMALL_STATE(2231)] = 89279, - [SMALL_STATE(2232)] = 89330, - [SMALL_STATE(2233)] = 89381, - [SMALL_STATE(2234)] = 89432, - [SMALL_STATE(2235)] = 89483, - [SMALL_STATE(2236)] = 89534, - [SMALL_STATE(2237)] = 89585, - [SMALL_STATE(2238)] = 89636, - [SMALL_STATE(2239)] = 89687, - [SMALL_STATE(2240)] = 89728, - [SMALL_STATE(2241)] = 89779, - [SMALL_STATE(2242)] = 89830, - [SMALL_STATE(2243)] = 89881, - [SMALL_STATE(2244)] = 89932, - [SMALL_STATE(2245)] = 89983, - [SMALL_STATE(2246)] = 90034, - [SMALL_STATE(2247)] = 90085, - [SMALL_STATE(2248)] = 90126, - [SMALL_STATE(2249)] = 90177, - [SMALL_STATE(2250)] = 90228, - [SMALL_STATE(2251)] = 90291, - [SMALL_STATE(2252)] = 90341, - [SMALL_STATE(2253)] = 90379, - [SMALL_STATE(2254)] = 90439, - [SMALL_STATE(2255)] = 90489, - [SMALL_STATE(2256)] = 90527, - [SMALL_STATE(2257)] = 90583, - [SMALL_STATE(2258)] = 90643, - [SMALL_STATE(2259)] = 90693, - [SMALL_STATE(2260)] = 90731, - [SMALL_STATE(2261)] = 90769, - [SMALL_STATE(2262)] = 90807, - [SMALL_STATE(2263)] = 90857, - [SMALL_STATE(2264)] = 90895, - [SMALL_STATE(2265)] = 90933, - [SMALL_STATE(2266)] = 90971, - [SMALL_STATE(2267)] = 91031, - [SMALL_STATE(2268)] = 91081, - [SMALL_STATE(2269)] = 91131, - [SMALL_STATE(2270)] = 91181, - [SMALL_STATE(2271)] = 91231, - [SMALL_STATE(2272)] = 91269, - [SMALL_STATE(2273)] = 91319, - [SMALL_STATE(2274)] = 91369, - [SMALL_STATE(2275)] = 91422, - [SMALL_STATE(2276)] = 91475, - [SMALL_STATE(2277)] = 91528, - [SMALL_STATE(2278)] = 91581, - [SMALL_STATE(2279)] = 91634, - [SMALL_STATE(2280)] = 91687, - [SMALL_STATE(2281)] = 91740, - [SMALL_STATE(2282)] = 91781, - [SMALL_STATE(2283)] = 91834, - [SMALL_STATE(2284)] = 91885, - [SMALL_STATE(2285)] = 91938, - [SMALL_STATE(2286)] = 91991, - [SMALL_STATE(2287)] = 92044, - [SMALL_STATE(2288)] = 92091, - [SMALL_STATE(2289)] = 92144, - [SMALL_STATE(2290)] = 92195, - [SMALL_STATE(2291)] = 92239, - [SMALL_STATE(2292)] = 92283, - [SMALL_STATE(2293)] = 92327, - [SMALL_STATE(2294)] = 92371, - [SMALL_STATE(2295)] = 92415, - [SMALL_STATE(2296)] = 92459, - [SMALL_STATE(2297)] = 92503, - [SMALL_STATE(2298)] = 92549, - [SMALL_STATE(2299)] = 92593, - [SMALL_STATE(2300)] = 92637, - [SMALL_STATE(2301)] = 92681, - [SMALL_STATE(2302)] = 92725, - [SMALL_STATE(2303)] = 92771, - [SMALL_STATE(2304)] = 92815, - [SMALL_STATE(2305)] = 92859, - [SMALL_STATE(2306)] = 92905, - [SMALL_STATE(2307)] = 92949, - [SMALL_STATE(2308)] = 92993, - [SMALL_STATE(2309)] = 93037, - [SMALL_STATE(2310)] = 93081, - [SMALL_STATE(2311)] = 93125, - [SMALL_STATE(2312)] = 93169, - [SMALL_STATE(2313)] = 93213, - [SMALL_STATE(2314)] = 93257, - [SMALL_STATE(2315)] = 93301, - [SMALL_STATE(2316)] = 93345, - [SMALL_STATE(2317)] = 93389, - [SMALL_STATE(2318)] = 93433, - [SMALL_STATE(2319)] = 93477, - [SMALL_STATE(2320)] = 93521, - [SMALL_STATE(2321)] = 93565, - [SMALL_STATE(2322)] = 93609, - [SMALL_STATE(2323)] = 93640, - [SMALL_STATE(2324)] = 93666, - [SMALL_STATE(2325)] = 93692, - [SMALL_STATE(2326)] = 93718, - [SMALL_STATE(2327)] = 93744, - [SMALL_STATE(2328)] = 93770, - [SMALL_STATE(2329)] = 93796, - [SMALL_STATE(2330)] = 93822, - [SMALL_STATE(2331)] = 93848, - [SMALL_STATE(2332)] = 93882, - [SMALL_STATE(2333)] = 93908, - [SMALL_STATE(2334)] = 93934, - [SMALL_STATE(2335)] = 93960, - [SMALL_STATE(2336)] = 93986, - [SMALL_STATE(2337)] = 94020, - [SMALL_STATE(2338)] = 94054, - [SMALL_STATE(2339)] = 94080, - [SMALL_STATE(2340)] = 94112, - [SMALL_STATE(2341)] = 94138, - [SMALL_STATE(2342)] = 94164, - [SMALL_STATE(2343)] = 94190, - [SMALL_STATE(2344)] = 94216, - [SMALL_STATE(2345)] = 94242, - [SMALL_STATE(2346)] = 94268, - [SMALL_STATE(2347)] = 94324, - [SMALL_STATE(2348)] = 94358, - [SMALL_STATE(2349)] = 94384, - [SMALL_STATE(2350)] = 94410, - [SMALL_STATE(2351)] = 94436, - [SMALL_STATE(2352)] = 94462, - [SMALL_STATE(2353)] = 94488, - [SMALL_STATE(2354)] = 94514, - [SMALL_STATE(2355)] = 94540, - [SMALL_STATE(2356)] = 94566, - [SMALL_STATE(2357)] = 94592, - [SMALL_STATE(2358)] = 94618, - [SMALL_STATE(2359)] = 94644, - [SMALL_STATE(2360)] = 94670, - [SMALL_STATE(2361)] = 94696, - [SMALL_STATE(2362)] = 94722, - [SMALL_STATE(2363)] = 94748, - [SMALL_STATE(2364)] = 94774, - [SMALL_STATE(2365)] = 94800, - [SMALL_STATE(2366)] = 94826, - [SMALL_STATE(2367)] = 94882, - [SMALL_STATE(2368)] = 94907, - [SMALL_STATE(2369)] = 94936, - [SMALL_STATE(2370)] = 94963, - [SMALL_STATE(2371)] = 94988, - [SMALL_STATE(2372)] = 95017, - [SMALL_STATE(2373)] = 95042, - [SMALL_STATE(2374)] = 95066, - [SMALL_STATE(2375)] = 95090, - [SMALL_STATE(2376)] = 95114, - [SMALL_STATE(2377)] = 95137, - [SMALL_STATE(2378)] = 95158, - [SMALL_STATE(2379)] = 95181, - [SMALL_STATE(2380)] = 95202, - [SMALL_STATE(2381)] = 95225, - [SMALL_STATE(2382)] = 95248, - [SMALL_STATE(2383)] = 95271, - [SMALL_STATE(2384)] = 95294, - [SMALL_STATE(2385)] = 95317, - [SMALL_STATE(2386)] = 95342, - [SMALL_STATE(2387)] = 95365, - [SMALL_STATE(2388)] = 95388, - [SMALL_STATE(2389)] = 95409, - [SMALL_STATE(2390)] = 95430, - [SMALL_STATE(2391)] = 95451, - [SMALL_STATE(2392)] = 95474, - [SMALL_STATE(2393)] = 95497, - [SMALL_STATE(2394)] = 95520, - [SMALL_STATE(2395)] = 95543, - [SMALL_STATE(2396)] = 95566, - [SMALL_STATE(2397)] = 95589, - [SMALL_STATE(2398)] = 95612, - [SMALL_STATE(2399)] = 95635, - [SMALL_STATE(2400)] = 95658, - [SMALL_STATE(2401)] = 95679, - [SMALL_STATE(2402)] = 95706, - [SMALL_STATE(2403)] = 95729, - [SMALL_STATE(2404)] = 95760, - [SMALL_STATE(2405)] = 95783, - [SMALL_STATE(2406)] = 95806, - [SMALL_STATE(2407)] = 95831, - [SMALL_STATE(2408)] = 95856, - [SMALL_STATE(2409)] = 95887, - [SMALL_STATE(2410)] = 95918, - [SMALL_STATE(2411)] = 95949, - [SMALL_STATE(2412)] = 95972, - [SMALL_STATE(2413)] = 95997, - [SMALL_STATE(2414)] = 96020, - [SMALL_STATE(2415)] = 96043, - [SMALL_STATE(2416)] = 96066, - [SMALL_STATE(2417)] = 96087, - [SMALL_STATE(2418)] = 96110, - [SMALL_STATE(2419)] = 96131, - [SMALL_STATE(2420)] = 96153, - [SMALL_STATE(2421)] = 96175, - [SMALL_STATE(2422)] = 96197, - [SMALL_STATE(2423)] = 96219, - [SMALL_STATE(2424)] = 96241, - [SMALL_STATE(2425)] = 96263, - [SMALL_STATE(2426)] = 96285, - [SMALL_STATE(2427)] = 96315, - [SMALL_STATE(2428)] = 96345, - [SMALL_STATE(2429)] = 96375, - [SMALL_STATE(2430)] = 96403, - [SMALL_STATE(2431)] = 96425, - [SMALL_STATE(2432)] = 96447, - [SMALL_STATE(2433)] = 96477, - [SMALL_STATE(2434)] = 96519, - [SMALL_STATE(2435)] = 96541, - [SMALL_STATE(2436)] = 96571, - [SMALL_STATE(2437)] = 96601, - [SMALL_STATE(2438)] = 96643, - [SMALL_STATE(2439)] = 96673, - [SMALL_STATE(2440)] = 96715, - [SMALL_STATE(2441)] = 96743, - [SMALL_STATE(2442)] = 96767, - [SMALL_STATE(2443)] = 96789, - [SMALL_STATE(2444)] = 96811, - [SMALL_STATE(2445)] = 96833, - [SMALL_STATE(2446)] = 96875, - [SMALL_STATE(2447)] = 96919, - [SMALL_STATE(2448)] = 96947, - [SMALL_STATE(2449)] = 96973, - [SMALL_STATE(2450)] = 96995, - [SMALL_STATE(2451)] = 97023, - [SMALL_STATE(2452)] = 97045, - [SMALL_STATE(2453)] = 97079, - [SMALL_STATE(2454)] = 97101, - [SMALL_STATE(2455)] = 97131, - [SMALL_STATE(2456)] = 97155, - [SMALL_STATE(2457)] = 97177, - [SMALL_STATE(2458)] = 97205, - [SMALL_STATE(2459)] = 97227, - [SMALL_STATE(2460)] = 97249, - [SMALL_STATE(2461)] = 97271, - [SMALL_STATE(2462)] = 97299, - [SMALL_STATE(2463)] = 97341, - [SMALL_STATE(2464)] = 97363, - [SMALL_STATE(2465)] = 97405, - [SMALL_STATE(2466)] = 97447, - [SMALL_STATE(2467)] = 97469, - [SMALL_STATE(2468)] = 97497, - [SMALL_STATE(2469)] = 97527, - [SMALL_STATE(2470)] = 97549, - [SMALL_STATE(2471)] = 97579, - [SMALL_STATE(2472)] = 97609, - [SMALL_STATE(2473)] = 97639, - [SMALL_STATE(2474)] = 97667, - [SMALL_STATE(2475)] = 97697, - [SMALL_STATE(2476)] = 97727, - [SMALL_STATE(2477)] = 97757, - [SMALL_STATE(2478)] = 97779, - [SMALL_STATE(2479)] = 97801, - [SMALL_STATE(2480)] = 97829, - [SMALL_STATE(2481)] = 97857, - [SMALL_STATE(2482)] = 97885, - [SMALL_STATE(2483)] = 97907, - [SMALL_STATE(2484)] = 97929, - [SMALL_STATE(2485)] = 97951, - [SMALL_STATE(2486)] = 97973, - [SMALL_STATE(2487)] = 97995, - [SMALL_STATE(2488)] = 98017, - [SMALL_STATE(2489)] = 98039, - [SMALL_STATE(2490)] = 98061, - [SMALL_STATE(2491)] = 98083, - [SMALL_STATE(2492)] = 98118, - [SMALL_STATE(2493)] = 98143, - [SMALL_STATE(2494)] = 98170, - [SMALL_STATE(2495)] = 98197, - [SMALL_STATE(2496)] = 98224, - [SMALL_STATE(2497)] = 98259, - [SMALL_STATE(2498)] = 98294, - [SMALL_STATE(2499)] = 98319, - [SMALL_STATE(2500)] = 98342, - [SMALL_STATE(2501)] = 98367, - [SMALL_STATE(2502)] = 98388, - [SMALL_STATE(2503)] = 98409, - [SMALL_STATE(2504)] = 98450, - [SMALL_STATE(2505)] = 98485, - [SMALL_STATE(2506)] = 98520, - [SMALL_STATE(2507)] = 98555, - [SMALL_STATE(2508)] = 98576, - [SMALL_STATE(2509)] = 98617, - [SMALL_STATE(2510)] = 98642, - [SMALL_STATE(2511)] = 98667, - [SMALL_STATE(2512)] = 98702, - [SMALL_STATE(2513)] = 98737, - [SMALL_STATE(2514)] = 98758, - [SMALL_STATE(2515)] = 98793, - [SMALL_STATE(2516)] = 98820, - [SMALL_STATE(2517)] = 98841, - [SMALL_STATE(2518)] = 98876, - [SMALL_STATE(2519)] = 98897, - [SMALL_STATE(2520)] = 98933, - [SMALL_STATE(2521)] = 98951, - [SMALL_STATE(2522)] = 98987, - [SMALL_STATE(2523)] = 99019, - [SMALL_STATE(2524)] = 99051, - [SMALL_STATE(2525)] = 99083, - [SMALL_STATE(2526)] = 99121, - [SMALL_STATE(2527)] = 99141, - [SMALL_STATE(2528)] = 99159, - [SMALL_STATE(2529)] = 99183, - [SMALL_STATE(2530)] = 99219, - [SMALL_STATE(2531)] = 99255, - [SMALL_STATE(2532)] = 99293, - [SMALL_STATE(2533)] = 99323, - [SMALL_STATE(2534)] = 99341, - [SMALL_STATE(2535)] = 99379, - [SMALL_STATE(2536)] = 99397, - [SMALL_STATE(2537)] = 99415, - [SMALL_STATE(2538)] = 99433, - [SMALL_STATE(2539)] = 99451, - [SMALL_STATE(2540)] = 99471, - [SMALL_STATE(2541)] = 99489, - [SMALL_STATE(2542)] = 99521, - [SMALL_STATE(2543)] = 99553, - [SMALL_STATE(2544)] = 99589, - [SMALL_STATE(2545)] = 99607, - [SMALL_STATE(2546)] = 99625, - [SMALL_STATE(2547)] = 99643, - [SMALL_STATE(2548)] = 99661, - [SMALL_STATE(2549)] = 99691, - [SMALL_STATE(2550)] = 99709, - [SMALL_STATE(2551)] = 99739, - [SMALL_STATE(2552)] = 99771, - [SMALL_STATE(2553)] = 99789, - [SMALL_STATE(2554)] = 99807, - [SMALL_STATE(2555)] = 99825, - [SMALL_STATE(2556)] = 99855, - [SMALL_STATE(2557)] = 99885, - [SMALL_STATE(2558)] = 99917, - [SMALL_STATE(2559)] = 99947, - [SMALL_STATE(2560)] = 99979, - [SMALL_STATE(2561)] = 99997, - [SMALL_STATE(2562)] = 100033, - [SMALL_STATE(2563)] = 100051, - [SMALL_STATE(2564)] = 100071, - [SMALL_STATE(2565)] = 100109, - [SMALL_STATE(2566)] = 100127, - [SMALL_STATE(2567)] = 100163, - [SMALL_STATE(2568)] = 100181, - [SMALL_STATE(2569)] = 100199, - [SMALL_STATE(2570)] = 100217, - [SMALL_STATE(2571)] = 100235, - [SMALL_STATE(2572)] = 100253, - [SMALL_STATE(2573)] = 100271, - [SMALL_STATE(2574)] = 100289, - [SMALL_STATE(2575)] = 100307, - [SMALL_STATE(2576)] = 100345, - [SMALL_STATE(2577)] = 100377, - [SMALL_STATE(2578)] = 100395, - [SMALL_STATE(2579)] = 100413, - [SMALL_STATE(2580)] = 100431, - [SMALL_STATE(2581)] = 100449, - [SMALL_STATE(2582)] = 100467, - [SMALL_STATE(2583)] = 100489, - [SMALL_STATE(2584)] = 100511, - [SMALL_STATE(2585)] = 100543, - [SMALL_STATE(2586)] = 100561, - [SMALL_STATE(2587)] = 100579, - [SMALL_STATE(2588)] = 100602, - [SMALL_STATE(2589)] = 100621, - [SMALL_STATE(2590)] = 100640, - [SMALL_STATE(2591)] = 100659, - [SMALL_STATE(2592)] = 100678, - [SMALL_STATE(2593)] = 100697, - [SMALL_STATE(2594)] = 100716, - [SMALL_STATE(2595)] = 100735, - [SMALL_STATE(2596)] = 100754, - [SMALL_STATE(2597)] = 100773, - [SMALL_STATE(2598)] = 100794, - [SMALL_STATE(2599)] = 100813, - [SMALL_STATE(2600)] = 100848, - [SMALL_STATE(2601)] = 100865, - [SMALL_STATE(2602)] = 100886, - [SMALL_STATE(2603)] = 100905, - [SMALL_STATE(2604)] = 100924, - [SMALL_STATE(2605)] = 100943, - [SMALL_STATE(2606)] = 100964, - [SMALL_STATE(2607)] = 100987, - [SMALL_STATE(2608)] = 101006, - [SMALL_STATE(2609)] = 101023, - [SMALL_STATE(2610)] = 101042, - [SMALL_STATE(2611)] = 101059, - [SMALL_STATE(2612)] = 101076, - [SMALL_STATE(2613)] = 101099, - [SMALL_STATE(2614)] = 101118, - [SMALL_STATE(2615)] = 101137, - [SMALL_STATE(2616)] = 101158, - [SMALL_STATE(2617)] = 101177, - [SMALL_STATE(2618)] = 101196, - [SMALL_STATE(2619)] = 101215, - [SMALL_STATE(2620)] = 101234, - [SMALL_STATE(2621)] = 101257, - [SMALL_STATE(2622)] = 101276, - [SMALL_STATE(2623)] = 101293, - [SMALL_STATE(2624)] = 101312, - [SMALL_STATE(2625)] = 101331, - [SMALL_STATE(2626)] = 101350, - [SMALL_STATE(2627)] = 101373, - [SMALL_STATE(2628)] = 101394, - [SMALL_STATE(2629)] = 101415, - [SMALL_STATE(2630)] = 101434, - [SMALL_STATE(2631)] = 101455, - [SMALL_STATE(2632)] = 101474, - [SMALL_STATE(2633)] = 101493, - [SMALL_STATE(2634)] = 101512, - [SMALL_STATE(2635)] = 101529, - [SMALL_STATE(2636)] = 101548, - [SMALL_STATE(2637)] = 101567, - [SMALL_STATE(2638)] = 101586, - [SMALL_STATE(2639)] = 101605, - [SMALL_STATE(2640)] = 101626, - [SMALL_STATE(2641)] = 101645, - [SMALL_STATE(2642)] = 101664, - [SMALL_STATE(2643)] = 101687, - [SMALL_STATE(2644)] = 101706, - [SMALL_STATE(2645)] = 101740, - [SMALL_STATE(2646)] = 101766, - [SMALL_STATE(2647)] = 101800, - [SMALL_STATE(2648)] = 101832, - [SMALL_STATE(2649)] = 101866, - [SMALL_STATE(2650)] = 101898, - [SMALL_STATE(2651)] = 101932, - [SMALL_STATE(2652)] = 101958, - [SMALL_STATE(2653)] = 101984, - [SMALL_STATE(2654)] = 102002, - [SMALL_STATE(2655)] = 102028, - [SMALL_STATE(2656)] = 102052, - [SMALL_STATE(2657)] = 102080, - [SMALL_STATE(2658)] = 102104, - [SMALL_STATE(2659)] = 102130, - [SMALL_STATE(2660)] = 102162, - [SMALL_STATE(2661)] = 102186, - [SMALL_STATE(2662)] = 102220, - [SMALL_STATE(2663)] = 102254, - [SMALL_STATE(2664)] = 102280, - [SMALL_STATE(2665)] = 102302, - [SMALL_STATE(2666)] = 102334, - [SMALL_STATE(2667)] = 102352, - [SMALL_STATE(2668)] = 102378, - [SMALL_STATE(2669)] = 102400, - [SMALL_STATE(2670)] = 102428, - [SMALL_STATE(2671)] = 102462, - [SMALL_STATE(2672)] = 102478, - [SMALL_STATE(2673)] = 102498, - [SMALL_STATE(2674)] = 102524, - [SMALL_STATE(2675)] = 102556, - [SMALL_STATE(2676)] = 102590, - [SMALL_STATE(2677)] = 102622, - [SMALL_STATE(2678)] = 102656, - [SMALL_STATE(2679)] = 102690, - [SMALL_STATE(2680)] = 102724, - [SMALL_STATE(2681)] = 102744, - [SMALL_STATE(2682)] = 102774, - [SMALL_STATE(2683)] = 102804, - [SMALL_STATE(2684)] = 102828, - [SMALL_STATE(2685)] = 102854, - [SMALL_STATE(2686)] = 102880, - [SMALL_STATE(2687)] = 102903, - [SMALL_STATE(2688)] = 102922, - [SMALL_STATE(2689)] = 102953, - [SMALL_STATE(2690)] = 102968, - [SMALL_STATE(2691)] = 102983, - [SMALL_STATE(2692)] = 103010, - [SMALL_STATE(2693)] = 103039, - [SMALL_STATE(2694)] = 103070, - [SMALL_STATE(2695)] = 103101, - [SMALL_STATE(2696)] = 103130, - [SMALL_STATE(2697)] = 103151, - [SMALL_STATE(2698)] = 103172, - [SMALL_STATE(2699)] = 103203, - [SMALL_STATE(2700)] = 103218, - [SMALL_STATE(2701)] = 103233, - [SMALL_STATE(2702)] = 103264, - [SMALL_STATE(2703)] = 103291, - [SMALL_STATE(2704)] = 103320, - [SMALL_STATE(2705)] = 103351, - [SMALL_STATE(2706)] = 103374, - [SMALL_STATE(2707)] = 103393, - [SMALL_STATE(2708)] = 103408, - [SMALL_STATE(2709)] = 103439, - [SMALL_STATE(2710)] = 103464, - [SMALL_STATE(2711)] = 103493, - [SMALL_STATE(2712)] = 103522, - [SMALL_STATE(2713)] = 103553, - [SMALL_STATE(2714)] = 103568, - [SMALL_STATE(2715)] = 103599, - [SMALL_STATE(2716)] = 103614, - [SMALL_STATE(2717)] = 103641, - [SMALL_STATE(2718)] = 103656, - [SMALL_STATE(2719)] = 103681, - [SMALL_STATE(2720)] = 103696, - [SMALL_STATE(2721)] = 103711, - [SMALL_STATE(2722)] = 103726, - [SMALL_STATE(2723)] = 103751, - [SMALL_STATE(2724)] = 103766, - [SMALL_STATE(2725)] = 103785, - [SMALL_STATE(2726)] = 103816, - [SMALL_STATE(2727)] = 103831, - [SMALL_STATE(2728)] = 103860, - [SMALL_STATE(2729)] = 103877, - [SMALL_STATE(2730)] = 103892, - [SMALL_STATE(2731)] = 103907, - [SMALL_STATE(2732)] = 103932, - [SMALL_STATE(2733)] = 103963, - [SMALL_STATE(2734)] = 103986, - [SMALL_STATE(2735)] = 104011, - [SMALL_STATE(2736)] = 104042, - [SMALL_STATE(2737)] = 104065, - [SMALL_STATE(2738)] = 104080, - [SMALL_STATE(2739)] = 104107, - [SMALL_STATE(2740)] = 104134, - [SMALL_STATE(2741)] = 104163, - [SMALL_STATE(2742)] = 104186, - [SMALL_STATE(2743)] = 104209, - [SMALL_STATE(2744)] = 104240, - [SMALL_STATE(2745)] = 104255, - [SMALL_STATE(2746)] = 104286, - [SMALL_STATE(2747)] = 104317, - [SMALL_STATE(2748)] = 104348, - [SMALL_STATE(2749)] = 104363, - [SMALL_STATE(2750)] = 104378, - [SMALL_STATE(2751)] = 104393, - [SMALL_STATE(2752)] = 104410, - [SMALL_STATE(2753)] = 104425, - [SMALL_STATE(2754)] = 104440, - [SMALL_STATE(2755)] = 104467, - [SMALL_STATE(2756)] = 104488, - [SMALL_STATE(2757)] = 104507, - [SMALL_STATE(2758)] = 104522, - [SMALL_STATE(2759)] = 104539, - [SMALL_STATE(2760)] = 104562, - [SMALL_STATE(2761)] = 104577, - [SMALL_STATE(2762)] = 104604, - [SMALL_STATE(2763)] = 104619, - [SMALL_STATE(2764)] = 104642, - [SMALL_STATE(2765)] = 104671, - [SMALL_STATE(2766)] = 104700, - [SMALL_STATE(2767)] = 104729, - [SMALL_STATE(2768)] = 104752, - [SMALL_STATE(2769)] = 104775, - [SMALL_STATE(2770)] = 104790, - [SMALL_STATE(2771)] = 104805, - [SMALL_STATE(2772)] = 104834, - [SMALL_STATE(2773)] = 104863, - [SMALL_STATE(2774)] = 104894, - [SMALL_STATE(2775)] = 104909, - [SMALL_STATE(2776)] = 104924, - [SMALL_STATE(2777)] = 104953, - [SMALL_STATE(2778)] = 104968, - [SMALL_STATE(2779)] = 104997, - [SMALL_STATE(2780)] = 105018, - [SMALL_STATE(2781)] = 105033, - [SMALL_STATE(2782)] = 105048, - [SMALL_STATE(2783)] = 105065, - [SMALL_STATE(2784)] = 105080, - [SMALL_STATE(2785)] = 105107, - [SMALL_STATE(2786)] = 105138, - [SMALL_STATE(2787)] = 105153, - [SMALL_STATE(2788)] = 105178, - [SMALL_STATE(2789)] = 105207, - [SMALL_STATE(2790)] = 105222, - [SMALL_STATE(2791)] = 105251, - [SMALL_STATE(2792)] = 105280, - [SMALL_STATE(2793)] = 105309, - [SMALL_STATE(2794)] = 105338, - [SMALL_STATE(2795)] = 105367, - [SMALL_STATE(2796)] = 105396, - [SMALL_STATE(2797)] = 105425, - [SMALL_STATE(2798)] = 105454, - [SMALL_STATE(2799)] = 105479, - [SMALL_STATE(2800)] = 105508, - [SMALL_STATE(2801)] = 105537, - [SMALL_STATE(2802)] = 105566, - [SMALL_STATE(2803)] = 105597, - [SMALL_STATE(2804)] = 105626, - [SMALL_STATE(2805)] = 105641, - [SMALL_STATE(2806)] = 105656, - [SMALL_STATE(2807)] = 105685, - [SMALL_STATE(2808)] = 105714, - [SMALL_STATE(2809)] = 105729, - [SMALL_STATE(2810)] = 105750, - [SMALL_STATE(2811)] = 105765, - [SMALL_STATE(2812)] = 105780, - [SMALL_STATE(2813)] = 105795, - [SMALL_STATE(2814)] = 105822, - [SMALL_STATE(2815)] = 105851, - [SMALL_STATE(2816)] = 105875, - [SMALL_STATE(2817)] = 105899, - [SMALL_STATE(2818)] = 105923, - [SMALL_STATE(2819)] = 105947, - [SMALL_STATE(2820)] = 105961, - [SMALL_STATE(2821)] = 105975, - [SMALL_STATE(2822)] = 105995, - [SMALL_STATE(2823)] = 106009, - [SMALL_STATE(2824)] = 106033, - [SMALL_STATE(2825)] = 106057, - [SMALL_STATE(2826)] = 106081, - [SMALL_STATE(2827)] = 106105, - [SMALL_STATE(2828)] = 106125, - [SMALL_STATE(2829)] = 106149, - [SMALL_STATE(2830)] = 106173, - [SMALL_STATE(2831)] = 106193, - [SMALL_STATE(2832)] = 106217, - [SMALL_STATE(2833)] = 106241, - [SMALL_STATE(2834)] = 106261, - [SMALL_STATE(2835)] = 106285, - [SMALL_STATE(2836)] = 106310, - [SMALL_STATE(2837)] = 106323, - [SMALL_STATE(2838)] = 106344, - [SMALL_STATE(2839)] = 106369, - [SMALL_STATE(2840)] = 106390, - [SMALL_STATE(2841)] = 106405, - [SMALL_STATE(2842)] = 106430, - [SMALL_STATE(2843)] = 106443, - [SMALL_STATE(2844)] = 106456, - [SMALL_STATE(2845)] = 106471, - [SMALL_STATE(2846)] = 106484, - [SMALL_STATE(2847)] = 106499, - [SMALL_STATE(2848)] = 106524, - [SMALL_STATE(2849)] = 106545, - [SMALL_STATE(2850)] = 106558, - [SMALL_STATE(2851)] = 106583, - [SMALL_STATE(2852)] = 106600, - [SMALL_STATE(2853)] = 106621, - [SMALL_STATE(2854)] = 106644, - [SMALL_STATE(2855)] = 106657, - [SMALL_STATE(2856)] = 106682, - [SMALL_STATE(2857)] = 106695, - [SMALL_STATE(2858)] = 106712, - [SMALL_STATE(2859)] = 106725, - [SMALL_STATE(2860)] = 106746, - [SMALL_STATE(2861)] = 106763, - [SMALL_STATE(2862)] = 106784, - [SMALL_STATE(2863)] = 106801, - [SMALL_STATE(2864)] = 106826, - [SMALL_STATE(2865)] = 106841, - [SMALL_STATE(2866)] = 106856, - [SMALL_STATE(2867)] = 106881, - [SMALL_STATE(2868)] = 106906, - [SMALL_STATE(2869)] = 106919, - [SMALL_STATE(2870)] = 106934, - [SMALL_STATE(2871)] = 106949, - [SMALL_STATE(2872)] = 106974, - [SMALL_STATE(2873)] = 106999, - [SMALL_STATE(2874)] = 107024, - [SMALL_STATE(2875)] = 107037, - [SMALL_STATE(2876)] = 107062, - [SMALL_STATE(2877)] = 107087, - [SMALL_STATE(2878)] = 107112, - [SMALL_STATE(2879)] = 107137, - [SMALL_STATE(2880)] = 107152, - [SMALL_STATE(2881)] = 107173, - [SMALL_STATE(2882)] = 107198, - [SMALL_STATE(2883)] = 107223, - [SMALL_STATE(2884)] = 107248, - [SMALL_STATE(2885)] = 107273, - [SMALL_STATE(2886)] = 107288, - [SMALL_STATE(2887)] = 107313, - [SMALL_STATE(2888)] = 107338, - [SMALL_STATE(2889)] = 107363, - [SMALL_STATE(2890)] = 107388, - [SMALL_STATE(2891)] = 107405, - [SMALL_STATE(2892)] = 107426, - [SMALL_STATE(2893)] = 107447, - [SMALL_STATE(2894)] = 107464, - [SMALL_STATE(2895)] = 107483, - [SMALL_STATE(2896)] = 107500, - [SMALL_STATE(2897)] = 107517, - [SMALL_STATE(2898)] = 107534, - [SMALL_STATE(2899)] = 107551, - [SMALL_STATE(2900)] = 107576, - [SMALL_STATE(2901)] = 107597, - [SMALL_STATE(2902)] = 107614, - [SMALL_STATE(2903)] = 107631, - [SMALL_STATE(2904)] = 107648, - [SMALL_STATE(2905)] = 107661, - [SMALL_STATE(2906)] = 107678, - [SMALL_STATE(2907)] = 107695, - [SMALL_STATE(2908)] = 107712, - [SMALL_STATE(2909)] = 107729, - [SMALL_STATE(2910)] = 107746, - [SMALL_STATE(2911)] = 107763, - [SMALL_STATE(2912)] = 107784, - [SMALL_STATE(2913)] = 107809, - [SMALL_STATE(2914)] = 107834, - [SMALL_STATE(2915)] = 107851, - [SMALL_STATE(2916)] = 107868, - [SMALL_STATE(2917)] = 107893, - [SMALL_STATE(2918)] = 107910, - [SMALL_STATE(2919)] = 107927, - [SMALL_STATE(2920)] = 107948, - [SMALL_STATE(2921)] = 107961, - [SMALL_STATE(2922)] = 107978, - [SMALL_STATE(2923)] = 108003, - [SMALL_STATE(2924)] = 108028, - [SMALL_STATE(2925)] = 108047, - [SMALL_STATE(2926)] = 108072, - [SMALL_STATE(2927)] = 108097, - [SMALL_STATE(2928)] = 108122, - [SMALL_STATE(2929)] = 108143, - [SMALL_STATE(2930)] = 108168, - [SMALL_STATE(2931)] = 108189, - [SMALL_STATE(2932)] = 108214, - [SMALL_STATE(2933)] = 108239, - [SMALL_STATE(2934)] = 108258, - [SMALL_STATE(2935)] = 108283, - [SMALL_STATE(2936)] = 108296, - [SMALL_STATE(2937)] = 108317, - [SMALL_STATE(2938)] = 108334, - [SMALL_STATE(2939)] = 108355, - [SMALL_STATE(2940)] = 108370, - [SMALL_STATE(2941)] = 108395, - [SMALL_STATE(2942)] = 108412, - [SMALL_STATE(2943)] = 108435, - [SMALL_STATE(2944)] = 108460, - [SMALL_STATE(2945)] = 108477, - [SMALL_STATE(2946)] = 108498, - [SMALL_STATE(2947)] = 108523, - [SMALL_STATE(2948)] = 108548, - [SMALL_STATE(2949)] = 108561, - [SMALL_STATE(2950)] = 108576, - [SMALL_STATE(2951)] = 108592, - [SMALL_STATE(2952)] = 108614, - [SMALL_STATE(2953)] = 108636, - [SMALL_STATE(2954)] = 108652, - [SMALL_STATE(2955)] = 108674, - [SMALL_STATE(2956)] = 108696, - [SMALL_STATE(2957)] = 108718, - [SMALL_STATE(2958)] = 108740, - [SMALL_STATE(2959)] = 108758, - [SMALL_STATE(2960)] = 108780, - [SMALL_STATE(2961)] = 108798, - [SMALL_STATE(2962)] = 108816, - [SMALL_STATE(2963)] = 108838, - [SMALL_STATE(2964)] = 108850, - [SMALL_STATE(2965)] = 108862, - [SMALL_STATE(2966)] = 108884, - [SMALL_STATE(2967)] = 108900, - [SMALL_STATE(2968)] = 108918, - [SMALL_STATE(2969)] = 108936, - [SMALL_STATE(2970)] = 108958, - [SMALL_STATE(2971)] = 108976, - [SMALL_STATE(2972)] = 108992, - [SMALL_STATE(2973)] = 109010, - [SMALL_STATE(2974)] = 109026, - [SMALL_STATE(2975)] = 109048, - [SMALL_STATE(2976)] = 109064, - [SMALL_STATE(2977)] = 109080, - [SMALL_STATE(2978)] = 109096, - [SMALL_STATE(2979)] = 109112, - [SMALL_STATE(2980)] = 109128, - [SMALL_STATE(2981)] = 109146, - [SMALL_STATE(2982)] = 109168, - [SMALL_STATE(2983)] = 109184, - [SMALL_STATE(2984)] = 109200, - [SMALL_STATE(2985)] = 109216, - [SMALL_STATE(2986)] = 109232, - [SMALL_STATE(2987)] = 109250, - [SMALL_STATE(2988)] = 109272, - [SMALL_STATE(2989)] = 109290, - [SMALL_STATE(2990)] = 109312, - [SMALL_STATE(2991)] = 109334, - [SMALL_STATE(2992)] = 109356, - [SMALL_STATE(2993)] = 109378, - [SMALL_STATE(2994)] = 109394, - [SMALL_STATE(2995)] = 109416, - [SMALL_STATE(2996)] = 109438, - [SMALL_STATE(2997)] = 109460, - [SMALL_STATE(2998)] = 109482, - [SMALL_STATE(2999)] = 109504, - [SMALL_STATE(3000)] = 109524, - [SMALL_STATE(3001)] = 109538, - [SMALL_STATE(3002)] = 109554, - [SMALL_STATE(3003)] = 109576, - [SMALL_STATE(3004)] = 109590, - [SMALL_STATE(3005)] = 109606, - [SMALL_STATE(3006)] = 109628, - [SMALL_STATE(3007)] = 109646, - [SMALL_STATE(3008)] = 109664, - [SMALL_STATE(3009)] = 109680, - [SMALL_STATE(3010)] = 109696, - [SMALL_STATE(3011)] = 109718, - [SMALL_STATE(3012)] = 109740, - [SMALL_STATE(3013)] = 109762, - [SMALL_STATE(3014)] = 109778, - [SMALL_STATE(3015)] = 109798, - [SMALL_STATE(3016)] = 109820, - [SMALL_STATE(3017)] = 109840, - [SMALL_STATE(3018)] = 109862, - [SMALL_STATE(3019)] = 109884, - [SMALL_STATE(3020)] = 109902, - [SMALL_STATE(3021)] = 109924, - [SMALL_STATE(3022)] = 109946, - [SMALL_STATE(3023)] = 109962, - [SMALL_STATE(3024)] = 109978, - [SMALL_STATE(3025)] = 110000, - [SMALL_STATE(3026)] = 110016, - [SMALL_STATE(3027)] = 110038, - [SMALL_STATE(3028)] = 110052, - [SMALL_STATE(3029)] = 110064, - [SMALL_STATE(3030)] = 110076, - [SMALL_STATE(3031)] = 110098, - [SMALL_STATE(3032)] = 110114, - [SMALL_STATE(3033)] = 110136, - [SMALL_STATE(3034)] = 110152, - [SMALL_STATE(3035)] = 110174, - [SMALL_STATE(3036)] = 110196, - [SMALL_STATE(3037)] = 110212, - [SMALL_STATE(3038)] = 110228, - [SMALL_STATE(3039)] = 110244, - [SMALL_STATE(3040)] = 110266, - [SMALL_STATE(3041)] = 110288, - [SMALL_STATE(3042)] = 110310, - [SMALL_STATE(3043)] = 110328, - [SMALL_STATE(3044)] = 110344, - [SMALL_STATE(3045)] = 110360, - [SMALL_STATE(3046)] = 110376, - [SMALL_STATE(3047)] = 110398, - [SMALL_STATE(3048)] = 110414, - [SMALL_STATE(3049)] = 110436, - [SMALL_STATE(3050)] = 110454, - [SMALL_STATE(3051)] = 110472, - [SMALL_STATE(3052)] = 110490, - [SMALL_STATE(3053)] = 110506, - [SMALL_STATE(3054)] = 110528, - [SMALL_STATE(3055)] = 110550, - [SMALL_STATE(3056)] = 110564, - [SMALL_STATE(3057)] = 110586, - [SMALL_STATE(3058)] = 110608, - [SMALL_STATE(3059)] = 110626, - [SMALL_STATE(3060)] = 110644, - [SMALL_STATE(3061)] = 110660, - [SMALL_STATE(3062)] = 110682, - [SMALL_STATE(3063)] = 110704, - [SMALL_STATE(3064)] = 110722, - [SMALL_STATE(3065)] = 110740, - [SMALL_STATE(3066)] = 110762, - [SMALL_STATE(3067)] = 110784, - [SMALL_STATE(3068)] = 110802, - [SMALL_STATE(3069)] = 110824, - [SMALL_STATE(3070)] = 110838, - [SMALL_STATE(3071)] = 110856, - [SMALL_STATE(3072)] = 110872, - [SMALL_STATE(3073)] = 110894, - [SMALL_STATE(3074)] = 110910, - [SMALL_STATE(3075)] = 110926, - [SMALL_STATE(3076)] = 110942, - [SMALL_STATE(3077)] = 110958, - [SMALL_STATE(3078)] = 110980, - [SMALL_STATE(3079)] = 111002, - [SMALL_STATE(3080)] = 111018, - [SMALL_STATE(3081)] = 111034, - [SMALL_STATE(3082)] = 111056, - [SMALL_STATE(3083)] = 111078, - [SMALL_STATE(3084)] = 111100, - [SMALL_STATE(3085)] = 111112, - [SMALL_STATE(3086)] = 111124, - [SMALL_STATE(3087)] = 111140, - [SMALL_STATE(3088)] = 111152, - [SMALL_STATE(3089)] = 111168, - [SMALL_STATE(3090)] = 111180, - [SMALL_STATE(3091)] = 111202, - [SMALL_STATE(3092)] = 111214, - [SMALL_STATE(3093)] = 111236, - [SMALL_STATE(3094)] = 111258, - [SMALL_STATE(3095)] = 111280, - [SMALL_STATE(3096)] = 111296, - [SMALL_STATE(3097)] = 111318, - [SMALL_STATE(3098)] = 111340, - [SMALL_STATE(3099)] = 111352, - [SMALL_STATE(3100)] = 111374, - [SMALL_STATE(3101)] = 111396, - [SMALL_STATE(3102)] = 111414, - [SMALL_STATE(3103)] = 111430, - [SMALL_STATE(3104)] = 111446, - [SMALL_STATE(3105)] = 111468, - [SMALL_STATE(3106)] = 111480, - [SMALL_STATE(3107)] = 111498, - [SMALL_STATE(3108)] = 111510, - [SMALL_STATE(3109)] = 111528, - [SMALL_STATE(3110)] = 111546, - [SMALL_STATE(3111)] = 111562, - [SMALL_STATE(3112)] = 111584, - [SMALL_STATE(3113)] = 111600, - [SMALL_STATE(3114)] = 111622, - [SMALL_STATE(3115)] = 111634, - [SMALL_STATE(3116)] = 111650, - [SMALL_STATE(3117)] = 111666, - [SMALL_STATE(3118)] = 111682, - [SMALL_STATE(3119)] = 111704, - [SMALL_STATE(3120)] = 111720, - [SMALL_STATE(3121)] = 111742, - [SMALL_STATE(3122)] = 111759, - [SMALL_STATE(3123)] = 111772, - [SMALL_STATE(3124)] = 111783, - [SMALL_STATE(3125)] = 111794, - [SMALL_STATE(3126)] = 111805, - [SMALL_STATE(3127)] = 111824, - [SMALL_STATE(3128)] = 111843, - [SMALL_STATE(3129)] = 111858, - [SMALL_STATE(3130)] = 111877, - [SMALL_STATE(3131)] = 111888, - [SMALL_STATE(3132)] = 111907, - [SMALL_STATE(3133)] = 111918, - [SMALL_STATE(3134)] = 111935, - [SMALL_STATE(3135)] = 111946, - [SMALL_STATE(3136)] = 111957, - [SMALL_STATE(3137)] = 111968, - [SMALL_STATE(3138)] = 111983, - [SMALL_STATE(3139)] = 111994, - [SMALL_STATE(3140)] = 112005, - [SMALL_STATE(3141)] = 112016, - [SMALL_STATE(3142)] = 112027, - [SMALL_STATE(3143)] = 112038, - [SMALL_STATE(3144)] = 112049, - [SMALL_STATE(3145)] = 112068, - [SMALL_STATE(3146)] = 112087, - [SMALL_STATE(3147)] = 112106, - [SMALL_STATE(3148)] = 112117, - [SMALL_STATE(3149)] = 112128, - [SMALL_STATE(3150)] = 112139, - [SMALL_STATE(3151)] = 112156, - [SMALL_STATE(3152)] = 112167, - [SMALL_STATE(3153)] = 112184, - [SMALL_STATE(3154)] = 112199, - [SMALL_STATE(3155)] = 112210, - [SMALL_STATE(3156)] = 112229, - [SMALL_STATE(3157)] = 112240, - [SMALL_STATE(3158)] = 112253, - [SMALL_STATE(3159)] = 112272, - [SMALL_STATE(3160)] = 112283, - [SMALL_STATE(3161)] = 112302, - [SMALL_STATE(3162)] = 112321, - [SMALL_STATE(3163)] = 112336, - [SMALL_STATE(3164)] = 112355, - [SMALL_STATE(3165)] = 112374, - [SMALL_STATE(3166)] = 112393, - [SMALL_STATE(3167)] = 112412, - [SMALL_STATE(3168)] = 112431, - [SMALL_STATE(3169)] = 112446, - [SMALL_STATE(3170)] = 112465, - [SMALL_STATE(3171)] = 112476, - [SMALL_STATE(3172)] = 112491, - [SMALL_STATE(3173)] = 112506, - [SMALL_STATE(3174)] = 112521, - [SMALL_STATE(3175)] = 112532, - [SMALL_STATE(3176)] = 112551, - [SMALL_STATE(3177)] = 112570, - [SMALL_STATE(3178)] = 112589, - [SMALL_STATE(3179)] = 112600, - [SMALL_STATE(3180)] = 112611, - [SMALL_STATE(3181)] = 112626, - [SMALL_STATE(3182)] = 112643, - [SMALL_STATE(3183)] = 112654, - [SMALL_STATE(3184)] = 112673, - [SMALL_STATE(3185)] = 112690, - [SMALL_STATE(3186)] = 112709, - [SMALL_STATE(3187)] = 112720, - [SMALL_STATE(3188)] = 112739, - [SMALL_STATE(3189)] = 112752, - [SMALL_STATE(3190)] = 112771, - [SMALL_STATE(3191)] = 112790, - [SMALL_STATE(3192)] = 112807, - [SMALL_STATE(3193)] = 112826, - [SMALL_STATE(3194)] = 112837, - [SMALL_STATE(3195)] = 112854, - [SMALL_STATE(3196)] = 112873, - [SMALL_STATE(3197)] = 112884, - [SMALL_STATE(3198)] = 112899, - [SMALL_STATE(3199)] = 112910, - [SMALL_STATE(3200)] = 112921, - [SMALL_STATE(3201)] = 112940, - [SMALL_STATE(3202)] = 112951, - [SMALL_STATE(3203)] = 112970, - [SMALL_STATE(3204)] = 112981, - [SMALL_STATE(3205)] = 113000, - [SMALL_STATE(3206)] = 113015, - [SMALL_STATE(3207)] = 113028, - [SMALL_STATE(3208)] = 113047, - [SMALL_STATE(3209)] = 113058, - [SMALL_STATE(3210)] = 113073, - [SMALL_STATE(3211)] = 113092, - [SMALL_STATE(3212)] = 113109, - [SMALL_STATE(3213)] = 113128, - [SMALL_STATE(3214)] = 113139, - [SMALL_STATE(3215)] = 113150, - [SMALL_STATE(3216)] = 113169, - [SMALL_STATE(3217)] = 113188, - [SMALL_STATE(3218)] = 113205, - [SMALL_STATE(3219)] = 113224, - [SMALL_STATE(3220)] = 113243, - [SMALL_STATE(3221)] = 113260, - [SMALL_STATE(3222)] = 113271, - [SMALL_STATE(3223)] = 113290, - [SMALL_STATE(3224)] = 113305, - [SMALL_STATE(3225)] = 113318, - [SMALL_STATE(3226)] = 113333, - [SMALL_STATE(3227)] = 113344, - [SMALL_STATE(3228)] = 113355, - [SMALL_STATE(3229)] = 113374, - [SMALL_STATE(3230)] = 113393, - [SMALL_STATE(3231)] = 113404, - [SMALL_STATE(3232)] = 113423, - [SMALL_STATE(3233)] = 113436, - [SMALL_STATE(3234)] = 113449, - [SMALL_STATE(3235)] = 113462, - [SMALL_STATE(3236)] = 113473, - [SMALL_STATE(3237)] = 113484, - [SMALL_STATE(3238)] = 113503, - [SMALL_STATE(3239)] = 113522, - [SMALL_STATE(3240)] = 113541, - [SMALL_STATE(3241)] = 113556, - [SMALL_STATE(3242)] = 113575, - [SMALL_STATE(3243)] = 113586, - [SMALL_STATE(3244)] = 113605, - [SMALL_STATE(3245)] = 113616, - [SMALL_STATE(3246)] = 113627, - [SMALL_STATE(3247)] = 113638, - [SMALL_STATE(3248)] = 113649, - [SMALL_STATE(3249)] = 113660, - [SMALL_STATE(3250)] = 113671, - [SMALL_STATE(3251)] = 113690, - [SMALL_STATE(3252)] = 113701, - [SMALL_STATE(3253)] = 113712, - [SMALL_STATE(3254)] = 113723, - [SMALL_STATE(3255)] = 113736, - [SMALL_STATE(3256)] = 113749, - [SMALL_STATE(3257)] = 113764, - [SMALL_STATE(3258)] = 113781, - [SMALL_STATE(3259)] = 113800, - [SMALL_STATE(3260)] = 113817, - [SMALL_STATE(3261)] = 113828, - [SMALL_STATE(3262)] = 113841, - [SMALL_STATE(3263)] = 113860, - [SMALL_STATE(3264)] = 113877, - [SMALL_STATE(3265)] = 113890, - [SMALL_STATE(3266)] = 113901, - [SMALL_STATE(3267)] = 113912, - [SMALL_STATE(3268)] = 113923, - [SMALL_STATE(3269)] = 113938, - [SMALL_STATE(3270)] = 113955, - [SMALL_STATE(3271)] = 113966, - [SMALL_STATE(3272)] = 113977, - [SMALL_STATE(3273)] = 113992, - [SMALL_STATE(3274)] = 114011, - [SMALL_STATE(3275)] = 114022, - [SMALL_STATE(3276)] = 114033, - [SMALL_STATE(3277)] = 114050, - [SMALL_STATE(3278)] = 114069, - [SMALL_STATE(3279)] = 114084, - [SMALL_STATE(3280)] = 114103, - [SMALL_STATE(3281)] = 114122, - [SMALL_STATE(3282)] = 114133, - [SMALL_STATE(3283)] = 114152, - [SMALL_STATE(3284)] = 114171, - [SMALL_STATE(3285)] = 114188, - [SMALL_STATE(3286)] = 114207, - [SMALL_STATE(3287)] = 114220, - [SMALL_STATE(3288)] = 114231, - [SMALL_STATE(3289)] = 114242, - [SMALL_STATE(3290)] = 114253, - [SMALL_STATE(3291)] = 114264, - [SMALL_STATE(3292)] = 114275, - [SMALL_STATE(3293)] = 114286, - [SMALL_STATE(3294)] = 114297, - [SMALL_STATE(3295)] = 114310, - [SMALL_STATE(3296)] = 114321, - [SMALL_STATE(3297)] = 114332, - [SMALL_STATE(3298)] = 114351, - [SMALL_STATE(3299)] = 114366, - [SMALL_STATE(3300)] = 114377, - [SMALL_STATE(3301)] = 114388, - [SMALL_STATE(3302)] = 114399, - [SMALL_STATE(3303)] = 114410, - [SMALL_STATE(3304)] = 114421, - [SMALL_STATE(3305)] = 114432, - [SMALL_STATE(3306)] = 114443, - [SMALL_STATE(3307)] = 114454, - [SMALL_STATE(3308)] = 114465, - [SMALL_STATE(3309)] = 114476, - [SMALL_STATE(3310)] = 114487, - [SMALL_STATE(3311)] = 114498, - [SMALL_STATE(3312)] = 114509, - [SMALL_STATE(3313)] = 114522, - [SMALL_STATE(3314)] = 114535, - [SMALL_STATE(3315)] = 114554, - [SMALL_STATE(3316)] = 114569, - [SMALL_STATE(3317)] = 114582, - [SMALL_STATE(3318)] = 114595, - [SMALL_STATE(3319)] = 114606, - [SMALL_STATE(3320)] = 114619, - [SMALL_STATE(3321)] = 114630, - [SMALL_STATE(3322)] = 114647, - [SMALL_STATE(3323)] = 114660, - [SMALL_STATE(3324)] = 114679, - [SMALL_STATE(3325)] = 114690, - [SMALL_STATE(3326)] = 114701, - [SMALL_STATE(3327)] = 114712, - [SMALL_STATE(3328)] = 114723, - [SMALL_STATE(3329)] = 114734, - [SMALL_STATE(3330)] = 114745, - [SMALL_STATE(3331)] = 114756, - [SMALL_STATE(3332)] = 114773, - [SMALL_STATE(3333)] = 114784, - [SMALL_STATE(3334)] = 114795, - [SMALL_STATE(3335)] = 114814, - [SMALL_STATE(3336)] = 114825, - [SMALL_STATE(3337)] = 114836, - [SMALL_STATE(3338)] = 114847, - [SMALL_STATE(3339)] = 114858, - [SMALL_STATE(3340)] = 114873, - [SMALL_STATE(3341)] = 114892, - [SMALL_STATE(3342)] = 114909, - [SMALL_STATE(3343)] = 114920, - [SMALL_STATE(3344)] = 114931, - [SMALL_STATE(3345)] = 114950, - [SMALL_STATE(3346)] = 114961, - [SMALL_STATE(3347)] = 114972, - [SMALL_STATE(3348)] = 114983, - [SMALL_STATE(3349)] = 115002, - [SMALL_STATE(3350)] = 115013, - [SMALL_STATE(3351)] = 115030, - [SMALL_STATE(3352)] = 115049, - [SMALL_STATE(3353)] = 115060, - [SMALL_STATE(3354)] = 115071, - [SMALL_STATE(3355)] = 115082, - [SMALL_STATE(3356)] = 115101, - [SMALL_STATE(3357)] = 115112, - [SMALL_STATE(3358)] = 115123, - [SMALL_STATE(3359)] = 115142, - [SMALL_STATE(3360)] = 115155, - [SMALL_STATE(3361)] = 115166, - [SMALL_STATE(3362)] = 115177, - [SMALL_STATE(3363)] = 115188, - [SMALL_STATE(3364)] = 115199, - [SMALL_STATE(3365)] = 115210, - [SMALL_STATE(3366)] = 115221, - [SMALL_STATE(3367)] = 115236, - [SMALL_STATE(3368)] = 115247, - [SMALL_STATE(3369)] = 115258, - [SMALL_STATE(3370)] = 115269, - [SMALL_STATE(3371)] = 115288, - [SMALL_STATE(3372)] = 115299, - [SMALL_STATE(3373)] = 115318, - [SMALL_STATE(3374)] = 115337, - [SMALL_STATE(3375)] = 115352, - [SMALL_STATE(3376)] = 115369, - [SMALL_STATE(3377)] = 115380, - [SMALL_STATE(3378)] = 115391, - [SMALL_STATE(3379)] = 115410, - [SMALL_STATE(3380)] = 115429, - [SMALL_STATE(3381)] = 115442, - [SMALL_STATE(3382)] = 115461, - [SMALL_STATE(3383)] = 115472, - [SMALL_STATE(3384)] = 115483, - [SMALL_STATE(3385)] = 115494, - [SMALL_STATE(3386)] = 115505, - [SMALL_STATE(3387)] = 115524, - [SMALL_STATE(3388)] = 115535, - [SMALL_STATE(3389)] = 115546, - [SMALL_STATE(3390)] = 115557, - [SMALL_STATE(3391)] = 115568, - [SMALL_STATE(3392)] = 115579, - [SMALL_STATE(3393)] = 115592, - [SMALL_STATE(3394)] = 115603, - [SMALL_STATE(3395)] = 115618, - [SMALL_STATE(3396)] = 115629, - [SMALL_STATE(3397)] = 115648, - [SMALL_STATE(3398)] = 115667, - [SMALL_STATE(3399)] = 115678, - [SMALL_STATE(3400)] = 115689, - [SMALL_STATE(3401)] = 115706, - [SMALL_STATE(3402)] = 115725, - [SMALL_STATE(3403)] = 115744, - [SMALL_STATE(3404)] = 115761, - [SMALL_STATE(3405)] = 115772, - [SMALL_STATE(3406)] = 115783, - [SMALL_STATE(3407)] = 115794, - [SMALL_STATE(3408)] = 115813, - [SMALL_STATE(3409)] = 115832, - [SMALL_STATE(3410)] = 115845, - [SMALL_STATE(3411)] = 115856, - [SMALL_STATE(3412)] = 115867, - [SMALL_STATE(3413)] = 115878, - [SMALL_STATE(3414)] = 115889, - [SMALL_STATE(3415)] = 115904, - [SMALL_STATE(3416)] = 115915, - [SMALL_STATE(3417)] = 115926, - [SMALL_STATE(3418)] = 115942, - [SMALL_STATE(3419)] = 115958, - [SMALL_STATE(3420)] = 115972, - [SMALL_STATE(3421)] = 115988, - [SMALL_STATE(3422)] = 116002, - [SMALL_STATE(3423)] = 116018, - [SMALL_STATE(3424)] = 116034, - [SMALL_STATE(3425)] = 116050, - [SMALL_STATE(3426)] = 116066, - [SMALL_STATE(3427)] = 116082, - [SMALL_STATE(3428)] = 116096, - [SMALL_STATE(3429)] = 116108, - [SMALL_STATE(3430)] = 116122, - [SMALL_STATE(3431)] = 116138, - [SMALL_STATE(3432)] = 116154, - [SMALL_STATE(3433)] = 116170, - [SMALL_STATE(3434)] = 116186, - [SMALL_STATE(3435)] = 116202, - [SMALL_STATE(3436)] = 116216, - [SMALL_STATE(3437)] = 116232, - [SMALL_STATE(3438)] = 116248, - [SMALL_STATE(3439)] = 116264, - [SMALL_STATE(3440)] = 116278, - [SMALL_STATE(3441)] = 116292, - [SMALL_STATE(3442)] = 116306, - [SMALL_STATE(3443)] = 116320, - [SMALL_STATE(3444)] = 116336, - [SMALL_STATE(3445)] = 116350, - [SMALL_STATE(3446)] = 116366, - [SMALL_STATE(3447)] = 116382, - [SMALL_STATE(3448)] = 116398, - [SMALL_STATE(3449)] = 116410, - [SMALL_STATE(3450)] = 116426, - [SMALL_STATE(3451)] = 116442, - [SMALL_STATE(3452)] = 116456, - [SMALL_STATE(3453)] = 116470, - [SMALL_STATE(3454)] = 116484, - [SMALL_STATE(3455)] = 116498, - [SMALL_STATE(3456)] = 116512, - [SMALL_STATE(3457)] = 116528, - [SMALL_STATE(3458)] = 116542, - [SMALL_STATE(3459)] = 116556, - [SMALL_STATE(3460)] = 116572, - [SMALL_STATE(3461)] = 116586, - [SMALL_STATE(3462)] = 116602, - [SMALL_STATE(3463)] = 116616, - [SMALL_STATE(3464)] = 116630, - [SMALL_STATE(3465)] = 116644, - [SMALL_STATE(3466)] = 116658, - [SMALL_STATE(3467)] = 116674, - [SMALL_STATE(3468)] = 116690, - [SMALL_STATE(3469)] = 116706, - [SMALL_STATE(3470)] = 116720, - [SMALL_STATE(3471)] = 116734, - [SMALL_STATE(3472)] = 116748, - [SMALL_STATE(3473)] = 116762, - [SMALL_STATE(3474)] = 116778, - [SMALL_STATE(3475)] = 116792, - [SMALL_STATE(3476)] = 116808, - [SMALL_STATE(3477)] = 116822, - [SMALL_STATE(3478)] = 116836, - [SMALL_STATE(3479)] = 116850, - [SMALL_STATE(3480)] = 116864, - [SMALL_STATE(3481)] = 116878, - [SMALL_STATE(3482)] = 116892, - [SMALL_STATE(3483)] = 116906, - [SMALL_STATE(3484)] = 116916, - [SMALL_STATE(3485)] = 116932, - [SMALL_STATE(3486)] = 116946, - [SMALL_STATE(3487)] = 116962, - [SMALL_STATE(3488)] = 116978, - [SMALL_STATE(3489)] = 116994, - [SMALL_STATE(3490)] = 117010, - [SMALL_STATE(3491)] = 117024, - [SMALL_STATE(3492)] = 117038, - [SMALL_STATE(3493)] = 117054, - [SMALL_STATE(3494)] = 117068, - [SMALL_STATE(3495)] = 117082, - [SMALL_STATE(3496)] = 117096, - [SMALL_STATE(3497)] = 117112, - [SMALL_STATE(3498)] = 117128, - [SMALL_STATE(3499)] = 117144, - [SMALL_STATE(3500)] = 117160, - [SMALL_STATE(3501)] = 117176, - [SMALL_STATE(3502)] = 117192, - [SMALL_STATE(3503)] = 117208, - [SMALL_STATE(3504)] = 117222, - [SMALL_STATE(3505)] = 117236, - [SMALL_STATE(3506)] = 117250, - [SMALL_STATE(3507)] = 117266, - [SMALL_STATE(3508)] = 117282, - [SMALL_STATE(3509)] = 117298, - [SMALL_STATE(3510)] = 117314, - [SMALL_STATE(3511)] = 117328, - [SMALL_STATE(3512)] = 117342, - [SMALL_STATE(3513)] = 117358, - [SMALL_STATE(3514)] = 117372, - [SMALL_STATE(3515)] = 117386, - [SMALL_STATE(3516)] = 117400, - [SMALL_STATE(3517)] = 117414, - [SMALL_STATE(3518)] = 117428, - [SMALL_STATE(3519)] = 117444, - [SMALL_STATE(3520)] = 117454, - [SMALL_STATE(3521)] = 117470, - [SMALL_STATE(3522)] = 117484, - [SMALL_STATE(3523)] = 117494, - [SMALL_STATE(3524)] = 117508, - [SMALL_STATE(3525)] = 117522, - [SMALL_STATE(3526)] = 117536, - [SMALL_STATE(3527)] = 117550, - [SMALL_STATE(3528)] = 117566, - [SMALL_STATE(3529)] = 117582, - [SMALL_STATE(3530)] = 117596, - [SMALL_STATE(3531)] = 117610, - [SMALL_STATE(3532)] = 117626, - [SMALL_STATE(3533)] = 117642, - [SMALL_STATE(3534)] = 117656, - [SMALL_STATE(3535)] = 117672, - [SMALL_STATE(3536)] = 117686, - [SMALL_STATE(3537)] = 117702, - [SMALL_STATE(3538)] = 117718, - [SMALL_STATE(3539)] = 117732, - [SMALL_STATE(3540)] = 117748, - [SMALL_STATE(3541)] = 117764, - [SMALL_STATE(3542)] = 117778, - [SMALL_STATE(3543)] = 117792, - [SMALL_STATE(3544)] = 117808, - [SMALL_STATE(3545)] = 117824, - [SMALL_STATE(3546)] = 117838, - [SMALL_STATE(3547)] = 117854, - [SMALL_STATE(3548)] = 117870, - [SMALL_STATE(3549)] = 117883, - [SMALL_STATE(3550)] = 117892, - [SMALL_STATE(3551)] = 117903, - [SMALL_STATE(3552)] = 117916, - [SMALL_STATE(3553)] = 117929, - [SMALL_STATE(3554)] = 117942, - [SMALL_STATE(3555)] = 117953, - [SMALL_STATE(3556)] = 117966, - [SMALL_STATE(3557)] = 117979, - [SMALL_STATE(3558)] = 117992, - [SMALL_STATE(3559)] = 118001, - [SMALL_STATE(3560)] = 118014, - [SMALL_STATE(3561)] = 118027, - [SMALL_STATE(3562)] = 118036, - [SMALL_STATE(3563)] = 118049, - [SMALL_STATE(3564)] = 118062, - [SMALL_STATE(3565)] = 118071, - [SMALL_STATE(3566)] = 118084, - [SMALL_STATE(3567)] = 118093, - [SMALL_STATE(3568)] = 118106, - [SMALL_STATE(3569)] = 118119, - [SMALL_STATE(3570)] = 118128, - [SMALL_STATE(3571)] = 118141, - [SMALL_STATE(3572)] = 118154, - [SMALL_STATE(3573)] = 118163, - [SMALL_STATE(3574)] = 118176, - [SMALL_STATE(3575)] = 118189, - [SMALL_STATE(3576)] = 118202, - [SMALL_STATE(3577)] = 118215, - [SMALL_STATE(3578)] = 118226, - [SMALL_STATE(3579)] = 118237, - [SMALL_STATE(3580)] = 118250, - [SMALL_STATE(3581)] = 118263, - [SMALL_STATE(3582)] = 118272, - [SMALL_STATE(3583)] = 118285, - [SMALL_STATE(3584)] = 118296, - [SMALL_STATE(3585)] = 118309, - [SMALL_STATE(3586)] = 118322, - [SMALL_STATE(3587)] = 118331, - [SMALL_STATE(3588)] = 118340, - [SMALL_STATE(3589)] = 118353, - [SMALL_STATE(3590)] = 118366, - [SMALL_STATE(3591)] = 118375, - [SMALL_STATE(3592)] = 118384, - [SMALL_STATE(3593)] = 118397, - [SMALL_STATE(3594)] = 118408, - [SMALL_STATE(3595)] = 118417, - [SMALL_STATE(3596)] = 118430, - [SMALL_STATE(3597)] = 118443, - [SMALL_STATE(3598)] = 118452, - [SMALL_STATE(3599)] = 118465, - [SMALL_STATE(3600)] = 118478, - [SMALL_STATE(3601)] = 118491, - [SMALL_STATE(3602)] = 118504, - [SMALL_STATE(3603)] = 118517, - [SMALL_STATE(3604)] = 118526, - [SMALL_STATE(3605)] = 118535, - [SMALL_STATE(3606)] = 118548, - [SMALL_STATE(3607)] = 118561, - [SMALL_STATE(3608)] = 118574, - [SMALL_STATE(3609)] = 118583, - [SMALL_STATE(3610)] = 118592, - [SMALL_STATE(3611)] = 118601, - [SMALL_STATE(3612)] = 118614, - [SMALL_STATE(3613)] = 118623, - [SMALL_STATE(3614)] = 118632, - [SMALL_STATE(3615)] = 118645, - [SMALL_STATE(3616)] = 118658, - [SMALL_STATE(3617)] = 118667, - [SMALL_STATE(3618)] = 118678, - [SMALL_STATE(3619)] = 118691, - [SMALL_STATE(3620)] = 118700, - [SMALL_STATE(3621)] = 118713, - [SMALL_STATE(3622)] = 118726, - [SMALL_STATE(3623)] = 118735, - [SMALL_STATE(3624)] = 118744, - [SMALL_STATE(3625)] = 118753, - [SMALL_STATE(3626)] = 118766, - [SMALL_STATE(3627)] = 118775, - [SMALL_STATE(3628)] = 118788, - [SMALL_STATE(3629)] = 118799, - [SMALL_STATE(3630)] = 118812, - [SMALL_STATE(3631)] = 118821, - [SMALL_STATE(3632)] = 118834, - [SMALL_STATE(3633)] = 118843, - [SMALL_STATE(3634)] = 118856, - [SMALL_STATE(3635)] = 118869, - [SMALL_STATE(3636)] = 118878, - [SMALL_STATE(3637)] = 118891, - [SMALL_STATE(3638)] = 118902, - [SMALL_STATE(3639)] = 118915, - [SMALL_STATE(3640)] = 118926, - [SMALL_STATE(3641)] = 118939, - [SMALL_STATE(3642)] = 118952, - [SMALL_STATE(3643)] = 118963, - [SMALL_STATE(3644)] = 118972, - [SMALL_STATE(3645)] = 118983, - [SMALL_STATE(3646)] = 118996, - [SMALL_STATE(3647)] = 119005, - [SMALL_STATE(3648)] = 119018, - [SMALL_STATE(3649)] = 119031, - [SMALL_STATE(3650)] = 119044, - [SMALL_STATE(3651)] = 119057, - [SMALL_STATE(3652)] = 119066, - [SMALL_STATE(3653)] = 119079, - [SMALL_STATE(3654)] = 119092, - [SMALL_STATE(3655)] = 119101, - [SMALL_STATE(3656)] = 119114, - [SMALL_STATE(3657)] = 119127, - [SMALL_STATE(3658)] = 119140, - [SMALL_STATE(3659)] = 119149, - [SMALL_STATE(3660)] = 119162, - [SMALL_STATE(3661)] = 119171, - [SMALL_STATE(3662)] = 119180, - [SMALL_STATE(3663)] = 119189, - [SMALL_STATE(3664)] = 119202, - [SMALL_STATE(3665)] = 119215, - [SMALL_STATE(3666)] = 119224, - [SMALL_STATE(3667)] = 119237, - [SMALL_STATE(3668)] = 119246, - [SMALL_STATE(3669)] = 119259, - [SMALL_STATE(3670)] = 119268, - [SMALL_STATE(3671)] = 119277, - [SMALL_STATE(3672)] = 119286, - [SMALL_STATE(3673)] = 119299, - [SMALL_STATE(3674)] = 119312, - [SMALL_STATE(3675)] = 119325, - [SMALL_STATE(3676)] = 119338, - [SMALL_STATE(3677)] = 119351, - [SMALL_STATE(3678)] = 119362, - [SMALL_STATE(3679)] = 119375, - [SMALL_STATE(3680)] = 119388, - [SMALL_STATE(3681)] = 119397, - [SMALL_STATE(3682)] = 119406, - [SMALL_STATE(3683)] = 119415, - [SMALL_STATE(3684)] = 119424, - [SMALL_STATE(3685)] = 119435, - [SMALL_STATE(3686)] = 119446, - [SMALL_STATE(3687)] = 119459, - [SMALL_STATE(3688)] = 119468, - [SMALL_STATE(3689)] = 119481, - [SMALL_STATE(3690)] = 119494, - [SMALL_STATE(3691)] = 119507, - [SMALL_STATE(3692)] = 119516, - [SMALL_STATE(3693)] = 119529, - [SMALL_STATE(3694)] = 119542, - [SMALL_STATE(3695)] = 119551, - [SMALL_STATE(3696)] = 119560, - [SMALL_STATE(3697)] = 119569, - [SMALL_STATE(3698)] = 119578, - [SMALL_STATE(3699)] = 119587, - [SMALL_STATE(3700)] = 119596, - [SMALL_STATE(3701)] = 119605, - [SMALL_STATE(3702)] = 119614, - [SMALL_STATE(3703)] = 119627, - [SMALL_STATE(3704)] = 119640, - [SMALL_STATE(3705)] = 119653, - [SMALL_STATE(3706)] = 119662, - [SMALL_STATE(3707)] = 119675, - [SMALL_STATE(3708)] = 119688, - [SMALL_STATE(3709)] = 119701, - [SMALL_STATE(3710)] = 119714, - [SMALL_STATE(3711)] = 119727, - [SMALL_STATE(3712)] = 119740, - [SMALL_STATE(3713)] = 119753, - [SMALL_STATE(3714)] = 119766, - [SMALL_STATE(3715)] = 119777, - [SMALL_STATE(3716)] = 119790, - [SMALL_STATE(3717)] = 119799, - [SMALL_STATE(3718)] = 119808, - [SMALL_STATE(3719)] = 119821, - [SMALL_STATE(3720)] = 119834, - [SMALL_STATE(3721)] = 119847, - [SMALL_STATE(3722)] = 119856, - [SMALL_STATE(3723)] = 119865, - [SMALL_STATE(3724)] = 119874, - [SMALL_STATE(3725)] = 119887, - [SMALL_STATE(3726)] = 119900, - [SMALL_STATE(3727)] = 119913, - [SMALL_STATE(3728)] = 119922, - [SMALL_STATE(3729)] = 119931, - [SMALL_STATE(3730)] = 119942, - [SMALL_STATE(3731)] = 119951, - [SMALL_STATE(3732)] = 119960, - [SMALL_STATE(3733)] = 119973, - [SMALL_STATE(3734)] = 119986, - [SMALL_STATE(3735)] = 119995, - [SMALL_STATE(3736)] = 120004, - [SMALL_STATE(3737)] = 120017, - [SMALL_STATE(3738)] = 120030, - [SMALL_STATE(3739)] = 120043, - [SMALL_STATE(3740)] = 120052, - [SMALL_STATE(3741)] = 120061, - [SMALL_STATE(3742)] = 120072, - [SMALL_STATE(3743)] = 120085, - [SMALL_STATE(3744)] = 120094, - [SMALL_STATE(3745)] = 120103, - [SMALL_STATE(3746)] = 120112, - [SMALL_STATE(3747)] = 120121, - [SMALL_STATE(3748)] = 120134, - [SMALL_STATE(3749)] = 120147, - [SMALL_STATE(3750)] = 120160, - [SMALL_STATE(3751)] = 120173, - [SMALL_STATE(3752)] = 120186, - [SMALL_STATE(3753)] = 120199, - [SMALL_STATE(3754)] = 120212, - [SMALL_STATE(3755)] = 120225, - [SMALL_STATE(3756)] = 120238, - [SMALL_STATE(3757)] = 120251, - [SMALL_STATE(3758)] = 120262, - [SMALL_STATE(3759)] = 120275, - [SMALL_STATE(3760)] = 120288, - [SMALL_STATE(3761)] = 120299, - [SMALL_STATE(3762)] = 120308, - [SMALL_STATE(3763)] = 120319, - [SMALL_STATE(3764)] = 120328, - [SMALL_STATE(3765)] = 120341, - [SMALL_STATE(3766)] = 120354, - [SMALL_STATE(3767)] = 120367, - [SMALL_STATE(3768)] = 120380, - [SMALL_STATE(3769)] = 120393, - [SMALL_STATE(3770)] = 120406, - [SMALL_STATE(3771)] = 120419, - [SMALL_STATE(3772)] = 120428, - [SMALL_STATE(3773)] = 120441, - [SMALL_STATE(3774)] = 120454, - [SMALL_STATE(3775)] = 120467, - [SMALL_STATE(3776)] = 120480, - [SMALL_STATE(3777)] = 120493, - [SMALL_STATE(3778)] = 120504, - [SMALL_STATE(3779)] = 120517, - [SMALL_STATE(3780)] = 120528, - [SMALL_STATE(3781)] = 120541, - [SMALL_STATE(3782)] = 120554, - [SMALL_STATE(3783)] = 120563, - [SMALL_STATE(3784)] = 120572, - [SMALL_STATE(3785)] = 120585, - [SMALL_STATE(3786)] = 120598, - [SMALL_STATE(3787)] = 120611, - [SMALL_STATE(3788)] = 120624, - [SMALL_STATE(3789)] = 120637, - [SMALL_STATE(3790)] = 120646, - [SMALL_STATE(3791)] = 120659, - [SMALL_STATE(3792)] = 120672, - [SMALL_STATE(3793)] = 120683, - [SMALL_STATE(3794)] = 120696, - [SMALL_STATE(3795)] = 120709, - [SMALL_STATE(3796)] = 120718, - [SMALL_STATE(3797)] = 120731, - [SMALL_STATE(3798)] = 120744, - [SMALL_STATE(3799)] = 120757, - [SMALL_STATE(3800)] = 120770, - [SMALL_STATE(3801)] = 120779, - [SMALL_STATE(3802)] = 120792, - [SMALL_STATE(3803)] = 120801, - [SMALL_STATE(3804)] = 120812, - [SMALL_STATE(3805)] = 120825, - [SMALL_STATE(3806)] = 120838, - [SMALL_STATE(3807)] = 120851, - [SMALL_STATE(3808)] = 120859, - [SMALL_STATE(3809)] = 120867, - [SMALL_STATE(3810)] = 120877, - [SMALL_STATE(3811)] = 120887, - [SMALL_STATE(3812)] = 120897, - [SMALL_STATE(3813)] = 120907, - [SMALL_STATE(3814)] = 120917, - [SMALL_STATE(3815)] = 120927, - [SMALL_STATE(3816)] = 120935, - [SMALL_STATE(3817)] = 120943, - [SMALL_STATE(3818)] = 120953, - [SMALL_STATE(3819)] = 120963, - [SMALL_STATE(3820)] = 120973, - [SMALL_STATE(3821)] = 120983, - [SMALL_STATE(3822)] = 120993, - [SMALL_STATE(3823)] = 121003, - [SMALL_STATE(3824)] = 121011, - [SMALL_STATE(3825)] = 121021, - [SMALL_STATE(3826)] = 121031, - [SMALL_STATE(3827)] = 121039, - [SMALL_STATE(3828)] = 121049, - [SMALL_STATE(3829)] = 121057, - [SMALL_STATE(3830)] = 121067, - [SMALL_STATE(3831)] = 121077, - [SMALL_STATE(3832)] = 121085, - [SMALL_STATE(3833)] = 121095, - [SMALL_STATE(3834)] = 121105, - [SMALL_STATE(3835)] = 121113, - [SMALL_STATE(3836)] = 121121, - [SMALL_STATE(3837)] = 121131, - [SMALL_STATE(3838)] = 121139, - [SMALL_STATE(3839)] = 121149, - [SMALL_STATE(3840)] = 121159, - [SMALL_STATE(3841)] = 121169, - [SMALL_STATE(3842)] = 121179, - [SMALL_STATE(3843)] = 121187, - [SMALL_STATE(3844)] = 121197, - [SMALL_STATE(3845)] = 121207, - [SMALL_STATE(3846)] = 121215, - [SMALL_STATE(3847)] = 121225, - [SMALL_STATE(3848)] = 121235, - [SMALL_STATE(3849)] = 121245, - [SMALL_STATE(3850)] = 121255, - [SMALL_STATE(3851)] = 121263, - [SMALL_STATE(3852)] = 121273, - [SMALL_STATE(3853)] = 121283, - [SMALL_STATE(3854)] = 121293, - [SMALL_STATE(3855)] = 121303, - [SMALL_STATE(3856)] = 121311, - [SMALL_STATE(3857)] = 121319, - [SMALL_STATE(3858)] = 121329, - [SMALL_STATE(3859)] = 121339, - [SMALL_STATE(3860)] = 121349, - [SMALL_STATE(3861)] = 121359, - [SMALL_STATE(3862)] = 121369, - [SMALL_STATE(3863)] = 121379, - [SMALL_STATE(3864)] = 121389, - [SMALL_STATE(3865)] = 121399, - [SMALL_STATE(3866)] = 121409, - [SMALL_STATE(3867)] = 121419, - [SMALL_STATE(3868)] = 121427, - [SMALL_STATE(3869)] = 121437, - [SMALL_STATE(3870)] = 121447, - [SMALL_STATE(3871)] = 121455, - [SMALL_STATE(3872)] = 121463, - [SMALL_STATE(3873)] = 121473, - [SMALL_STATE(3874)] = 121481, - [SMALL_STATE(3875)] = 121491, - [SMALL_STATE(3876)] = 121501, - [SMALL_STATE(3877)] = 121509, - [SMALL_STATE(3878)] = 121519, - [SMALL_STATE(3879)] = 121529, - [SMALL_STATE(3880)] = 121537, - [SMALL_STATE(3881)] = 121547, - [SMALL_STATE(3882)] = 121557, - [SMALL_STATE(3883)] = 121567, - [SMALL_STATE(3884)] = 121577, - [SMALL_STATE(3885)] = 121585, - [SMALL_STATE(3886)] = 121595, - [SMALL_STATE(3887)] = 121605, - [SMALL_STATE(3888)] = 121615, - [SMALL_STATE(3889)] = 121623, - [SMALL_STATE(3890)] = 121633, - [SMALL_STATE(3891)] = 121643, - [SMALL_STATE(3892)] = 121651, - [SMALL_STATE(3893)] = 121659, - [SMALL_STATE(3894)] = 121669, - [SMALL_STATE(3895)] = 121679, - [SMALL_STATE(3896)] = 121687, - [SMALL_STATE(3897)] = 121697, - [SMALL_STATE(3898)] = 121707, - [SMALL_STATE(3899)] = 121717, - [SMALL_STATE(3900)] = 121727, - [SMALL_STATE(3901)] = 121737, - [SMALL_STATE(3902)] = 121747, - [SMALL_STATE(3903)] = 121757, - [SMALL_STATE(3904)] = 121767, - [SMALL_STATE(3905)] = 121777, - [SMALL_STATE(3906)] = 121787, - [SMALL_STATE(3907)] = 121795, - [SMALL_STATE(3908)] = 121805, - [SMALL_STATE(3909)] = 121815, - [SMALL_STATE(3910)] = 121825, - [SMALL_STATE(3911)] = 121835, - [SMALL_STATE(3912)] = 121845, - [SMALL_STATE(3913)] = 121855, - [SMALL_STATE(3914)] = 121865, - [SMALL_STATE(3915)] = 121873, - [SMALL_STATE(3916)] = 121883, - [SMALL_STATE(3917)] = 121891, - [SMALL_STATE(3918)] = 121901, - [SMALL_STATE(3919)] = 121911, - [SMALL_STATE(3920)] = 121921, - [SMALL_STATE(3921)] = 121931, - [SMALL_STATE(3922)] = 121941, - [SMALL_STATE(3923)] = 121951, - [SMALL_STATE(3924)] = 121961, - [SMALL_STATE(3925)] = 121969, - [SMALL_STATE(3926)] = 121979, - [SMALL_STATE(3927)] = 121989, - [SMALL_STATE(3928)] = 121999, - [SMALL_STATE(3929)] = 122009, - [SMALL_STATE(3930)] = 122019, - [SMALL_STATE(3931)] = 122029, - [SMALL_STATE(3932)] = 122039, - [SMALL_STATE(3933)] = 122047, - [SMALL_STATE(3934)] = 122057, - [SMALL_STATE(3935)] = 122065, - [SMALL_STATE(3936)] = 122075, - [SMALL_STATE(3937)] = 122085, - [SMALL_STATE(3938)] = 122095, - [SMALL_STATE(3939)] = 122103, - [SMALL_STATE(3940)] = 122113, - [SMALL_STATE(3941)] = 122123, - [SMALL_STATE(3942)] = 122133, - [SMALL_STATE(3943)] = 122143, - [SMALL_STATE(3944)] = 122153, - [SMALL_STATE(3945)] = 122163, - [SMALL_STATE(3946)] = 122173, - [SMALL_STATE(3947)] = 122183, - [SMALL_STATE(3948)] = 122191, - [SMALL_STATE(3949)] = 122201, - [SMALL_STATE(3950)] = 122211, - [SMALL_STATE(3951)] = 122219, - [SMALL_STATE(3952)] = 122227, - [SMALL_STATE(3953)] = 122235, - [SMALL_STATE(3954)] = 122243, - [SMALL_STATE(3955)] = 122251, - [SMALL_STATE(3956)] = 122261, - [SMALL_STATE(3957)] = 122271, - [SMALL_STATE(3958)] = 122281, - [SMALL_STATE(3959)] = 122289, - [SMALL_STATE(3960)] = 122297, - [SMALL_STATE(3961)] = 122307, - [SMALL_STATE(3962)] = 122317, - [SMALL_STATE(3963)] = 122325, - [SMALL_STATE(3964)] = 122335, - [SMALL_STATE(3965)] = 122345, - [SMALL_STATE(3966)] = 122355, - [SMALL_STATE(3967)] = 122363, - [SMALL_STATE(3968)] = 122373, - [SMALL_STATE(3969)] = 122383, - [SMALL_STATE(3970)] = 122393, - [SMALL_STATE(3971)] = 122403, - [SMALL_STATE(3972)] = 122413, - [SMALL_STATE(3973)] = 122423, - [SMALL_STATE(3974)] = 122433, - [SMALL_STATE(3975)] = 122443, - [SMALL_STATE(3976)] = 122453, - [SMALL_STATE(3977)] = 122463, - [SMALL_STATE(3978)] = 122473, - [SMALL_STATE(3979)] = 122483, - [SMALL_STATE(3980)] = 122493, - [SMALL_STATE(3981)] = 122503, - [SMALL_STATE(3982)] = 122513, - [SMALL_STATE(3983)] = 122523, - [SMALL_STATE(3984)] = 122533, - [SMALL_STATE(3985)] = 122543, - [SMALL_STATE(3986)] = 122553, - [SMALL_STATE(3987)] = 122563, - [SMALL_STATE(3988)] = 122573, - [SMALL_STATE(3989)] = 122581, - [SMALL_STATE(3990)] = 122591, - [SMALL_STATE(3991)] = 122601, - [SMALL_STATE(3992)] = 122611, - [SMALL_STATE(3993)] = 122621, - [SMALL_STATE(3994)] = 122631, - [SMALL_STATE(3995)] = 122639, - [SMALL_STATE(3996)] = 122649, - [SMALL_STATE(3997)] = 122657, - [SMALL_STATE(3998)] = 122667, - [SMALL_STATE(3999)] = 122677, - [SMALL_STATE(4000)] = 122687, - [SMALL_STATE(4001)] = 122695, - [SMALL_STATE(4002)] = 122705, - [SMALL_STATE(4003)] = 122715, - [SMALL_STATE(4004)] = 122725, - [SMALL_STATE(4005)] = 122735, - [SMALL_STATE(4006)] = 122745, - [SMALL_STATE(4007)] = 122755, - [SMALL_STATE(4008)] = 122765, - [SMALL_STATE(4009)] = 122775, - [SMALL_STATE(4010)] = 122785, - [SMALL_STATE(4011)] = 122795, - [SMALL_STATE(4012)] = 122803, - [SMALL_STATE(4013)] = 122813, - [SMALL_STATE(4014)] = 122823, - [SMALL_STATE(4015)] = 122833, - [SMALL_STATE(4016)] = 122843, - [SMALL_STATE(4017)] = 122853, - [SMALL_STATE(4018)] = 122863, - [SMALL_STATE(4019)] = 122873, - [SMALL_STATE(4020)] = 122881, - [SMALL_STATE(4021)] = 122891, - [SMALL_STATE(4022)] = 122901, - [SMALL_STATE(4023)] = 122911, - [SMALL_STATE(4024)] = 122921, - [SMALL_STATE(4025)] = 122931, - [SMALL_STATE(4026)] = 122939, - [SMALL_STATE(4027)] = 122947, - [SMALL_STATE(4028)] = 122957, - [SMALL_STATE(4029)] = 122967, - [SMALL_STATE(4030)] = 122975, - [SMALL_STATE(4031)] = 122985, - [SMALL_STATE(4032)] = 122993, - [SMALL_STATE(4033)] = 123003, - [SMALL_STATE(4034)] = 123011, - [SMALL_STATE(4035)] = 123021, - [SMALL_STATE(4036)] = 123029, - [SMALL_STATE(4037)] = 123039, - [SMALL_STATE(4038)] = 123047, - [SMALL_STATE(4039)] = 123055, - [SMALL_STATE(4040)] = 123063, - [SMALL_STATE(4041)] = 123071, - [SMALL_STATE(4042)] = 123079, - [SMALL_STATE(4043)] = 123089, - [SMALL_STATE(4044)] = 123097, - [SMALL_STATE(4045)] = 123105, - [SMALL_STATE(4046)] = 123115, - [SMALL_STATE(4047)] = 123125, - [SMALL_STATE(4048)] = 123135, - [SMALL_STATE(4049)] = 123143, - [SMALL_STATE(4050)] = 123153, - [SMALL_STATE(4051)] = 123163, - [SMALL_STATE(4052)] = 123171, - [SMALL_STATE(4053)] = 123181, - [SMALL_STATE(4054)] = 123191, - [SMALL_STATE(4055)] = 123199, - [SMALL_STATE(4056)] = 123209, - [SMALL_STATE(4057)] = 123219, - [SMALL_STATE(4058)] = 123229, - [SMALL_STATE(4059)] = 123237, - [SMALL_STATE(4060)] = 123247, - [SMALL_STATE(4061)] = 123257, - [SMALL_STATE(4062)] = 123267, - [SMALL_STATE(4063)] = 123277, - [SMALL_STATE(4064)] = 123285, - [SMALL_STATE(4065)] = 123293, - [SMALL_STATE(4066)] = 123303, - [SMALL_STATE(4067)] = 123313, - [SMALL_STATE(4068)] = 123321, - [SMALL_STATE(4069)] = 123331, - [SMALL_STATE(4070)] = 123341, - [SMALL_STATE(4071)] = 123349, - [SMALL_STATE(4072)] = 123357, - [SMALL_STATE(4073)] = 123365, - [SMALL_STATE(4074)] = 123375, - [SMALL_STATE(4075)] = 123385, - [SMALL_STATE(4076)] = 123395, - [SMALL_STATE(4077)] = 123405, - [SMALL_STATE(4078)] = 123415, - [SMALL_STATE(4079)] = 123425, - [SMALL_STATE(4080)] = 123435, - [SMALL_STATE(4081)] = 123443, - [SMALL_STATE(4082)] = 123453, - [SMALL_STATE(4083)] = 123463, - [SMALL_STATE(4084)] = 123473, - [SMALL_STATE(4085)] = 123483, - [SMALL_STATE(4086)] = 123490, - [SMALL_STATE(4087)] = 123497, - [SMALL_STATE(4088)] = 123504, - [SMALL_STATE(4089)] = 123511, - [SMALL_STATE(4090)] = 123518, - [SMALL_STATE(4091)] = 123525, - [SMALL_STATE(4092)] = 123532, - [SMALL_STATE(4093)] = 123539, - [SMALL_STATE(4094)] = 123546, - [SMALL_STATE(4095)] = 123553, - [SMALL_STATE(4096)] = 123560, - [SMALL_STATE(4097)] = 123567, - [SMALL_STATE(4098)] = 123574, - [SMALL_STATE(4099)] = 123581, - [SMALL_STATE(4100)] = 123588, - [SMALL_STATE(4101)] = 123595, - [SMALL_STATE(4102)] = 123602, - [SMALL_STATE(4103)] = 123609, - [SMALL_STATE(4104)] = 123616, - [SMALL_STATE(4105)] = 123623, - [SMALL_STATE(4106)] = 123630, - [SMALL_STATE(4107)] = 123637, - [SMALL_STATE(4108)] = 123644, - [SMALL_STATE(4109)] = 123651, - [SMALL_STATE(4110)] = 123658, - [SMALL_STATE(4111)] = 123665, - [SMALL_STATE(4112)] = 123672, - [SMALL_STATE(4113)] = 123679, - [SMALL_STATE(4114)] = 123686, - [SMALL_STATE(4115)] = 123693, - [SMALL_STATE(4116)] = 123700, - [SMALL_STATE(4117)] = 123707, - [SMALL_STATE(4118)] = 123714, - [SMALL_STATE(4119)] = 123721, - [SMALL_STATE(4120)] = 123728, - [SMALL_STATE(4121)] = 123735, - [SMALL_STATE(4122)] = 123742, - [SMALL_STATE(4123)] = 123749, - [SMALL_STATE(4124)] = 123756, - [SMALL_STATE(4125)] = 123763, - [SMALL_STATE(4126)] = 123770, - [SMALL_STATE(4127)] = 123777, - [SMALL_STATE(4128)] = 123784, - [SMALL_STATE(4129)] = 123791, - [SMALL_STATE(4130)] = 123798, - [SMALL_STATE(4131)] = 123805, - [SMALL_STATE(4132)] = 123812, - [SMALL_STATE(4133)] = 123819, - [SMALL_STATE(4134)] = 123826, - [SMALL_STATE(4135)] = 123833, - [SMALL_STATE(4136)] = 123840, - [SMALL_STATE(4137)] = 123847, - [SMALL_STATE(4138)] = 123854, - [SMALL_STATE(4139)] = 123861, - [SMALL_STATE(4140)] = 123868, - [SMALL_STATE(4141)] = 123875, - [SMALL_STATE(4142)] = 123882, - [SMALL_STATE(4143)] = 123889, - [SMALL_STATE(4144)] = 123896, - [SMALL_STATE(4145)] = 123903, - [SMALL_STATE(4146)] = 123910, - [SMALL_STATE(4147)] = 123917, - [SMALL_STATE(4148)] = 123924, - [SMALL_STATE(4149)] = 123931, - [SMALL_STATE(4150)] = 123938, - [SMALL_STATE(4151)] = 123945, - [SMALL_STATE(4152)] = 123952, - [SMALL_STATE(4153)] = 123959, - [SMALL_STATE(4154)] = 123966, - [SMALL_STATE(4155)] = 123973, - [SMALL_STATE(4156)] = 123980, - [SMALL_STATE(4157)] = 123987, - [SMALL_STATE(4158)] = 123994, - [SMALL_STATE(4159)] = 124001, - [SMALL_STATE(4160)] = 124008, - [SMALL_STATE(4161)] = 124015, - [SMALL_STATE(4162)] = 124022, - [SMALL_STATE(4163)] = 124029, - [SMALL_STATE(4164)] = 124036, - [SMALL_STATE(4165)] = 124043, - [SMALL_STATE(4166)] = 124050, - [SMALL_STATE(4167)] = 124057, - [SMALL_STATE(4168)] = 124064, - [SMALL_STATE(4169)] = 124071, - [SMALL_STATE(4170)] = 124078, - [SMALL_STATE(4171)] = 124085, - [SMALL_STATE(4172)] = 124092, - [SMALL_STATE(4173)] = 124099, - [SMALL_STATE(4174)] = 124106, - [SMALL_STATE(4175)] = 124113, - [SMALL_STATE(4176)] = 124120, - [SMALL_STATE(4177)] = 124127, - [SMALL_STATE(4178)] = 124134, - [SMALL_STATE(4179)] = 124141, - [SMALL_STATE(4180)] = 124148, - [SMALL_STATE(4181)] = 124155, - [SMALL_STATE(4182)] = 124162, - [SMALL_STATE(4183)] = 124169, - [SMALL_STATE(4184)] = 124176, - [SMALL_STATE(4185)] = 124183, - [SMALL_STATE(4186)] = 124190, - [SMALL_STATE(4187)] = 124197, - [SMALL_STATE(4188)] = 124204, - [SMALL_STATE(4189)] = 124211, - [SMALL_STATE(4190)] = 124218, - [SMALL_STATE(4191)] = 124225, - [SMALL_STATE(4192)] = 124232, - [SMALL_STATE(4193)] = 124239, - [SMALL_STATE(4194)] = 124246, - [SMALL_STATE(4195)] = 124253, - [SMALL_STATE(4196)] = 124260, - [SMALL_STATE(4197)] = 124267, - [SMALL_STATE(4198)] = 124274, - [SMALL_STATE(4199)] = 124281, - [SMALL_STATE(4200)] = 124288, - [SMALL_STATE(4201)] = 124295, - [SMALL_STATE(4202)] = 124302, - [SMALL_STATE(4203)] = 124309, - [SMALL_STATE(4204)] = 124316, - [SMALL_STATE(4205)] = 124323, - [SMALL_STATE(4206)] = 124330, - [SMALL_STATE(4207)] = 124337, - [SMALL_STATE(4208)] = 124344, - [SMALL_STATE(4209)] = 124351, - [SMALL_STATE(4210)] = 124358, - [SMALL_STATE(4211)] = 124365, - [SMALL_STATE(4212)] = 124372, - [SMALL_STATE(4213)] = 124379, - [SMALL_STATE(4214)] = 124386, - [SMALL_STATE(4215)] = 124393, - [SMALL_STATE(4216)] = 124400, - [SMALL_STATE(4217)] = 124407, - [SMALL_STATE(4218)] = 124414, - [SMALL_STATE(4219)] = 124421, - [SMALL_STATE(4220)] = 124428, - [SMALL_STATE(4221)] = 124435, - [SMALL_STATE(4222)] = 124442, - [SMALL_STATE(4223)] = 124449, - [SMALL_STATE(4224)] = 124456, - [SMALL_STATE(4225)] = 124463, - [SMALL_STATE(4226)] = 124470, - [SMALL_STATE(4227)] = 124477, - [SMALL_STATE(4228)] = 124484, - [SMALL_STATE(4229)] = 124491, - [SMALL_STATE(4230)] = 124498, - [SMALL_STATE(4231)] = 124505, - [SMALL_STATE(4232)] = 124512, - [SMALL_STATE(4233)] = 124519, - [SMALL_STATE(4234)] = 124526, - [SMALL_STATE(4235)] = 124533, - [SMALL_STATE(4236)] = 124540, - [SMALL_STATE(4237)] = 124547, - [SMALL_STATE(4238)] = 124554, - [SMALL_STATE(4239)] = 124561, - [SMALL_STATE(4240)] = 124568, - [SMALL_STATE(4241)] = 124575, - [SMALL_STATE(4242)] = 124582, - [SMALL_STATE(4243)] = 124589, - [SMALL_STATE(4244)] = 124596, - [SMALL_STATE(4245)] = 124603, - [SMALL_STATE(4246)] = 124610, - [SMALL_STATE(4247)] = 124617, - [SMALL_STATE(4248)] = 124624, - [SMALL_STATE(4249)] = 124631, - [SMALL_STATE(4250)] = 124638, - [SMALL_STATE(4251)] = 124645, - [SMALL_STATE(4252)] = 124652, - [SMALL_STATE(4253)] = 124659, - [SMALL_STATE(4254)] = 124666, - [SMALL_STATE(4255)] = 124673, - [SMALL_STATE(4256)] = 124680, - [SMALL_STATE(4257)] = 124687, - [SMALL_STATE(4258)] = 124694, - [SMALL_STATE(4259)] = 124701, - [SMALL_STATE(4260)] = 124708, - [SMALL_STATE(4261)] = 124715, - [SMALL_STATE(4262)] = 124722, - [SMALL_STATE(4263)] = 124729, - [SMALL_STATE(4264)] = 124736, - [SMALL_STATE(4265)] = 124743, - [SMALL_STATE(4266)] = 124750, - [SMALL_STATE(4267)] = 124757, - [SMALL_STATE(4268)] = 124764, - [SMALL_STATE(4269)] = 124771, - [SMALL_STATE(4270)] = 124778, - [SMALL_STATE(4271)] = 124785, - [SMALL_STATE(4272)] = 124792, - [SMALL_STATE(4273)] = 124799, - [SMALL_STATE(4274)] = 124806, - [SMALL_STATE(4275)] = 124813, - [SMALL_STATE(4276)] = 124820, - [SMALL_STATE(4277)] = 124827, - [SMALL_STATE(4278)] = 124834, - [SMALL_STATE(4279)] = 124841, - [SMALL_STATE(4280)] = 124848, - [SMALL_STATE(4281)] = 124855, - [SMALL_STATE(4282)] = 124862, - [SMALL_STATE(4283)] = 124869, - [SMALL_STATE(4284)] = 124876, - [SMALL_STATE(4285)] = 124883, - [SMALL_STATE(4286)] = 124890, - [SMALL_STATE(4287)] = 124897, - [SMALL_STATE(4288)] = 124904, - [SMALL_STATE(4289)] = 124911, - [SMALL_STATE(4290)] = 124918, - [SMALL_STATE(4291)] = 124925, - [SMALL_STATE(4292)] = 124932, - [SMALL_STATE(4293)] = 124939, - [SMALL_STATE(4294)] = 124946, - [SMALL_STATE(4295)] = 124953, - [SMALL_STATE(4296)] = 124960, - [SMALL_STATE(4297)] = 124967, - [SMALL_STATE(4298)] = 124974, - [SMALL_STATE(4299)] = 124981, - [SMALL_STATE(4300)] = 124988, - [SMALL_STATE(4301)] = 124995, - [SMALL_STATE(4302)] = 125002, - [SMALL_STATE(4303)] = 125009, - [SMALL_STATE(4304)] = 125016, - [SMALL_STATE(4305)] = 125023, - [SMALL_STATE(4306)] = 125030, - [SMALL_STATE(4307)] = 125037, - [SMALL_STATE(4308)] = 125044, - [SMALL_STATE(4309)] = 125051, - [SMALL_STATE(4310)] = 125058, - [SMALL_STATE(4311)] = 125065, - [SMALL_STATE(4312)] = 125072, - [SMALL_STATE(4313)] = 125079, - [SMALL_STATE(4314)] = 125086, - [SMALL_STATE(4315)] = 125093, - [SMALL_STATE(4316)] = 125100, - [SMALL_STATE(4317)] = 125107, - [SMALL_STATE(4318)] = 125114, - [SMALL_STATE(4319)] = 125121, - [SMALL_STATE(4320)] = 125128, - [SMALL_STATE(4321)] = 125135, - [SMALL_STATE(4322)] = 125142, - [SMALL_STATE(4323)] = 125149, - [SMALL_STATE(4324)] = 125156, - [SMALL_STATE(4325)] = 125163, - [SMALL_STATE(4326)] = 125170, - [SMALL_STATE(4327)] = 125177, - [SMALL_STATE(4328)] = 125184, - [SMALL_STATE(4329)] = 125191, - [SMALL_STATE(4330)] = 125198, - [SMALL_STATE(4331)] = 125205, - [SMALL_STATE(4332)] = 125212, - [SMALL_STATE(4333)] = 125219, - [SMALL_STATE(4334)] = 125226, - [SMALL_STATE(4335)] = 125233, - [SMALL_STATE(4336)] = 125240, - [SMALL_STATE(4337)] = 125247, - [SMALL_STATE(4338)] = 125254, - [SMALL_STATE(4339)] = 125261, - [SMALL_STATE(4340)] = 125268, - [SMALL_STATE(4341)] = 125275, - [SMALL_STATE(4342)] = 125282, - [SMALL_STATE(4343)] = 125289, - [SMALL_STATE(4344)] = 125296, - [SMALL_STATE(4345)] = 125303, - [SMALL_STATE(4346)] = 125310, - [SMALL_STATE(4347)] = 125317, - [SMALL_STATE(4348)] = 125324, - [SMALL_STATE(4349)] = 125331, - [SMALL_STATE(4350)] = 125338, - [SMALL_STATE(4351)] = 125345, - [SMALL_STATE(4352)] = 125352, - [SMALL_STATE(4353)] = 125359, - [SMALL_STATE(4354)] = 125366, - [SMALL_STATE(4355)] = 125373, - [SMALL_STATE(4356)] = 125380, - [SMALL_STATE(4357)] = 125387, - [SMALL_STATE(4358)] = 125394, - [SMALL_STATE(4359)] = 125401, - [SMALL_STATE(4360)] = 125408, - [SMALL_STATE(4361)] = 125415, - [SMALL_STATE(4362)] = 125422, - [SMALL_STATE(4363)] = 125429, - [SMALL_STATE(4364)] = 125436, - [SMALL_STATE(4365)] = 125443, - [SMALL_STATE(4366)] = 125450, - [SMALL_STATE(4367)] = 125457, - [SMALL_STATE(4368)] = 125464, - [SMALL_STATE(4369)] = 125471, - [SMALL_STATE(4370)] = 125478, - [SMALL_STATE(4371)] = 125485, - [SMALL_STATE(4372)] = 125492, - [SMALL_STATE(4373)] = 125499, - [SMALL_STATE(4374)] = 125506, - [SMALL_STATE(4375)] = 125513, - [SMALL_STATE(4376)] = 125520, - [SMALL_STATE(4377)] = 125527, - [SMALL_STATE(4378)] = 125534, - [SMALL_STATE(4379)] = 125541, - [SMALL_STATE(4380)] = 125548, - [SMALL_STATE(4381)] = 125555, - [SMALL_STATE(4382)] = 125562, - [SMALL_STATE(4383)] = 125569, - [SMALL_STATE(4384)] = 125576, - [SMALL_STATE(4385)] = 125583, - [SMALL_STATE(4386)] = 125590, - [SMALL_STATE(4387)] = 125597, - [SMALL_STATE(4388)] = 125604, - [SMALL_STATE(4389)] = 125611, - [SMALL_STATE(4390)] = 125618, - [SMALL_STATE(4391)] = 125625, - [SMALL_STATE(4392)] = 125632, - [SMALL_STATE(4393)] = 125639, - [SMALL_STATE(4394)] = 125646, - [SMALL_STATE(4395)] = 125653, - [SMALL_STATE(4396)] = 125660, - [SMALL_STATE(4397)] = 125667, - [SMALL_STATE(4398)] = 125674, - [SMALL_STATE(4399)] = 125681, - [SMALL_STATE(4400)] = 125688, - [SMALL_STATE(4401)] = 125695, - [SMALL_STATE(4402)] = 125702, - [SMALL_STATE(4403)] = 125709, - [SMALL_STATE(4404)] = 125716, - [SMALL_STATE(4405)] = 125723, - [SMALL_STATE(4406)] = 125730, - [SMALL_STATE(4407)] = 125737, - [SMALL_STATE(4408)] = 125744, - [SMALL_STATE(4409)] = 125751, - [SMALL_STATE(4410)] = 125758, - [SMALL_STATE(4411)] = 125765, - [SMALL_STATE(4412)] = 125772, - [SMALL_STATE(4413)] = 125779, - [SMALL_STATE(4414)] = 125786, - [SMALL_STATE(4415)] = 125793, - [SMALL_STATE(4416)] = 125800, - [SMALL_STATE(4417)] = 125807, - [SMALL_STATE(4418)] = 125814, - [SMALL_STATE(4419)] = 125821, - [SMALL_STATE(4420)] = 125828, - [SMALL_STATE(4421)] = 125835, - [SMALL_STATE(4422)] = 125842, - [SMALL_STATE(4423)] = 125849, - [SMALL_STATE(4424)] = 125856, - [SMALL_STATE(4425)] = 125863, - [SMALL_STATE(4426)] = 125870, - [SMALL_STATE(4427)] = 125877, - [SMALL_STATE(4428)] = 125884, - [SMALL_STATE(4429)] = 125891, - [SMALL_STATE(4430)] = 125898, - [SMALL_STATE(4431)] = 125905, - [SMALL_STATE(4432)] = 125912, - [SMALL_STATE(4433)] = 125919, - [SMALL_STATE(4434)] = 125926, - [SMALL_STATE(4435)] = 125933, - [SMALL_STATE(4436)] = 125940, - [SMALL_STATE(4437)] = 125947, - [SMALL_STATE(4438)] = 125954, - [SMALL_STATE(4439)] = 125961, - [SMALL_STATE(4440)] = 125968, - [SMALL_STATE(4441)] = 125975, - [SMALL_STATE(4442)] = 125982, - [SMALL_STATE(4443)] = 125989, - [SMALL_STATE(4444)] = 125996, - [SMALL_STATE(4445)] = 126003, - [SMALL_STATE(4446)] = 126010, - [SMALL_STATE(4447)] = 126017, - [SMALL_STATE(4448)] = 126024, - [SMALL_STATE(4449)] = 126031, - [SMALL_STATE(4450)] = 126038, - [SMALL_STATE(4451)] = 126045, - [SMALL_STATE(4452)] = 126052, - [SMALL_STATE(4453)] = 126059, - [SMALL_STATE(4454)] = 126066, - [SMALL_STATE(4455)] = 126073, + [SMALL_STATE(985)] = 0, + [SMALL_STATE(986)] = 91, + [SMALL_STATE(987)] = 182, + [SMALL_STATE(988)] = 273, + [SMALL_STATE(989)] = 366, + [SMALL_STATE(990)] = 455, + [SMALL_STATE(991)] = 544, + [SMALL_STATE(992)] = 635, + [SMALL_STATE(993)] = 724, + [SMALL_STATE(994)] = 813, + [SMALL_STATE(995)] = 906, + [SMALL_STATE(996)] = 998, + [SMALL_STATE(997)] = 1086, + [SMALL_STATE(998)] = 1174, + [SMALL_STATE(999)] = 1266, + [SMALL_STATE(1000)] = 1360, + [SMALL_STATE(1001)] = 1448, + [SMALL_STATE(1002)] = 1540, + [SMALL_STATE(1003)] = 1628, + [SMALL_STATE(1004)] = 1697, + [SMALL_STATE(1005)] = 1786, + [SMALL_STATE(1006)] = 1855, + [SMALL_STATE(1007)] = 1924, + [SMALL_STATE(1008)] = 2013, + [SMALL_STATE(1009)] = 2104, + [SMALL_STATE(1010)] = 2191, + [SMALL_STATE(1011)] = 2260, + [SMALL_STATE(1012)] = 2329, + [SMALL_STATE(1013)] = 2418, + [SMALL_STATE(1014)] = 2507, + [SMALL_STATE(1015)] = 2596, + [SMALL_STATE(1016)] = 2685, + [SMALL_STATE(1017)] = 2818, + [SMALL_STATE(1018)] = 2905, + [SMALL_STATE(1019)] = 2992, + [SMALL_STATE(1020)] = 3061, + [SMALL_STATE(1021)] = 3130, + [SMALL_STATE(1022)] = 3219, + [SMALL_STATE(1023)] = 3352, + [SMALL_STATE(1024)] = 3441, + [SMALL_STATE(1025)] = 3528, + [SMALL_STATE(1026)] = 3615, + [SMALL_STATE(1027)] = 3705, + [SMALL_STATE(1028)] = 3791, + [SMALL_STATE(1029)] = 3877, + [SMALL_STATE(1030)] = 3963, + [SMALL_STATE(1031)] = 4049, + [SMALL_STATE(1032)] = 4137, + [SMALL_STATE(1033)] = 4205, + [SMALL_STATE(1034)] = 4277, + [SMALL_STATE(1035)] = 4371, + [SMALL_STATE(1036)] = 4439, + [SMALL_STATE(1037)] = 4527, + [SMALL_STATE(1038)] = 4613, + [SMALL_STATE(1039)] = 4698, + [SMALL_STATE(1040)] = 4775, + [SMALL_STATE(1041)] = 4860, + [SMALL_STATE(1042)] = 4937, + [SMALL_STATE(1043)] = 5028, + [SMALL_STATE(1044)] = 5107, + [SMALL_STATE(1045)] = 5184, + [SMALL_STATE(1046)] = 5261, + [SMALL_STATE(1047)] = 5346, + [SMALL_STATE(1048)] = 5423, + [SMALL_STATE(1049)] = 5500, + [SMALL_STATE(1050)] = 5585, + [SMALL_STATE(1051)] = 5670, + [SMALL_STATE(1052)] = 5755, + [SMALL_STATE(1053)] = 5840, + [SMALL_STATE(1054)] = 5931, + [SMALL_STATE(1055)] = 6010, + [SMALL_STATE(1056)] = 6095, + [SMALL_STATE(1057)] = 6183, + [SMALL_STATE(1058)] = 6255, + [SMALL_STATE(1059)] = 6327, + [SMALL_STATE(1060)] = 6403, + [SMALL_STATE(1061)] = 6475, + [SMALL_STATE(1062)] = 6561, + [SMALL_STATE(1063)] = 6635, + [SMALL_STATE(1064)] = 6709, + [SMALL_STATE(1065)] = 6781, + [SMALL_STATE(1066)] = 6857, + [SMALL_STATE(1067)] = 6941, + [SMALL_STATE(1068)] = 7019, + [SMALL_STATE(1069)] = 7103, + [SMALL_STATE(1070)] = 7187, + [SMALL_STATE(1071)] = 7269, + [SMALL_STATE(1072)] = 7353, + [SMALL_STATE(1073)] = 7431, + [SMALL_STATE(1074)] = 7509, + [SMALL_STATE(1075)] = 7583, + [SMALL_STATE(1076)] = 7665, + [SMALL_STATE(1077)] = 7749, + [SMALL_STATE(1078)] = 7832, + [SMALL_STATE(1079)] = 7903, + [SMALL_STATE(1080)] = 7972, + [SMALL_STATE(1081)] = 8037, + [SMALL_STATE(1082)] = 8114, + [SMALL_STATE(1083)] = 8179, + [SMALL_STATE(1084)] = 8244, + [SMALL_STATE(1085)] = 8315, + [SMALL_STATE(1086)] = 8386, + [SMALL_STATE(1087)] = 8455, + [SMALL_STATE(1088)] = 8538, + [SMALL_STATE(1089)] = 8603, + [SMALL_STATE(1090)] = 8668, + [SMALL_STATE(1091)] = 8751, + [SMALL_STATE(1092)] = 8828, + [SMALL_STATE(1093)] = 8903, + [SMALL_STATE(1094)] = 8978, + [SMALL_STATE(1095)] = 9053, + [SMALL_STATE(1096)] = 9124, + [SMALL_STATE(1097)] = 9203, + [SMALL_STATE(1098)] = 9274, + [SMALL_STATE(1099)] = 9345, + [SMALL_STATE(1100)] = 9418, + [SMALL_STATE(1101)] = 9491, + [SMALL_STATE(1102)] = 9574, + [SMALL_STATE(1103)] = 9653, + [SMALL_STATE(1104)] = 9726, + [SMALL_STATE(1105)] = 9791, + [SMALL_STATE(1106)] = 9856, + [SMALL_STATE(1107)] = 9921, + [SMALL_STATE(1108)] = 9986, + [SMALL_STATE(1109)] = 10059, + [SMALL_STATE(1110)] = 10130, + [SMALL_STATE(1111)] = 10211, + [SMALL_STATE(1112)] = 10282, + [SMALL_STATE(1113)] = 10352, + [SMALL_STATE(1114)] = 10434, + [SMALL_STATE(1115)] = 10504, + [SMALL_STATE(1116)] = 10586, + [SMALL_STATE(1117)] = 10656, + [SMALL_STATE(1118)] = 10732, + [SMALL_STATE(1119)] = 10804, + [SMALL_STATE(1120)] = 10876, + [SMALL_STATE(1121)] = 10944, + [SMALL_STATE(1122)] = 11014, + [SMALL_STATE(1123)] = 11084, + [SMALL_STATE(1124)] = 11154, + [SMALL_STATE(1125)] = 11230, + [SMALL_STATE(1126)] = 11302, + [SMALL_STATE(1127)] = 11384, + [SMALL_STATE(1128)] = 11454, + [SMALL_STATE(1129)] = 11522, + [SMALL_STATE(1130)] = 11600, + [SMALL_STATE(1131)] = 11672, + [SMALL_STATE(1132)] = 11742, + [SMALL_STATE(1133)] = 11812, + [SMALL_STATE(1134)] = 11884, + [SMALL_STATE(1135)] = 11954, + [SMALL_STATE(1136)] = 12030, + [SMALL_STATE(1137)] = 12097, + [SMALL_STATE(1138)] = 12168, + [SMALL_STATE(1139)] = 12237, + [SMALL_STATE(1140)] = 12310, + [SMALL_STATE(1141)] = 12383, + [SMALL_STATE(1142)] = 12458, + [SMALL_STATE(1143)] = 12527, + [SMALL_STATE(1144)] = 12600, + [SMALL_STATE(1145)] = 12667, + [SMALL_STATE(1146)] = 12738, + [SMALL_STATE(1147)] = 12807, + [SMALL_STATE(1148)] = 12876, + [SMALL_STATE(1149)] = 12947, + [SMALL_STATE(1150)] = 13020, + [SMALL_STATE(1151)] = 13083, + [SMALL_STATE(1152)] = 13151, + [SMALL_STATE(1153)] = 13213, + [SMALL_STATE(1154)] = 13285, + [SMALL_STATE(1155)] = 13353, + [SMALL_STATE(1156)] = 13421, + [SMALL_STATE(1157)] = 13487, + [SMALL_STATE(1158)] = 13557, + [SMALL_STATE(1159)] = 13627, + [SMALL_STATE(1160)] = 13699, + [SMALL_STATE(1161)] = 13767, + [SMALL_STATE(1162)] = 13829, + [SMALL_STATE(1163)] = 13891, + [SMALL_STATE(1164)] = 13958, + [SMALL_STATE(1165)] = 14025, + [SMALL_STATE(1166)] = 14090, + [SMALL_STATE(1167)] = 14159, + [SMALL_STATE(1168)] = 14226, + [SMALL_STATE(1169)] = 14342, + [SMALL_STATE(1170)] = 14458, + [SMALL_STATE(1171)] = 14574, + [SMALL_STATE(1172)] = 14690, + [SMALL_STATE(1173)] = 14806, + [SMALL_STATE(1174)] = 14922, + [SMALL_STATE(1175)] = 15005, + [SMALL_STATE(1176)] = 15117, + [SMALL_STATE(1177)] = 15237, + [SMALL_STATE(1178)] = 15349, + [SMALL_STATE(1179)] = 15461, + [SMALL_STATE(1180)] = 15581, + [SMALL_STATE(1181)] = 15701, + [SMALL_STATE(1182)] = 15813, + [SMALL_STATE(1183)] = 15925, + [SMALL_STATE(1184)] = 16037, + [SMALL_STATE(1185)] = 16149, + [SMALL_STATE(1186)] = 16269, + [SMALL_STATE(1187)] = 16381, + [SMALL_STATE(1188)] = 16493, + [SMALL_STATE(1189)] = 16605, + [SMALL_STATE(1190)] = 16717, + [SMALL_STATE(1191)] = 16829, + [SMALL_STATE(1192)] = 16941, + [SMALL_STATE(1193)] = 17053, + [SMALL_STATE(1194)] = 17165, + [SMALL_STATE(1195)] = 17277, + [SMALL_STATE(1196)] = 17389, + [SMALL_STATE(1197)] = 17501, + [SMALL_STATE(1198)] = 17621, + [SMALL_STATE(1199)] = 17729, + [SMALL_STATE(1200)] = 17841, + [SMALL_STATE(1201)] = 17897, + [SMALL_STATE(1202)] = 18005, + [SMALL_STATE(1203)] = 18113, + [SMALL_STATE(1204)] = 18223, + [SMALL_STATE(1205)] = 18331, + [SMALL_STATE(1206)] = 18439, + [SMALL_STATE(1207)] = 18547, + [SMALL_STATE(1208)] = 18603, + [SMALL_STATE(1209)] = 18711, + [SMALL_STATE(1210)] = 18782, + [SMALL_STATE(1211)] = 18845, + [SMALL_STATE(1212)] = 18901, + [SMALL_STATE(1213)] = 18999, + [SMALL_STATE(1214)] = 19053, + [SMALL_STATE(1215)] = 19113, + [SMALL_STATE(1216)] = 19171, + [SMALL_STATE(1217)] = 19227, + [SMALL_STATE(1218)] = 19287, + [SMALL_STATE(1219)] = 19347, + [SMALL_STATE(1220)] = 19445, + [SMALL_STATE(1221)] = 19543, + [SMALL_STATE(1222)] = 19603, + [SMALL_STATE(1223)] = 19701, + [SMALL_STATE(1224)] = 19761, + [SMALL_STATE(1225)] = 19859, + [SMALL_STATE(1226)] = 19917, + [SMALL_STATE(1227)] = 19975, + [SMALL_STATE(1228)] = 20035, + [SMALL_STATE(1229)] = 20089, + [SMALL_STATE(1230)] = 20143, + [SMALL_STATE(1231)] = 20241, + [SMALL_STATE(1232)] = 20339, + [SMALL_STATE(1233)] = 20392, + [SMALL_STATE(1234)] = 20445, + [SMALL_STATE(1235)] = 20502, + [SMALL_STATE(1236)] = 20557, + [SMALL_STATE(1237)] = 20670, + [SMALL_STATE(1238)] = 20723, + [SMALL_STATE(1239)] = 20776, + [SMALL_STATE(1240)] = 20829, + [SMALL_STATE(1241)] = 20882, + [SMALL_STATE(1242)] = 20935, + [SMALL_STATE(1243)] = 20988, + [SMALL_STATE(1244)] = 21041, + [SMALL_STATE(1245)] = 21154, + [SMALL_STATE(1246)] = 21225, + [SMALL_STATE(1247)] = 21278, + [SMALL_STATE(1248)] = 21359, + [SMALL_STATE(1249)] = 21412, + [SMALL_STATE(1250)] = 21465, + [SMALL_STATE(1251)] = 21524, + [SMALL_STATE(1252)] = 21577, + [SMALL_STATE(1253)] = 21630, + [SMALL_STATE(1254)] = 21683, + [SMALL_STATE(1255)] = 21736, + [SMALL_STATE(1256)] = 21789, + [SMALL_STATE(1257)] = 21842, + [SMALL_STATE(1258)] = 21901, + [SMALL_STATE(1259)] = 21954, + [SMALL_STATE(1260)] = 22007, + [SMALL_STATE(1261)] = 22066, + [SMALL_STATE(1262)] = 22119, + [SMALL_STATE(1263)] = 22174, + [SMALL_STATE(1264)] = 22227, + [SMALL_STATE(1265)] = 22282, + [SMALL_STATE(1266)] = 22335, + [SMALL_STATE(1267)] = 22388, + [SMALL_STATE(1268)] = 22441, + [SMALL_STATE(1269)] = 22494, + [SMALL_STATE(1270)] = 22547, + [SMALL_STATE(1271)] = 22600, + [SMALL_STATE(1272)] = 22659, + [SMALL_STATE(1273)] = 22712, + [SMALL_STATE(1274)] = 22771, + [SMALL_STATE(1275)] = 22826, + [SMALL_STATE(1276)] = 22901, + [SMALL_STATE(1277)] = 22954, + [SMALL_STATE(1278)] = 23007, + [SMALL_STATE(1279)] = 23064, + [SMALL_STATE(1280)] = 23119, + [SMALL_STATE(1281)] = 23172, + [SMALL_STATE(1282)] = 23229, + [SMALL_STATE(1283)] = 23282, + [SMALL_STATE(1284)] = 23337, + [SMALL_STATE(1285)] = 23390, + [SMALL_STATE(1286)] = 23443, + [SMALL_STATE(1287)] = 23556, + [SMALL_STATE(1288)] = 23611, + [SMALL_STATE(1289)] = 23724, + [SMALL_STATE(1290)] = 23801, + [SMALL_STATE(1291)] = 23914, + [SMALL_STATE(1292)] = 23973, + [SMALL_STATE(1293)] = 24026, + [SMALL_STATE(1294)] = 24141, + [SMALL_STATE(1295)] = 24194, + [SMALL_STATE(1296)] = 24281, + [SMALL_STATE(1297)] = 24334, + [SMALL_STATE(1298)] = 24387, + [SMALL_STATE(1299)] = 24440, + [SMALL_STATE(1300)] = 24493, + [SMALL_STATE(1301)] = 24594, + [SMALL_STATE(1302)] = 24697, + [SMALL_STATE(1303)] = 24780, + [SMALL_STATE(1304)] = 24833, + [SMALL_STATE(1305)] = 24928, + [SMALL_STATE(1306)] = 24981, + [SMALL_STATE(1307)] = 25034, + [SMALL_STATE(1308)] = 25087, + [SMALL_STATE(1309)] = 25140, + [SMALL_STATE(1310)] = 25193, + [SMALL_STATE(1311)] = 25246, + [SMALL_STATE(1312)] = 25299, + [SMALL_STATE(1313)] = 25396, + [SMALL_STATE(1314)] = 25449, + [SMALL_STATE(1315)] = 25502, + [SMALL_STATE(1316)] = 25557, + [SMALL_STATE(1317)] = 25614, + [SMALL_STATE(1318)] = 25667, + [SMALL_STATE(1319)] = 25720, + [SMALL_STATE(1320)] = 25819, + [SMALL_STATE(1321)] = 25880, + [SMALL_STATE(1322)] = 25961, + [SMALL_STATE(1323)] = 26044, + [SMALL_STATE(1324)] = 26101, + [SMALL_STATE(1325)] = 26214, + [SMALL_STATE(1326)] = 26267, + [SMALL_STATE(1327)] = 26328, + [SMALL_STATE(1328)] = 26381, + [SMALL_STATE(1329)] = 26436, + [SMALL_STATE(1330)] = 26489, + [SMALL_STATE(1331)] = 26542, + [SMALL_STATE(1332)] = 26595, + [SMALL_STATE(1333)] = 26654, + [SMALL_STATE(1334)] = 26707, + [SMALL_STATE(1335)] = 26760, + [SMALL_STATE(1336)] = 26815, + [SMALL_STATE(1337)] = 26874, + [SMALL_STATE(1338)] = 26927, + [SMALL_STATE(1339)] = 27018, + [SMALL_STATE(1340)] = 27123, + [SMALL_STATE(1341)] = 27182, + [SMALL_STATE(1342)] = 27235, + [SMALL_STATE(1343)] = 27294, + [SMALL_STATE(1344)] = 27347, + [SMALL_STATE(1345)] = 27400, + [SMALL_STATE(1346)] = 27453, + [SMALL_STATE(1347)] = 27506, + [SMALL_STATE(1348)] = 27619, + [SMALL_STATE(1349)] = 27732, + [SMALL_STATE(1350)] = 27845, + [SMALL_STATE(1351)] = 27958, + [SMALL_STATE(1352)] = 28011, + [SMALL_STATE(1353)] = 28064, + [SMALL_STATE(1354)] = 28117, + [SMALL_STATE(1355)] = 28170, + [SMALL_STATE(1356)] = 28223, + [SMALL_STATE(1357)] = 28336, + [SMALL_STATE(1358)] = 28397, + [SMALL_STATE(1359)] = 28450, + [SMALL_STATE(1360)] = 28503, + [SMALL_STATE(1361)] = 28556, + [SMALL_STATE(1362)] = 28669, + [SMALL_STATE(1363)] = 28722, + [SMALL_STATE(1364)] = 28775, + [SMALL_STATE(1365)] = 28893, + [SMALL_STATE(1366)] = 29009, + [SMALL_STATE(1367)] = 29067, + [SMALL_STATE(1368)] = 29179, + [SMALL_STATE(1369)] = 29235, + [SMALL_STATE(1370)] = 29287, + [SMALL_STATE(1371)] = 29345, + [SMALL_STATE(1372)] = 29419, + [SMALL_STATE(1373)] = 29471, + [SMALL_STATE(1374)] = 29523, + [SMALL_STATE(1375)] = 29635, + [SMALL_STATE(1376)] = 29687, + [SMALL_STATE(1377)] = 29799, + [SMALL_STATE(1378)] = 29851, + [SMALL_STATE(1379)] = 29903, + [SMALL_STATE(1380)] = 29955, + [SMALL_STATE(1381)] = 30007, + [SMALL_STATE(1382)] = 30059, + [SMALL_STATE(1383)] = 30171, + [SMALL_STATE(1384)] = 30223, + [SMALL_STATE(1385)] = 30275, + [SMALL_STATE(1386)] = 30327, + [SMALL_STATE(1387)] = 30379, + [SMALL_STATE(1388)] = 30431, + [SMALL_STATE(1389)] = 30483, + [SMALL_STATE(1390)] = 30535, + [SMALL_STATE(1391)] = 30587, + [SMALL_STATE(1392)] = 30657, + [SMALL_STATE(1393)] = 30709, + [SMALL_STATE(1394)] = 30827, + [SMALL_STATE(1395)] = 30879, + [SMALL_STATE(1396)] = 30931, + [SMALL_STATE(1397)] = 31043, + [SMALL_STATE(1398)] = 31095, + [SMALL_STATE(1399)] = 31207, + [SMALL_STATE(1400)] = 31259, + [SMALL_STATE(1401)] = 31311, + [SMALL_STATE(1402)] = 31363, + [SMALL_STATE(1403)] = 31415, + [SMALL_STATE(1404)] = 31467, + [SMALL_STATE(1405)] = 31519, + [SMALL_STATE(1406)] = 31571, + [SMALL_STATE(1407)] = 31623, + [SMALL_STATE(1408)] = 31675, + [SMALL_STATE(1409)] = 31727, + [SMALL_STATE(1410)] = 31839, + [SMALL_STATE(1411)] = 31891, + [SMALL_STATE(1412)] = 32003, + [SMALL_STATE(1413)] = 32055, + [SMALL_STATE(1414)] = 32167, + [SMALL_STATE(1415)] = 32279, + [SMALL_STATE(1416)] = 32369, + [SMALL_STATE(1417)] = 32421, + [SMALL_STATE(1418)] = 32501, + [SMALL_STATE(1419)] = 32553, + [SMALL_STATE(1420)] = 32607, + [SMALL_STATE(1421)] = 32659, + [SMALL_STATE(1422)] = 32711, + [SMALL_STATE(1423)] = 32763, + [SMALL_STATE(1424)] = 32879, + [SMALL_STATE(1425)] = 32931, + [SMALL_STATE(1426)] = 32983, + [SMALL_STATE(1427)] = 33035, + [SMALL_STATE(1428)] = 33089, + [SMALL_STATE(1429)] = 33141, + [SMALL_STATE(1430)] = 33195, + [SMALL_STATE(1431)] = 33247, + [SMALL_STATE(1432)] = 33299, + [SMALL_STATE(1433)] = 33351, + [SMALL_STATE(1434)] = 33425, + [SMALL_STATE(1435)] = 33477, + [SMALL_STATE(1436)] = 33529, + [SMALL_STATE(1437)] = 33609, + [SMALL_STATE(1438)] = 33721, + [SMALL_STATE(1439)] = 33833, + [SMALL_STATE(1440)] = 33885, + [SMALL_STATE(1441)] = 33961, + [SMALL_STATE(1442)] = 34073, + [SMALL_STATE(1443)] = 34185, + [SMALL_STATE(1444)] = 34245, + [SMALL_STATE(1445)] = 34297, + [SMALL_STATE(1446)] = 34349, + [SMALL_STATE(1447)] = 34463, + [SMALL_STATE(1448)] = 34533, + [SMALL_STATE(1449)] = 34619, + [SMALL_STATE(1450)] = 34731, + [SMALL_STATE(1451)] = 34843, + [SMALL_STATE(1452)] = 34955, + [SMALL_STATE(1453)] = 35007, + [SMALL_STATE(1454)] = 35059, + [SMALL_STATE(1455)] = 35111, + [SMALL_STATE(1456)] = 35223, + [SMALL_STATE(1457)] = 35275, + [SMALL_STATE(1458)] = 35387, + [SMALL_STATE(1459)] = 35439, + [SMALL_STATE(1460)] = 35551, + [SMALL_STATE(1461)] = 35603, + [SMALL_STATE(1462)] = 35715, + [SMALL_STATE(1463)] = 35831, + [SMALL_STATE(1464)] = 35883, + [SMALL_STATE(1465)] = 35935, + [SMALL_STATE(1466)] = 36035, + [SMALL_STATE(1467)] = 36137, + [SMALL_STATE(1468)] = 36219, + [SMALL_STATE(1469)] = 36271, + [SMALL_STATE(1470)] = 36323, + [SMALL_STATE(1471)] = 36413, + [SMALL_STATE(1472)] = 36465, + [SMALL_STATE(1473)] = 36569, + [SMALL_STATE(1474)] = 36623, + [SMALL_STATE(1475)] = 36719, + [SMALL_STATE(1476)] = 36777, + [SMALL_STATE(1477)] = 36889, + [SMALL_STATE(1478)] = 37001, + [SMALL_STATE(1479)] = 37099, + [SMALL_STATE(1480)] = 37215, + [SMALL_STATE(1481)] = 37291, + [SMALL_STATE(1482)] = 37405, + [SMALL_STATE(1483)] = 37485, + [SMALL_STATE(1484)] = 37571, + [SMALL_STATE(1485)] = 37683, + [SMALL_STATE(1486)] = 37783, + [SMALL_STATE(1487)] = 37851, + [SMALL_STATE(1488)] = 37969, + [SMALL_STATE(1489)] = 38051, + [SMALL_STATE(1490)] = 38153, + [SMALL_STATE(1491)] = 38271, + [SMALL_STATE(1492)] = 38323, + [SMALL_STATE(1493)] = 38379, + [SMALL_STATE(1494)] = 38431, + [SMALL_STATE(1495)] = 38483, + [SMALL_STATE(1496)] = 38535, + [SMALL_STATE(1497)] = 38587, + [SMALL_STATE(1498)] = 38639, + [SMALL_STATE(1499)] = 38691, + [SMALL_STATE(1500)] = 38743, + [SMALL_STATE(1501)] = 38795, + [SMALL_STATE(1502)] = 38877, + [SMALL_STATE(1503)] = 38971, + [SMALL_STATE(1504)] = 39067, + [SMALL_STATE(1505)] = 39119, + [SMALL_STATE(1506)] = 39175, + [SMALL_STATE(1507)] = 39227, + [SMALL_STATE(1508)] = 39279, + [SMALL_STATE(1509)] = 39377, + [SMALL_STATE(1510)] = 39429, + [SMALL_STATE(1511)] = 39481, + [SMALL_STATE(1512)] = 39535, + [SMALL_STATE(1513)] = 39587, + [SMALL_STATE(1514)] = 39667, + [SMALL_STATE(1515)] = 39783, + [SMALL_STATE(1516)] = 39835, + [SMALL_STATE(1517)] = 39887, + [SMALL_STATE(1518)] = 39969, + [SMALL_STATE(1519)] = 40059, + [SMALL_STATE(1520)] = 40163, + [SMALL_STATE(1521)] = 40215, + [SMALL_STATE(1522)] = 40309, + [SMALL_STATE(1523)] = 40421, + [SMALL_STATE(1524)] = 40494, + [SMALL_STATE(1525)] = 40605, + [SMALL_STATE(1526)] = 40716, + [SMALL_STATE(1527)] = 40827, + [SMALL_STATE(1528)] = 40938, + [SMALL_STATE(1529)] = 41041, + [SMALL_STATE(1530)] = 41152, + [SMALL_STATE(1531)] = 41241, + [SMALL_STATE(1532)] = 41356, + [SMALL_STATE(1533)] = 41471, + [SMALL_STATE(1534)] = 41552, + [SMALL_STATE(1535)] = 41631, + [SMALL_STATE(1536)] = 41706, + [SMALL_STATE(1537)] = 41803, + [SMALL_STATE(1538)] = 41898, + [SMALL_STATE(1539)] = 42009, + [SMALL_STATE(1540)] = 42104, + [SMALL_STATE(1541)] = 42197, + [SMALL_STATE(1542)] = 42278, + [SMALL_STATE(1543)] = 42379, + [SMALL_STATE(1544)] = 42474, + [SMALL_STATE(1545)] = 42531, + [SMALL_STATE(1546)] = 42588, + [SMALL_STATE(1547)] = 42645, + [SMALL_STATE(1548)] = 42744, + [SMALL_STATE(1549)] = 42855, + [SMALL_STATE(1550)] = 42966, + [SMALL_STATE(1551)] = 43061, + [SMALL_STATE(1552)] = 43146, + [SMALL_STATE(1553)] = 43249, + [SMALL_STATE(1554)] = 43364, + [SMALL_STATE(1555)] = 43439, + [SMALL_STATE(1556)] = 43554, + [SMALL_STATE(1557)] = 43665, + [SMALL_STATE(1558)] = 43776, + [SMALL_STATE(1559)] = 43887, + [SMALL_STATE(1560)] = 43998, + [SMALL_STATE(1561)] = 44109, + [SMALL_STATE(1562)] = 44220, + [SMALL_STATE(1563)] = 44331, + [SMALL_STATE(1564)] = 44426, + [SMALL_STATE(1565)] = 44537, + [SMALL_STATE(1566)] = 44632, + [SMALL_STATE(1567)] = 44727, + [SMALL_STATE(1568)] = 44842, + [SMALL_STATE(1569)] = 44953, + [SMALL_STATE(1570)] = 45048, + [SMALL_STATE(1571)] = 45137, + [SMALL_STATE(1572)] = 45248, + [SMALL_STATE(1573)] = 45359, + [SMALL_STATE(1574)] = 45416, + [SMALL_STATE(1575)] = 45527, + [SMALL_STATE(1576)] = 45642, + [SMALL_STATE(1577)] = 45757, + [SMALL_STATE(1578)] = 45868, + [SMALL_STATE(1579)] = 45927, + [SMALL_STATE(1580)] = 45986, + [SMALL_STATE(1581)] = 46055, + [SMALL_STATE(1582)] = 46128, + [SMALL_STATE(1583)] = 46241, + [SMALL_STATE(1584)] = 46300, + [SMALL_STATE(1585)] = 46379, + [SMALL_STATE(1586)] = 46494, + [SMALL_STATE(1587)] = 46607, + [SMALL_STATE(1588)] = 46718, + [SMALL_STATE(1589)] = 46831, + [SMALL_STATE(1590)] = 46890, + [SMALL_STATE(1591)] = 47001, + [SMALL_STATE(1592)] = 47060, + [SMALL_STATE(1593)] = 47155, + [SMALL_STATE(1594)] = 47224, + [SMALL_STATE(1595)] = 47281, + [SMALL_STATE(1596)] = 47360, + [SMALL_STATE(1597)] = 47417, + [SMALL_STATE(1598)] = 47532, + [SMALL_STATE(1599)] = 47585, + [SMALL_STATE(1600)] = 47666, + [SMALL_STATE(1601)] = 47719, + [SMALL_STATE(1602)] = 47832, + [SMALL_STATE(1603)] = 47929, + [SMALL_STATE(1604)] = 48040, + [SMALL_STATE(1605)] = 48135, + [SMALL_STATE(1606)] = 48194, + [SMALL_STATE(1607)] = 48249, + [SMALL_STATE(1608)] = 48344, + [SMALL_STATE(1609)] = 48399, + [SMALL_STATE(1610)] = 48492, + [SMALL_STATE(1611)] = 48573, + [SMALL_STATE(1612)] = 48686, + [SMALL_STATE(1613)] = 48741, + [SMALL_STATE(1614)] = 48792, + [SMALL_STATE(1615)] = 48853, + [SMALL_STATE(1616)] = 48964, + [SMALL_STATE(1617)] = 49059, + [SMALL_STATE(1618)] = 49120, + [SMALL_STATE(1619)] = 49231, + [SMALL_STATE(1620)] = 49288, + [SMALL_STATE(1621)] = 49403, + [SMALL_STATE(1622)] = 49504, + [SMALL_STATE(1623)] = 49603, + [SMALL_STATE(1624)] = 49714, + [SMALL_STATE(1625)] = 49769, + [SMALL_STATE(1626)] = 49854, + [SMALL_STATE(1627)] = 49949, + [SMALL_STATE(1628)] = 50028, + [SMALL_STATE(1629)] = 50139, + [SMALL_STATE(1630)] = 50250, + [SMALL_STATE(1631)] = 50300, + [SMALL_STATE(1632)] = 50350, + [SMALL_STATE(1633)] = 50400, + [SMALL_STATE(1634)] = 50450, + [SMALL_STATE(1635)] = 50500, + [SMALL_STATE(1636)] = 50550, + [SMALL_STATE(1637)] = 50600, + [SMALL_STATE(1638)] = 50650, + [SMALL_STATE(1639)] = 50700, + [SMALL_STATE(1640)] = 50750, + [SMALL_STATE(1641)] = 50806, + [SMALL_STATE(1642)] = 50856, + [SMALL_STATE(1643)] = 50966, + [SMALL_STATE(1644)] = 51016, + [SMALL_STATE(1645)] = 51066, + [SMALL_STATE(1646)] = 51116, + [SMALL_STATE(1647)] = 51166, + [SMALL_STATE(1648)] = 51216, + [SMALL_STATE(1649)] = 51266, + [SMALL_STATE(1650)] = 51316, + [SMALL_STATE(1651)] = 51366, + [SMALL_STATE(1652)] = 51418, + [SMALL_STATE(1653)] = 51468, + [SMALL_STATE(1654)] = 51518, + [SMALL_STATE(1655)] = 51568, + [SMALL_STATE(1656)] = 51618, + [SMALL_STATE(1657)] = 51668, + [SMALL_STATE(1658)] = 51722, + [SMALL_STATE(1659)] = 51778, + [SMALL_STATE(1660)] = 51832, + [SMALL_STATE(1661)] = 51882, + [SMALL_STATE(1662)] = 51932, + [SMALL_STATE(1663)] = 51984, + [SMALL_STATE(1664)] = 52034, + [SMALL_STATE(1665)] = 52084, + [SMALL_STATE(1666)] = 52146, + [SMALL_STATE(1667)] = 52200, + [SMALL_STATE(1668)] = 52272, + [SMALL_STATE(1669)] = 52328, + [SMALL_STATE(1670)] = 52378, + [SMALL_STATE(1671)] = 52456, + [SMALL_STATE(1672)] = 52506, + [SMALL_STATE(1673)] = 52616, + [SMALL_STATE(1674)] = 52666, + [SMALL_STATE(1675)] = 52716, + [SMALL_STATE(1676)] = 52766, + [SMALL_STATE(1677)] = 52822, + [SMALL_STATE(1678)] = 52872, + [SMALL_STATE(1679)] = 52956, + [SMALL_STATE(1680)] = 53024, + [SMALL_STATE(1681)] = 53134, + [SMALL_STATE(1682)] = 53184, + [SMALL_STATE(1683)] = 53234, + [SMALL_STATE(1684)] = 53284, + [SMALL_STATE(1685)] = 53396, + [SMALL_STATE(1686)] = 53446, + [SMALL_STATE(1687)] = 53496, + [SMALL_STATE(1688)] = 53552, + [SMALL_STATE(1689)] = 53602, + [SMALL_STATE(1690)] = 53658, + [SMALL_STATE(1691)] = 53708, + [SMALL_STATE(1692)] = 53758, + [SMALL_STATE(1693)] = 53808, + [SMALL_STATE(1694)] = 53858, + [SMALL_STATE(1695)] = 53908, + [SMALL_STATE(1696)] = 53958, + [SMALL_STATE(1697)] = 54070, + [SMALL_STATE(1698)] = 54134, + [SMALL_STATE(1699)] = 54198, + [SMALL_STATE(1700)] = 54260, + [SMALL_STATE(1701)] = 54344, + [SMALL_STATE(1702)] = 54406, + [SMALL_STATE(1703)] = 54518, + [SMALL_STATE(1704)] = 54630, + [SMALL_STATE(1705)] = 54742, + [SMALL_STATE(1706)] = 54798, + [SMALL_STATE(1707)] = 54910, + [SMALL_STATE(1708)] = 54960, + [SMALL_STATE(1709)] = 55016, + [SMALL_STATE(1710)] = 55074, + [SMALL_STATE(1711)] = 55130, + [SMALL_STATE(1712)] = 55188, + [SMALL_STATE(1713)] = 55244, + [SMALL_STATE(1714)] = 55300, + [SMALL_STATE(1715)] = 55412, + [SMALL_STATE(1716)] = 55522, + [SMALL_STATE(1717)] = 55578, + [SMALL_STATE(1718)] = 55688, + [SMALL_STATE(1719)] = 55800, + [SMALL_STATE(1720)] = 55912, + [SMALL_STATE(1721)] = 56024, + [SMALL_STATE(1722)] = 56080, + [SMALL_STATE(1723)] = 56192, + [SMALL_STATE(1724)] = 56242, + [SMALL_STATE(1725)] = 56292, + [SMALL_STATE(1726)] = 56348, + [SMALL_STATE(1727)] = 56402, + [SMALL_STATE(1728)] = 56452, + [SMALL_STATE(1729)] = 56502, + [SMALL_STATE(1730)] = 56552, + [SMALL_STATE(1731)] = 56606, + [SMALL_STATE(1732)] = 56656, + [SMALL_STATE(1733)] = 56740, + [SMALL_STATE(1734)] = 56850, + [SMALL_STATE(1735)] = 56960, + [SMALL_STATE(1736)] = 57012, + [SMALL_STATE(1737)] = 57062, + [SMALL_STATE(1738)] = 57174, + [SMALL_STATE(1739)] = 57224, + [SMALL_STATE(1740)] = 57274, + [SMALL_STATE(1741)] = 57324, + [SMALL_STATE(1742)] = 57376, + [SMALL_STATE(1743)] = 57428, + [SMALL_STATE(1744)] = 57478, + [SMALL_STATE(1745)] = 57532, + [SMALL_STATE(1746)] = 57584, + [SMALL_STATE(1747)] = 57634, + [SMALL_STATE(1748)] = 57744, + [SMALL_STATE(1749)] = 57856, + [SMALL_STATE(1750)] = 57968, + [SMALL_STATE(1751)] = 58078, + [SMALL_STATE(1752)] = 58140, + [SMALL_STATE(1753)] = 58202, + [SMALL_STATE(1754)] = 58314, + [SMALL_STATE(1755)] = 58424, + [SMALL_STATE(1756)] = 58536, + [SMALL_STATE(1757)] = 58646, + [SMALL_STATE(1758)] = 58756, + [SMALL_STATE(1759)] = 58812, + [SMALL_STATE(1760)] = 58864, + [SMALL_STATE(1761)] = 58916, + [SMALL_STATE(1762)] = 58966, + [SMALL_STATE(1763)] = 59016, + [SMALL_STATE(1764)] = 59066, + [SMALL_STATE(1765)] = 59116, + [SMALL_STATE(1766)] = 59166, + [SMALL_STATE(1767)] = 59216, + [SMALL_STATE(1768)] = 59328, + [SMALL_STATE(1769)] = 59390, + [SMALL_STATE(1770)] = 59440, + [SMALL_STATE(1771)] = 59552, + [SMALL_STATE(1772)] = 59614, + [SMALL_STATE(1773)] = 59724, + [SMALL_STATE(1774)] = 59780, + [SMALL_STATE(1775)] = 59890, + [SMALL_STATE(1776)] = 59940, + [SMALL_STATE(1777)] = 60050, + [SMALL_STATE(1778)] = 60160, + [SMALL_STATE(1779)] = 60244, + [SMALL_STATE(1780)] = 60302, + [SMALL_STATE(1781)] = 60352, + [SMALL_STATE(1782)] = 60404, + [SMALL_STATE(1783)] = 60456, + [SMALL_STATE(1784)] = 60514, + [SMALL_STATE(1785)] = 60564, + [SMALL_STATE(1786)] = 60638, + [SMALL_STATE(1787)] = 60700, + [SMALL_STATE(1788)] = 60762, + [SMALL_STATE(1789)] = 60846, + [SMALL_STATE(1790)] = 60896, + [SMALL_STATE(1791)] = 60946, + [SMALL_STATE(1792)] = 60998, + [SMALL_STATE(1793)] = 61050, + [SMALL_STATE(1794)] = 61100, + [SMALL_STATE(1795)] = 61210, + [SMALL_STATE(1796)] = 61320, + [SMALL_STATE(1797)] = 61370, + [SMALL_STATE(1798)] = 61482, + [SMALL_STATE(1799)] = 61584, + [SMALL_STATE(1800)] = 61672, + [SMALL_STATE(1801)] = 61722, + [SMALL_STATE(1802)] = 61806, + [SMALL_STATE(1803)] = 61862, + [SMALL_STATE(1804)] = 61918, + [SMALL_STATE(1805)] = 61970, + [SMALL_STATE(1806)] = 62050, + [SMALL_STATE(1807)] = 62128, + [SMALL_STATE(1808)] = 62224, + [SMALL_STATE(1809)] = 62318, + [SMALL_STATE(1810)] = 62410, + [SMALL_STATE(1811)] = 62490, + [SMALL_STATE(1812)] = 62590, + [SMALL_STATE(1813)] = 62688, + [SMALL_STATE(1814)] = 62797, + [SMALL_STATE(1815)] = 62846, + [SMALL_STATE(1816)] = 62899, + [SMALL_STATE(1817)] = 62952, + [SMALL_STATE(1818)] = 63005, + [SMALL_STATE(1819)] = 63054, + [SMALL_STATE(1820)] = 63109, + [SMALL_STATE(1821)] = 63164, + [SMALL_STATE(1822)] = 63273, + [SMALL_STATE(1823)] = 63328, + [SMALL_STATE(1824)] = 63383, + [SMALL_STATE(1825)] = 63434, + [SMALL_STATE(1826)] = 63489, + [SMALL_STATE(1827)] = 63598, + [SMALL_STATE(1828)] = 63707, + [SMALL_STATE(1829)] = 63756, + [SMALL_STATE(1830)] = 63805, + [SMALL_STATE(1831)] = 63854, + [SMALL_STATE(1832)] = 63903, + [SMALL_STATE(1833)] = 63952, + [SMALL_STATE(1834)] = 64001, + [SMALL_STATE(1835)] = 64050, + [SMALL_STATE(1836)] = 64099, + [SMALL_STATE(1837)] = 64148, + [SMALL_STATE(1838)] = 64197, + [SMALL_STATE(1839)] = 64246, + [SMALL_STATE(1840)] = 64295, + [SMALL_STATE(1841)] = 64344, + [SMALL_STATE(1842)] = 64393, + [SMALL_STATE(1843)] = 64450, + [SMALL_STATE(1844)] = 64499, + [SMALL_STATE(1845)] = 64548, + [SMALL_STATE(1846)] = 64601, + [SMALL_STATE(1847)] = 64650, + [SMALL_STATE(1848)] = 64759, + [SMALL_STATE(1849)] = 64812, + [SMALL_STATE(1850)] = 64861, + [SMALL_STATE(1851)] = 64910, + [SMALL_STATE(1852)] = 64959, + [SMALL_STATE(1853)] = 65034, + [SMALL_STATE(1854)] = 65111, + [SMALL_STATE(1855)] = 65160, + [SMALL_STATE(1856)] = 65271, + [SMALL_STATE(1857)] = 65328, + [SMALL_STATE(1858)] = 65377, + [SMALL_STATE(1859)] = 65428, + [SMALL_STATE(1860)] = 65477, + [SMALL_STATE(1861)] = 65526, + [SMALL_STATE(1862)] = 65575, + [SMALL_STATE(1863)] = 65684, + [SMALL_STATE(1864)] = 65733, + [SMALL_STATE(1865)] = 65782, + [SMALL_STATE(1866)] = 65831, + [SMALL_STATE(1867)] = 65880, + [SMALL_STATE(1868)] = 65931, + [SMALL_STATE(1869)] = 66040, + [SMALL_STATE(1870)] = 66149, + [SMALL_STATE(1871)] = 66198, + [SMALL_STATE(1872)] = 66307, + [SMALL_STATE(1873)] = 66360, + [SMALL_STATE(1874)] = 66469, + [SMALL_STATE(1875)] = 66542, + [SMALL_STATE(1876)] = 66625, + [SMALL_STATE(1877)] = 66722, + [SMALL_STATE(1878)] = 66821, + [SMALL_STATE(1879)] = 66870, + [SMALL_STATE(1880)] = 66949, + [SMALL_STATE(1881)] = 66998, + [SMALL_STATE(1882)] = 67049, + [SMALL_STATE(1883)] = 67102, + [SMALL_STATE(1884)] = 67153, + [SMALL_STATE(1885)] = 67202, + [SMALL_STATE(1886)] = 67251, + [SMALL_STATE(1887)] = 67300, + [SMALL_STATE(1888)] = 67353, + [SMALL_STATE(1889)] = 67406, + [SMALL_STATE(1890)] = 67459, + [SMALL_STATE(1891)] = 67550, + [SMALL_STATE(1892)] = 67601, + [SMALL_STATE(1893)] = 67652, + [SMALL_STATE(1894)] = 67709, + [SMALL_STATE(1895)] = 67762, + [SMALL_STATE(1896)] = 67815, + [SMALL_STATE(1897)] = 67868, + [SMALL_STATE(1898)] = 67945, + [SMALL_STATE(1899)] = 67998, + [SMALL_STATE(1900)] = 68073, + [SMALL_STATE(1901)] = 68182, + [SMALL_STATE(1902)] = 68235, + [SMALL_STATE(1903)] = 68294, + [SMALL_STATE(1904)] = 68345, + [SMALL_STATE(1905)] = 68396, + [SMALL_STATE(1906)] = 68445, + [SMALL_STATE(1907)] = 68538, + [SMALL_STATE(1908)] = 68633, + [SMALL_STATE(1909)] = 68684, + [SMALL_STATE(1910)] = 68793, + [SMALL_STATE(1911)] = 68850, + [SMALL_STATE(1912)] = 68899, + [SMALL_STATE(1913)] = 68948, + [SMALL_STATE(1914)] = 68999, + [SMALL_STATE(1915)] = 69108, + [SMALL_STATE(1916)] = 69167, + [SMALL_STATE(1917)] = 69218, + [SMALL_STATE(1918)] = 69269, + [SMALL_STATE(1919)] = 69318, + [SMALL_STATE(1920)] = 69367, + [SMALL_STATE(1921)] = 69416, + [SMALL_STATE(1922)] = 69473, + [SMALL_STATE(1923)] = 69530, + [SMALL_STATE(1924)] = 69579, + [SMALL_STATE(1925)] = 69628, + [SMALL_STATE(1926)] = 69705, + [SMALL_STATE(1927)] = 69754, + [SMALL_STATE(1928)] = 69811, + [SMALL_STATE(1929)] = 69860, + [SMALL_STATE(1930)] = 69919, + [SMALL_STATE(1931)] = 69998, + [SMALL_STATE(1932)] = 70057, + [SMALL_STATE(1933)] = 70110, + [SMALL_STATE(1934)] = 70163, + [SMALL_STATE(1935)] = 70240, + [SMALL_STATE(1936)] = 70327, + [SMALL_STATE(1937)] = 70376, + [SMALL_STATE(1938)] = 70477, + [SMALL_STATE(1939)] = 70526, + [SMALL_STATE(1940)] = 70579, + [SMALL_STATE(1941)] = 70628, + [SMALL_STATE(1942)] = 70681, + [SMALL_STATE(1943)] = 70734, + [SMALL_STATE(1944)] = 70783, + [SMALL_STATE(1945)] = 70892, + [SMALL_STATE(1946)] = 70967, + [SMALL_STATE(1947)] = 71016, + [SMALL_STATE(1948)] = 71069, + [SMALL_STATE(1949)] = 71122, + [SMALL_STATE(1950)] = 71171, + [SMALL_STATE(1951)] = 71220, + [SMALL_STATE(1952)] = 71269, + [SMALL_STATE(1953)] = 71346, + [SMALL_STATE(1954)] = 71395, + [SMALL_STATE(1955)] = 71444, + [SMALL_STATE(1956)] = 71493, + [SMALL_STATE(1957)] = 71548, + [SMALL_STATE(1958)] = 71601, + [SMALL_STATE(1959)] = 71654, + [SMALL_STATE(1960)] = 71707, + [SMALL_STATE(1961)] = 71816, + [SMALL_STATE(1962)] = 71925, + [SMALL_STATE(1963)] = 71986, + [SMALL_STATE(1964)] = 72039, + [SMALL_STATE(1965)] = 72148, + [SMALL_STATE(1966)] = 72199, + [SMALL_STATE(1967)] = 72252, + [SMALL_STATE(1968)] = 72309, + [SMALL_STATE(1969)] = 72386, + [SMALL_STATE(1970)] = 72495, + [SMALL_STATE(1971)] = 72570, + [SMALL_STATE(1972)] = 72637, + [SMALL_STATE(1973)] = 72686, + [SMALL_STATE(1974)] = 72739, + [SMALL_STATE(1975)] = 72816, + [SMALL_STATE(1976)] = 72891, + [SMALL_STATE(1977)] = 73000, + [SMALL_STATE(1978)] = 73109, + [SMALL_STATE(1979)] = 73158, + [SMALL_STATE(1980)] = 73211, + [SMALL_STATE(1981)] = 73260, + [SMALL_STATE(1982)] = 73369, + [SMALL_STATE(1983)] = 73422, + [SMALL_STATE(1984)] = 73531, + [SMALL_STATE(1985)] = 73608, + [SMALL_STATE(1986)] = 73657, + [SMALL_STATE(1987)] = 73706, + [SMALL_STATE(1988)] = 73755, + [SMALL_STATE(1989)] = 73826, + [SMALL_STATE(1990)] = 73875, + [SMALL_STATE(1991)] = 73984, + [SMALL_STATE(1992)] = 74036, + [SMALL_STATE(1993)] = 74108, + [SMALL_STATE(1994)] = 74158, + [SMALL_STATE(1995)] = 74264, + [SMALL_STATE(1996)] = 74334, + [SMALL_STATE(1997)] = 74390, + [SMALL_STATE(1998)] = 74496, + [SMALL_STATE(1999)] = 74566, + [SMALL_STATE(2000)] = 74672, + [SMALL_STATE(2001)] = 74724, + [SMALL_STATE(2002)] = 74830, + [SMALL_STATE(2003)] = 74900, + [SMALL_STATE(2004)] = 74990, + [SMALL_STATE(2005)] = 75096, + [SMALL_STATE(2006)] = 75174, + [SMALL_STATE(2007)] = 75228, + [SMALL_STATE(2008)] = 75304, + [SMALL_STATE(2009)] = 75354, + [SMALL_STATE(2010)] = 75430, + [SMALL_STATE(2011)] = 75480, + [SMALL_STATE(2012)] = 75572, + [SMALL_STATE(2013)] = 75642, + [SMALL_STATE(2014)] = 75740, + [SMALL_STATE(2015)] = 75846, + [SMALL_STATE(2016)] = 75920, + [SMALL_STATE(2017)] = 75976, + [SMALL_STATE(2018)] = 76042, + [SMALL_STATE(2019)] = 76148, + [SMALL_STATE(2020)] = 76254, + [SMALL_STATE(2021)] = 76360, + [SMALL_STATE(2022)] = 76466, + [SMALL_STATE(2023)] = 76560, + [SMALL_STATE(2024)] = 76666, + [SMALL_STATE(2025)] = 76772, + [SMALL_STATE(2026)] = 76828, + [SMALL_STATE(2027)] = 76904, + [SMALL_STATE(2028)] = 76958, + [SMALL_STATE(2029)] = 77028, + [SMALL_STATE(2030)] = 77084, + [SMALL_STATE(2031)] = 77140, + [SMALL_STATE(2032)] = 77210, + [SMALL_STATE(2033)] = 77316, + [SMALL_STATE(2034)] = 77412, + [SMALL_STATE(2035)] = 77512, + [SMALL_STATE(2036)] = 77598, + [SMALL_STATE(2037)] = 77676, + [SMALL_STATE(2038)] = 77782, + [SMALL_STATE(2039)] = 77864, + [SMALL_STATE(2040)] = 77918, + [SMALL_STATE(2041)] = 77972, + [SMALL_STATE(2042)] = 78041, + [SMALL_STATE(2043)] = 78090, + [SMALL_STATE(2044)] = 78143, + [SMALL_STATE(2045)] = 78212, + [SMALL_STATE(2046)] = 78265, + [SMALL_STATE(2047)] = 78336, + [SMALL_STATE(2048)] = 78417, + [SMALL_STATE(2049)] = 78466, + [SMALL_STATE(2050)] = 78537, + [SMALL_STATE(2051)] = 78604, + [SMALL_STATE(2052)] = 78685, + [SMALL_STATE(2053)] = 78738, + [SMALL_STATE(2054)] = 78791, + [SMALL_STATE(2055)] = 78840, + [SMALL_STATE(2056)] = 78889, + [SMALL_STATE(2057)] = 78970, + [SMALL_STATE(2058)] = 79041, + [SMALL_STATE(2059)] = 79090, + [SMALL_STATE(2060)] = 79143, + [SMALL_STATE(2061)] = 79212, + [SMALL_STATE(2062)] = 79279, + [SMALL_STATE(2063)] = 79360, + [SMALL_STATE(2064)] = 79409, + [SMALL_STATE(2065)] = 79458, + [SMALL_STATE(2066)] = 79511, + [SMALL_STATE(2067)] = 79582, + [SMALL_STATE(2068)] = 79663, + [SMALL_STATE(2069)] = 79712, + [SMALL_STATE(2070)] = 79761, + [SMALL_STATE(2071)] = 79816, + [SMALL_STATE(2072)] = 79865, + [SMALL_STATE(2073)] = 79932, + [SMALL_STATE(2074)] = 79985, + [SMALL_STATE(2075)] = 80066, + [SMALL_STATE(2076)] = 80119, + [SMALL_STATE(2077)] = 80170, + [SMALL_STATE(2078)] = 80251, + [SMALL_STATE(2079)] = 80300, + [SMALL_STATE(2080)] = 80362, + [SMALL_STATE(2081)] = 80436, + [SMALL_STATE(2082)] = 80498, + [SMALL_STATE(2083)] = 80550, + [SMALL_STATE(2084)] = 80614, + [SMALL_STATE(2085)] = 80686, + [SMALL_STATE(2086)] = 80748, + [SMALL_STATE(2087)] = 80810, + [SMALL_STATE(2088)] = 80870, + [SMALL_STATE(2089)] = 80922, + [SMALL_STATE(2090)] = 80986, + [SMALL_STATE(2091)] = 81036, + [SMALL_STATE(2092)] = 81098, + [SMALL_STATE(2093)] = 81172, + [SMALL_STATE(2094)] = 81244, + [SMALL_STATE(2095)] = 81316, + [SMALL_STATE(2096)] = 81378, + [SMALL_STATE(2097)] = 81442, + [SMALL_STATE(2098)] = 81504, + [SMALL_STATE(2099)] = 81556, + [SMALL_STATE(2100)] = 81618, + [SMALL_STATE(2101)] = 81682, + [SMALL_STATE(2102)] = 81746, + [SMALL_STATE(2103)] = 81810, + [SMALL_STATE(2104)] = 81870, + [SMALL_STATE(2105)] = 81918, + [SMALL_STATE(2106)] = 81990, + [SMALL_STATE(2107)] = 82054, + [SMALL_STATE(2108)] = 82128, + [SMALL_STATE(2109)] = 82190, + [SMALL_STATE(2110)] = 82262, + [SMALL_STATE(2111)] = 82322, + [SMALL_STATE(2112)] = 82374, + [SMALL_STATE(2113)] = 82448, + [SMALL_STATE(2114)] = 82508, + [SMALL_STATE(2115)] = 82568, + [SMALL_STATE(2116)] = 82632, + [SMALL_STATE(2117)] = 82692, + [SMALL_STATE(2118)] = 82752, + [SMALL_STATE(2119)] = 82824, + [SMALL_STATE(2120)] = 82886, + [SMALL_STATE(2121)] = 82960, + [SMALL_STATE(2122)] = 83032, + [SMALL_STATE(2123)] = 83094, + [SMALL_STATE(2124)] = 83158, + [SMALL_STATE(2125)] = 83222, + [SMALL_STATE(2126)] = 83270, + [SMALL_STATE(2127)] = 83332, + [SMALL_STATE(2128)] = 83394, + [SMALL_STATE(2129)] = 83458, + [SMALL_STATE(2130)] = 83518, + [SMALL_STATE(2131)] = 83592, + [SMALL_STATE(2132)] = 83654, + [SMALL_STATE(2133)] = 83728, + [SMALL_STATE(2134)] = 83788, + [SMALL_STATE(2135)] = 83850, + [SMALL_STATE(2136)] = 83910, + [SMALL_STATE(2137)] = 83967, + [SMALL_STATE(2138)] = 84024, + [SMALL_STATE(2139)] = 84091, + [SMALL_STATE(2140)] = 84158, + [SMALL_STATE(2141)] = 84215, + [SMALL_STATE(2142)] = 84272, + [SMALL_STATE(2143)] = 84329, + [SMALL_STATE(2144)] = 84386, + [SMALL_STATE(2145)] = 84443, + [SMALL_STATE(2146)] = 84500, + [SMALL_STATE(2147)] = 84567, + [SMALL_STATE(2148)] = 84624, + [SMALL_STATE(2149)] = 84691, + [SMALL_STATE(2150)] = 84748, + [SMALL_STATE(2151)] = 84815, + [SMALL_STATE(2152)] = 84888, + [SMALL_STATE(2153)] = 84945, + [SMALL_STATE(2154)] = 85002, + [SMALL_STATE(2155)] = 85069, + [SMALL_STATE(2156)] = 85126, + [SMALL_STATE(2157)] = 85183, + [SMALL_STATE(2158)] = 85240, + [SMALL_STATE(2159)] = 85307, + [SMALL_STATE(2160)] = 85364, + [SMALL_STATE(2161)] = 85421, + [SMALL_STATE(2162)] = 85478, + [SMALL_STATE(2163)] = 85527, + [SMALL_STATE(2164)] = 85604, + [SMALL_STATE(2165)] = 85664, + [SMALL_STATE(2166)] = 85730, + [SMALL_STATE(2167)] = 85782, + [SMALL_STATE(2168)] = 85834, + [SMALL_STATE(2169)] = 85898, + [SMALL_STATE(2170)] = 85968, + [SMALL_STATE(2171)] = 86024, + [SMALL_STATE(2172)] = 86084, + [SMALL_STATE(2173)] = 86140, + [SMALL_STATE(2174)] = 86197, + [SMALL_STATE(2175)] = 86250, + [SMALL_STATE(2176)] = 86309, + [SMALL_STATE(2177)] = 86366, + [SMALL_STATE(2178)] = 86423, + [SMALL_STATE(2179)] = 86480, + [SMALL_STATE(2180)] = 86537, + [SMALL_STATE(2181)] = 86594, + [SMALL_STATE(2182)] = 86651, + [SMALL_STATE(2183)] = 86708, + [SMALL_STATE(2184)] = 86765, + [SMALL_STATE(2185)] = 86828, + [SMALL_STATE(2186)] = 86885, + [SMALL_STATE(2187)] = 86946, + [SMALL_STATE(2188)] = 87003, + [SMALL_STATE(2189)] = 87056, + [SMALL_STATE(2190)] = 87113, + [SMALL_STATE(2191)] = 87170, + [SMALL_STATE(2192)] = 87227, + [SMALL_STATE(2193)] = 87283, + [SMALL_STATE(2194)] = 87332, + [SMALL_STATE(2195)] = 87381, + [SMALL_STATE(2196)] = 87460, + [SMALL_STATE(2197)] = 87539, + [SMALL_STATE(2198)] = 87618, + [SMALL_STATE(2199)] = 87683, + [SMALL_STATE(2200)] = 87730, + [SMALL_STATE(2201)] = 87809, + [SMALL_STATE(2202)] = 87888, + [SMALL_STATE(2203)] = 87928, + [SMALL_STATE(2204)] = 87968, + [SMALL_STATE(2205)] = 88008, + [SMALL_STATE(2206)] = 88048, + [SMALL_STATE(2207)] = 88104, + [SMALL_STATE(2208)] = 88144, + [SMALL_STATE(2209)] = 88186, + [SMALL_STATE(2210)] = 88244, + [SMALL_STATE(2211)] = 88284, + [SMALL_STATE(2212)] = 88324, + [SMALL_STATE(2213)] = 88364, + [SMALL_STATE(2214)] = 88404, + [SMALL_STATE(2215)] = 88444, + [SMALL_STATE(2216)] = 88484, + [SMALL_STATE(2217)] = 88524, + [SMALL_STATE(2218)] = 88564, + [SMALL_STATE(2219)] = 88606, + [SMALL_STATE(2220)] = 88662, + [SMALL_STATE(2221)] = 88702, + [SMALL_STATE(2222)] = 88742, + [SMALL_STATE(2223)] = 88782, + [SMALL_STATE(2224)] = 88836, + [SMALL_STATE(2225)] = 88876, + [SMALL_STATE(2226)] = 88932, + [SMALL_STATE(2227)] = 88972, + [SMALL_STATE(2228)] = 89018, + [SMALL_STATE(2229)] = 89060, + [SMALL_STATE(2230)] = 89100, + [SMALL_STATE(2231)] = 89158, + [SMALL_STATE(2232)] = 89204, + [SMALL_STATE(2233)] = 89244, + [SMALL_STATE(2234)] = 89284, + [SMALL_STATE(2235)] = 89324, + [SMALL_STATE(2236)] = 89364, + [SMALL_STATE(2237)] = 89404, + [SMALL_STATE(2238)] = 89444, + [SMALL_STATE(2239)] = 89502, + [SMALL_STATE(2240)] = 89558, + [SMALL_STATE(2241)] = 89609, + [SMALL_STATE(2242)] = 89660, + [SMALL_STATE(2243)] = 89711, + [SMALL_STATE(2244)] = 89762, + [SMALL_STATE(2245)] = 89813, + [SMALL_STATE(2246)] = 89864, + [SMALL_STATE(2247)] = 89915, + [SMALL_STATE(2248)] = 89978, + [SMALL_STATE(2249)] = 90029, + [SMALL_STATE(2250)] = 90080, + [SMALL_STATE(2251)] = 90131, + [SMALL_STATE(2252)] = 90172, + [SMALL_STATE(2253)] = 90213, + [SMALL_STATE(2254)] = 90264, + [SMALL_STATE(2255)] = 90315, + [SMALL_STATE(2256)] = 90366, + [SMALL_STATE(2257)] = 90417, + [SMALL_STATE(2258)] = 90468, + [SMALL_STATE(2259)] = 90519, + [SMALL_STATE(2260)] = 90570, + [SMALL_STATE(2261)] = 90621, + [SMALL_STATE(2262)] = 90672, + [SMALL_STATE(2263)] = 90723, + [SMALL_STATE(2264)] = 90761, + [SMALL_STATE(2265)] = 90799, + [SMALL_STATE(2266)] = 90849, + [SMALL_STATE(2267)] = 90905, + [SMALL_STATE(2268)] = 90943, + [SMALL_STATE(2269)] = 90993, + [SMALL_STATE(2270)] = 91031, + [SMALL_STATE(2271)] = 91069, + [SMALL_STATE(2272)] = 91119, + [SMALL_STATE(2273)] = 91179, + [SMALL_STATE(2274)] = 91217, + [SMALL_STATE(2275)] = 91255, + [SMALL_STATE(2276)] = 91305, + [SMALL_STATE(2277)] = 91355, + [SMALL_STATE(2278)] = 91393, + [SMALL_STATE(2279)] = 91431, + [SMALL_STATE(2280)] = 91491, + [SMALL_STATE(2281)] = 91541, + [SMALL_STATE(2282)] = 91601, + [SMALL_STATE(2283)] = 91651, + [SMALL_STATE(2284)] = 91701, + [SMALL_STATE(2285)] = 91751, + [SMALL_STATE(2286)] = 91801, + [SMALL_STATE(2287)] = 91854, + [SMALL_STATE(2288)] = 91907, + [SMALL_STATE(2289)] = 91960, + [SMALL_STATE(2290)] = 92013, + [SMALL_STATE(2291)] = 92066, + [SMALL_STATE(2292)] = 92119, + [SMALL_STATE(2293)] = 92172, + [SMALL_STATE(2294)] = 92219, + [SMALL_STATE(2295)] = 92272, + [SMALL_STATE(2296)] = 92325, + [SMALL_STATE(2297)] = 92378, + [SMALL_STATE(2298)] = 92419, + [SMALL_STATE(2299)] = 92472, + [SMALL_STATE(2300)] = 92523, + [SMALL_STATE(2301)] = 92576, + [SMALL_STATE(2302)] = 92627, + [SMALL_STATE(2303)] = 92671, + [SMALL_STATE(2304)] = 92715, + [SMALL_STATE(2305)] = 92759, + [SMALL_STATE(2306)] = 92805, + [SMALL_STATE(2307)] = 92849, + [SMALL_STATE(2308)] = 92893, + [SMALL_STATE(2309)] = 92937, + [SMALL_STATE(2310)] = 92983, + [SMALL_STATE(2311)] = 93027, + [SMALL_STATE(2312)] = 93071, + [SMALL_STATE(2313)] = 93115, + [SMALL_STATE(2314)] = 93159, + [SMALL_STATE(2315)] = 93203, + [SMALL_STATE(2316)] = 93247, + [SMALL_STATE(2317)] = 93291, + [SMALL_STATE(2318)] = 93335, + [SMALL_STATE(2319)] = 93381, + [SMALL_STATE(2320)] = 93425, + [SMALL_STATE(2321)] = 93469, + [SMALL_STATE(2322)] = 93513, + [SMALL_STATE(2323)] = 93557, + [SMALL_STATE(2324)] = 93601, + [SMALL_STATE(2325)] = 93645, + [SMALL_STATE(2326)] = 93689, + [SMALL_STATE(2327)] = 93733, + [SMALL_STATE(2328)] = 93777, + [SMALL_STATE(2329)] = 93821, + [SMALL_STATE(2330)] = 93865, + [SMALL_STATE(2331)] = 93909, + [SMALL_STATE(2332)] = 93953, + [SMALL_STATE(2333)] = 93997, + [SMALL_STATE(2334)] = 94041, + [SMALL_STATE(2335)] = 94072, + [SMALL_STATE(2336)] = 94106, + [SMALL_STATE(2337)] = 94132, + [SMALL_STATE(2338)] = 94158, + [SMALL_STATE(2339)] = 94184, + [SMALL_STATE(2340)] = 94210, + [SMALL_STATE(2341)] = 94236, + [SMALL_STATE(2342)] = 94270, + [SMALL_STATE(2343)] = 94296, + [SMALL_STATE(2344)] = 94322, + [SMALL_STATE(2345)] = 94348, + [SMALL_STATE(2346)] = 94374, + [SMALL_STATE(2347)] = 94400, + [SMALL_STATE(2348)] = 94434, + [SMALL_STATE(2349)] = 94460, + [SMALL_STATE(2350)] = 94486, + [SMALL_STATE(2351)] = 94512, + [SMALL_STATE(2352)] = 94538, + [SMALL_STATE(2353)] = 94594, + [SMALL_STATE(2354)] = 94620, + [SMALL_STATE(2355)] = 94646, + [SMALL_STATE(2356)] = 94672, + [SMALL_STATE(2357)] = 94698, + [SMALL_STATE(2358)] = 94724, + [SMALL_STATE(2359)] = 94750, + [SMALL_STATE(2360)] = 94782, + [SMALL_STATE(2361)] = 94808, + [SMALL_STATE(2362)] = 94834, + [SMALL_STATE(2363)] = 94868, + [SMALL_STATE(2364)] = 94894, + [SMALL_STATE(2365)] = 94920, + [SMALL_STATE(2366)] = 94946, + [SMALL_STATE(2367)] = 94972, + [SMALL_STATE(2368)] = 94998, + [SMALL_STATE(2369)] = 95024, + [SMALL_STATE(2370)] = 95050, + [SMALL_STATE(2371)] = 95076, + [SMALL_STATE(2372)] = 95102, + [SMALL_STATE(2373)] = 95128, + [SMALL_STATE(2374)] = 95154, + [SMALL_STATE(2375)] = 95180, + [SMALL_STATE(2376)] = 95206, + [SMALL_STATE(2377)] = 95262, + [SMALL_STATE(2378)] = 95288, + [SMALL_STATE(2379)] = 95314, + [SMALL_STATE(2380)] = 95341, + [SMALL_STATE(2381)] = 95368, + [SMALL_STATE(2382)] = 95393, + [SMALL_STATE(2383)] = 95422, + [SMALL_STATE(2384)] = 95451, + [SMALL_STATE(2385)] = 95476, + [SMALL_STATE(2386)] = 95501, + [SMALL_STATE(2387)] = 95525, + [SMALL_STATE(2388)] = 95549, + [SMALL_STATE(2389)] = 95573, + [SMALL_STATE(2390)] = 95596, + [SMALL_STATE(2391)] = 95619, + [SMALL_STATE(2392)] = 95640, + [SMALL_STATE(2393)] = 95667, + [SMALL_STATE(2394)] = 95688, + [SMALL_STATE(2395)] = 95711, + [SMALL_STATE(2396)] = 95734, + [SMALL_STATE(2397)] = 95757, + [SMALL_STATE(2398)] = 95780, + [SMALL_STATE(2399)] = 95801, + [SMALL_STATE(2400)] = 95824, + [SMALL_STATE(2401)] = 95849, + [SMALL_STATE(2402)] = 95872, + [SMALL_STATE(2403)] = 95893, + [SMALL_STATE(2404)] = 95914, + [SMALL_STATE(2405)] = 95935, + [SMALL_STATE(2406)] = 95958, + [SMALL_STATE(2407)] = 95983, + [SMALL_STATE(2408)] = 96006, + [SMALL_STATE(2409)] = 96027, + [SMALL_STATE(2410)] = 96050, + [SMALL_STATE(2411)] = 96073, + [SMALL_STATE(2412)] = 96096, + [SMALL_STATE(2413)] = 96119, + [SMALL_STATE(2414)] = 96144, + [SMALL_STATE(2415)] = 96175, + [SMALL_STATE(2416)] = 96206, + [SMALL_STATE(2417)] = 96237, + [SMALL_STATE(2418)] = 96260, + [SMALL_STATE(2419)] = 96283, + [SMALL_STATE(2420)] = 96308, + [SMALL_STATE(2421)] = 96329, + [SMALL_STATE(2422)] = 96352, + [SMALL_STATE(2423)] = 96375, + [SMALL_STATE(2424)] = 96406, + [SMALL_STATE(2425)] = 96429, + [SMALL_STATE(2426)] = 96452, + [SMALL_STATE(2427)] = 96475, + [SMALL_STATE(2428)] = 96498, + [SMALL_STATE(2429)] = 96521, + [SMALL_STATE(2430)] = 96544, + [SMALL_STATE(2431)] = 96567, + [SMALL_STATE(2432)] = 96590, + [SMALL_STATE(2433)] = 96612, + [SMALL_STATE(2434)] = 96642, + [SMALL_STATE(2435)] = 96672, + [SMALL_STATE(2436)] = 96702, + [SMALL_STATE(2437)] = 96730, + [SMALL_STATE(2438)] = 96764, + [SMALL_STATE(2439)] = 96794, + [SMALL_STATE(2440)] = 96824, + [SMALL_STATE(2441)] = 96854, + [SMALL_STATE(2442)] = 96884, + [SMALL_STATE(2443)] = 96914, + [SMALL_STATE(2444)] = 96944, + [SMALL_STATE(2445)] = 96986, + [SMALL_STATE(2446)] = 97008, + [SMALL_STATE(2447)] = 97038, + [SMALL_STATE(2448)] = 97066, + [SMALL_STATE(2449)] = 97088, + [SMALL_STATE(2450)] = 97132, + [SMALL_STATE(2451)] = 97174, + [SMALL_STATE(2452)] = 97204, + [SMALL_STATE(2453)] = 97228, + [SMALL_STATE(2454)] = 97258, + [SMALL_STATE(2455)] = 97280, + [SMALL_STATE(2456)] = 97302, + [SMALL_STATE(2457)] = 97324, + [SMALL_STATE(2458)] = 97352, + [SMALL_STATE(2459)] = 97376, + [SMALL_STATE(2460)] = 97398, + [SMALL_STATE(2461)] = 97420, + [SMALL_STATE(2462)] = 97442, + [SMALL_STATE(2463)] = 97464, + [SMALL_STATE(2464)] = 97506, + [SMALL_STATE(2465)] = 97528, + [SMALL_STATE(2466)] = 97554, + [SMALL_STATE(2467)] = 97596, + [SMALL_STATE(2468)] = 97626, + [SMALL_STATE(2469)] = 97648, + [SMALL_STATE(2470)] = 97690, + [SMALL_STATE(2471)] = 97712, + [SMALL_STATE(2472)] = 97734, + [SMALL_STATE(2473)] = 97756, + [SMALL_STATE(2474)] = 97798, + [SMALL_STATE(2475)] = 97820, + [SMALL_STATE(2476)] = 97842, + [SMALL_STATE(2477)] = 97870, + [SMALL_STATE(2478)] = 97898, + [SMALL_STATE(2479)] = 97920, + [SMALL_STATE(2480)] = 97948, + [SMALL_STATE(2481)] = 97970, + [SMALL_STATE(2482)] = 97992, + [SMALL_STATE(2483)] = 98014, + [SMALL_STATE(2484)] = 98036, + [SMALL_STATE(2485)] = 98058, + [SMALL_STATE(2486)] = 98080, + [SMALL_STATE(2487)] = 98102, + [SMALL_STATE(2488)] = 98124, + [SMALL_STATE(2489)] = 98146, + [SMALL_STATE(2490)] = 98168, + [SMALL_STATE(2491)] = 98190, + [SMALL_STATE(2492)] = 98212, + [SMALL_STATE(2493)] = 98234, + [SMALL_STATE(2494)] = 98262, + [SMALL_STATE(2495)] = 98284, + [SMALL_STATE(2496)] = 98306, + [SMALL_STATE(2497)] = 98328, + [SMALL_STATE(2498)] = 98370, + [SMALL_STATE(2499)] = 98398, + [SMALL_STATE(2500)] = 98428, + [SMALL_STATE(2501)] = 98456, + [SMALL_STATE(2502)] = 98484, + [SMALL_STATE(2503)] = 98512, + [SMALL_STATE(2504)] = 98542, + [SMALL_STATE(2505)] = 98563, + [SMALL_STATE(2506)] = 98588, + [SMALL_STATE(2507)] = 98629, + [SMALL_STATE(2508)] = 98654, + [SMALL_STATE(2509)] = 98695, + [SMALL_STATE(2510)] = 98730, + [SMALL_STATE(2511)] = 98765, + [SMALL_STATE(2512)] = 98800, + [SMALL_STATE(2513)] = 98835, + [SMALL_STATE(2514)] = 98870, + [SMALL_STATE(2515)] = 98891, + [SMALL_STATE(2516)] = 98926, + [SMALL_STATE(2517)] = 98953, + [SMALL_STATE(2518)] = 98980, + [SMALL_STATE(2519)] = 99015, + [SMALL_STATE(2520)] = 99038, + [SMALL_STATE(2521)] = 99061, + [SMALL_STATE(2522)] = 99096, + [SMALL_STATE(2523)] = 99117, + [SMALL_STATE(2524)] = 99138, + [SMALL_STATE(2525)] = 99159, + [SMALL_STATE(2526)] = 99186, + [SMALL_STATE(2527)] = 99211, + [SMALL_STATE(2528)] = 99246, + [SMALL_STATE(2529)] = 99273, + [SMALL_STATE(2530)] = 99294, + [SMALL_STATE(2531)] = 99319, + [SMALL_STATE(2532)] = 99354, + [SMALL_STATE(2533)] = 99379, + [SMALL_STATE(2534)] = 99399, + [SMALL_STATE(2535)] = 99417, + [SMALL_STATE(2536)] = 99447, + [SMALL_STATE(2537)] = 99479, + [SMALL_STATE(2538)] = 99497, + [SMALL_STATE(2539)] = 99515, + [SMALL_STATE(2540)] = 99553, + [SMALL_STATE(2541)] = 99585, + [SMALL_STATE(2542)] = 99617, + [SMALL_STATE(2543)] = 99647, + [SMALL_STATE(2544)] = 99665, + [SMALL_STATE(2545)] = 99697, + [SMALL_STATE(2546)] = 99733, + [SMALL_STATE(2547)] = 99763, + [SMALL_STATE(2548)] = 99783, + [SMALL_STATE(2549)] = 99821, + [SMALL_STATE(2550)] = 99857, + [SMALL_STATE(2551)] = 99881, + [SMALL_STATE(2552)] = 99917, + [SMALL_STATE(2553)] = 99935, + [SMALL_STATE(2554)] = 99965, + [SMALL_STATE(2555)] = 99995, + [SMALL_STATE(2556)] = 100027, + [SMALL_STATE(2557)] = 100063, + [SMALL_STATE(2558)] = 100093, + [SMALL_STATE(2559)] = 100111, + [SMALL_STATE(2560)] = 100143, + [SMALL_STATE(2561)] = 100175, + [SMALL_STATE(2562)] = 100205, + [SMALL_STATE(2563)] = 100235, + [SMALL_STATE(2564)] = 100253, + [SMALL_STATE(2565)] = 100271, + [SMALL_STATE(2566)] = 100303, + [SMALL_STATE(2567)] = 100333, + [SMALL_STATE(2568)] = 100351, + [SMALL_STATE(2569)] = 100369, + [SMALL_STATE(2570)] = 100399, + [SMALL_STATE(2571)] = 100429, + [SMALL_STATE(2572)] = 100447, + [SMALL_STATE(2573)] = 100477, + [SMALL_STATE(2574)] = 100495, + [SMALL_STATE(2575)] = 100513, + [SMALL_STATE(2576)] = 100551, + [SMALL_STATE(2577)] = 100569, + [SMALL_STATE(2578)] = 100587, + [SMALL_STATE(2579)] = 100605, + [SMALL_STATE(2580)] = 100641, + [SMALL_STATE(2581)] = 100659, + [SMALL_STATE(2582)] = 100697, + [SMALL_STATE(2583)] = 100715, + [SMALL_STATE(2584)] = 100733, + [SMALL_STATE(2585)] = 100765, + [SMALL_STATE(2586)] = 100783, + [SMALL_STATE(2587)] = 100815, + [SMALL_STATE(2588)] = 100833, + [SMALL_STATE(2589)] = 100851, + [SMALL_STATE(2590)] = 100873, + [SMALL_STATE(2591)] = 100895, + [SMALL_STATE(2592)] = 100913, + [SMALL_STATE(2593)] = 100931, + [SMALL_STATE(2594)] = 100949, + [SMALL_STATE(2595)] = 100979, + [SMALL_STATE(2596)] = 100997, + [SMALL_STATE(2597)] = 101015, + [SMALL_STATE(2598)] = 101033, + [SMALL_STATE(2599)] = 101051, + [SMALL_STATE(2600)] = 101087, + [SMALL_STATE(2601)] = 101125, + [SMALL_STATE(2602)] = 101145, + [SMALL_STATE(2603)] = 101163, + [SMALL_STATE(2604)] = 101181, + [SMALL_STATE(2605)] = 101199, + [SMALL_STATE(2606)] = 101235, + [SMALL_STATE(2607)] = 101265, + [SMALL_STATE(2608)] = 101283, + [SMALL_STATE(2609)] = 101301, + [SMALL_STATE(2610)] = 101320, + [SMALL_STATE(2611)] = 101339, + [SMALL_STATE(2612)] = 101358, + [SMALL_STATE(2613)] = 101377, + [SMALL_STATE(2614)] = 101396, + [SMALL_STATE(2615)] = 101417, + [SMALL_STATE(2616)] = 101436, + [SMALL_STATE(2617)] = 101457, + [SMALL_STATE(2618)] = 101476, + [SMALL_STATE(2619)] = 101495, + [SMALL_STATE(2620)] = 101514, + [SMALL_STATE(2621)] = 101535, + [SMALL_STATE(2622)] = 101554, + [SMALL_STATE(2623)] = 101573, + [SMALL_STATE(2624)] = 101592, + [SMALL_STATE(2625)] = 101611, + [SMALL_STATE(2626)] = 101634, + [SMALL_STATE(2627)] = 101657, + [SMALL_STATE(2628)] = 101676, + [SMALL_STATE(2629)] = 101697, + [SMALL_STATE(2630)] = 101716, + [SMALL_STATE(2631)] = 101735, + [SMALL_STATE(2632)] = 101754, + [SMALL_STATE(2633)] = 101773, + [SMALL_STATE(2634)] = 101794, + [SMALL_STATE(2635)] = 101811, + [SMALL_STATE(2636)] = 101830, + [SMALL_STATE(2637)] = 101849, + [SMALL_STATE(2638)] = 101866, + [SMALL_STATE(2639)] = 101883, + [SMALL_STATE(2640)] = 101902, + [SMALL_STATE(2641)] = 101921, + [SMALL_STATE(2642)] = 101942, + [SMALL_STATE(2643)] = 101961, + [SMALL_STATE(2644)] = 101980, + [SMALL_STATE(2645)] = 101997, + [SMALL_STATE(2646)] = 102032, + [SMALL_STATE(2647)] = 102051, + [SMALL_STATE(2648)] = 102070, + [SMALL_STATE(2649)] = 102089, + [SMALL_STATE(2650)] = 102108, + [SMALL_STATE(2651)] = 102127, + [SMALL_STATE(2652)] = 102150, + [SMALL_STATE(2653)] = 102173, + [SMALL_STATE(2654)] = 102192, + [SMALL_STATE(2655)] = 102209, + [SMALL_STATE(2656)] = 102230, + [SMALL_STATE(2657)] = 102253, + [SMALL_STATE(2658)] = 102276, + [SMALL_STATE(2659)] = 102295, + [SMALL_STATE(2660)] = 102314, + [SMALL_STATE(2661)] = 102333, + [SMALL_STATE(2662)] = 102354, + [SMALL_STATE(2663)] = 102373, + [SMALL_STATE(2664)] = 102392, + [SMALL_STATE(2665)] = 102411, + [SMALL_STATE(2666)] = 102428, + [SMALL_STATE(2667)] = 102455, + [SMALL_STATE(2668)] = 102476, + [SMALL_STATE(2669)] = 102510, + [SMALL_STATE(2670)] = 102534, + [SMALL_STATE(2671)] = 102564, + [SMALL_STATE(2672)] = 102598, + [SMALL_STATE(2673)] = 102616, + [SMALL_STATE(2674)] = 102640, + [SMALL_STATE(2675)] = 102674, + [SMALL_STATE(2676)] = 102696, + [SMALL_STATE(2677)] = 102730, + [SMALL_STATE(2678)] = 102748, + [SMALL_STATE(2679)] = 102764, + [SMALL_STATE(2680)] = 102798, + [SMALL_STATE(2681)] = 102822, + [SMALL_STATE(2682)] = 102854, + [SMALL_STATE(2683)] = 102886, + [SMALL_STATE(2684)] = 102918, + [SMALL_STATE(2685)] = 102948, + [SMALL_STATE(2686)] = 102982, + [SMALL_STATE(2687)] = 103010, + [SMALL_STATE(2688)] = 103042, + [SMALL_STATE(2689)] = 103076, + [SMALL_STATE(2690)] = 103108, + [SMALL_STATE(2691)] = 103142, + [SMALL_STATE(2692)] = 103176, + [SMALL_STATE(2693)] = 103198, + [SMALL_STATE(2694)] = 103218, + [SMALL_STATE(2695)] = 103238, + [SMALL_STATE(2696)] = 103266, + [SMALL_STATE(2697)] = 103298, + [SMALL_STATE(2698)] = 103332, + [SMALL_STATE(2699)] = 103356, + [SMALL_STATE(2700)] = 103390, + [SMALL_STATE(2701)] = 103421, + [SMALL_STATE(2702)] = 103448, + [SMALL_STATE(2703)] = 103473, + [SMALL_STATE(2704)] = 103502, + [SMALL_STATE(2705)] = 103531, + [SMALL_STATE(2706)] = 103556, + [SMALL_STATE(2707)] = 103585, + [SMALL_STATE(2708)] = 103612, + [SMALL_STATE(2709)] = 103639, + [SMALL_STATE(2710)] = 103658, + [SMALL_STATE(2711)] = 103689, + [SMALL_STATE(2712)] = 103704, + [SMALL_STATE(2713)] = 103723, + [SMALL_STATE(2714)] = 103750, + [SMALL_STATE(2715)] = 103777, + [SMALL_STATE(2716)] = 103808, + [SMALL_STATE(2717)] = 103839, + [SMALL_STATE(2718)] = 103854, + [SMALL_STATE(2719)] = 103875, + [SMALL_STATE(2720)] = 103904, + [SMALL_STATE(2721)] = 103933, + [SMALL_STATE(2722)] = 103962, + [SMALL_STATE(2723)] = 103991, + [SMALL_STATE(2724)] = 104016, + [SMALL_STATE(2725)] = 104031, + [SMALL_STATE(2726)] = 104060, + [SMALL_STATE(2727)] = 104091, + [SMALL_STATE(2728)] = 104120, + [SMALL_STATE(2729)] = 104135, + [SMALL_STATE(2730)] = 104160, + [SMALL_STATE(2731)] = 104175, + [SMALL_STATE(2732)] = 104206, + [SMALL_STATE(2733)] = 104235, + [SMALL_STATE(2734)] = 104266, + [SMALL_STATE(2735)] = 104281, + [SMALL_STATE(2736)] = 104298, + [SMALL_STATE(2737)] = 104313, + [SMALL_STATE(2738)] = 104328, + [SMALL_STATE(2739)] = 104357, + [SMALL_STATE(2740)] = 104378, + [SMALL_STATE(2741)] = 104409, + [SMALL_STATE(2742)] = 104440, + [SMALL_STATE(2743)] = 104471, + [SMALL_STATE(2744)] = 104500, + [SMALL_STATE(2745)] = 104523, + [SMALL_STATE(2746)] = 104554, + [SMALL_STATE(2747)] = 104579, + [SMALL_STATE(2748)] = 104594, + [SMALL_STATE(2749)] = 104609, + [SMALL_STATE(2750)] = 104638, + [SMALL_STATE(2751)] = 104653, + [SMALL_STATE(2752)] = 104682, + [SMALL_STATE(2753)] = 104711, + [SMALL_STATE(2754)] = 104726, + [SMALL_STATE(2755)] = 104755, + [SMALL_STATE(2756)] = 104770, + [SMALL_STATE(2757)] = 104789, + [SMALL_STATE(2758)] = 104820, + [SMALL_STATE(2759)] = 104835, + [SMALL_STATE(2760)] = 104850, + [SMALL_STATE(2761)] = 104867, + [SMALL_STATE(2762)] = 104882, + [SMALL_STATE(2763)] = 104897, + [SMALL_STATE(2764)] = 104928, + [SMALL_STATE(2765)] = 104949, + [SMALL_STATE(2766)] = 104968, + [SMALL_STATE(2767)] = 104983, + [SMALL_STATE(2768)] = 105000, + [SMALL_STATE(2769)] = 105029, + [SMALL_STATE(2770)] = 105044, + [SMALL_STATE(2771)] = 105059, + [SMALL_STATE(2772)] = 105088, + [SMALL_STATE(2773)] = 105103, + [SMALL_STATE(2774)] = 105132, + [SMALL_STATE(2775)] = 105157, + [SMALL_STATE(2776)] = 105182, + [SMALL_STATE(2777)] = 105213, + [SMALL_STATE(2778)] = 105244, + [SMALL_STATE(2779)] = 105259, + [SMALL_STATE(2780)] = 105274, + [SMALL_STATE(2781)] = 105301, + [SMALL_STATE(2782)] = 105328, + [SMALL_STATE(2783)] = 105357, + [SMALL_STATE(2784)] = 105372, + [SMALL_STATE(2785)] = 105387, + [SMALL_STATE(2786)] = 105416, + [SMALL_STATE(2787)] = 105431, + [SMALL_STATE(2788)] = 105452, + [SMALL_STATE(2789)] = 105467, + [SMALL_STATE(2790)] = 105482, + [SMALL_STATE(2791)] = 105499, + [SMALL_STATE(2792)] = 105514, + [SMALL_STATE(2793)] = 105529, + [SMALL_STATE(2794)] = 105558, + [SMALL_STATE(2795)] = 105573, + [SMALL_STATE(2796)] = 105604, + [SMALL_STATE(2797)] = 105629, + [SMALL_STATE(2798)] = 105644, + [SMALL_STATE(2799)] = 105673, + [SMALL_STATE(2800)] = 105704, + [SMALL_STATE(2801)] = 105719, + [SMALL_STATE(2802)] = 105734, + [SMALL_STATE(2803)] = 105761, + [SMALL_STATE(2804)] = 105790, + [SMALL_STATE(2805)] = 105817, + [SMALL_STATE(2806)] = 105846, + [SMALL_STATE(2807)] = 105875, + [SMALL_STATE(2808)] = 105904, + [SMALL_STATE(2809)] = 105933, + [SMALL_STATE(2810)] = 105962, + [SMALL_STATE(2811)] = 105993, + [SMALL_STATE(2812)] = 106020, + [SMALL_STATE(2813)] = 106035, + [SMALL_STATE(2814)] = 106050, + [SMALL_STATE(2815)] = 106075, + [SMALL_STATE(2816)] = 106090, + [SMALL_STATE(2817)] = 106105, + [SMALL_STATE(2818)] = 106126, + [SMALL_STATE(2819)] = 106141, + [SMALL_STATE(2820)] = 106156, + [SMALL_STATE(2821)] = 106171, + [SMALL_STATE(2822)] = 106202, + [SMALL_STATE(2823)] = 106222, + [SMALL_STATE(2824)] = 106246, + [SMALL_STATE(2825)] = 106260, + [SMALL_STATE(2826)] = 106284, + [SMALL_STATE(2827)] = 106298, + [SMALL_STATE(2828)] = 106312, + [SMALL_STATE(2829)] = 106336, + [SMALL_STATE(2830)] = 106360, + [SMALL_STATE(2831)] = 106380, + [SMALL_STATE(2832)] = 106400, + [SMALL_STATE(2833)] = 106424, + [SMALL_STATE(2834)] = 106448, + [SMALL_STATE(2835)] = 106472, + [SMALL_STATE(2836)] = 106496, + [SMALL_STATE(2837)] = 106520, + [SMALL_STATE(2838)] = 106544, + [SMALL_STATE(2839)] = 106568, + [SMALL_STATE(2840)] = 106588, + [SMALL_STATE(2841)] = 106612, + [SMALL_STATE(2842)] = 106632, + [SMALL_STATE(2843)] = 106656, + [SMALL_STATE(2844)] = 106673, + [SMALL_STATE(2845)] = 106690, + [SMALL_STATE(2846)] = 106711, + [SMALL_STATE(2847)] = 106728, + [SMALL_STATE(2848)] = 106749, + [SMALL_STATE(2849)] = 106774, + [SMALL_STATE(2850)] = 106793, + [SMALL_STATE(2851)] = 106810, + [SMALL_STATE(2852)] = 106827, + [SMALL_STATE(2853)] = 106852, + [SMALL_STATE(2854)] = 106867, + [SMALL_STATE(2855)] = 106888, + [SMALL_STATE(2856)] = 106909, + [SMALL_STATE(2857)] = 106934, + [SMALL_STATE(2858)] = 106951, + [SMALL_STATE(2859)] = 106976, + [SMALL_STATE(2860)] = 106997, + [SMALL_STATE(2861)] = 107022, + [SMALL_STATE(2862)] = 107047, + [SMALL_STATE(2863)] = 107062, + [SMALL_STATE(2864)] = 107087, + [SMALL_STATE(2865)] = 107112, + [SMALL_STATE(2866)] = 107127, + [SMALL_STATE(2867)] = 107142, + [SMALL_STATE(2868)] = 107167, + [SMALL_STATE(2869)] = 107180, + [SMALL_STATE(2870)] = 107193, + [SMALL_STATE(2871)] = 107206, + [SMALL_STATE(2872)] = 107221, + [SMALL_STATE(2873)] = 107246, + [SMALL_STATE(2874)] = 107261, + [SMALL_STATE(2875)] = 107282, + [SMALL_STATE(2876)] = 107307, + [SMALL_STATE(2877)] = 107322, + [SMALL_STATE(2878)] = 107339, + [SMALL_STATE(2879)] = 107364, + [SMALL_STATE(2880)] = 107389, + [SMALL_STATE(2881)] = 107410, + [SMALL_STATE(2882)] = 107431, + [SMALL_STATE(2883)] = 107444, + [SMALL_STATE(2884)] = 107469, + [SMALL_STATE(2885)] = 107482, + [SMALL_STATE(2886)] = 107507, + [SMALL_STATE(2887)] = 107532, + [SMALL_STATE(2888)] = 107557, + [SMALL_STATE(2889)] = 107582, + [SMALL_STATE(2890)] = 107607, + [SMALL_STATE(2891)] = 107632, + [SMALL_STATE(2892)] = 107645, + [SMALL_STATE(2893)] = 107670, + [SMALL_STATE(2894)] = 107695, + [SMALL_STATE(2895)] = 107716, + [SMALL_STATE(2896)] = 107729, + [SMALL_STATE(2897)] = 107748, + [SMALL_STATE(2898)] = 107765, + [SMALL_STATE(2899)] = 107790, + [SMALL_STATE(2900)] = 107807, + [SMALL_STATE(2901)] = 107824, + [SMALL_STATE(2902)] = 107841, + [SMALL_STATE(2903)] = 107858, + [SMALL_STATE(2904)] = 107883, + [SMALL_STATE(2905)] = 107900, + [SMALL_STATE(2906)] = 107921, + [SMALL_STATE(2907)] = 107938, + [SMALL_STATE(2908)] = 107963, + [SMALL_STATE(2909)] = 107980, + [SMALL_STATE(2910)] = 108005, + [SMALL_STATE(2911)] = 108030, + [SMALL_STATE(2912)] = 108047, + [SMALL_STATE(2913)] = 108068, + [SMALL_STATE(2914)] = 108089, + [SMALL_STATE(2915)] = 108114, + [SMALL_STATE(2916)] = 108131, + [SMALL_STATE(2917)] = 108152, + [SMALL_STATE(2918)] = 108165, + [SMALL_STATE(2919)] = 108178, + [SMALL_STATE(2920)] = 108203, + [SMALL_STATE(2921)] = 108226, + [SMALL_STATE(2922)] = 108241, + [SMALL_STATE(2923)] = 108258, + [SMALL_STATE(2924)] = 108283, + [SMALL_STATE(2925)] = 108298, + [SMALL_STATE(2926)] = 108315, + [SMALL_STATE(2927)] = 108332, + [SMALL_STATE(2928)] = 108349, + [SMALL_STATE(2929)] = 108362, + [SMALL_STATE(2930)] = 108375, + [SMALL_STATE(2931)] = 108400, + [SMALL_STATE(2932)] = 108419, + [SMALL_STATE(2933)] = 108434, + [SMALL_STATE(2934)] = 108449, + [SMALL_STATE(2935)] = 108462, + [SMALL_STATE(2936)] = 108483, + [SMALL_STATE(2937)] = 108504, + [SMALL_STATE(2938)] = 108517, + [SMALL_STATE(2939)] = 108542, + [SMALL_STATE(2940)] = 108559, + [SMALL_STATE(2941)] = 108576, + [SMALL_STATE(2942)] = 108593, + [SMALL_STATE(2943)] = 108618, + [SMALL_STATE(2944)] = 108643, + [SMALL_STATE(2945)] = 108668, + [SMALL_STATE(2946)] = 108693, + [SMALL_STATE(2947)] = 108706, + [SMALL_STATE(2948)] = 108731, + [SMALL_STATE(2949)] = 108748, + [SMALL_STATE(2950)] = 108773, + [SMALL_STATE(2951)] = 108798, + [SMALL_STATE(2952)] = 108823, + [SMALL_STATE(2953)] = 108846, + [SMALL_STATE(2954)] = 108859, + [SMALL_STATE(2955)] = 108874, + [SMALL_STATE(2956)] = 108895, + [SMALL_STATE(2957)] = 108916, + [SMALL_STATE(2958)] = 108941, + [SMALL_STATE(2959)] = 108966, + [SMALL_STATE(2960)] = 108991, + [SMALL_STATE(2961)] = 109008, + [SMALL_STATE(2962)] = 109025, + [SMALL_STATE(2963)] = 109047, + [SMALL_STATE(2964)] = 109069, + [SMALL_STATE(2965)] = 109085, + [SMALL_STATE(2966)] = 109101, + [SMALL_STATE(2967)] = 109123, + [SMALL_STATE(2968)] = 109139, + [SMALL_STATE(2969)] = 109155, + [SMALL_STATE(2970)] = 109171, + [SMALL_STATE(2971)] = 109189, + [SMALL_STATE(2972)] = 109211, + [SMALL_STATE(2973)] = 109233, + [SMALL_STATE(2974)] = 109255, + [SMALL_STATE(2975)] = 109267, + [SMALL_STATE(2976)] = 109283, + [SMALL_STATE(2977)] = 109299, + [SMALL_STATE(2978)] = 109321, + [SMALL_STATE(2979)] = 109337, + [SMALL_STATE(2980)] = 109359, + [SMALL_STATE(2981)] = 109375, + [SMALL_STATE(2982)] = 109397, + [SMALL_STATE(2983)] = 109413, + [SMALL_STATE(2984)] = 109429, + [SMALL_STATE(2985)] = 109445, + [SMALL_STATE(2986)] = 109467, + [SMALL_STATE(2987)] = 109483, + [SMALL_STATE(2988)] = 109499, + [SMALL_STATE(2989)] = 109521, + [SMALL_STATE(2990)] = 109543, + [SMALL_STATE(2991)] = 109559, + [SMALL_STATE(2992)] = 109573, + [SMALL_STATE(2993)] = 109589, + [SMALL_STATE(2994)] = 109605, + [SMALL_STATE(2995)] = 109621, + [SMALL_STATE(2996)] = 109641, + [SMALL_STATE(2997)] = 109663, + [SMALL_STATE(2998)] = 109681, + [SMALL_STATE(2999)] = 109697, + [SMALL_STATE(3000)] = 109719, + [SMALL_STATE(3001)] = 109735, + [SMALL_STATE(3002)] = 109751, + [SMALL_STATE(3003)] = 109773, + [SMALL_STATE(3004)] = 109789, + [SMALL_STATE(3005)] = 109805, + [SMALL_STATE(3006)] = 109821, + [SMALL_STATE(3007)] = 109843, + [SMALL_STATE(3008)] = 109859, + [SMALL_STATE(3009)] = 109881, + [SMALL_STATE(3010)] = 109903, + [SMALL_STATE(3011)] = 109921, + [SMALL_STATE(3012)] = 109943, + [SMALL_STATE(3013)] = 109961, + [SMALL_STATE(3014)] = 109977, + [SMALL_STATE(3015)] = 109999, + [SMALL_STATE(3016)] = 110015, + [SMALL_STATE(3017)] = 110037, + [SMALL_STATE(3018)] = 110059, + [SMALL_STATE(3019)] = 110071, + [SMALL_STATE(3020)] = 110089, + [SMALL_STATE(3021)] = 110107, + [SMALL_STATE(3022)] = 110125, + [SMALL_STATE(3023)] = 110143, + [SMALL_STATE(3024)] = 110161, + [SMALL_STATE(3025)] = 110177, + [SMALL_STATE(3026)] = 110195, + [SMALL_STATE(3027)] = 110217, + [SMALL_STATE(3028)] = 110239, + [SMALL_STATE(3029)] = 110255, + [SMALL_STATE(3030)] = 110267, + [SMALL_STATE(3031)] = 110289, + [SMALL_STATE(3032)] = 110301, + [SMALL_STATE(3033)] = 110317, + [SMALL_STATE(3034)] = 110331, + [SMALL_STATE(3035)] = 110349, + [SMALL_STATE(3036)] = 110365, + [SMALL_STATE(3037)] = 110387, + [SMALL_STATE(3038)] = 110409, + [SMALL_STATE(3039)] = 110431, + [SMALL_STATE(3040)] = 110443, + [SMALL_STATE(3041)] = 110465, + [SMALL_STATE(3042)] = 110481, + [SMALL_STATE(3043)] = 110497, + [SMALL_STATE(3044)] = 110515, + [SMALL_STATE(3045)] = 110537, + [SMALL_STATE(3046)] = 110553, + [SMALL_STATE(3047)] = 110567, + [SMALL_STATE(3048)] = 110585, + [SMALL_STATE(3049)] = 110603, + [SMALL_STATE(3050)] = 110619, + [SMALL_STATE(3051)] = 110641, + [SMALL_STATE(3052)] = 110657, + [SMALL_STATE(3053)] = 110679, + [SMALL_STATE(3054)] = 110695, + [SMALL_STATE(3055)] = 110717, + [SMALL_STATE(3056)] = 110739, + [SMALL_STATE(3057)] = 110759, + [SMALL_STATE(3058)] = 110775, + [SMALL_STATE(3059)] = 110791, + [SMALL_STATE(3060)] = 110803, + [SMALL_STATE(3061)] = 110825, + [SMALL_STATE(3062)] = 110847, + [SMALL_STATE(3063)] = 110865, + [SMALL_STATE(3064)] = 110883, + [SMALL_STATE(3065)] = 110895, + [SMALL_STATE(3066)] = 110913, + [SMALL_STATE(3067)] = 110931, + [SMALL_STATE(3068)] = 110949, + [SMALL_STATE(3069)] = 110963, + [SMALL_STATE(3070)] = 110975, + [SMALL_STATE(3071)] = 110997, + [SMALL_STATE(3072)] = 111013, + [SMALL_STATE(3073)] = 111035, + [SMALL_STATE(3074)] = 111057, + [SMALL_STATE(3075)] = 111069, + [SMALL_STATE(3076)] = 111081, + [SMALL_STATE(3077)] = 111099, + [SMALL_STATE(3078)] = 111117, + [SMALL_STATE(3079)] = 111139, + [SMALL_STATE(3080)] = 111157, + [SMALL_STATE(3081)] = 111175, + [SMALL_STATE(3082)] = 111187, + [SMALL_STATE(3083)] = 111203, + [SMALL_STATE(3084)] = 111219, + [SMALL_STATE(3085)] = 111235, + [SMALL_STATE(3086)] = 111249, + [SMALL_STATE(3087)] = 111267, + [SMALL_STATE(3088)] = 111289, + [SMALL_STATE(3089)] = 111305, + [SMALL_STATE(3090)] = 111321, + [SMALL_STATE(3091)] = 111343, + [SMALL_STATE(3092)] = 111365, + [SMALL_STATE(3093)] = 111377, + [SMALL_STATE(3094)] = 111399, + [SMALL_STATE(3095)] = 111417, + [SMALL_STATE(3096)] = 111433, + [SMALL_STATE(3097)] = 111455, + [SMALL_STATE(3098)] = 111471, + [SMALL_STATE(3099)] = 111489, + [SMALL_STATE(3100)] = 111511, + [SMALL_STATE(3101)] = 111533, + [SMALL_STATE(3102)] = 111555, + [SMALL_STATE(3103)] = 111577, + [SMALL_STATE(3104)] = 111599, + [SMALL_STATE(3105)] = 111621, + [SMALL_STATE(3106)] = 111643, + [SMALL_STATE(3107)] = 111659, + [SMALL_STATE(3108)] = 111671, + [SMALL_STATE(3109)] = 111693, + [SMALL_STATE(3110)] = 111709, + [SMALL_STATE(3111)] = 111731, + [SMALL_STATE(3112)] = 111753, + [SMALL_STATE(3113)] = 111771, + [SMALL_STATE(3114)] = 111787, + [SMALL_STATE(3115)] = 111809, + [SMALL_STATE(3116)] = 111831, + [SMALL_STATE(3117)] = 111853, + [SMALL_STATE(3118)] = 111873, + [SMALL_STATE(3119)] = 111889, + [SMALL_STATE(3120)] = 111911, + [SMALL_STATE(3121)] = 111927, + [SMALL_STATE(3122)] = 111938, + [SMALL_STATE(3123)] = 111953, + [SMALL_STATE(3124)] = 111968, + [SMALL_STATE(3125)] = 111979, + [SMALL_STATE(3126)] = 111990, + [SMALL_STATE(3127)] = 112009, + [SMALL_STATE(3128)] = 112020, + [SMALL_STATE(3129)] = 112031, + [SMALL_STATE(3130)] = 112042, + [SMALL_STATE(3131)] = 112061, + [SMALL_STATE(3132)] = 112072, + [SMALL_STATE(3133)] = 112083, + [SMALL_STATE(3134)] = 112102, + [SMALL_STATE(3135)] = 112113, + [SMALL_STATE(3136)] = 112132, + [SMALL_STATE(3137)] = 112143, + [SMALL_STATE(3138)] = 112154, + [SMALL_STATE(3139)] = 112165, + [SMALL_STATE(3140)] = 112184, + [SMALL_STATE(3141)] = 112195, + [SMALL_STATE(3142)] = 112210, + [SMALL_STATE(3143)] = 112229, + [SMALL_STATE(3144)] = 112240, + [SMALL_STATE(3145)] = 112251, + [SMALL_STATE(3146)] = 112270, + [SMALL_STATE(3147)] = 112283, + [SMALL_STATE(3148)] = 112294, + [SMALL_STATE(3149)] = 112309, + [SMALL_STATE(3150)] = 112320, + [SMALL_STATE(3151)] = 112335, + [SMALL_STATE(3152)] = 112346, + [SMALL_STATE(3153)] = 112357, + [SMALL_STATE(3154)] = 112368, + [SMALL_STATE(3155)] = 112379, + [SMALL_STATE(3156)] = 112392, + [SMALL_STATE(3157)] = 112403, + [SMALL_STATE(3158)] = 112414, + [SMALL_STATE(3159)] = 112433, + [SMALL_STATE(3160)] = 112444, + [SMALL_STATE(3161)] = 112461, + [SMALL_STATE(3162)] = 112472, + [SMALL_STATE(3163)] = 112483, + [SMALL_STATE(3164)] = 112502, + [SMALL_STATE(3165)] = 112513, + [SMALL_STATE(3166)] = 112524, + [SMALL_STATE(3167)] = 112535, + [SMALL_STATE(3168)] = 112546, + [SMALL_STATE(3169)] = 112561, + [SMALL_STATE(3170)] = 112572, + [SMALL_STATE(3171)] = 112583, + [SMALL_STATE(3172)] = 112600, + [SMALL_STATE(3173)] = 112617, + [SMALL_STATE(3174)] = 112634, + [SMALL_STATE(3175)] = 112651, + [SMALL_STATE(3176)] = 112662, + [SMALL_STATE(3177)] = 112673, + [SMALL_STATE(3178)] = 112684, + [SMALL_STATE(3179)] = 112695, + [SMALL_STATE(3180)] = 112714, + [SMALL_STATE(3181)] = 112733, + [SMALL_STATE(3182)] = 112752, + [SMALL_STATE(3183)] = 112763, + [SMALL_STATE(3184)] = 112782, + [SMALL_STATE(3185)] = 112801, + [SMALL_STATE(3186)] = 112812, + [SMALL_STATE(3187)] = 112823, + [SMALL_STATE(3188)] = 112834, + [SMALL_STATE(3189)] = 112853, + [SMALL_STATE(3190)] = 112872, + [SMALL_STATE(3191)] = 112891, + [SMALL_STATE(3192)] = 112904, + [SMALL_STATE(3193)] = 112915, + [SMALL_STATE(3194)] = 112930, + [SMALL_STATE(3195)] = 112941, + [SMALL_STATE(3196)] = 112952, + [SMALL_STATE(3197)] = 112967, + [SMALL_STATE(3198)] = 112982, + [SMALL_STATE(3199)] = 112993, + [SMALL_STATE(3200)] = 113004, + [SMALL_STATE(3201)] = 113015, + [SMALL_STATE(3202)] = 113032, + [SMALL_STATE(3203)] = 113051, + [SMALL_STATE(3204)] = 113062, + [SMALL_STATE(3205)] = 113073, + [SMALL_STATE(3206)] = 113084, + [SMALL_STATE(3207)] = 113099, + [SMALL_STATE(3208)] = 113118, + [SMALL_STATE(3209)] = 113137, + [SMALL_STATE(3210)] = 113150, + [SMALL_STATE(3211)] = 113161, + [SMALL_STATE(3212)] = 113172, + [SMALL_STATE(3213)] = 113189, + [SMALL_STATE(3214)] = 113200, + [SMALL_STATE(3215)] = 113211, + [SMALL_STATE(3216)] = 113228, + [SMALL_STATE(3217)] = 113239, + [SMALL_STATE(3218)] = 113250, + [SMALL_STATE(3219)] = 113269, + [SMALL_STATE(3220)] = 113288, + [SMALL_STATE(3221)] = 113299, + [SMALL_STATE(3222)] = 113318, + [SMALL_STATE(3223)] = 113329, + [SMALL_STATE(3224)] = 113348, + [SMALL_STATE(3225)] = 113367, + [SMALL_STATE(3226)] = 113386, + [SMALL_STATE(3227)] = 113403, + [SMALL_STATE(3228)] = 113422, + [SMALL_STATE(3229)] = 113433, + [SMALL_STATE(3230)] = 113448, + [SMALL_STATE(3231)] = 113467, + [SMALL_STATE(3232)] = 113478, + [SMALL_STATE(3233)] = 113497, + [SMALL_STATE(3234)] = 113508, + [SMALL_STATE(3235)] = 113527, + [SMALL_STATE(3236)] = 113546, + [SMALL_STATE(3237)] = 113557, + [SMALL_STATE(3238)] = 113568, + [SMALL_STATE(3239)] = 113579, + [SMALL_STATE(3240)] = 113598, + [SMALL_STATE(3241)] = 113613, + [SMALL_STATE(3242)] = 113630, + [SMALL_STATE(3243)] = 113649, + [SMALL_STATE(3244)] = 113660, + [SMALL_STATE(3245)] = 113675, + [SMALL_STATE(3246)] = 113686, + [SMALL_STATE(3247)] = 113699, + [SMALL_STATE(3248)] = 113710, + [SMALL_STATE(3249)] = 113729, + [SMALL_STATE(3250)] = 113740, + [SMALL_STATE(3251)] = 113751, + [SMALL_STATE(3252)] = 113764, + [SMALL_STATE(3253)] = 113777, + [SMALL_STATE(3254)] = 113788, + [SMALL_STATE(3255)] = 113799, + [SMALL_STATE(3256)] = 113818, + [SMALL_STATE(3257)] = 113837, + [SMALL_STATE(3258)] = 113856, + [SMALL_STATE(3259)] = 113869, + [SMALL_STATE(3260)] = 113888, + [SMALL_STATE(3261)] = 113899, + [SMALL_STATE(3262)] = 113918, + [SMALL_STATE(3263)] = 113929, + [SMALL_STATE(3264)] = 113948, + [SMALL_STATE(3265)] = 113959, + [SMALL_STATE(3266)] = 113976, + [SMALL_STATE(3267)] = 113989, + [SMALL_STATE(3268)] = 114008, + [SMALL_STATE(3269)] = 114019, + [SMALL_STATE(3270)] = 114030, + [SMALL_STATE(3271)] = 114041, + [SMALL_STATE(3272)] = 114052, + [SMALL_STATE(3273)] = 114063, + [SMALL_STATE(3274)] = 114074, + [SMALL_STATE(3275)] = 114085, + [SMALL_STATE(3276)] = 114096, + [SMALL_STATE(3277)] = 114113, + [SMALL_STATE(3278)] = 114124, + [SMALL_STATE(3279)] = 114135, + [SMALL_STATE(3280)] = 114146, + [SMALL_STATE(3281)] = 114159, + [SMALL_STATE(3282)] = 114178, + [SMALL_STATE(3283)] = 114197, + [SMALL_STATE(3284)] = 114208, + [SMALL_STATE(3285)] = 114219, + [SMALL_STATE(3286)] = 114230, + [SMALL_STATE(3287)] = 114245, + [SMALL_STATE(3288)] = 114256, + [SMALL_STATE(3289)] = 114269, + [SMALL_STATE(3290)] = 114280, + [SMALL_STATE(3291)] = 114291, + [SMALL_STATE(3292)] = 114302, + [SMALL_STATE(3293)] = 114313, + [SMALL_STATE(3294)] = 114330, + [SMALL_STATE(3295)] = 114347, + [SMALL_STATE(3296)] = 114366, + [SMALL_STATE(3297)] = 114385, + [SMALL_STATE(3298)] = 114396, + [SMALL_STATE(3299)] = 114407, + [SMALL_STATE(3300)] = 114426, + [SMALL_STATE(3301)] = 114445, + [SMALL_STATE(3302)] = 114462, + [SMALL_STATE(3303)] = 114481, + [SMALL_STATE(3304)] = 114492, + [SMALL_STATE(3305)] = 114503, + [SMALL_STATE(3306)] = 114522, + [SMALL_STATE(3307)] = 114533, + [SMALL_STATE(3308)] = 114544, + [SMALL_STATE(3309)] = 114563, + [SMALL_STATE(3310)] = 114582, + [SMALL_STATE(3311)] = 114597, + [SMALL_STATE(3312)] = 114616, + [SMALL_STATE(3313)] = 114629, + [SMALL_STATE(3314)] = 114640, + [SMALL_STATE(3315)] = 114651, + [SMALL_STATE(3316)] = 114662, + [SMALL_STATE(3317)] = 114673, + [SMALL_STATE(3318)] = 114684, + [SMALL_STATE(3319)] = 114699, + [SMALL_STATE(3320)] = 114716, + [SMALL_STATE(3321)] = 114727, + [SMALL_STATE(3322)] = 114738, + [SMALL_STATE(3323)] = 114749, + [SMALL_STATE(3324)] = 114768, + [SMALL_STATE(3325)] = 114787, + [SMALL_STATE(3326)] = 114798, + [SMALL_STATE(3327)] = 114811, + [SMALL_STATE(3328)] = 114822, + [SMALL_STATE(3329)] = 114833, + [SMALL_STATE(3330)] = 114846, + [SMALL_STATE(3331)] = 114857, + [SMALL_STATE(3332)] = 114868, + [SMALL_STATE(3333)] = 114879, + [SMALL_STATE(3334)] = 114898, + [SMALL_STATE(3335)] = 114909, + [SMALL_STATE(3336)] = 114920, + [SMALL_STATE(3337)] = 114931, + [SMALL_STATE(3338)] = 114944, + [SMALL_STATE(3339)] = 114955, + [SMALL_STATE(3340)] = 114970, + [SMALL_STATE(3341)] = 114981, + [SMALL_STATE(3342)] = 114992, + [SMALL_STATE(3343)] = 115003, + [SMALL_STATE(3344)] = 115020, + [SMALL_STATE(3345)] = 115039, + [SMALL_STATE(3346)] = 115054, + [SMALL_STATE(3347)] = 115065, + [SMALL_STATE(3348)] = 115076, + [SMALL_STATE(3349)] = 115087, + [SMALL_STATE(3350)] = 115104, + [SMALL_STATE(3351)] = 115115, + [SMALL_STATE(3352)] = 115126, + [SMALL_STATE(3353)] = 115137, + [SMALL_STATE(3354)] = 115148, + [SMALL_STATE(3355)] = 115159, + [SMALL_STATE(3356)] = 115170, + [SMALL_STATE(3357)] = 115181, + [SMALL_STATE(3358)] = 115200, + [SMALL_STATE(3359)] = 115211, + [SMALL_STATE(3360)] = 115222, + [SMALL_STATE(3361)] = 115241, + [SMALL_STATE(3362)] = 115252, + [SMALL_STATE(3363)] = 115263, + [SMALL_STATE(3364)] = 115278, + [SMALL_STATE(3365)] = 115289, + [SMALL_STATE(3366)] = 115308, + [SMALL_STATE(3367)] = 115319, + [SMALL_STATE(3368)] = 115336, + [SMALL_STATE(3369)] = 115347, + [SMALL_STATE(3370)] = 115358, + [SMALL_STATE(3371)] = 115377, + [SMALL_STATE(3372)] = 115396, + [SMALL_STATE(3373)] = 115409, + [SMALL_STATE(3374)] = 115424, + [SMALL_STATE(3375)] = 115443, + [SMALL_STATE(3376)] = 115462, + [SMALL_STATE(3377)] = 115473, + [SMALL_STATE(3378)] = 115486, + [SMALL_STATE(3379)] = 115497, + [SMALL_STATE(3380)] = 115510, + [SMALL_STATE(3381)] = 115523, + [SMALL_STATE(3382)] = 115534, + [SMALL_STATE(3383)] = 115553, + [SMALL_STATE(3384)] = 115570, + [SMALL_STATE(3385)] = 115581, + [SMALL_STATE(3386)] = 115596, + [SMALL_STATE(3387)] = 115607, + [SMALL_STATE(3388)] = 115624, + [SMALL_STATE(3389)] = 115635, + [SMALL_STATE(3390)] = 115654, + [SMALL_STATE(3391)] = 115665, + [SMALL_STATE(3392)] = 115680, + [SMALL_STATE(3393)] = 115699, + [SMALL_STATE(3394)] = 115710, + [SMALL_STATE(3395)] = 115727, + [SMALL_STATE(3396)] = 115738, + [SMALL_STATE(3397)] = 115757, + [SMALL_STATE(3398)] = 115776, + [SMALL_STATE(3399)] = 115793, + [SMALL_STATE(3400)] = 115804, + [SMALL_STATE(3401)] = 115823, + [SMALL_STATE(3402)] = 115842, + [SMALL_STATE(3403)] = 115853, + [SMALL_STATE(3404)] = 115864, + [SMALL_STATE(3405)] = 115875, + [SMALL_STATE(3406)] = 115888, + [SMALL_STATE(3407)] = 115899, + [SMALL_STATE(3408)] = 115912, + [SMALL_STATE(3409)] = 115931, + [SMALL_STATE(3410)] = 115944, + [SMALL_STATE(3411)] = 115955, + [SMALL_STATE(3412)] = 115970, + [SMALL_STATE(3413)] = 115985, + [SMALL_STATE(3414)] = 115996, + [SMALL_STATE(3415)] = 116007, + [SMALL_STATE(3416)] = 116026, + [SMALL_STATE(3417)] = 116037, + [SMALL_STATE(3418)] = 116050, + [SMALL_STATE(3419)] = 116069, + [SMALL_STATE(3420)] = 116080, + [SMALL_STATE(3421)] = 116091, + [SMALL_STATE(3422)] = 116110, + [SMALL_STATE(3423)] = 116129, + [SMALL_STATE(3424)] = 116140, + [SMALL_STATE(3425)] = 116151, + [SMALL_STATE(3426)] = 116164, + [SMALL_STATE(3427)] = 116175, + [SMALL_STATE(3428)] = 116186, + [SMALL_STATE(3429)] = 116205, + [SMALL_STATE(3430)] = 116222, + [SMALL_STATE(3431)] = 116241, + [SMALL_STATE(3432)] = 116252, + [SMALL_STATE(3433)] = 116265, + [SMALL_STATE(3434)] = 116276, + [SMALL_STATE(3435)] = 116287, + [SMALL_STATE(3436)] = 116306, + [SMALL_STATE(3437)] = 116325, + [SMALL_STATE(3438)] = 116340, + [SMALL_STATE(3439)] = 116351, + [SMALL_STATE(3440)] = 116370, + [SMALL_STATE(3441)] = 116389, + [SMALL_STATE(3442)] = 116404, + [SMALL_STATE(3443)] = 116415, + [SMALL_STATE(3444)] = 116430, + [SMALL_STATE(3445)] = 116441, + [SMALL_STATE(3446)] = 116455, + [SMALL_STATE(3447)] = 116471, + [SMALL_STATE(3448)] = 116487, + [SMALL_STATE(3449)] = 116501, + [SMALL_STATE(3450)] = 116515, + [SMALL_STATE(3451)] = 116531, + [SMALL_STATE(3452)] = 116547, + [SMALL_STATE(3453)] = 116563, + [SMALL_STATE(3454)] = 116579, + [SMALL_STATE(3455)] = 116593, + [SMALL_STATE(3456)] = 116607, + [SMALL_STATE(3457)] = 116621, + [SMALL_STATE(3458)] = 116635, + [SMALL_STATE(3459)] = 116651, + [SMALL_STATE(3460)] = 116667, + [SMALL_STATE(3461)] = 116681, + [SMALL_STATE(3462)] = 116695, + [SMALL_STATE(3463)] = 116709, + [SMALL_STATE(3464)] = 116723, + [SMALL_STATE(3465)] = 116737, + [SMALL_STATE(3466)] = 116749, + [SMALL_STATE(3467)] = 116763, + [SMALL_STATE(3468)] = 116777, + [SMALL_STATE(3469)] = 116791, + [SMALL_STATE(3470)] = 116807, + [SMALL_STATE(3471)] = 116821, + [SMALL_STATE(3472)] = 116837, + [SMALL_STATE(3473)] = 116851, + [SMALL_STATE(3474)] = 116867, + [SMALL_STATE(3475)] = 116883, + [SMALL_STATE(3476)] = 116897, + [SMALL_STATE(3477)] = 116909, + [SMALL_STATE(3478)] = 116925, + [SMALL_STATE(3479)] = 116939, + [SMALL_STATE(3480)] = 116953, + [SMALL_STATE(3481)] = 116967, + [SMALL_STATE(3482)] = 116981, + [SMALL_STATE(3483)] = 116997, + [SMALL_STATE(3484)] = 117013, + [SMALL_STATE(3485)] = 117027, + [SMALL_STATE(3486)] = 117043, + [SMALL_STATE(3487)] = 117059, + [SMALL_STATE(3488)] = 117073, + [SMALL_STATE(3489)] = 117089, + [SMALL_STATE(3490)] = 117103, + [SMALL_STATE(3491)] = 117117, + [SMALL_STATE(3492)] = 117133, + [SMALL_STATE(3493)] = 117149, + [SMALL_STATE(3494)] = 117159, + [SMALL_STATE(3495)] = 117175, + [SMALL_STATE(3496)] = 117189, + [SMALL_STATE(3497)] = 117203, + [SMALL_STATE(3498)] = 117219, + [SMALL_STATE(3499)] = 117233, + [SMALL_STATE(3500)] = 117247, + [SMALL_STATE(3501)] = 117263, + [SMALL_STATE(3502)] = 117279, + [SMALL_STATE(3503)] = 117293, + [SMALL_STATE(3504)] = 117307, + [SMALL_STATE(3505)] = 117321, + [SMALL_STATE(3506)] = 117337, + [SMALL_STATE(3507)] = 117351, + [SMALL_STATE(3508)] = 117365, + [SMALL_STATE(3509)] = 117381, + [SMALL_STATE(3510)] = 117395, + [SMALL_STATE(3511)] = 117409, + [SMALL_STATE(3512)] = 117423, + [SMALL_STATE(3513)] = 117437, + [SMALL_STATE(3514)] = 117453, + [SMALL_STATE(3515)] = 117469, + [SMALL_STATE(3516)] = 117483, + [SMALL_STATE(3517)] = 117497, + [SMALL_STATE(3518)] = 117511, + [SMALL_STATE(3519)] = 117527, + [SMALL_STATE(3520)] = 117543, + [SMALL_STATE(3521)] = 117559, + [SMALL_STATE(3522)] = 117575, + [SMALL_STATE(3523)] = 117591, + [SMALL_STATE(3524)] = 117607, + [SMALL_STATE(3525)] = 117621, + [SMALL_STATE(3526)] = 117635, + [SMALL_STATE(3527)] = 117649, + [SMALL_STATE(3528)] = 117663, + [SMALL_STATE(3529)] = 117673, + [SMALL_STATE(3530)] = 117687, + [SMALL_STATE(3531)] = 117703, + [SMALL_STATE(3532)] = 117717, + [SMALL_STATE(3533)] = 117733, + [SMALL_STATE(3534)] = 117749, + [SMALL_STATE(3535)] = 117763, + [SMALL_STATE(3536)] = 117779, + [SMALL_STATE(3537)] = 117795, + [SMALL_STATE(3538)] = 117811, + [SMALL_STATE(3539)] = 117825, + [SMALL_STATE(3540)] = 117841, + [SMALL_STATE(3541)] = 117857, + [SMALL_STATE(3542)] = 117873, + [SMALL_STATE(3543)] = 117887, + [SMALL_STATE(3544)] = 117901, + [SMALL_STATE(3545)] = 117917, + [SMALL_STATE(3546)] = 117931, + [SMALL_STATE(3547)] = 117945, + [SMALL_STATE(3548)] = 117961, + [SMALL_STATE(3549)] = 117977, + [SMALL_STATE(3550)] = 117993, + [SMALL_STATE(3551)] = 118009, + [SMALL_STATE(3552)] = 118025, + [SMALL_STATE(3553)] = 118041, + [SMALL_STATE(3554)] = 118057, + [SMALL_STATE(3555)] = 118073, + [SMALL_STATE(3556)] = 118089, + [SMALL_STATE(3557)] = 118099, + [SMALL_STATE(3558)] = 118113, + [SMALL_STATE(3559)] = 118129, + [SMALL_STATE(3560)] = 118143, + [SMALL_STATE(3561)] = 118159, + [SMALL_STATE(3562)] = 118175, + [SMALL_STATE(3563)] = 118189, + [SMALL_STATE(3564)] = 118205, + [SMALL_STATE(3565)] = 118219, + [SMALL_STATE(3566)] = 118233, + [SMALL_STATE(3567)] = 118249, + [SMALL_STATE(3568)] = 118263, + [SMALL_STATE(3569)] = 118277, + [SMALL_STATE(3570)] = 118293, + [SMALL_STATE(3571)] = 118307, + [SMALL_STATE(3572)] = 118321, + [SMALL_STATE(3573)] = 118334, + [SMALL_STATE(3574)] = 118343, + [SMALL_STATE(3575)] = 118354, + [SMALL_STATE(3576)] = 118363, + [SMALL_STATE(3577)] = 118376, + [SMALL_STATE(3578)] = 118385, + [SMALL_STATE(3579)] = 118398, + [SMALL_STATE(3580)] = 118407, + [SMALL_STATE(3581)] = 118420, + [SMALL_STATE(3582)] = 118431, + [SMALL_STATE(3583)] = 118442, + [SMALL_STATE(3584)] = 118455, + [SMALL_STATE(3585)] = 118464, + [SMALL_STATE(3586)] = 118477, + [SMALL_STATE(3587)] = 118488, + [SMALL_STATE(3588)] = 118499, + [SMALL_STATE(3589)] = 118508, + [SMALL_STATE(3590)] = 118519, + [SMALL_STATE(3591)] = 118532, + [SMALL_STATE(3592)] = 118545, + [SMALL_STATE(3593)] = 118556, + [SMALL_STATE(3594)] = 118569, + [SMALL_STATE(3595)] = 118580, + [SMALL_STATE(3596)] = 118591, + [SMALL_STATE(3597)] = 118604, + [SMALL_STATE(3598)] = 118617, + [SMALL_STATE(3599)] = 118630, + [SMALL_STATE(3600)] = 118643, + [SMALL_STATE(3601)] = 118652, + [SMALL_STATE(3602)] = 118665, + [SMALL_STATE(3603)] = 118678, + [SMALL_STATE(3604)] = 118691, + [SMALL_STATE(3605)] = 118704, + [SMALL_STATE(3606)] = 118717, + [SMALL_STATE(3607)] = 118728, + [SMALL_STATE(3608)] = 118741, + [SMALL_STATE(3609)] = 118750, + [SMALL_STATE(3610)] = 118763, + [SMALL_STATE(3611)] = 118776, + [SMALL_STATE(3612)] = 118785, + [SMALL_STATE(3613)] = 118794, + [SMALL_STATE(3614)] = 118803, + [SMALL_STATE(3615)] = 118816, + [SMALL_STATE(3616)] = 118829, + [SMALL_STATE(3617)] = 118842, + [SMALL_STATE(3618)] = 118855, + [SMALL_STATE(3619)] = 118868, + [SMALL_STATE(3620)] = 118881, + [SMALL_STATE(3621)] = 118894, + [SMALL_STATE(3622)] = 118907, + [SMALL_STATE(3623)] = 118920, + [SMALL_STATE(3624)] = 118933, + [SMALL_STATE(3625)] = 118944, + [SMALL_STATE(3626)] = 118955, + [SMALL_STATE(3627)] = 118964, + [SMALL_STATE(3628)] = 118977, + [SMALL_STATE(3629)] = 118990, + [SMALL_STATE(3630)] = 119003, + [SMALL_STATE(3631)] = 119016, + [SMALL_STATE(3632)] = 119029, + [SMALL_STATE(3633)] = 119042, + [SMALL_STATE(3634)] = 119055, + [SMALL_STATE(3635)] = 119068, + [SMALL_STATE(3636)] = 119081, + [SMALL_STATE(3637)] = 119090, + [SMALL_STATE(3638)] = 119103, + [SMALL_STATE(3639)] = 119116, + [SMALL_STATE(3640)] = 119129, + [SMALL_STATE(3641)] = 119140, + [SMALL_STATE(3642)] = 119153, + [SMALL_STATE(3643)] = 119166, + [SMALL_STATE(3644)] = 119175, + [SMALL_STATE(3645)] = 119188, + [SMALL_STATE(3646)] = 119201, + [SMALL_STATE(3647)] = 119214, + [SMALL_STATE(3648)] = 119227, + [SMALL_STATE(3649)] = 119240, + [SMALL_STATE(3650)] = 119253, + [SMALL_STATE(3651)] = 119266, + [SMALL_STATE(3652)] = 119277, + [SMALL_STATE(3653)] = 119290, + [SMALL_STATE(3654)] = 119303, + [SMALL_STATE(3655)] = 119316, + [SMALL_STATE(3656)] = 119329, + [SMALL_STATE(3657)] = 119342, + [SMALL_STATE(3658)] = 119355, + [SMALL_STATE(3659)] = 119368, + [SMALL_STATE(3660)] = 119381, + [SMALL_STATE(3661)] = 119394, + [SMALL_STATE(3662)] = 119407, + [SMALL_STATE(3663)] = 119420, + [SMALL_STATE(3664)] = 119433, + [SMALL_STATE(3665)] = 119446, + [SMALL_STATE(3666)] = 119459, + [SMALL_STATE(3667)] = 119472, + [SMALL_STATE(3668)] = 119481, + [SMALL_STATE(3669)] = 119490, + [SMALL_STATE(3670)] = 119501, + [SMALL_STATE(3671)] = 119514, + [SMALL_STATE(3672)] = 119525, + [SMALL_STATE(3673)] = 119534, + [SMALL_STATE(3674)] = 119547, + [SMALL_STATE(3675)] = 119560, + [SMALL_STATE(3676)] = 119573, + [SMALL_STATE(3677)] = 119582, + [SMALL_STATE(3678)] = 119591, + [SMALL_STATE(3679)] = 119600, + [SMALL_STATE(3680)] = 119609, + [SMALL_STATE(3681)] = 119622, + [SMALL_STATE(3682)] = 119631, + [SMALL_STATE(3683)] = 119644, + [SMALL_STATE(3684)] = 119655, + [SMALL_STATE(3685)] = 119666, + [SMALL_STATE(3686)] = 119679, + [SMALL_STATE(3687)] = 119688, + [SMALL_STATE(3688)] = 119699, + [SMALL_STATE(3689)] = 119712, + [SMALL_STATE(3690)] = 119725, + [SMALL_STATE(3691)] = 119738, + [SMALL_STATE(3692)] = 119749, + [SMALL_STATE(3693)] = 119758, + [SMALL_STATE(3694)] = 119771, + [SMALL_STATE(3695)] = 119784, + [SMALL_STATE(3696)] = 119793, + [SMALL_STATE(3697)] = 119806, + [SMALL_STATE(3698)] = 119819, + [SMALL_STATE(3699)] = 119832, + [SMALL_STATE(3700)] = 119845, + [SMALL_STATE(3701)] = 119858, + [SMALL_STATE(3702)] = 119867, + [SMALL_STATE(3703)] = 119880, + [SMALL_STATE(3704)] = 119893, + [SMALL_STATE(3705)] = 119902, + [SMALL_STATE(3706)] = 119915, + [SMALL_STATE(3707)] = 119928, + [SMALL_STATE(3708)] = 119941, + [SMALL_STATE(3709)] = 119954, + [SMALL_STATE(3710)] = 119967, + [SMALL_STATE(3711)] = 119980, + [SMALL_STATE(3712)] = 119993, + [SMALL_STATE(3713)] = 120004, + [SMALL_STATE(3714)] = 120013, + [SMALL_STATE(3715)] = 120026, + [SMALL_STATE(3716)] = 120039, + [SMALL_STATE(3717)] = 120048, + [SMALL_STATE(3718)] = 120061, + [SMALL_STATE(3719)] = 120074, + [SMALL_STATE(3720)] = 120083, + [SMALL_STATE(3721)] = 120096, + [SMALL_STATE(3722)] = 120107, + [SMALL_STATE(3723)] = 120116, + [SMALL_STATE(3724)] = 120127, + [SMALL_STATE(3725)] = 120140, + [SMALL_STATE(3726)] = 120153, + [SMALL_STATE(3727)] = 120166, + [SMALL_STATE(3728)] = 120177, + [SMALL_STATE(3729)] = 120188, + [SMALL_STATE(3730)] = 120197, + [SMALL_STATE(3731)] = 120210, + [SMALL_STATE(3732)] = 120219, + [SMALL_STATE(3733)] = 120228, + [SMALL_STATE(3734)] = 120239, + [SMALL_STATE(3735)] = 120252, + [SMALL_STATE(3736)] = 120265, + [SMALL_STATE(3737)] = 120278, + [SMALL_STATE(3738)] = 120291, + [SMALL_STATE(3739)] = 120300, + [SMALL_STATE(3740)] = 120309, + [SMALL_STATE(3741)] = 120322, + [SMALL_STATE(3742)] = 120331, + [SMALL_STATE(3743)] = 120344, + [SMALL_STATE(3744)] = 120357, + [SMALL_STATE(3745)] = 120370, + [SMALL_STATE(3746)] = 120379, + [SMALL_STATE(3747)] = 120392, + [SMALL_STATE(3748)] = 120401, + [SMALL_STATE(3749)] = 120414, + [SMALL_STATE(3750)] = 120423, + [SMALL_STATE(3751)] = 120432, + [SMALL_STATE(3752)] = 120441, + [SMALL_STATE(3753)] = 120450, + [SMALL_STATE(3754)] = 120459, + [SMALL_STATE(3755)] = 120472, + [SMALL_STATE(3756)] = 120485, + [SMALL_STATE(3757)] = 120498, + [SMALL_STATE(3758)] = 120511, + [SMALL_STATE(3759)] = 120524, + [SMALL_STATE(3760)] = 120533, + [SMALL_STATE(3761)] = 120546, + [SMALL_STATE(3762)] = 120555, + [SMALL_STATE(3763)] = 120564, + [SMALL_STATE(3764)] = 120575, + [SMALL_STATE(3765)] = 120588, + [SMALL_STATE(3766)] = 120601, + [SMALL_STATE(3767)] = 120610, + [SMALL_STATE(3768)] = 120623, + [SMALL_STATE(3769)] = 120632, + [SMALL_STATE(3770)] = 120645, + [SMALL_STATE(3771)] = 120654, + [SMALL_STATE(3772)] = 120663, + [SMALL_STATE(3773)] = 120672, + [SMALL_STATE(3774)] = 120685, + [SMALL_STATE(3775)] = 120698, + [SMALL_STATE(3776)] = 120707, + [SMALL_STATE(3777)] = 120716, + [SMALL_STATE(3778)] = 120729, + [SMALL_STATE(3779)] = 120742, + [SMALL_STATE(3780)] = 120755, + [SMALL_STATE(3781)] = 120768, + [SMALL_STATE(3782)] = 120781, + [SMALL_STATE(3783)] = 120794, + [SMALL_STATE(3784)] = 120807, + [SMALL_STATE(3785)] = 120820, + [SMALL_STATE(3786)] = 120833, + [SMALL_STATE(3787)] = 120846, + [SMALL_STATE(3788)] = 120859, + [SMALL_STATE(3789)] = 120872, + [SMALL_STATE(3790)] = 120881, + [SMALL_STATE(3791)] = 120894, + [SMALL_STATE(3792)] = 120907, + [SMALL_STATE(3793)] = 120920, + [SMALL_STATE(3794)] = 120933, + [SMALL_STATE(3795)] = 120946, + [SMALL_STATE(3796)] = 120959, + [SMALL_STATE(3797)] = 120972, + [SMALL_STATE(3798)] = 120985, + [SMALL_STATE(3799)] = 120994, + [SMALL_STATE(3800)] = 121007, + [SMALL_STATE(3801)] = 121016, + [SMALL_STATE(3802)] = 121029, + [SMALL_STATE(3803)] = 121038, + [SMALL_STATE(3804)] = 121051, + [SMALL_STATE(3805)] = 121060, + [SMALL_STATE(3806)] = 121069, + [SMALL_STATE(3807)] = 121078, + [SMALL_STATE(3808)] = 121091, + [SMALL_STATE(3809)] = 121100, + [SMALL_STATE(3810)] = 121113, + [SMALL_STATE(3811)] = 121126, + [SMALL_STATE(3812)] = 121135, + [SMALL_STATE(3813)] = 121143, + [SMALL_STATE(3814)] = 121151, + [SMALL_STATE(3815)] = 121161, + [SMALL_STATE(3816)] = 121171, + [SMALL_STATE(3817)] = 121181, + [SMALL_STATE(3818)] = 121191, + [SMALL_STATE(3819)] = 121201, + [SMALL_STATE(3820)] = 121211, + [SMALL_STATE(3821)] = 121221, + [SMALL_STATE(3822)] = 121231, + [SMALL_STATE(3823)] = 121241, + [SMALL_STATE(3824)] = 121251, + [SMALL_STATE(3825)] = 121261, + [SMALL_STATE(3826)] = 121271, + [SMALL_STATE(3827)] = 121281, + [SMALL_STATE(3828)] = 121289, + [SMALL_STATE(3829)] = 121299, + [SMALL_STATE(3830)] = 121309, + [SMALL_STATE(3831)] = 121319, + [SMALL_STATE(3832)] = 121329, + [SMALL_STATE(3833)] = 121337, + [SMALL_STATE(3834)] = 121347, + [SMALL_STATE(3835)] = 121357, + [SMALL_STATE(3836)] = 121367, + [SMALL_STATE(3837)] = 121375, + [SMALL_STATE(3838)] = 121385, + [SMALL_STATE(3839)] = 121393, + [SMALL_STATE(3840)] = 121401, + [SMALL_STATE(3841)] = 121409, + [SMALL_STATE(3842)] = 121417, + [SMALL_STATE(3843)] = 121427, + [SMALL_STATE(3844)] = 121435, + [SMALL_STATE(3845)] = 121445, + [SMALL_STATE(3846)] = 121455, + [SMALL_STATE(3847)] = 121465, + [SMALL_STATE(3848)] = 121475, + [SMALL_STATE(3849)] = 121483, + [SMALL_STATE(3850)] = 121493, + [SMALL_STATE(3851)] = 121501, + [SMALL_STATE(3852)] = 121511, + [SMALL_STATE(3853)] = 121521, + [SMALL_STATE(3854)] = 121529, + [SMALL_STATE(3855)] = 121539, + [SMALL_STATE(3856)] = 121547, + [SMALL_STATE(3857)] = 121555, + [SMALL_STATE(3858)] = 121565, + [SMALL_STATE(3859)] = 121573, + [SMALL_STATE(3860)] = 121583, + [SMALL_STATE(3861)] = 121591, + [SMALL_STATE(3862)] = 121599, + [SMALL_STATE(3863)] = 121609, + [SMALL_STATE(3864)] = 121619, + [SMALL_STATE(3865)] = 121627, + [SMALL_STATE(3866)] = 121635, + [SMALL_STATE(3867)] = 121643, + [SMALL_STATE(3868)] = 121653, + [SMALL_STATE(3869)] = 121661, + [SMALL_STATE(3870)] = 121671, + [SMALL_STATE(3871)] = 121681, + [SMALL_STATE(3872)] = 121691, + [SMALL_STATE(3873)] = 121701, + [SMALL_STATE(3874)] = 121711, + [SMALL_STATE(3875)] = 121721, + [SMALL_STATE(3876)] = 121731, + [SMALL_STATE(3877)] = 121741, + [SMALL_STATE(3878)] = 121749, + [SMALL_STATE(3879)] = 121759, + [SMALL_STATE(3880)] = 121769, + [SMALL_STATE(3881)] = 121779, + [SMALL_STATE(3882)] = 121789, + [SMALL_STATE(3883)] = 121797, + [SMALL_STATE(3884)] = 121805, + [SMALL_STATE(3885)] = 121815, + [SMALL_STATE(3886)] = 121823, + [SMALL_STATE(3887)] = 121833, + [SMALL_STATE(3888)] = 121843, + [SMALL_STATE(3889)] = 121853, + [SMALL_STATE(3890)] = 121861, + [SMALL_STATE(3891)] = 121871, + [SMALL_STATE(3892)] = 121881, + [SMALL_STATE(3893)] = 121891, + [SMALL_STATE(3894)] = 121901, + [SMALL_STATE(3895)] = 121909, + [SMALL_STATE(3896)] = 121917, + [SMALL_STATE(3897)] = 121927, + [SMALL_STATE(3898)] = 121935, + [SMALL_STATE(3899)] = 121943, + [SMALL_STATE(3900)] = 121951, + [SMALL_STATE(3901)] = 121959, + [SMALL_STATE(3902)] = 121969, + [SMALL_STATE(3903)] = 121979, + [SMALL_STATE(3904)] = 121989, + [SMALL_STATE(3905)] = 121999, + [SMALL_STATE(3906)] = 122009, + [SMALL_STATE(3907)] = 122019, + [SMALL_STATE(3908)] = 122029, + [SMALL_STATE(3909)] = 122037, + [SMALL_STATE(3910)] = 122047, + [SMALL_STATE(3911)] = 122057, + [SMALL_STATE(3912)] = 122067, + [SMALL_STATE(3913)] = 122077, + [SMALL_STATE(3914)] = 122087, + [SMALL_STATE(3915)] = 122095, + [SMALL_STATE(3916)] = 122105, + [SMALL_STATE(3917)] = 122115, + [SMALL_STATE(3918)] = 122125, + [SMALL_STATE(3919)] = 122135, + [SMALL_STATE(3920)] = 122145, + [SMALL_STATE(3921)] = 122155, + [SMALL_STATE(3922)] = 122165, + [SMALL_STATE(3923)] = 122175, + [SMALL_STATE(3924)] = 122185, + [SMALL_STATE(3925)] = 122195, + [SMALL_STATE(3926)] = 122205, + [SMALL_STATE(3927)] = 122215, + [SMALL_STATE(3928)] = 122225, + [SMALL_STATE(3929)] = 122235, + [SMALL_STATE(3930)] = 122245, + [SMALL_STATE(3931)] = 122255, + [SMALL_STATE(3932)] = 122265, + [SMALL_STATE(3933)] = 122273, + [SMALL_STATE(3934)] = 122283, + [SMALL_STATE(3935)] = 122293, + [SMALL_STATE(3936)] = 122303, + [SMALL_STATE(3937)] = 122313, + [SMALL_STATE(3938)] = 122323, + [SMALL_STATE(3939)] = 122333, + [SMALL_STATE(3940)] = 122343, + [SMALL_STATE(3941)] = 122353, + [SMALL_STATE(3942)] = 122363, + [SMALL_STATE(3943)] = 122373, + [SMALL_STATE(3944)] = 122383, + [SMALL_STATE(3945)] = 122393, + [SMALL_STATE(3946)] = 122403, + [SMALL_STATE(3947)] = 122413, + [SMALL_STATE(3948)] = 122423, + [SMALL_STATE(3949)] = 122431, + [SMALL_STATE(3950)] = 122441, + [SMALL_STATE(3951)] = 122449, + [SMALL_STATE(3952)] = 122457, + [SMALL_STATE(3953)] = 122467, + [SMALL_STATE(3954)] = 122477, + [SMALL_STATE(3955)] = 122485, + [SMALL_STATE(3956)] = 122495, + [SMALL_STATE(3957)] = 122503, + [SMALL_STATE(3958)] = 122511, + [SMALL_STATE(3959)] = 122521, + [SMALL_STATE(3960)] = 122531, + [SMALL_STATE(3961)] = 122541, + [SMALL_STATE(3962)] = 122551, + [SMALL_STATE(3963)] = 122561, + [SMALL_STATE(3964)] = 122571, + [SMALL_STATE(3965)] = 122581, + [SMALL_STATE(3966)] = 122591, + [SMALL_STATE(3967)] = 122601, + [SMALL_STATE(3968)] = 122611, + [SMALL_STATE(3969)] = 122621, + [SMALL_STATE(3970)] = 122629, + [SMALL_STATE(3971)] = 122639, + [SMALL_STATE(3972)] = 122649, + [SMALL_STATE(3973)] = 122659, + [SMALL_STATE(3974)] = 122669, + [SMALL_STATE(3975)] = 122679, + [SMALL_STATE(3976)] = 122689, + [SMALL_STATE(3977)] = 122697, + [SMALL_STATE(3978)] = 122707, + [SMALL_STATE(3979)] = 122717, + [SMALL_STATE(3980)] = 122725, + [SMALL_STATE(3981)] = 122735, + [SMALL_STATE(3982)] = 122743, + [SMALL_STATE(3983)] = 122751, + [SMALL_STATE(3984)] = 122759, + [SMALL_STATE(3985)] = 122769, + [SMALL_STATE(3986)] = 122779, + [SMALL_STATE(3987)] = 122787, + [SMALL_STATE(3988)] = 122797, + [SMALL_STATE(3989)] = 122807, + [SMALL_STATE(3990)] = 122817, + [SMALL_STATE(3991)] = 122827, + [SMALL_STATE(3992)] = 122837, + [SMALL_STATE(3993)] = 122847, + [SMALL_STATE(3994)] = 122857, + [SMALL_STATE(3995)] = 122867, + [SMALL_STATE(3996)] = 122875, + [SMALL_STATE(3997)] = 122885, + [SMALL_STATE(3998)] = 122895, + [SMALL_STATE(3999)] = 122903, + [SMALL_STATE(4000)] = 122913, + [SMALL_STATE(4001)] = 122923, + [SMALL_STATE(4002)] = 122931, + [SMALL_STATE(4003)] = 122941, + [SMALL_STATE(4004)] = 122949, + [SMALL_STATE(4005)] = 122959, + [SMALL_STATE(4006)] = 122969, + [SMALL_STATE(4007)] = 122979, + [SMALL_STATE(4008)] = 122987, + [SMALL_STATE(4009)] = 122997, + [SMALL_STATE(4010)] = 123005, + [SMALL_STATE(4011)] = 123013, + [SMALL_STATE(4012)] = 123023, + [SMALL_STATE(4013)] = 123031, + [SMALL_STATE(4014)] = 123041, + [SMALL_STATE(4015)] = 123051, + [SMALL_STATE(4016)] = 123059, + [SMALL_STATE(4017)] = 123069, + [SMALL_STATE(4018)] = 123079, + [SMALL_STATE(4019)] = 123089, + [SMALL_STATE(4020)] = 123099, + [SMALL_STATE(4021)] = 123109, + [SMALL_STATE(4022)] = 123117, + [SMALL_STATE(4023)] = 123127, + [SMALL_STATE(4024)] = 123137, + [SMALL_STATE(4025)] = 123147, + [SMALL_STATE(4026)] = 123155, + [SMALL_STATE(4027)] = 123163, + [SMALL_STATE(4028)] = 123173, + [SMALL_STATE(4029)] = 123181, + [SMALL_STATE(4030)] = 123191, + [SMALL_STATE(4031)] = 123201, + [SMALL_STATE(4032)] = 123209, + [SMALL_STATE(4033)] = 123217, + [SMALL_STATE(4034)] = 123227, + [SMALL_STATE(4035)] = 123237, + [SMALL_STATE(4036)] = 123245, + [SMALL_STATE(4037)] = 123255, + [SMALL_STATE(4038)] = 123265, + [SMALL_STATE(4039)] = 123275, + [SMALL_STATE(4040)] = 123285, + [SMALL_STATE(4041)] = 123295, + [SMALL_STATE(4042)] = 123305, + [SMALL_STATE(4043)] = 123315, + [SMALL_STATE(4044)] = 123325, + [SMALL_STATE(4045)] = 123335, + [SMALL_STATE(4046)] = 123345, + [SMALL_STATE(4047)] = 123355, + [SMALL_STATE(4048)] = 123365, + [SMALL_STATE(4049)] = 123375, + [SMALL_STATE(4050)] = 123385, + [SMALL_STATE(4051)] = 123393, + [SMALL_STATE(4052)] = 123403, + [SMALL_STATE(4053)] = 123413, + [SMALL_STATE(4054)] = 123421, + [SMALL_STATE(4055)] = 123429, + [SMALL_STATE(4056)] = 123439, + [SMALL_STATE(4057)] = 123449, + [SMALL_STATE(4058)] = 123459, + [SMALL_STATE(4059)] = 123469, + [SMALL_STATE(4060)] = 123479, + [SMALL_STATE(4061)] = 123489, + [SMALL_STATE(4062)] = 123499, + [SMALL_STATE(4063)] = 123509, + [SMALL_STATE(4064)] = 123519, + [SMALL_STATE(4065)] = 123529, + [SMALL_STATE(4066)] = 123539, + [SMALL_STATE(4067)] = 123549, + [SMALL_STATE(4068)] = 123559, + [SMALL_STATE(4069)] = 123569, + [SMALL_STATE(4070)] = 123579, + [SMALL_STATE(4071)] = 123589, + [SMALL_STATE(4072)] = 123599, + [SMALL_STATE(4073)] = 123609, + [SMALL_STATE(4074)] = 123619, + [SMALL_STATE(4075)] = 123627, + [SMALL_STATE(4076)] = 123635, + [SMALL_STATE(4077)] = 123645, + [SMALL_STATE(4078)] = 123653, + [SMALL_STATE(4079)] = 123663, + [SMALL_STATE(4080)] = 123673, + [SMALL_STATE(4081)] = 123681, + [SMALL_STATE(4082)] = 123689, + [SMALL_STATE(4083)] = 123699, + [SMALL_STATE(4084)] = 123709, + [SMALL_STATE(4085)] = 123719, + [SMALL_STATE(4086)] = 123729, + [SMALL_STATE(4087)] = 123739, + [SMALL_STATE(4088)] = 123749, + [SMALL_STATE(4089)] = 123759, + [SMALL_STATE(4090)] = 123767, + [SMALL_STATE(4091)] = 123774, + [SMALL_STATE(4092)] = 123781, + [SMALL_STATE(4093)] = 123788, + [SMALL_STATE(4094)] = 123795, + [SMALL_STATE(4095)] = 123802, + [SMALL_STATE(4096)] = 123809, + [SMALL_STATE(4097)] = 123816, + [SMALL_STATE(4098)] = 123823, + [SMALL_STATE(4099)] = 123830, + [SMALL_STATE(4100)] = 123837, + [SMALL_STATE(4101)] = 123844, + [SMALL_STATE(4102)] = 123851, + [SMALL_STATE(4103)] = 123858, + [SMALL_STATE(4104)] = 123865, + [SMALL_STATE(4105)] = 123872, + [SMALL_STATE(4106)] = 123879, + [SMALL_STATE(4107)] = 123886, + [SMALL_STATE(4108)] = 123893, + [SMALL_STATE(4109)] = 123900, + [SMALL_STATE(4110)] = 123907, + [SMALL_STATE(4111)] = 123914, + [SMALL_STATE(4112)] = 123921, + [SMALL_STATE(4113)] = 123928, + [SMALL_STATE(4114)] = 123935, + [SMALL_STATE(4115)] = 123942, + [SMALL_STATE(4116)] = 123949, + [SMALL_STATE(4117)] = 123956, + [SMALL_STATE(4118)] = 123963, + [SMALL_STATE(4119)] = 123970, + [SMALL_STATE(4120)] = 123977, + [SMALL_STATE(4121)] = 123984, + [SMALL_STATE(4122)] = 123991, + [SMALL_STATE(4123)] = 123998, + [SMALL_STATE(4124)] = 124005, + [SMALL_STATE(4125)] = 124012, + [SMALL_STATE(4126)] = 124019, + [SMALL_STATE(4127)] = 124026, + [SMALL_STATE(4128)] = 124033, + [SMALL_STATE(4129)] = 124040, + [SMALL_STATE(4130)] = 124047, + [SMALL_STATE(4131)] = 124054, + [SMALL_STATE(4132)] = 124061, + [SMALL_STATE(4133)] = 124068, + [SMALL_STATE(4134)] = 124075, + [SMALL_STATE(4135)] = 124082, + [SMALL_STATE(4136)] = 124089, + [SMALL_STATE(4137)] = 124096, + [SMALL_STATE(4138)] = 124103, + [SMALL_STATE(4139)] = 124110, + [SMALL_STATE(4140)] = 124117, + [SMALL_STATE(4141)] = 124124, + [SMALL_STATE(4142)] = 124131, + [SMALL_STATE(4143)] = 124138, + [SMALL_STATE(4144)] = 124145, + [SMALL_STATE(4145)] = 124152, + [SMALL_STATE(4146)] = 124159, + [SMALL_STATE(4147)] = 124166, + [SMALL_STATE(4148)] = 124173, + [SMALL_STATE(4149)] = 124180, + [SMALL_STATE(4150)] = 124187, + [SMALL_STATE(4151)] = 124194, + [SMALL_STATE(4152)] = 124201, + [SMALL_STATE(4153)] = 124208, + [SMALL_STATE(4154)] = 124215, + [SMALL_STATE(4155)] = 124222, + [SMALL_STATE(4156)] = 124229, + [SMALL_STATE(4157)] = 124236, + [SMALL_STATE(4158)] = 124243, + [SMALL_STATE(4159)] = 124250, + [SMALL_STATE(4160)] = 124257, + [SMALL_STATE(4161)] = 124264, + [SMALL_STATE(4162)] = 124271, + [SMALL_STATE(4163)] = 124278, + [SMALL_STATE(4164)] = 124285, + [SMALL_STATE(4165)] = 124292, + [SMALL_STATE(4166)] = 124299, + [SMALL_STATE(4167)] = 124306, + [SMALL_STATE(4168)] = 124313, + [SMALL_STATE(4169)] = 124320, + [SMALL_STATE(4170)] = 124327, + [SMALL_STATE(4171)] = 124334, + [SMALL_STATE(4172)] = 124341, + [SMALL_STATE(4173)] = 124348, + [SMALL_STATE(4174)] = 124355, + [SMALL_STATE(4175)] = 124362, + [SMALL_STATE(4176)] = 124369, + [SMALL_STATE(4177)] = 124376, + [SMALL_STATE(4178)] = 124383, + [SMALL_STATE(4179)] = 124390, + [SMALL_STATE(4180)] = 124397, + [SMALL_STATE(4181)] = 124404, + [SMALL_STATE(4182)] = 124411, + [SMALL_STATE(4183)] = 124418, + [SMALL_STATE(4184)] = 124425, + [SMALL_STATE(4185)] = 124432, + [SMALL_STATE(4186)] = 124439, + [SMALL_STATE(4187)] = 124446, + [SMALL_STATE(4188)] = 124453, + [SMALL_STATE(4189)] = 124460, + [SMALL_STATE(4190)] = 124467, + [SMALL_STATE(4191)] = 124474, + [SMALL_STATE(4192)] = 124481, + [SMALL_STATE(4193)] = 124488, + [SMALL_STATE(4194)] = 124495, + [SMALL_STATE(4195)] = 124502, + [SMALL_STATE(4196)] = 124509, + [SMALL_STATE(4197)] = 124516, + [SMALL_STATE(4198)] = 124523, + [SMALL_STATE(4199)] = 124530, + [SMALL_STATE(4200)] = 124537, + [SMALL_STATE(4201)] = 124544, + [SMALL_STATE(4202)] = 124551, + [SMALL_STATE(4203)] = 124558, + [SMALL_STATE(4204)] = 124565, + [SMALL_STATE(4205)] = 124572, + [SMALL_STATE(4206)] = 124579, + [SMALL_STATE(4207)] = 124586, + [SMALL_STATE(4208)] = 124593, + [SMALL_STATE(4209)] = 124600, + [SMALL_STATE(4210)] = 124607, + [SMALL_STATE(4211)] = 124614, + [SMALL_STATE(4212)] = 124621, + [SMALL_STATE(4213)] = 124628, + [SMALL_STATE(4214)] = 124635, + [SMALL_STATE(4215)] = 124642, + [SMALL_STATE(4216)] = 124649, + [SMALL_STATE(4217)] = 124656, + [SMALL_STATE(4218)] = 124663, + [SMALL_STATE(4219)] = 124670, + [SMALL_STATE(4220)] = 124677, + [SMALL_STATE(4221)] = 124684, + [SMALL_STATE(4222)] = 124691, + [SMALL_STATE(4223)] = 124698, + [SMALL_STATE(4224)] = 124705, + [SMALL_STATE(4225)] = 124712, + [SMALL_STATE(4226)] = 124719, + [SMALL_STATE(4227)] = 124726, + [SMALL_STATE(4228)] = 124733, + [SMALL_STATE(4229)] = 124740, + [SMALL_STATE(4230)] = 124747, + [SMALL_STATE(4231)] = 124754, + [SMALL_STATE(4232)] = 124761, + [SMALL_STATE(4233)] = 124768, + [SMALL_STATE(4234)] = 124775, + [SMALL_STATE(4235)] = 124782, + [SMALL_STATE(4236)] = 124789, + [SMALL_STATE(4237)] = 124796, + [SMALL_STATE(4238)] = 124803, + [SMALL_STATE(4239)] = 124810, + [SMALL_STATE(4240)] = 124817, + [SMALL_STATE(4241)] = 124824, + [SMALL_STATE(4242)] = 124831, + [SMALL_STATE(4243)] = 124838, + [SMALL_STATE(4244)] = 124845, + [SMALL_STATE(4245)] = 124852, + [SMALL_STATE(4246)] = 124859, + [SMALL_STATE(4247)] = 124866, + [SMALL_STATE(4248)] = 124873, + [SMALL_STATE(4249)] = 124880, + [SMALL_STATE(4250)] = 124887, + [SMALL_STATE(4251)] = 124894, + [SMALL_STATE(4252)] = 124901, + [SMALL_STATE(4253)] = 124908, + [SMALL_STATE(4254)] = 124915, + [SMALL_STATE(4255)] = 124922, + [SMALL_STATE(4256)] = 124929, + [SMALL_STATE(4257)] = 124936, + [SMALL_STATE(4258)] = 124943, + [SMALL_STATE(4259)] = 124950, + [SMALL_STATE(4260)] = 124957, + [SMALL_STATE(4261)] = 124964, + [SMALL_STATE(4262)] = 124971, + [SMALL_STATE(4263)] = 124978, + [SMALL_STATE(4264)] = 124985, + [SMALL_STATE(4265)] = 124992, + [SMALL_STATE(4266)] = 124999, + [SMALL_STATE(4267)] = 125006, + [SMALL_STATE(4268)] = 125013, + [SMALL_STATE(4269)] = 125020, + [SMALL_STATE(4270)] = 125027, + [SMALL_STATE(4271)] = 125034, + [SMALL_STATE(4272)] = 125041, + [SMALL_STATE(4273)] = 125048, + [SMALL_STATE(4274)] = 125055, + [SMALL_STATE(4275)] = 125062, + [SMALL_STATE(4276)] = 125069, + [SMALL_STATE(4277)] = 125076, + [SMALL_STATE(4278)] = 125083, + [SMALL_STATE(4279)] = 125090, + [SMALL_STATE(4280)] = 125097, + [SMALL_STATE(4281)] = 125104, + [SMALL_STATE(4282)] = 125111, + [SMALL_STATE(4283)] = 125118, + [SMALL_STATE(4284)] = 125125, + [SMALL_STATE(4285)] = 125132, + [SMALL_STATE(4286)] = 125139, + [SMALL_STATE(4287)] = 125146, + [SMALL_STATE(4288)] = 125153, + [SMALL_STATE(4289)] = 125160, + [SMALL_STATE(4290)] = 125167, + [SMALL_STATE(4291)] = 125174, + [SMALL_STATE(4292)] = 125181, + [SMALL_STATE(4293)] = 125188, + [SMALL_STATE(4294)] = 125195, + [SMALL_STATE(4295)] = 125202, + [SMALL_STATE(4296)] = 125209, + [SMALL_STATE(4297)] = 125216, + [SMALL_STATE(4298)] = 125223, + [SMALL_STATE(4299)] = 125230, + [SMALL_STATE(4300)] = 125237, + [SMALL_STATE(4301)] = 125244, + [SMALL_STATE(4302)] = 125251, + [SMALL_STATE(4303)] = 125258, + [SMALL_STATE(4304)] = 125265, + [SMALL_STATE(4305)] = 125272, + [SMALL_STATE(4306)] = 125279, + [SMALL_STATE(4307)] = 125286, + [SMALL_STATE(4308)] = 125293, + [SMALL_STATE(4309)] = 125300, + [SMALL_STATE(4310)] = 125307, + [SMALL_STATE(4311)] = 125314, + [SMALL_STATE(4312)] = 125321, + [SMALL_STATE(4313)] = 125328, + [SMALL_STATE(4314)] = 125335, + [SMALL_STATE(4315)] = 125342, + [SMALL_STATE(4316)] = 125349, + [SMALL_STATE(4317)] = 125356, + [SMALL_STATE(4318)] = 125363, + [SMALL_STATE(4319)] = 125370, + [SMALL_STATE(4320)] = 125377, + [SMALL_STATE(4321)] = 125384, + [SMALL_STATE(4322)] = 125391, + [SMALL_STATE(4323)] = 125398, + [SMALL_STATE(4324)] = 125405, + [SMALL_STATE(4325)] = 125412, + [SMALL_STATE(4326)] = 125419, + [SMALL_STATE(4327)] = 125426, + [SMALL_STATE(4328)] = 125433, + [SMALL_STATE(4329)] = 125440, + [SMALL_STATE(4330)] = 125447, + [SMALL_STATE(4331)] = 125454, + [SMALL_STATE(4332)] = 125461, + [SMALL_STATE(4333)] = 125468, + [SMALL_STATE(4334)] = 125475, + [SMALL_STATE(4335)] = 125482, + [SMALL_STATE(4336)] = 125489, + [SMALL_STATE(4337)] = 125496, + [SMALL_STATE(4338)] = 125503, + [SMALL_STATE(4339)] = 125510, + [SMALL_STATE(4340)] = 125517, + [SMALL_STATE(4341)] = 125524, + [SMALL_STATE(4342)] = 125531, + [SMALL_STATE(4343)] = 125538, + [SMALL_STATE(4344)] = 125545, + [SMALL_STATE(4345)] = 125552, + [SMALL_STATE(4346)] = 125559, + [SMALL_STATE(4347)] = 125566, + [SMALL_STATE(4348)] = 125573, + [SMALL_STATE(4349)] = 125580, + [SMALL_STATE(4350)] = 125587, + [SMALL_STATE(4351)] = 125594, + [SMALL_STATE(4352)] = 125601, + [SMALL_STATE(4353)] = 125608, + [SMALL_STATE(4354)] = 125615, + [SMALL_STATE(4355)] = 125622, + [SMALL_STATE(4356)] = 125629, + [SMALL_STATE(4357)] = 125636, + [SMALL_STATE(4358)] = 125643, + [SMALL_STATE(4359)] = 125650, + [SMALL_STATE(4360)] = 125657, + [SMALL_STATE(4361)] = 125664, + [SMALL_STATE(4362)] = 125671, + [SMALL_STATE(4363)] = 125678, + [SMALL_STATE(4364)] = 125685, + [SMALL_STATE(4365)] = 125692, + [SMALL_STATE(4366)] = 125699, + [SMALL_STATE(4367)] = 125706, + [SMALL_STATE(4368)] = 125713, + [SMALL_STATE(4369)] = 125720, + [SMALL_STATE(4370)] = 125727, + [SMALL_STATE(4371)] = 125734, + [SMALL_STATE(4372)] = 125741, + [SMALL_STATE(4373)] = 125748, + [SMALL_STATE(4374)] = 125755, + [SMALL_STATE(4375)] = 125762, + [SMALL_STATE(4376)] = 125769, + [SMALL_STATE(4377)] = 125776, + [SMALL_STATE(4378)] = 125783, + [SMALL_STATE(4379)] = 125790, + [SMALL_STATE(4380)] = 125797, + [SMALL_STATE(4381)] = 125804, + [SMALL_STATE(4382)] = 125811, + [SMALL_STATE(4383)] = 125818, + [SMALL_STATE(4384)] = 125825, + [SMALL_STATE(4385)] = 125832, + [SMALL_STATE(4386)] = 125839, + [SMALL_STATE(4387)] = 125846, + [SMALL_STATE(4388)] = 125853, + [SMALL_STATE(4389)] = 125860, + [SMALL_STATE(4390)] = 125867, + [SMALL_STATE(4391)] = 125874, + [SMALL_STATE(4392)] = 125881, + [SMALL_STATE(4393)] = 125888, + [SMALL_STATE(4394)] = 125895, + [SMALL_STATE(4395)] = 125902, + [SMALL_STATE(4396)] = 125909, + [SMALL_STATE(4397)] = 125916, + [SMALL_STATE(4398)] = 125923, + [SMALL_STATE(4399)] = 125930, + [SMALL_STATE(4400)] = 125937, + [SMALL_STATE(4401)] = 125944, + [SMALL_STATE(4402)] = 125951, + [SMALL_STATE(4403)] = 125958, + [SMALL_STATE(4404)] = 125965, + [SMALL_STATE(4405)] = 125972, + [SMALL_STATE(4406)] = 125979, + [SMALL_STATE(4407)] = 125986, + [SMALL_STATE(4408)] = 125993, + [SMALL_STATE(4409)] = 126000, + [SMALL_STATE(4410)] = 126007, + [SMALL_STATE(4411)] = 126014, + [SMALL_STATE(4412)] = 126021, + [SMALL_STATE(4413)] = 126028, + [SMALL_STATE(4414)] = 126035, + [SMALL_STATE(4415)] = 126042, + [SMALL_STATE(4416)] = 126049, + [SMALL_STATE(4417)] = 126056, + [SMALL_STATE(4418)] = 126063, + [SMALL_STATE(4419)] = 126070, + [SMALL_STATE(4420)] = 126077, + [SMALL_STATE(4421)] = 126084, + [SMALL_STATE(4422)] = 126091, + [SMALL_STATE(4423)] = 126098, + [SMALL_STATE(4424)] = 126105, + [SMALL_STATE(4425)] = 126112, + [SMALL_STATE(4426)] = 126119, + [SMALL_STATE(4427)] = 126126, + [SMALL_STATE(4428)] = 126133, + [SMALL_STATE(4429)] = 126140, + [SMALL_STATE(4430)] = 126147, + [SMALL_STATE(4431)] = 126154, + [SMALL_STATE(4432)] = 126161, + [SMALL_STATE(4433)] = 126168, + [SMALL_STATE(4434)] = 126175, + [SMALL_STATE(4435)] = 126182, + [SMALL_STATE(4436)] = 126189, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -213512,3966 +213702,3943 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(349), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(395), [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(516), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4423), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(477), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(477), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(479), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(333), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4325), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(398), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(398), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(516), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1074), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(521), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1103), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(523), [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1068), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(986), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(474), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1170), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2891), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2837), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2832), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(474), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3812), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3813), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3765), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1059), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(987), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(317), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1174), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2956), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2847), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2838), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(317), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3816), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3823), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3580), [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(116), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(385), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3817), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(40), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3819), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3820), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3762), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3757), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3823), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(217), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(247), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(598), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(327), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3826), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(48), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3828), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3831), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3581), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3582), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3836), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(215), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(295), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(600), [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(90), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(137), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3831), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3092), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4435), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2644), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(558), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2871), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(238), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(377), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(377), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3464), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3465), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3067), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1810), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1810), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1812), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3645), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1081), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(526), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(990), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4414), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4413), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4412), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 204), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 204), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 53), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 53), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 49), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 49), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(132), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3838), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2668), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(560), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2848), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(285), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4423), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2864), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(365), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(365), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3472), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3543), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3098), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1905), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1905), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1908), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3583), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1108), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(528), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(986), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4411), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4410), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4407), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 207), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 207), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 45), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 45), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 49), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 49), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(117), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(130), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3065), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2980), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(117), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(134), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2947), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3010), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 27), [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 27), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 115), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 115), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 115), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 115), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 99), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 99), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 123), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 123), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 123), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 123), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 160), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 160), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 160), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 160), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 161), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 161), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 161), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 161), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 199), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 199), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 199), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 199), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 151), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 151), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 151), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 151), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 24), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 24), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 141), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 141), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 141), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 141), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 98), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 98), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 151), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 151), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 151), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 151), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1552] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2589), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1568] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2417), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 48), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 48), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 193), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 193), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 193), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 193), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(45), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2293), - [1910] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(122), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(338), - [1917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3968), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(122), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3968), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 27), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(241), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(392), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 40), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 40), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 207), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 207), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 231), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 231), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 32), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 32), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 163), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 163), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 48), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 48), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 126), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 126), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 150), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 150), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 141), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 141), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 134), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 134), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 122), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 122), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 194), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 194), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 98), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 98), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 114), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 114), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 44), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 44), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 196), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 196), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 151), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 151), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 43), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 43), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 193), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 193), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 198), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 198), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 196), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 196), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 33), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 33), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 115), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 115), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 198), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 198), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 43), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 43), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 152), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 152), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 28), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 28), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 42), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 42), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 41), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 41), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 170), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 170), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 84), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 84), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 72), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 72), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 153), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 153), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 153), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 153), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 24), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 24), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 95), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 95), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 95), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 95), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 96), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 96), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 96), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 96), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 126), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 126), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 126), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 126), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 202), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 202), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 202), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 202), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 196), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 196), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 196), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 196), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 164), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 164), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 164), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 164), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 76), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 76), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 163), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 163), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 163), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 163), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 143), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 143), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 143), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 143), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 77), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 77), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 112), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 112), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 112), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 112), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 153), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 153), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 153), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 153), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 44), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 44), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 44), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 44), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [1602] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2417), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2648), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(32), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2325), + [1916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(120), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(341), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [1925] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3903), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(120), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3903), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 27), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(304), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(397), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 40), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 40), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 234), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 234), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 32), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 32), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 210), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 210), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 129), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 129), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 74), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 74), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 93), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 93), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 44), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 44), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 137), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 137), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 43), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 43), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 43), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 43), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 44), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 44), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 86), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 86), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 33), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 33), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 129), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 129), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 173), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 173), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 131), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 131), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 168), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 168), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 41), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 41), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 28), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 28), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 125), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 125), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 209), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 209), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 72), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 72), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 166), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 166), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 84), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 84), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 126), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 126), [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 20), [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 20), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 226), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 226), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 160), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 160), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 151), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 151), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 39), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 39), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 161), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 161), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 200), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 200), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 201), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 201), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 91), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 91), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 126), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 126), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 165), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 165), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 79), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 79), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 159), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 159), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 206), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 206), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 153), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 153), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 74), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 74), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 141), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 141), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 82), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 82), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 83), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 83), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 227), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 227), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 199), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 199), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 44), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 44), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 230), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 230), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 169), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 169), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 205), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 205), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 168), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 168), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 85), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 85), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 62), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 62), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 157), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 157), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 63), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 63), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 65), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 65), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 64), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 64), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(964), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4368), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(500), - [3005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 50), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 50), SHIFT(3957), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(862), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4099), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(486), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 50), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 162), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 162), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 39), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 39), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 96), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 42), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 42), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 95), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 95), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 54), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 54), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 143), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 143), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 119), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 119), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 204), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 204), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 230), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 230), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 152), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 152), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 202), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 202), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 201), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 201), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 199), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 199), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 229), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 229), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 196), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 196), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 81), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 81), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 203), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 203), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 153), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 153), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 153), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 153), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 164), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 164), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 111), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 111), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 163), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 163), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 197), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 197), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 156), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 156), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 201), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 201), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 54), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 54), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 155), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 155), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 199), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 199), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 112), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 112), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 233), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 233), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 172), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 172), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 171), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 171), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 87), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 87), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 208), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 208), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 160), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 160), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 64), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 64), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 65), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 65), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 63), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 63), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 62), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 62), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 122), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 122), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 46), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 46), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4248), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(951), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 46), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(439), + [3015] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 46), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 46), SHIFT(3869), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4428), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(912), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), REDUCE(sym_rest_pattern, 2), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(224), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3086] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 27), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT_REPEAT(3645), - [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(383), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT(2677), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1483), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1776), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1610), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1507), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1379), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1987), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [3252] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 13), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 13), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 50), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 103), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 103), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 104), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 104), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 51), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 51), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 223), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 223), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 80), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 80), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 158), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 158), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 221), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 221), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 52), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 52), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 248), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 248), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 105), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 105), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 247), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 247), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(79), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 106), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 106), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(79), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 107), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 107), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 108), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 108), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 246), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 246), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 225), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 225), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 23), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 224), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 224), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 145), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 145), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 146), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 146), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 21), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 147), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 147), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 147), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 148), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 148), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 58), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 222), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 222), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 59), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 61), - [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(79), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 58), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 263), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 263), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 70), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 61), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 250), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 250), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 156), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 249), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 249), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 188), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 188), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 189), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 189), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 190), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 190), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 113), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 191), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 191), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 192), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 192), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 110), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 92), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 92), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 125), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 125), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 124), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 124), - [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 121), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 121), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 58), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 76), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 26), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 116), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 116), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 111), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 111), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 113), - [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 111), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 111), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 110), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), REDUCE(sym_assignment_expression, 3, .production_id = 58), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 76), REDUCE(sym_assignment_expression, 3, .production_id = 21), - [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(78), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 149), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 149), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(78), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 96), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 96), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 44), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 44), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 25), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 25), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 73), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 73), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 136), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 136), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 70), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 69), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 69), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 68), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 68), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 67), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 67), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 66), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 66), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(82), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 162), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 162), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 49), - [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 49), SHIFT(427), - [4058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(82), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 51), - [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 51), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 135), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 135), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(78), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 59), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 49), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(78), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 15), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 15), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 16), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 16), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 16), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 16), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 23), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(85), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 58), - [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(84), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(84), - [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(84), - [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2592), - [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2316), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(280), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2116), - [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4287), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3525), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3524), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2433), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3589), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1894), - [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2051), - [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2129), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2011), - [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2110), - [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2147), - [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2289), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(84), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), - [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), - [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 49), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4402] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4406] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 26), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 77), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), - [4457] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 51), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(87), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 35), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 35), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 35), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 35), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 51), REDUCE(sym__parameter_name, 2, .production_id = 35), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(87), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 51), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(88), - [4614] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 86), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 86), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 49), SHIFT(323), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 133), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 133), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 131), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 131), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), - [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(88), - [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 171), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 171), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), - [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(83), - [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(83), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), - [4788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [4797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 141), REDUCE(sym_class, 6, .production_id = 199), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 141), REDUCE(sym_class, 6, .production_id = 199), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), REDUCE(sym_class, 4, .production_id = 125), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), REDUCE(sym_class, 4, .production_id = 125), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), REDUCE(sym_class, 4, .production_id = 124), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), REDUCE(sym_class, 4, .production_id = 124), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 123), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 123), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 162), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 162), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), REDUCE(sym_class, 5, .production_id = 161), - [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), REDUCE(sym_class, 5, .production_id = 161), - [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), REDUCE(sym_class, 5, .production_id = 160), - [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), REDUCE(sym_class, 5, .production_id = 160), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 251), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 251), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 229), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 229), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 228), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 228), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 151), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 151), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 115), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 115), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 129), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 129), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 202), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 202), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 166), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 166), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 252), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 252), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 264), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 264), - [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 193), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 193), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 265), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 265), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 78), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 78), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 274), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 274), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 11), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 11), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 12), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 12), SHIFT(3561), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 44), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 180), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 136), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), REDUCE(sym_jsx_namespace_name, 3), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 217), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 180), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 44), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 136), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 217), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 136), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 136), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 44), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 217), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 180), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 44), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), SHIFT(3957), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 217), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 26), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(2924), - [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(196), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), - [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(2924), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(193), - [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(3167), - [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2705), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 244), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 100), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(500), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 97), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 144), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 208), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(393), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 46), + [3071] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 46), REDUCE(sym_rest_pattern, 2), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(305), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3094] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 27), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT_REPEAT(3583), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(402), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT(2671), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1470), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1608), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1368), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1741), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1419), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2040), + [3260] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 12), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 12), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 46), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 101), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 101), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 47), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 47), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 100), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 100), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 149), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 149), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 77), REDUCE(sym_nested_type_identifier, 3, .production_id = 149), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 23), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 103), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 103), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 190), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 190), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 191), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 191), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 192), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 192), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 193), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 193), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(87), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 194), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 194), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 195), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 195), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 147), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 147), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 122), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 122), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 224), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 224), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 189), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 189), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 225), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 225), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 266), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 266), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 76), REDUCE(sym_nested_type_identifier, 3, .production_id = 149), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 104), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 104), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 53), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 53), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 188), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 188), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 102), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 102), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 58), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 59), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 61), + [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(87), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 21), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 58), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 226), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 226), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 105), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 105), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 227), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 227), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 148), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 148), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 228), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 228), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 61), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 249), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 249), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 150), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 150), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 250), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 250), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 252), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 252), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 82), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 82), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 251), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 251), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 161), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 161), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 48), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 48), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 110), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 109), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 107), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 253), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 253), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 70), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 159), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 45), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 26), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 47), + [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 47), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 66), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 66), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 67), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 67), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 68), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 68), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 15), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 15), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 69), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 69), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 70), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 165), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 165), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 154), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 154), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 49), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 49), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 151), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 151), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 59), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .dynamic_precedence = -1, .production_id = 54), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .dynamic_precedence = -1, .production_id = 54), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 16), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 16), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 52), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 52), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 73), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 73), + [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 16), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 16), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 51), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 51), + [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), + [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(82), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 25), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 25), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 78), REDUCE(sym_assignment_expression, 3, .production_id = 58), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 78), + [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 23), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(81), + [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(82), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 45), + [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 45), SHIFT(349), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, .dynamic_precedence = -1), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, .dynamic_precedence = -1), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), REDUCE(sym_assignment_expression, 3, .production_id = 58), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 128), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 128), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 127), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 127), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 124), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 124), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 54), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 54), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 123), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 123), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 78), REDUCE(sym_assignment_expression, 3, .production_id = 21), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(81), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 115), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 115), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 117), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 117), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 114), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 114), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 113), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 113), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 108), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 108), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 110), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 109), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 108), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 108), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 107), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 106), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 106), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [4237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(88), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(79), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 58), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2640), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2332), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(253), + [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2095), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4096), + [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3490), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3484), + [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2469), + [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3593), + [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1934), + [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2050), + [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2160), + [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2015), + [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2090), + [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2162), + [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2299), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(79), + [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(88), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), + [4412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(79), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 45), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 26), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [4429] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4435] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 35), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 35), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 35), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 35), + [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 47), REDUCE(sym__parameter_name, 2, .production_id = 35), + [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(86), + [4501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(86), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(86), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 79), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 47), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(86), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), + [4590] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 47), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 92), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 92), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 88), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 88), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 45), SHIFT(375), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(83), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 134), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 134), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 136), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 136), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 174), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 174), + [4727] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), + [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(83), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(84), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(84), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(84), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(84), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 143), REDUCE(sym_class, 6, .production_id = 202), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 143), REDUCE(sym_class, 6, .production_id = 202), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), REDUCE(sym_class, 4, .production_id = 128), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), REDUCE(sym_class, 4, .production_id = 128), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 49), REDUCE(sym_class, 4, .production_id = 127), + [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 49), REDUCE(sym_class, 4, .production_id = 127), + [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 44), REDUCE(sym_class, 4, .production_id = 126), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 44), REDUCE(sym_class, 4, .production_id = 126), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 106), REDUCE(sym_class, 5, .production_id = 165), + [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 106), REDUCE(sym_class, 5, .production_id = 165), + [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 96), REDUCE(sym_class, 5, .production_id = 164), + [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 96), REDUCE(sym_class, 5, .production_id = 164), + [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 95), REDUCE(sym_class, 5, .production_id = 163), + [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 95), REDUCE(sym_class, 5, .production_id = 163), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), + [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [5044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 231), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 231), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 112), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 112), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 132), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 132), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 80), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 80), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 196), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 196), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 277), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 277), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 205), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 205), + [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 268), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 268), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 267), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 267), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 254), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 254), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 255), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 255), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 232), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 232), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 169), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 169), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 153), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 153), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 11), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 11), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 13), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 13), SHIFT(3186), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 46), REDUCE(sym_jsx_namespace_name, 3), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 138), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 1), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 1), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 54), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 183), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 220), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 138), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 220), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 183), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 54), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 54), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 220), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 183), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 138), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 46), SHIFT(3869), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 138), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 220), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 183), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 54), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [5600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(204), + [5603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(3220), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), + [5608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(3052), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 247), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 116), SHIFT_REPEAT(2896), + [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 116), SHIFT_REPEAT(199), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 116), + [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 116), SHIFT_REPEAT(2896), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 26), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 97), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 152), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 111), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 97), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 186), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 187), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 146), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(486), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 276), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 273), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 100), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 268), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 253), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 254), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 183), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 244), - [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 184), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 237), - [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 236), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 209), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 140), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 172), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 150), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 114), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 220), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4190), - [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(242), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1195), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 71), - [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3106), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(237), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 243), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(880), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 173), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(845), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(802), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(952), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(813), - [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 176), - [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 178), - [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 216), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 211), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 215), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 240), - [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(816), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(975), - [6421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3211), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 245), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 102), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(943), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 218), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 211), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 182), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 138), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 80), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 176), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 80), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 256), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 257), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 259), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 178), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 174), - [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 138), - [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 262), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 45), - [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 45), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 235), - [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), - [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 234), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 232), - [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(940), - [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 240), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 243), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 219), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 266), - [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 267), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 271), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 215), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 259), - [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 195), - [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 195), SHIFT_REPEAT(3537), - [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 195), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [6609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 101), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [6626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3439), - [6629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3440), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 143), - [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 143), SHIFT_REPEAT(354), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 142), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), - [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 88), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 233), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2945), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(978), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 47), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 37), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 44), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 155), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 155), - [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 154), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 154), - [6829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(185), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(175), - [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 44), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 261), - [6875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 197), SHIFT_REPEAT(2287), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 197), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [6884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(776), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 137), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 80), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [6935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3889), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(383), - [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 139), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 260), - [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 258), - [6959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2727), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), - [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 214), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 114), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 255), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 92), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 77), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 94), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 81), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 175), - [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 150), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(135), - [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 181), - [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 177), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 275), - [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 238), - [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 210), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), - [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 239), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 212), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 172), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 213), - [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 135), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [7133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2831), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 208), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 44), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 209), - [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 269), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 179), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 270), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 272), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2094), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [7191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2144), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 236), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 223), + [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 120), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 120), + [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 247), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 279), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 276), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 271), + [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 256), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 257), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 240), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 239), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(393), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 212), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 211), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 175), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 94), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(439), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 142), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1205), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 120), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 120), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4156), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(303), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 121), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 121), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 71), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3094), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(239), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(948), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 181), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 262), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(840), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 274), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 270), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 269), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 214), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 246), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 179), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 243), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 54), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 55), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 55), + [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(928), + [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(841), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 265), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 177), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 262), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 260), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 259), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 176), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(832), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(925), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 185), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 248), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 218), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 140), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 99), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 246), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 115), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 82), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 243), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 238), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 237), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 235), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 117), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [6489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(858), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 121), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 121), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 222), + [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 181), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 179), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 221), + [6518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(819), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 219), + [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 154), + [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 218), + [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), + [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(957), + [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3383), + [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 214), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), + [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 82), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 140), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 144), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 145), + [6593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 145), SHIFT_REPEAT(329), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(970), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 54), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), + [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 198), + [6660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 198), SHIFT_REPEAT(3482), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 198), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [6675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 157), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 157), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 158), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 158), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 236), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 98), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 90), + [6757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2916), + [6760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3542), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3545), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 57), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(180), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 37), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 141), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 184), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 180), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 175), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 152), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 178), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(402), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 182), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2163), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [7001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2083), + [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 278), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 275), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 273), + [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 272), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(177), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 261), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 264), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 263), + [7081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(3710), + [7084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 54), + [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 258), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 79), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 82), + [7124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(780), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 83), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(128), + [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 239), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 245), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 244), + [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 242), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3963), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 211), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 212), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 213), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 217), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), + [7205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2833), + [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 216), + [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 215), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2738), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 200), SHIFT_REPEAT(2293), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 200), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(3784), - [7273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 242), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 164), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 127), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 28), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 167), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 130), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 127), - [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 132), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 164), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 44), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 80), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 30), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 46), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 36), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 203), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 87), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 89), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 95), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 29), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [8115] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 139), + [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 111), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 83), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 135), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 130), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 133), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 30), + [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 130), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 206), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 118), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 91), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 89), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 36), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 29), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 167), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 82), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 170), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 54), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 167), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 56), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 28), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [8094] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), }; #ifdef __cplusplus diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 4cd263a4e..6d00db1d6 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -2778,42 +2778,19 @@ } ] }, - "jsx_fragment": { - "type": "SEQ", + "jsx_text": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_jsx_child" - } - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" + "type": "PATTERN", + "value": "[^{}<>\\n ]([^{}<>\\n]*[^{}<>\\n ])?" }, { - "type": "STRING", - "value": ">" + "type": "PATTERN", + "value": "\\/\\/[^\\n]*" } ] }, - "jsx_text": { - "type": "PATTERN", - "value": "[^{}<>]+" - }, "jsx_expression": { "type": "SEQ", "members": [ @@ -2863,10 +2840,6 @@ "type": "SYMBOL", "name": "_jsx_element" }, - { - "type": "SYMBOL", - "name": "jsx_fragment" - }, { "type": "SYMBOL", "name": "jsx_expression" @@ -2926,8 +2899,13 @@ "name": "identifier" }, { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" } ] }, @@ -2936,8 +2914,13 @@ "value": "." }, { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" } ] } @@ -2967,8 +2950,13 @@ "name": "_jsx_identifier" }, { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" }, { "type": "SYMBOL", @@ -2981,19 +2969,23 @@ "members": [ { "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" + "value": "" + "value": "/>" } ] } @@ -3097,10 +3085,6 @@ { "type": "SYMBOL", "name": "_jsx_element" - }, - { - "type": "SYMBOL", - "name": "jsx_fragment" } ] }, @@ -7209,73 +7193,86 @@ { "type": "CHOICE", "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_jsx_identifier" - }, - { - "type": "SYMBOL", - "name": "jsx_namespace_name" - } - ] - } - }, { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] } - ] - } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "nested_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + ] }, { - "type": "FIELD", - "name": "type_arguments", + "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } } } ] + }, + { + "type": "BLANK" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "FIELD", - "name": "attribute", - "content": { - "type": "SYMBOL", - "name": "_jsx_attribute" - } - } } ] }, diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 0cdf0a6c2..30ad722f0 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -3248,10 +3248,6 @@ "type": "jsx_expression", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_namespace_name", "named": true @@ -3277,7 +3273,7 @@ "fields": { "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3288,7 +3284,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -3332,10 +3328,6 @@ "type": "jsx_expression", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_self_closing_element", "named": true @@ -3370,37 +3362,6 @@ ] } }, - { - "type": "jsx_fragment", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "jsx_element", - "named": true - }, - { - "type": "jsx_expression", - "named": true - }, - { - "type": "jsx_fragment", - "named": true - }, - { - "type": "jsx_self_closing_element", - "named": true - }, - { - "type": "jsx_text", - "named": true - } - ] - } - }, { "type": "jsx_namespace_name", "named": true, @@ -3436,7 +3397,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3484,7 +3445,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3512,6 +3473,11 @@ } } }, + { + "type": "jsx_text", + "named": true, + "fields": {} + }, { "type": "labeled_statement", "named": true, @@ -3712,7 +3678,7 @@ "fields": { "object": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "expression", @@ -3732,7 +3698,7 @@ }, "property": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "private_property_identifier", @@ -3744,6 +3710,24 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "property_identifier", + "named": true + } + ] } }, { @@ -4025,7 +4009,11 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", + "named": true + }, + { + "type": "property_identifier", "named": true } ] @@ -6031,6 +6019,10 @@ "type": "/=", "named": false }, + { + "type": "/>", + "named": false + }, { "type": ":", "named": false @@ -6043,6 +6035,10 @@ "type": "<", "named": false }, + { + "type": "", "named": false @@ -6307,10 +6303,6 @@ "type": "is", "named": false }, - { - "type": "jsx_text", - "named": true - }, { "type": "keyof", "named": false diff --git a/typescript/src/parser.c b/typescript/src/parser.c index 5130345db..79b6f5ee6 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4251 -#define LARGE_STATE_COUNT 985 +#define STATE_COUNT 4280 +#define LARGE_STATE_COUNT 989 #define SYMBOL_COUNT 363 #define ALIAS_COUNT 6 #define TOKEN_COUNT 160 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 271 +#define PRODUCTION_ID_COUNT 273 enum { sym_identifier = 1, @@ -65,44 +65,44 @@ enum { sym__glimmer_template_content = 46, anon_sym_LTtemplate_GT = 47, anon_sym_LT_SLASHtemplate_GT = 48, - anon_sym_LT = 49, - anon_sym_GT = 50, - anon_sym_SLASH = 51, - anon_sym_DOT = 52, - anon_sym_class = 53, - anon_sym_async = 54, - anon_sym_function = 55, - anon_sym_EQ_GT = 56, - anon_sym_QMARK_DOT = 57, - anon_sym_new = 58, - anon_sym_PLUS_EQ = 59, - anon_sym_DASH_EQ = 60, - anon_sym_STAR_EQ = 61, - anon_sym_SLASH_EQ = 62, - anon_sym_PERCENT_EQ = 63, - anon_sym_CARET_EQ = 64, - anon_sym_AMP_EQ = 65, - anon_sym_PIPE_EQ = 66, - anon_sym_GT_GT_EQ = 67, - anon_sym_GT_GT_GT_EQ = 68, - anon_sym_LT_LT_EQ = 69, - anon_sym_STAR_STAR_EQ = 70, - anon_sym_AMP_AMP_EQ = 71, - anon_sym_PIPE_PIPE_EQ = 72, - anon_sym_QMARK_QMARK_EQ = 73, - anon_sym_DOT_DOT_DOT = 74, - anon_sym_AMP_AMP = 75, - anon_sym_PIPE_PIPE = 76, - anon_sym_GT_GT = 77, - anon_sym_GT_GT_GT = 78, - anon_sym_LT_LT = 79, - anon_sym_AMP = 80, - anon_sym_CARET = 81, - anon_sym_PIPE = 82, - anon_sym_PLUS = 83, - anon_sym_DASH = 84, - anon_sym_PERCENT = 85, - anon_sym_STAR_STAR = 86, + anon_sym_GT = 49, + anon_sym_DOT = 50, + anon_sym_class = 51, + anon_sym_async = 52, + anon_sym_function = 53, + anon_sym_EQ_GT = 54, + anon_sym_QMARK_DOT = 55, + anon_sym_new = 56, + anon_sym_PLUS_EQ = 57, + anon_sym_DASH_EQ = 58, + anon_sym_STAR_EQ = 59, + anon_sym_SLASH_EQ = 60, + anon_sym_PERCENT_EQ = 61, + anon_sym_CARET_EQ = 62, + anon_sym_AMP_EQ = 63, + anon_sym_PIPE_EQ = 64, + anon_sym_GT_GT_EQ = 65, + anon_sym_GT_GT_GT_EQ = 66, + anon_sym_LT_LT_EQ = 67, + anon_sym_STAR_STAR_EQ = 68, + anon_sym_AMP_AMP_EQ = 69, + anon_sym_PIPE_PIPE_EQ = 70, + anon_sym_QMARK_QMARK_EQ = 71, + anon_sym_DOT_DOT_DOT = 72, + anon_sym_AMP_AMP = 73, + anon_sym_PIPE_PIPE = 74, + anon_sym_GT_GT = 75, + anon_sym_GT_GT_GT = 76, + anon_sym_LT_LT = 77, + anon_sym_AMP = 78, + anon_sym_CARET = 79, + anon_sym_PIPE = 80, + anon_sym_PLUS = 81, + anon_sym_DASH = 82, + anon_sym_SLASH = 83, + anon_sym_PERCENT = 84, + anon_sym_STAR_STAR = 85, + anon_sym_LT = 86, anon_sym_LT_EQ = 87, anon_sym_EQ_EQ = 88, anon_sym_EQ_EQ_EQ = 89, @@ -437,9 +437,7 @@ static const char * const ts_symbol_names[] = { [sym__glimmer_template_content] = "_glimmer_template_content", [anon_sym_LTtemplate_GT] = "", - [anon_sym_LT] = "<", [anon_sym_GT] = ">", - [anon_sym_SLASH] = "/", [anon_sym_DOT] = ".", [anon_sym_class] = "class", [anon_sym_async] = "async", @@ -473,8 +471,10 @@ static const char * const ts_symbol_names[] = { [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] = "===", @@ -809,9 +809,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__glimmer_template_content] = sym__glimmer_template_content, [anon_sym_LTtemplate_GT] = anon_sym_LTtemplate_GT, [anon_sym_LT_SLASHtemplate_GT] = anon_sym_LT_SLASHtemplate_GT, - [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, - [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_class] = anon_sym_class, [anon_sym_async] = anon_sym_async, @@ -845,8 +843,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_LT] = anon_sym_LT, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, @@ -1328,18 +1328,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, [anon_sym_GT] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, [anon_sym_DOT] = { .visible = true, .named = false, @@ -1472,6 +1464,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1480,6 +1476,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, [anon_sym_LT_EQ] = { .visible = true, .named = false, @@ -2718,9 +2718,9 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 8, .length = 1}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 1}, - [13] = {.index = 3, .length = 1}, - [15] = {.index = 12, .length = 2}, - [16] = {.index = 14, .length = 1}, + [12] = {.index = 12, .length = 1}, + [14] = {.index = 3, .length = 1}, + [16] = {.index = 13, .length = 2}, [17] = {.index = 15, .length = 2}, [18] = {.index = 17, .length = 2}, [19] = {.index = 19, .length = 2}, @@ -2748,24 +2748,24 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [44] = {.index = 65, .length = 2}, [45] = {.index = 67, .length = 2}, [46] = {.index = 69, .length = 1}, - [47] = {.index = 70, .length = 3}, - [48] = {.index = 73, .length = 2}, - [49] = {.index = 75, .length = 2}, - [50] = {.index = 77, .length = 2}, - [51] = {.index = 79, .length = 2}, - [52] = {.index = 81, .length = 2}, - [53] = {.index = 83, .length = 2}, - [55] = {.index = 79, .length = 2}, - [56] = {.index = 85, .length = 2}, - [57] = {.index = 87, .length = 1}, - [58] = {.index = 88, .length = 1}, - [59] = {.index = 89, .length = 2}, - [60] = {.index = 91, .length = 4}, - [61] = {.index = 95, .length = 2}, - [62] = {.index = 97, .length = 2}, + [47] = {.index = 70, .length = 2}, + [48] = {.index = 72, .length = 1}, + [49] = {.index = 73, .length = 1}, + [50] = {.index = 74, .length = 2}, + [51] = {.index = 76, .length = 4}, + [52] = {.index = 80, .length = 2}, + [53] = {.index = 82, .length = 2}, + [54] = {.index = 84, .length = 3}, + [55] = {.index = 87, .length = 2}, + [56] = {.index = 89, .length = 2}, + [57] = {.index = 91, .length = 2}, + [58] = {.index = 93, .length = 2}, + [59] = {.index = 95, .length = 2}, + [60] = {.index = 97, .length = 2}, + [62] = {.index = 93, .length = 2}, [63] = {.index = 28, .length = 2}, [64] = {.index = 32, .length = 2}, - [65] = {.index = 85, .length = 2}, + [65] = {.index = 70, .length = 2}, [66] = {.index = 99, .length = 3}, [67] = {.index = 102, .length = 2}, [68] = {.index = 102, .length = 2}, @@ -2781,195 +2781,195 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [78] = {.index = 126, .length = 1}, [79] = {.index = 127, .length = 1}, [80] = {.index = 128, .length = 1}, - [81] = {.index = 28, .length = 2}, - [82] = {.index = 129, .length = 2}, - [83] = {.index = 131, .length = 5}, - [84] = {.index = 136, .length = 1}, - [85] = {.index = 137, .length = 2}, - [86] = {.index = 139, .length = 3}, - [87] = {.index = 142, .length = 2}, - [88] = {.index = 144, .length = 3}, - [89] = {.index = 147, .length = 6}, - [90] = {.index = 153, .length = 1}, - [91] = {.index = 154, .length = 1}, - [92] = {.index = 155, .length = 3}, - [93] = {.index = 158, .length = 3}, - [94] = {.index = 161, .length = 4}, - [95] = {.index = 165, .length = 2}, - [96] = {.index = 167, .length = 3}, - [97] = {.index = 170, .length = 1}, - [98] = {.index = 171, .length = 4}, - [99] = {.index = 175, .length = 4}, - [100] = {.index = 179, .length = 4}, - [101] = {.index = 183, .length = 2}, - [102] = {.index = 185, .length = 3}, - [103] = {.index = 188, .length = 2}, - [104] = {.index = 190, .length = 2}, - [105] = {.index = 192, .length = 2}, - [106] = {.index = 194, .length = 3}, - [107] = {.index = 197, .length = 2}, - [108] = {.index = 199, .length = 3}, - [109] = {.index = 202, .length = 2}, - [110] = {.index = 204, .length = 2}, - [111] = {.index = 206, .length = 4}, - [112] = {.index = 204, .length = 2}, - [113] = {.index = 210, .length = 4}, - [114] = {.index = 214, .length = 4}, - [115] = {.index = 218, .length = 5}, - [116] = {.index = 223, .length = 3}, - [117] = {.index = 142, .length = 2}, - [118] = {.index = 226, .length = 1}, - [119] = {.index = 226, .length = 1}, - [120] = {.index = 227, .length = 2}, - [121] = {.index = 229, .length = 3}, - [122] = {.index = 232, .length = 2}, - [123] = {.index = 234, .length = 3}, - [124] = {.index = 237, .length = 2}, - [125] = {.index = 239, .length = 3}, - [126] = {.index = 242, .length = 1}, - [127] = {.index = 243, .length = 2}, - [128] = {.index = 245, .length = 2}, - [129] = {.index = 247, .length = 5}, - [130] = {.index = 243, .length = 2}, - [131] = {.index = 252, .length = 1}, - [132] = {.index = 253, .length = 4}, - [133] = {.index = 257, .length = 2}, - [134] = {.index = 259, .length = 2}, - [135] = {.index = 261, .length = 2}, - [136] = {.index = 263, .length = 2}, - [137] = {.index = 265, .length = 1}, - [138] = {.index = 266, .length = 2}, - [139] = {.index = 268, .length = 1}, - [140] = {.index = 269, .length = 4}, - [141] = {.index = 273, .length = 4}, - [142] = {.index = 273, .length = 4}, - [143] = {.index = 277, .length = 4}, - [144] = {.index = 277, .length = 4}, - [145] = {.index = 281, .length = 4}, - [146] = {.index = 281, .length = 4}, - [147] = {.index = 285, .length = 2}, - [148] = {.index = 287, .length = 3}, - [149] = {.index = 290, .length = 2}, - [150] = {.index = 292, .length = 2}, - [151] = {.index = 294, .length = 3}, - [152] = {.index = 297, .length = 4}, - [153] = {.index = 301, .length = 4}, + [83] = {.index = 28, .length = 2}, + [84] = {.index = 129, .length = 2}, + [85] = {.index = 131, .length = 5}, + [86] = {.index = 136, .length = 1}, + [87] = {.index = 137, .length = 2}, + [88] = {.index = 139, .length = 3}, + [89] = {.index = 142, .length = 2}, + [90] = {.index = 144, .length = 3}, + [91] = {.index = 147, .length = 6}, + [92] = {.index = 153, .length = 1}, + [93] = {.index = 154, .length = 1}, + [94] = {.index = 155, .length = 3}, + [95] = {.index = 158, .length = 3}, + [96] = {.index = 161, .length = 4}, + [97] = {.index = 165, .length = 2}, + [98] = {.index = 167, .length = 3}, + [99] = {.index = 170, .length = 4}, + [100] = {.index = 174, .length = 2}, + [101] = {.index = 176, .length = 3}, + [102] = {.index = 179, .length = 2}, + [103] = {.index = 181, .length = 3}, + [104] = {.index = 184, .length = 2}, + [105] = {.index = 186, .length = 2}, + [106] = {.index = 188, .length = 4}, + [107] = {.index = 186, .length = 2}, + [108] = {.index = 192, .length = 4}, + [109] = {.index = 196, .length = 4}, + [110] = {.index = 200, .length = 5}, + [111] = {.index = 205, .length = 3}, + [112] = {.index = 208, .length = 2}, + [113] = {.index = 210, .length = 1}, + [114] = {.index = 211, .length = 4}, + [115] = {.index = 215, .length = 4}, + [116] = {.index = 219, .length = 2}, + [117] = {.index = 221, .length = 3}, + [118] = {.index = 224, .length = 2}, + [119] = {.index = 142, .length = 2}, + [120] = {.index = 226, .length = 1}, + [121] = {.index = 226, .length = 1}, + [122] = {.index = 227, .length = 2}, + [123] = {.index = 229, .length = 3}, + [124] = {.index = 232, .length = 2}, + [125] = {.index = 234, .length = 3}, + [126] = {.index = 237, .length = 2}, + [127] = {.index = 239, .length = 3}, + [128] = {.index = 242, .length = 1}, + [129] = {.index = 243, .length = 2}, + [130] = {.index = 245, .length = 2}, + [131] = {.index = 247, .length = 5}, + [132] = {.index = 243, .length = 2}, + [133] = {.index = 252, .length = 1}, + [134] = {.index = 253, .length = 4}, + [135] = {.index = 257, .length = 2}, + [136] = {.index = 259, .length = 2}, + [137] = {.index = 261, .length = 1}, + [138] = {.index = 262, .length = 2}, + [139] = {.index = 264, .length = 2}, + [140] = {.index = 266, .length = 2}, + [141] = {.index = 268, .length = 4}, + [142] = {.index = 272, .length = 3}, + [143] = {.index = 275, .length = 4}, + [144] = {.index = 279, .length = 4}, + [145] = {.index = 283, .length = 4}, + [146] = {.index = 287, .length = 4}, + [147] = {.index = 291, .length = 5}, + [148] = {.index = 296, .length = 2}, + [149] = {.index = 298, .length = 2}, + [150] = {.index = 300, .length = 1}, + [151] = {.index = 301, .length = 4}, + [152] = {.index = 301, .length = 4}, + [153] = {.index = 305, .length = 4}, [154] = {.index = 305, .length = 4}, [155] = {.index = 309, .length = 4}, - [156] = {.index = 313, .length = 5}, - [157] = {.index = 318, .length = 2}, - [158] = {.index = 320, .length = 3}, - [159] = {.index = 323, .length = 2}, - [160] = {.index = 323, .length = 2}, - [161] = {.index = 325, .length = 3}, - [162] = {.index = 328, .length = 3}, - [163] = {.index = 137, .length = 2}, - [164] = {.index = 331, .length = 2}, - [165] = {.index = 333, .length = 3}, - [166] = {.index = 336, .length = 4}, - [167] = {.index = 340, .length = 3}, - [168] = {.index = 343, .length = 3}, - [169] = {.index = 346, .length = 2}, - [170] = {.index = 348, .length = 3}, - [171] = {.index = 351, .length = 5}, - [172] = {.index = 346, .length = 2}, - [173] = {.index = 356, .length = 3}, - [174] = {.index = 356, .length = 3}, - [175] = {.index = 359, .length = 3}, - [176] = {.index = 362, .length = 2}, - [177] = {.index = 364, .length = 4}, - [178] = {.index = 137, .length = 2}, - [179] = {.index = 368, .length = 1}, - [180] = {.index = 369, .length = 3}, - [181] = {.index = 372, .length = 2}, - [182] = {.index = 374, .length = 2}, - [183] = {.index = 376, .length = 1}, - [184] = {.index = 377, .length = 2}, - [185] = {.index = 379, .length = 2}, - [186] = {.index = 381, .length = 4}, - [187] = {.index = 385, .length = 4}, - [188] = {.index = 389, .length = 4}, - [189] = {.index = 393, .length = 3}, - [190] = {.index = 396, .length = 2}, - [191] = {.index = 398, .length = 2}, - [192] = {.index = 400, .length = 2}, - [193] = {.index = 402, .length = 3}, - [194] = {.index = 405, .length = 3}, - [195] = {.index = 408, .length = 5}, - [196] = {.index = 413, .length = 3}, - [197] = {.index = 416, .length = 2}, - [198] = {.index = 418, .length = 2}, - [199] = {.index = 420, .length = 2}, - [200] = {.index = 422, .length = 1}, - [201] = {.index = 423, .length = 4}, - [202] = {.index = 427, .length = 3}, - [203] = {.index = 430, .length = 4}, - [204] = {.index = 434, .length = 5}, - [205] = {.index = 439, .length = 1}, - [206] = {.index = 440, .length = 2}, - [207] = {.index = 442, .length = 4}, - [208] = {.index = 446, .length = 4}, - [209] = {.index = 450, .length = 2}, - [210] = {.index = 452, .length = 4}, - [211] = {.index = 456, .length = 4}, - [212] = {.index = 460, .length = 2}, - [213] = {.index = 462, .length = 2}, - [214] = {.index = 464, .length = 1}, - [215] = {.index = 465, .length = 3}, - [216] = {.index = 468, .length = 1}, - [217] = {.index = 469, .length = 2}, - [218] = {.index = 471, .length = 4}, - [219] = {.index = 475, .length = 4}, - [220] = {.index = 479, .length = 4}, - [221] = {.index = 483, .length = 3}, - [222] = {.index = 486, .length = 2}, - [223] = {.index = 488, .length = 3}, - [224] = {.index = 491, .length = 3}, - [225] = {.index = 494, .length = 2}, - [227] = {.index = 496, .length = 4}, - [228] = {.index = 500, .length = 5}, - [229] = {.index = 505, .length = 5}, - [230] = {.index = 510, .length = 5}, - [231] = {.index = 515, .length = 3}, - [232] = {.index = 518, .length = 3}, - [233] = {.index = 521, .length = 3}, + [156] = {.index = 309, .length = 4}, + [157] = {.index = 313, .length = 2}, + [158] = {.index = 315, .length = 3}, + [159] = {.index = 318, .length = 2}, + [160] = {.index = 320, .length = 3}, + [161] = {.index = 323, .length = 2}, + [162] = {.index = 323, .length = 2}, + [163] = {.index = 325, .length = 3}, + [164] = {.index = 328, .length = 3}, + [165] = {.index = 137, .length = 2}, + [166] = {.index = 331, .length = 2}, + [167] = {.index = 333, .length = 3}, + [168] = {.index = 336, .length = 4}, + [169] = {.index = 340, .length = 3}, + [170] = {.index = 343, .length = 3}, + [171] = {.index = 346, .length = 2}, + [172] = {.index = 348, .length = 3}, + [173] = {.index = 351, .length = 5}, + [174] = {.index = 346, .length = 2}, + [175] = {.index = 356, .length = 3}, + [176] = {.index = 356, .length = 3}, + [177] = {.index = 359, .length = 3}, + [178] = {.index = 362, .length = 2}, + [179] = {.index = 364, .length = 4}, + [180] = {.index = 137, .length = 2}, + [181] = {.index = 368, .length = 1}, + [182] = {.index = 369, .length = 2}, + [183] = {.index = 371, .length = 2}, + [184] = {.index = 373, .length = 2}, + [185] = {.index = 375, .length = 2}, + [186] = {.index = 377, .length = 3}, + [187] = {.index = 380, .length = 1}, + [188] = {.index = 381, .length = 3}, + [189] = {.index = 384, .length = 5}, + [190] = {.index = 389, .length = 3}, + [191] = {.index = 392, .length = 2}, + [192] = {.index = 394, .length = 2}, + [193] = {.index = 396, .length = 4}, + [194] = {.index = 400, .length = 4}, + [195] = {.index = 404, .length = 4}, + [196] = {.index = 408, .length = 3}, + [197] = {.index = 411, .length = 2}, + [198] = {.index = 413, .length = 3}, + [199] = {.index = 416, .length = 2}, + [200] = {.index = 418, .length = 2}, + [201] = {.index = 420, .length = 2}, + [202] = {.index = 422, .length = 1}, + [203] = {.index = 423, .length = 4}, + [204] = {.index = 427, .length = 3}, + [205] = {.index = 430, .length = 4}, + [206] = {.index = 434, .length = 5}, + [207] = {.index = 439, .length = 1}, + [208] = {.index = 440, .length = 2}, + [209] = {.index = 442, .length = 4}, + [210] = {.index = 446, .length = 4}, + [211] = {.index = 450, .length = 2}, + [212] = {.index = 452, .length = 4}, + [213] = {.index = 456, .length = 4}, + [214] = {.index = 460, .length = 2}, + [215] = {.index = 462, .length = 2}, + [216] = {.index = 464, .length = 3}, + [217] = {.index = 467, .length = 3}, + [218] = {.index = 470, .length = 2}, + [219] = {.index = 472, .length = 2}, + [220] = {.index = 474, .length = 1}, + [221] = {.index = 475, .length = 1}, + [222] = {.index = 476, .length = 3}, + [223] = {.index = 479, .length = 2}, + [224] = {.index = 481, .length = 4}, + [225] = {.index = 485, .length = 4}, + [226] = {.index = 489, .length = 4}, + [227] = {.index = 493, .length = 3}, + [229] = {.index = 496, .length = 4}, + [230] = {.index = 500, .length = 5}, + [231] = {.index = 505, .length = 5}, + [232] = {.index = 510, .length = 5}, + [233] = {.index = 515, .length = 3}, [234] = {.index = 518, .length = 3}, - [235] = {.index = 524, .length = 2}, - [236] = {.index = 526, .length = 4}, - [237] = {.index = 530, .length = 4}, - [238] = {.index = 534, .length = 2}, - [239] = {.index = 536, .length = 2}, - [240] = {.index = 538, .length = 4}, - [241] = {.index = 542, .length = 3}, - [242] = {.index = 545, .length = 2}, - [243] = {.index = 547, .length = 3}, - [244] = {.index = 550, .length = 2}, - [245] = {.index = 552, .length = 1}, - [246] = {.index = 553, .length = 5}, - [247] = {.index = 558, .length = 5}, - [248] = {.index = 563, .length = 4}, - [249] = {.index = 567, .length = 4}, - [250] = {.index = 571, .length = 3}, - [251] = {.index = 571, .length = 3}, - [252] = {.index = 574, .length = 2}, - [253] = {.index = 576, .length = 3}, - [254] = {.index = 579, .length = 2}, - [255] = {.index = 581, .length = 3}, - [256] = {.index = 584, .length = 2}, - [257] = {.index = 586, .length = 2}, - [258] = {.index = 588, .length = 5}, - [259] = {.index = 593, .length = 5}, - [260] = {.index = 598, .length = 4}, - [261] = {.index = 598, .length = 4}, - [262] = {.index = 602, .length = 4}, - [263] = {.index = 606, .length = 4}, - [264] = {.index = 610, .length = 3}, - [265] = {.index = 613, .length = 2}, - [266] = {.index = 615, .length = 2}, - [267] = {.index = 617, .length = 3}, - [268] = {.index = 620, .length = 5}, - [269] = {.index = 625, .length = 4}, - [270] = {.index = 629, .length = 3}, + [235] = {.index = 521, .length = 3}, + [236] = {.index = 518, .length = 3}, + [237] = {.index = 524, .length = 2}, + [238] = {.index = 526, .length = 4}, + [239] = {.index = 530, .length = 4}, + [240] = {.index = 534, .length = 3}, + [241] = {.index = 537, .length = 2}, + [242] = {.index = 539, .length = 2}, + [243] = {.index = 541, .length = 3}, + [244] = {.index = 544, .length = 2}, + [245] = {.index = 546, .length = 2}, + [246] = {.index = 548, .length = 1}, + [247] = {.index = 549, .length = 4}, + [248] = {.index = 553, .length = 5}, + [249] = {.index = 558, .length = 5}, + [250] = {.index = 563, .length = 4}, + [251] = {.index = 567, .length = 4}, + [252] = {.index = 571, .length = 3}, + [253] = {.index = 574, .length = 3}, + [254] = {.index = 574, .length = 3}, + [255] = {.index = 577, .length = 2}, + [256] = {.index = 579, .length = 2}, + [257] = {.index = 581, .length = 3}, + [258] = {.index = 584, .length = 2}, + [259] = {.index = 586, .length = 2}, + [260] = {.index = 588, .length = 5}, + [261] = {.index = 593, .length = 5}, + [262] = {.index = 598, .length = 4}, + [263] = {.index = 598, .length = 4}, + [264] = {.index = 602, .length = 4}, + [265] = {.index = 606, .length = 3}, + [266] = {.index = 609, .length = 2}, + [267] = {.index = 611, .length = 2}, + [268] = {.index = 613, .length = 3}, + [269] = {.index = 616, .length = 4}, + [270] = {.index = 620, .length = 5}, + [271] = {.index = 625, .length = 3}, + [272] = {.index = 628, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2995,10 +2995,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [11] = {field_body, 1}, [12] = + {field_constructor, 1}, + [13] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [14] = - {field_constructor, 1}, [15] = {field_argument, 0}, {field_operator, 1}, @@ -3082,48 +3082,48 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [69] = {field_label, 1}, [70] = + {field_body, 2}, + {field_name, 1}, + [72] = + {field_value, 1}, + [73] = + {field_body, 2}, + [74] = + {field_body, 2}, + {field_type_parameters, 1}, + [76] = + {field_body, 2}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + {field_type_parameters, 1, .inherited = true}, + [80] = + {field_arguments, 2}, + {field_constructor, 1}, + [82] = + {field_constructor, 1}, + {field_type_arguments, 2}, + [84] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [73] = + [87] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [75] = + [89] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [77] = + [91] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [79] = + [93] = {field_name, 0}, {field_type_arguments, 1}, - [81] = + [95] = {field_name, 0}, {field_value, 1}, - [83] = + [97] = {field_constraint, 1}, {field_name, 0}, - [85] = - {field_body, 2}, - {field_name, 1}, - [87] = - {field_value, 1}, - [88] = - {field_body, 2}, - [89] = - {field_body, 2}, - {field_type_parameters, 1}, - [91] = - {field_body, 2}, - {field_parameters, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - {field_type_parameters, 1, .inherited = true}, - [95] = - {field_arguments, 2}, - {field_constructor, 1}, - [97] = - {field_constructor, 1}, - {field_type_arguments, 2}, [99] = {field_left, 0}, {field_operator, 1}, @@ -3224,80 +3224,80 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_finalizer, 3}, {field_handler, 2}, [170] = - {field_parameters, 1}, - [171] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [175] = - {field_arguments, 1}, - {field_function, 0}, - {field_object, 0, .inherited = true}, - {field_property, 0, .inherited = true}, - [179] = - {field_arguments, 1}, - {field_function, 0}, - {field_index, 0, .inherited = true}, - {field_object, 0, .inherited = true}, - [183] = - {field_module, 0}, - {field_name, 2}, - [185] = - {field_constraint, 1}, - {field_name, 0}, - {field_value, 2}, - [188] = - {field_parameters, 0}, - {field_return_type, 2}, - [190] = - {field_flags, 3}, - {field_pattern, 1}, - [192] = + [174] = {field_body, 3}, {field_name, 1}, - [194] = + [176] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [197] = + [179] = {field_type_arguments, 2}, {field_value, 1}, - [199] = + [181] = {field_type_arguments, 2, .inherited = true}, {field_value, 1}, {field_value, 2, .inherited = true}, - [202] = + [184] = {field_body, 3}, {field_type_parameters, 1}, - [204] = + [186] = {field_body, 3}, {field_parameter, 1}, - [206] = + [188] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [210] = + [192] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [214] = + [196] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [218] = + [200] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [223] = + [205] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, + [208] = + {field_flags, 3}, + {field_pattern, 1}, + [210] = + {field_parameters, 1}, + [211] = + {field_arguments, 1}, + {field_function, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + [215] = + {field_arguments, 1}, + {field_function, 0}, + {field_index, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + [219] = + {field_module, 0}, + {field_name, 2}, + [221] = + {field_constraint, 1}, + {field_name, 0}, + {field_value, 2}, + [224] = + {field_parameters, 0}, + {field_return_type, 2}, [226] = {field_type, 1}, [227] = @@ -3349,81 +3349,81 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 1}, {field_condition, 3}, [261] = - {field_parameters, 1}, - {field_type, 2}, - [263] = - {field_parameters, 2}, - {field_type_parameters, 1}, - [265] = {field_name, 2}, - [266] = + [262] = + {field_name, 1}, + {field_value, 2, .inherited = true}, + [264] = {field_name, 1}, {field_type, 2}, + [266] = + {field_name, 0}, + {field_value, 2, .inherited = true}, [268] = - {field_parameters, 2}, - [269] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [273] = - {field_object, 0}, - {field_object, 0, .inherited = true}, - {field_property, 0, .inherited = true}, - {field_property, 2}, - [277] = - {field_index, 0, .inherited = true}, - {field_object, 0}, - {field_object, 0, .inherited = true}, - {field_property, 2}, - [281] = - {field_arguments, 0, .inherited = true}, - {field_function, 0, .inherited = true}, - {field_object, 0}, - {field_property, 2}, - [285] = - {field_parameters, 1}, - {field_type, 3}, - [287] = - {field_parameters, 1}, - {field_return_type, 3}, - {field_type_parameters, 0}, - [290] = - {field_name, 1}, - {field_value, 2, .inherited = true}, - [292] = - {field_name, 0}, - {field_value, 2, .inherited = true}, - [294] = + [272] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [297] = + [275] = {field_type_arguments, 2}, {field_type_arguments, 3, .inherited = true}, {field_value, 1}, {field_value, 3, .inherited = true}, - [301] = + [279] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [305] = + [283] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [309] = + [287] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [313] = + [291] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, + [296] = + {field_parameters, 1}, + {field_type, 2}, + [298] = + {field_parameters, 2}, + {field_type_parameters, 1}, + [300] = + {field_parameters, 2}, + [301] = + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + {field_property, 2}, + [305] = + {field_index, 0, .inherited = true}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 2}, + [309] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + {field_object, 0}, + {field_property, 2}, + [313] = + {field_parameters, 1}, + {field_type, 3}, + [315] = + {field_parameters, 1}, + {field_return_type, 3}, + {field_type_parameters, 0}, [318] = {field_body, 4}, {field_name, 2}, @@ -3494,65 +3494,65 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [368] = {field_type, 3}, [369] = - {field_parameters, 2}, - {field_type, 3}, - {field_type_parameters, 1}, - [372] = + {field_name, 2}, + {field_value, 3, .inherited = true}, + [371] = {field_name, 2}, {field_type, 3}, - [374] = + [373] = + {field_name, 1}, + {field_value, 3, .inherited = true}, + [375] = {field_name, 1}, {field_type, 3}, - [376] = - {field_name, 3}, [377] = + {field_name, 1}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [380] = + {field_name, 3}, + [381] = + {field_name, 0}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [384] = + {field_body, 5}, + {field_name, 3}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [389] = + {field_parameters, 2}, + {field_type, 3}, + {field_type_parameters, 1}, + [392] = {field_parameters, 2}, {field_type, 3}, - [379] = + [394] = {field_parameters, 3}, {field_type_parameters, 2}, - [381] = + [396] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [385] = + [400] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [389] = + [404] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [393] = + [408] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [396] = + [411] = {field_parameters, 2}, {field_type, 4}, - [398] = - {field_name, 2}, - {field_value, 3, .inherited = true}, - [400] = - {field_name, 1}, - {field_value, 3, .inherited = true}, - [402] = - {field_name, 1}, - {field_type, 2}, - {field_value, 3, .inherited = true}, - [405] = - {field_name, 0}, - {field_type, 2}, - {field_value, 3, .inherited = true}, - [408] = - {field_body, 5}, - {field_name, 3}, - {field_parameters, 4, .inherited = true}, - {field_return_type, 4, .inherited = true}, - {field_type_parameters, 4, .inherited = true}, [413] = {field_body, 5}, {field_name, 2}, @@ -3618,54 +3618,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 4, .inherited = true}, [460] = {field_name, 2}, - {field_type, 4}, + {field_value, 4, .inherited = true}, [462] = - {field_name, 3}, + {field_name, 2}, {field_type, 4}, [464] = + {field_name, 2}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [467] = + {field_name, 1}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [470] = + {field_name, 3}, + {field_value, 4, .inherited = true}, + [472] = + {field_name, 3}, {field_type, 4}, - [465] = + [474] = + {field_type, 4}, + [475] = + {field_name, 4}, + [476] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [468] = - {field_name, 4}, - [469] = + [479] = {field_index, 3}, {field_object, 0}, - [471] = + [481] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [475] = + [485] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [479] = + [489] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [483] = + [493] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [486] = - {field_name, 2}, - {field_value, 4, .inherited = true}, - [488] = - {field_name, 2}, - {field_type, 3}, - {field_value, 4, .inherited = true}, - [491] = - {field_name, 1}, - {field_type, 3}, - {field_value, 4, .inherited = true}, - [494] = - {field_name, 3}, - {field_value, 4, .inherited = true}, [496] = {field_body, 6}, {field_decorator, 0, .inherited = true}, @@ -3715,32 +3715,32 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, [534] = - {field_name, 3}, - {field_type, 5}, - [536] = - {field_name, 4}, - {field_type, 5}, - [538] = - {field_alternative, 6}, - {field_consequence, 4}, - {field_left, 0}, - {field_right, 2}, - [542] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [545] = + [537] = {field_name, 3}, {field_value, 5, .inherited = true}, - [547] = + [539] = + {field_name, 3}, + {field_type, 5}, + [541] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [550] = + [544] = {field_name, 4}, {field_value, 5, .inherited = true}, - [552] = + [546] = + {field_name, 4}, + {field_type, 5}, + [548] = {field_name, 5}, + [549] = + {field_alternative, 6}, + {field_consequence, 4}, + {field_left, 0}, + {field_right, 2}, [553] = {field_body, 7}, {field_name, 4}, @@ -3764,19 +3764,19 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, [571] = + {field_name, 3}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [574] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [574] = + [577] = {field_name, 4}, - {field_type, 6}, - [576] = - {field_name, 3}, - {field_type, 5}, {field_value, 6, .inherited = true}, [579] = {field_name, 4}, - {field_value, 6, .inherited = true}, + {field_type, 6}, [581] = {field_name, 4}, {field_type, 5}, @@ -3810,24 +3810,24 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, [606] = - {field_name, 6}, - {field_parameters, 7, .inherited = true}, - {field_return_type, 7, .inherited = true}, - {field_type_parameters, 7, .inherited = true}, - [610] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [613] = + [609] = {field_name, 5}, {field_value, 7, .inherited = true}, - [615] = + [611] = {field_name, 5}, {field_type, 7}, - [617] = + [613] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, + [616] = + {field_name, 6}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, [620] = {field_body, 9}, {field_name, 6}, @@ -3835,14 +3835,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, [625] = + {field_name, 5}, + {field_type, 7}, + {field_value, 8, .inherited = true}, + [628] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [629] = - {field_name, 5}, - {field_type, 7}, - {field_value, 8, .inherited = true}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -3853,13 +3853,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_property_identifier, }, - [12] = { - [0] = alias_sym_type_identifier, - }, [13] = { [0] = alias_sym_type_identifier, }, [14] = { + [0] = alias_sym_type_identifier, + }, + [15] = { [0] = alias_sym_this_type, }, [24] = { @@ -3883,19 +3883,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [46] = { [1] = alias_sym_statement_identifier, }, - [51] = { - [0] = alias_sym_type_identifier, + [47] = { + [1] = alias_sym_type_identifier, }, - [52] = { + [58] = { [0] = alias_sym_type_identifier, }, - [53] = { + [59] = { [0] = alias_sym_type_identifier, }, - [54] = { - [1] = alias_sym_type_identifier, + [60] = { + [0] = alias_sym_type_identifier, }, - [56] = { + [61] = { [1] = alias_sym_type_identifier, }, [67] = { @@ -3905,116 +3905,126 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_property_identifier, }, [81] = { - [0] = alias_sym_shorthand_property_identifier_pattern, + [2] = alias_sym_property_identifier, }, - [101] = { - [2] = alias_sym_type_identifier, + [82] = { + [0] = sym_member_expression, + [2] = alias_sym_property_identifier, }, - [102] = { - [0] = alias_sym_type_identifier, + [83] = { + [0] = alias_sym_shorthand_property_identifier_pattern, }, - [105] = { + [100] = { [1] = alias_sym_type_identifier, }, - [106] = { + [101] = { [1] = alias_sym_type_identifier, }, - [110] = { + [105] = { [1] = sym_identifier, }, + [116] = { + [2] = alias_sym_type_identifier, + }, [117] = { + [0] = alias_sym_type_identifier, + }, + [119] = { [2] = alias_sym_type_identifier, }, - [118] = { + [120] = { [1] = alias_sym_type_identifier, }, - [123] = { + [125] = { [2] = alias_sym_type_identifier, }, - [128] = { + [130] = { [1] = alias_sym_type_identifier, }, - [130] = { + [132] = { [0] = sym_identifier, }, - [141] = { - [2] = alias_sym_property_identifier, + [142] = { + [1] = alias_sym_type_identifier, }, - [143] = { + [151] = { [2] = alias_sym_property_identifier, }, - [145] = { + [153] = { [2] = alias_sym_property_identifier, }, - [151] = { - [1] = alias_sym_type_identifier, + [155] = { + [2] = alias_sym_property_identifier, }, - [157] = { + [159] = { [2] = alias_sym_type_identifier, }, - [158] = { + [160] = { [2] = alias_sym_type_identifier, }, - [159] = { + [161] = { [1] = alias_sym_type_identifier, }, - [163] = { + [165] = { [0] = sym_identifier, }, - [165] = { + [167] = { [2] = alias_sym_type_identifier, }, - [166] = { + [168] = { [2] = alias_sym_type_identifier, }, - [168] = { + [170] = { [3] = alias_sym_type_identifier, }, - [170] = { + [172] = { [1] = alias_sym_type_identifier, }, - [172] = { + [174] = { [1] = sym_identifier, }, - [173] = { + [175] = { [1] = sym_identifier, }, - [178] = { + [180] = { [0] = alias_sym_type_identifier, }, - [196] = { + [198] = { [2] = alias_sym_type_identifier, }, - [201] = { + [203] = { [2] = alias_sym_type_identifier, }, - [202] = { + [204] = { [3] = alias_sym_type_identifier, }, - [203] = { + [205] = { [3] = alias_sym_type_identifier, }, - [226] = { + [228] = { [3] = alias_sym_property_identifier, }, - [227] = { + [229] = { [3] = alias_sym_type_identifier, }, - [232] = { + [234] = { [1] = sym_identifier, }, - [233] = { + [235] = { [0] = alias_sym_type_identifier, }, - [250] = { + [253] = { [2] = sym_identifier, }, - [260] = { + [262] = { [3] = sym_identifier, }, }; static const uint16_t ts_non_terminal_alias_map[] = { + sym_nested_identifier, 2, + sym_nested_identifier, + sym_member_expression, sym_predefined_type, 2, sym_predefined_type, sym_identifier, @@ -4038,58 +4048,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 16, + [16] = 15, [17] = 17, - [18] = 18, - [19] = 15, - [20] = 16, - [21] = 16, - [22] = 16, - [23] = 15, + [18] = 15, + [19] = 19, + [20] = 14, + [21] = 14, + [22] = 15, + [23] = 14, [24] = 15, [25] = 15, - [26] = 16, - [27] = 15, - [28] = 15, - [29] = 16, - [30] = 16, + [26] = 14, + [27] = 14, + [28] = 28, + [29] = 15, + [30] = 14, [31] = 31, [32] = 32, [33] = 33, [34] = 34, - [35] = 35, + [35] = 33, [36] = 36, - [37] = 31, + [37] = 37, [38] = 38, - [39] = 39, - [40] = 33, - [41] = 41, - [42] = 35, - [43] = 34, - [44] = 36, - [45] = 32, - [46] = 39, - [47] = 38, - [48] = 48, - [49] = 48, + [39] = 38, + [40] = 31, + [41] = 36, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 34, + [46] = 37, + [47] = 32, + [48] = 44, + [49] = 43, [50] = 50, [51] = 51, - [52] = 51, + [52] = 52, [53] = 53, - [54] = 54, - [55] = 51, + [54] = 50, + [55] = 50, [56] = 56, - [57] = 51, - [58] = 51, - [59] = 59, - [60] = 51, - [61] = 51, - [62] = 62, - [63] = 62, - [64] = 51, - [65] = 51, - [66] = 66, - [67] = 51, + [57] = 50, + [58] = 50, + [59] = 50, + [60] = 60, + [61] = 61, + [62] = 50, + [63] = 50, + [64] = 64, + [65] = 50, + [66] = 50, + [67] = 64, [68] = 68, [69] = 68, [70] = 68, @@ -4106,9 +4116,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [81] = 78, [82] = 78, [83] = 78, - [84] = 84, + [84] = 78, [85] = 78, - [86] = 78, + [86] = 86, [87] = 78, [88] = 88, [89] = 88, @@ -4120,21 +4130,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 88, [96] = 96, [97] = 96, - [98] = 96, - [99] = 99, - [100] = 99, - [101] = 99, + [98] = 98, + [99] = 98, + [100] = 96, + [101] = 98, [102] = 102, [103] = 102, [104] = 102, [105] = 105, [106] = 106, - [107] = 105, - [108] = 102, - [109] = 102, + [107] = 102, + [108] = 106, + [109] = 106, [110] = 102, - [111] = 105, - [112] = 106, + [111] = 102, + [112] = 105, [113] = 102, [114] = 102, [115] = 115, @@ -4143,15 +4153,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 118, [119] = 119, [120] = 118, - [121] = 119, + [121] = 121, [122] = 122, - [123] = 117, - [124] = 118, - [125] = 125, - [126] = 126, - [127] = 117, + [123] = 123, + [124] = 124, + [125] = 119, + [126] = 118, + [127] = 123, [128] = 119, - [129] = 129, + [129] = 123, [130] = 130, [131] = 131, [132] = 132, @@ -4162,488 +4172,488 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [137] = 137, [138] = 138, [139] = 139, - [140] = 140, + [140] = 130, [141] = 141, [142] = 142, [143] = 143, [144] = 144, - [145] = 140, + [145] = 130, [146] = 146, - [147] = 147, + [147] = 141, [148] = 148, - [149] = 140, + [149] = 130, [150] = 150, [151] = 151, - [152] = 152, + [152] = 130, [153] = 153, - [154] = 140, + [154] = 130, [155] = 155, - [156] = 140, + [156] = 156, [157] = 157, - [158] = 152, + [158] = 158, [159] = 159, [160] = 160, - [161] = 140, + [161] = 161, [162] = 162, - [163] = 140, + [163] = 163, [164] = 164, - [165] = 165, - [166] = 130, - [167] = 167, + [165] = 130, + [166] = 166, + [167] = 136, [168] = 168, - [169] = 169, - [170] = 167, - [171] = 168, - [172] = 172, - [173] = 130, + [169] = 136, + [170] = 170, + [171] = 171, + [172] = 171, + [173] = 173, [174] = 174, - [175] = 175, - [176] = 130, - [177] = 177, - [178] = 130, + [175] = 170, + [176] = 176, + [177] = 136, + [178] = 178, [179] = 179, - [180] = 175, - [181] = 130, + [180] = 178, + [181] = 178, [182] = 182, - [183] = 182, + [183] = 136, [184] = 184, - [185] = 184, - [186] = 184, - [187] = 184, + [185] = 182, + [186] = 136, + [187] = 187, [188] = 184, - [189] = 130, - [190] = 130, - [191] = 130, - [192] = 184, - [193] = 184, - [194] = 194, - [195] = 195, - [196] = 195, + [189] = 178, + [190] = 136, + [191] = 178, + [192] = 136, + [193] = 178, + [194] = 136, + [195] = 178, + [196] = 196, [197] = 197, [198] = 198, - [199] = 199, + [199] = 198, [200] = 200, [201] = 201, - [202] = 201, - [203] = 201, - [204] = 201, - [205] = 201, - [206] = 206, - [207] = 201, - [208] = 201, - [209] = 201, + [202] = 202, + [203] = 202, + [204] = 204, + [205] = 202, + [206] = 202, + [207] = 202, + [208] = 208, + [209] = 202, [210] = 210, - [211] = 201, - [212] = 201, - [213] = 201, + [211] = 202, + [212] = 202, + [213] = 202, [214] = 214, - [215] = 201, - [216] = 201, - [217] = 217, + [215] = 202, + [216] = 202, + [217] = 202, [218] = 218, [219] = 219, - [220] = 220, - [221] = 220, - [222] = 220, - [223] = 219, - [224] = 224, - [225] = 225, + [220] = 202, + [221] = 221, + [222] = 222, + [223] = 221, + [224] = 222, + [225] = 221, [226] = 226, [227] = 227, [228] = 228, - [229] = 227, - [230] = 226, + [229] = 229, + [230] = 230, [231] = 231, - [232] = 232, - [233] = 232, - [234] = 234, - [235] = 224, - [236] = 231, - [237] = 232, + [232] = 226, + [233] = 233, + [234] = 228, + [235] = 230, + [236] = 236, + [237] = 226, [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 232, - [243] = 224, - [244] = 234, - [245] = 231, + [239] = 229, + [240] = 238, + [241] = 238, + [242] = 242, + [243] = 226, + [244] = 230, + [245] = 228, [246] = 246, - [247] = 234, + [247] = 227, [248] = 227, - [249] = 226, - [250] = 226, - [251] = 241, - [252] = 252, - [253] = 227, - [254] = 224, - [255] = 226, - [256] = 231, - [257] = 234, - [258] = 258, - [259] = 228, - [260] = 231, - [261] = 228, - [262] = 224, - [263] = 232, - [264] = 227, + [249] = 228, + [250] = 230, + [251] = 251, + [252] = 226, + [253] = 238, + [254] = 254, + [255] = 236, + [256] = 236, + [257] = 233, + [258] = 238, + [259] = 259, + [260] = 236, + [261] = 251, + [262] = 236, + [263] = 251, + [264] = 264, [265] = 265, - [266] = 231, - [267] = 241, - [268] = 226, - [269] = 227, - [270] = 227, - [271] = 228, + [266] = 266, + [267] = 226, + [268] = 230, + [269] = 228, + [270] = 238, + [271] = 251, [272] = 272, - [273] = 273, - [274] = 274, - [275] = 241, - [276] = 276, - [277] = 277, - [278] = 227, - [279] = 228, - [280] = 252, - [281] = 281, - [282] = 241, - [283] = 231, - [284] = 276, - [285] = 231, - [286] = 227, - [287] = 273, + [273] = 226, + [274] = 230, + [275] = 228, + [276] = 227, + [277] = 272, + [278] = 236, + [279] = 279, + [280] = 227, + [281] = 254, + [282] = 282, + [283] = 230, + [284] = 227, + [285] = 251, + [286] = 236, + [287] = 238, [288] = 226, - [289] = 228, - [290] = 241, - [291] = 241, + [289] = 230, + [290] = 228, + [291] = 231, [292] = 292, [293] = 293, - [294] = 231, - [295] = 226, - [296] = 234, - [297] = 232, - [298] = 224, - [299] = 232, - [300] = 234, - [301] = 224, - [302] = 232, - [303] = 241, - [304] = 228, - [305] = 234, - [306] = 224, - [307] = 225, - [308] = 228, - [309] = 234, - [310] = 310, - [311] = 311, + [294] = 294, + [295] = 295, + [296] = 231, + [297] = 251, + [298] = 251, + [299] = 231, + [300] = 251, + [301] = 231, + [302] = 227, + [303] = 236, + [304] = 238, + [305] = 231, + [306] = 231, + [307] = 228, + [308] = 231, + [309] = 227, + [310] = 227, + [311] = 231, [312] = 312, [313] = 313, [314] = 314, - [315] = 315, + [315] = 314, [316] = 316, - [317] = 310, + [317] = 317, [318] = 318, [319] = 319, [320] = 320, - [321] = 318, - [322] = 318, - [323] = 320, + [321] = 321, + [322] = 312, + [323] = 323, [324] = 324, [325] = 325, [326] = 326, - [327] = 320, - [328] = 310, + [327] = 327, + [328] = 328, [329] = 329, - [330] = 319, - [331] = 319, - [332] = 329, - [333] = 310, - [334] = 316, - [335] = 315, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 316, + [334] = 320, + [335] = 317, [336] = 336, [337] = 314, - [338] = 313, - [339] = 312, - [340] = 311, + [338] = 338, + [339] = 339, + [340] = 326, [341] = 341, - [342] = 342, - [343] = 343, - [344] = 336, - [345] = 325, + [342] = 328, + [343] = 332, + [344] = 326, + [345] = 314, [346] = 346, - [347] = 347, - [348] = 329, - [349] = 349, + [347] = 320, + [348] = 320, + [349] = 323, [350] = 350, - [351] = 326, + [351] = 317, [352] = 352, - [353] = 320, - [354] = 310, + [353] = 353, + [354] = 326, [355] = 355, - [356] = 356, - [357] = 329, - [358] = 358, - [359] = 316, - [360] = 352, - [361] = 315, - [362] = 362, - [363] = 363, - [364] = 314, - [365] = 365, - [366] = 325, - [367] = 316, - [368] = 313, - [369] = 312, - [370] = 311, - [371] = 315, - [372] = 341, - [373] = 342, - [374] = 343, - [375] = 320, - [376] = 310, - [377] = 314, - [378] = 313, - [379] = 316, - [380] = 315, - [381] = 314, - [382] = 313, - [383] = 383, - [384] = 312, - [385] = 311, - [386] = 341, - [387] = 342, - [388] = 343, - [389] = 346, - [390] = 346, - [391] = 341, - [392] = 392, - [393] = 347, - [394] = 342, - [395] = 343, - [396] = 329, - [397] = 347, - [398] = 312, - [399] = 329, - [400] = 400, - [401] = 363, + [356] = 331, + [357] = 357, + [358] = 350, + [359] = 359, + [360] = 339, + [361] = 317, + [362] = 355, + [363] = 332, + [364] = 313, + [365] = 323, + [366] = 366, + [367] = 341, + [368] = 326, + [369] = 341, + [370] = 350, + [371] = 346, + [372] = 320, + [373] = 373, + [374] = 326, + [375] = 314, + [376] = 332, + [377] = 366, + [378] = 323, + [379] = 330, + [380] = 338, + [381] = 381, + [382] = 336, + [383] = 320, + [384] = 316, + [385] = 385, + [386] = 331, + [387] = 321, + [388] = 313, + [389] = 312, + [390] = 338, + [391] = 336, + [392] = 316, + [393] = 331, + [394] = 394, + [395] = 321, + [396] = 320, + [397] = 341, + [398] = 398, + [399] = 324, + [400] = 325, + [401] = 327, [402] = 350, - [403] = 346, - [404] = 358, - [405] = 336, - [406] = 355, - [407] = 363, - [408] = 311, - [409] = 350, - [410] = 326, - [411] = 350, - [412] = 341, - [413] = 347, - [414] = 336, - [415] = 336, - [416] = 358, - [417] = 326, - [418] = 326, - [419] = 325, - [420] = 355, - [421] = 342, - [422] = 422, - [423] = 319, - [424] = 363, + [403] = 330, + [404] = 346, + [405] = 355, + [406] = 320, + [407] = 324, + [408] = 339, + [409] = 317, + [410] = 366, + [411] = 325, + [412] = 350, + [413] = 366, + [414] = 314, + [415] = 327, + [416] = 330, + [417] = 327, + [418] = 323, + [419] = 419, + [420] = 341, + [421] = 346, + [422] = 326, + [423] = 341, + [424] = 320, [425] = 326, - [426] = 350, + [426] = 426, [427] = 325, - [428] = 319, - [429] = 350, - [430] = 347, - [431] = 355, - [432] = 347, - [433] = 329, - [434] = 343, - [435] = 346, - [436] = 355, - [437] = 358, - [438] = 358, - [439] = 347, - [440] = 365, - [441] = 350, - [442] = 363, - [443] = 363, - [444] = 329, - [445] = 346, - [446] = 343, - [447] = 326, - [448] = 342, - [449] = 341, - [450] = 311, - [451] = 312, - [452] = 336, - [453] = 355, - [454] = 313, - [455] = 314, - [456] = 456, - [457] = 336, - [458] = 315, - [459] = 358, - [460] = 316, - [461] = 310, - [462] = 365, - [463] = 346, - [464] = 363, - [465] = 343, - [466] = 329, - [467] = 342, - [468] = 320, - [469] = 329, - [470] = 341, - [471] = 329, - [472] = 472, - [473] = 318, - [474] = 358, - [475] = 363, - [476] = 476, - [477] = 318, - [478] = 478, - [479] = 312, - [480] = 329, - [481] = 319, - [482] = 325, - [483] = 311, - [484] = 325, - [485] = 329, - [486] = 319, - [487] = 355, - [488] = 358, - [489] = 355, - [490] = 325, - [491] = 313, - [492] = 319, - [493] = 493, - [494] = 494, - [495] = 314, - [496] = 326, - [497] = 315, - [498] = 350, - [499] = 336, - [500] = 347, - [501] = 346, - [502] = 318, - [503] = 343, - [504] = 342, - [505] = 341, - [506] = 311, - [507] = 312, - [508] = 508, - [509] = 313, + [428] = 332, + [429] = 321, + [430] = 339, + [431] = 324, + [432] = 320, + [433] = 323, + [434] = 313, + [435] = 355, + [436] = 312, + [437] = 321, + [438] = 355, + [439] = 323, + [440] = 336, + [441] = 313, + [442] = 328, + [443] = 341, + [444] = 331, + [445] = 338, + [446] = 336, + [447] = 316, + [448] = 316, + [449] = 331, + [450] = 321, + [451] = 336, + [452] = 312, + [453] = 324, + [454] = 320, + [455] = 325, + [456] = 338, + [457] = 366, + [458] = 338, + [459] = 327, + [460] = 330, + [461] = 313, + [462] = 336, + [463] = 320, + [464] = 341, + [465] = 316, + [466] = 346, + [467] = 346, + [468] = 332, + [469] = 350, + [470] = 317, + [471] = 339, + [472] = 328, + [473] = 331, + [474] = 320, + [475] = 314, + [476] = 321, + [477] = 350, + [478] = 312, + [479] = 366, + [480] = 313, + [481] = 366, + [482] = 339, + [483] = 312, + [484] = 317, + [485] = 485, + [486] = 332, + [487] = 339, + [488] = 355, + [489] = 323, + [490] = 355, + [491] = 355, + [492] = 346, + [493] = 330, + [494] = 339, + [495] = 346, + [496] = 327, + [497] = 325, + [498] = 324, + [499] = 317, + [500] = 330, + [501] = 327, + [502] = 325, + [503] = 324, + [504] = 325, + [505] = 324, + [506] = 312, + [507] = 321, + [508] = 331, + [509] = 316, [510] = 510, - [511] = 316, - [512] = 314, - [513] = 315, - [514] = 316, - [515] = 310, - [516] = 365, - [517] = 320, - [518] = 318, - [519] = 318, - [520] = 320, - [521] = 521, - [522] = 521, - [523] = 521, - [524] = 524, - [525] = 524, + [511] = 366, + [512] = 512, + [513] = 336, + [514] = 338, + [515] = 338, + [516] = 313, + [517] = 357, + [518] = 330, + [519] = 327, + [520] = 350, + [521] = 314, + [522] = 332, + [523] = 523, + [524] = 523, + [525] = 523, [526] = 526, [527] = 526, - [528] = 526, - [529] = 529, - [530] = 529, + [528] = 528, + [529] = 528, + [530] = 528, [531] = 531, [532] = 531, - [533] = 531, - [534] = 534, - [535] = 535, + [533] = 533, + [534] = 533, + [535] = 533, [536] = 536, - [537] = 147, - [538] = 536, - [539] = 534, - [540] = 535, - [541] = 135, - [542] = 534, - [543] = 535, - [544] = 544, - [545] = 545, + [537] = 537, + [538] = 538, + [539] = 536, + [540] = 537, + [541] = 538, + [542] = 536, + [543] = 537, + [544] = 139, + [545] = 159, [546] = 546, [547] = 547, [548] = 548, [549] = 549, - [550] = 549, + [550] = 550, [551] = 551, - [552] = 551, - [553] = 549, - [554] = 551, - [555] = 555, - [556] = 556, - [557] = 555, - [558] = 558, - [559] = 558, + [552] = 552, + [553] = 551, + [554] = 552, + [555] = 551, + [556] = 552, + [557] = 557, + [558] = 557, + [559] = 559, [560] = 560, - [561] = 558, - [562] = 558, + [561] = 560, + [562] = 562, [563] = 560, - [564] = 558, - [565] = 565, - [566] = 556, - [567] = 558, - [568] = 139, - [569] = 558, - [570] = 558, - [571] = 571, - [572] = 572, - [573] = 150, - [574] = 574, - [575] = 574, - [576] = 141, - [577] = 139, - [578] = 558, - [579] = 150, - [580] = 151, - [581] = 574, - [582] = 558, - [583] = 558, - [584] = 584, - [585] = 555, - [586] = 137, - [587] = 142, - [588] = 588, - [589] = 558, - [590] = 141, - [591] = 151, - [592] = 565, - [593] = 558, - [594] = 126, - [595] = 595, - [596] = 556, - [597] = 558, + [564] = 559, + [565] = 560, + [566] = 566, + [567] = 566, + [568] = 560, + [569] = 560, + [570] = 570, + [571] = 160, + [572] = 150, + [573] = 573, + [574] = 560, + [575] = 560, + [576] = 143, + [577] = 577, + [578] = 557, + [579] = 148, + [580] = 577, + [581] = 151, + [582] = 560, + [583] = 577, + [584] = 150, + [585] = 151, + [586] = 560, + [587] = 587, + [588] = 160, + [589] = 589, + [590] = 560, + [591] = 142, + [592] = 143, + [593] = 560, + [594] = 562, + [595] = 560, + [596] = 122, + [597] = 121, [598] = 598, - [599] = 599, - [600] = 600, + [599] = 559, + [600] = 560, [601] = 601, [602] = 602, [603] = 603, [604] = 604, [605] = 605, - [606] = 606, + [606] = 134, [607] = 607, - [608] = 608, - [609] = 558, + [608] = 133, + [609] = 560, [610] = 610, [611] = 611, [612] = 612, [613] = 613, - [614] = 136, + [614] = 614, [615] = 615, [616] = 616, - [617] = 125, + [617] = 617, [618] = 618, [619] = 619, [620] = 620, - [621] = 621, + [621] = 124, [622] = 622, [623] = 623, [624] = 624, @@ -4661,26 +4671,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [636] = 636, [637] = 637, [638] = 638, - [639] = 137, + [639] = 163, [640] = 640, [641] = 641, [642] = 642, [643] = 643, - [644] = 133, - [645] = 645, - [646] = 142, + [644] = 644, + [645] = 148, + [646] = 646, [647] = 647, [648] = 648, [649] = 649, [650] = 650, [651] = 651, [652] = 652, - [653] = 153, + [653] = 653, [654] = 654, [655] = 655, [656] = 656, [657] = 657, - [658] = 658, + [658] = 144, [659] = 659, [660] = 660, [661] = 661, @@ -4763,7 +4773,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [738] = 738, [739] = 739, [740] = 740, - [741] = 741, + [741] = 142, [742] = 742, [743] = 743, [744] = 744, @@ -4788,24 +4798,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [763] = 763, [764] = 764, [765] = 765, - [766] = 765, - [767] = 765, - [768] = 765, - [769] = 765, - [770] = 770, - [771] = 770, - [772] = 770, - [773] = 773, - [774] = 773, - [775] = 770, - [776] = 773, - [777] = 770, - [778] = 773, - [779] = 773, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 769, + [771] = 769, + [772] = 769, + [773] = 769, + [774] = 774, + [775] = 774, + [776] = 776, + [777] = 776, + [778] = 774, + [779] = 774, + [780] = 776, + [781] = 774, + [782] = 776, + [783] = 776, [784] = 784, [785] = 785, [786] = 786, @@ -4821,442 +4831,442 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [796] = 796, [797] = 797, [798] = 798, - [799] = 797, - [800] = 798, - [801] = 797, - [802] = 798, - [803] = 803, - [804] = 803, - [805] = 803, - [806] = 806, - [807] = 806, - [808] = 808, - [809] = 808, + [799] = 799, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 802, + [804] = 801, + [805] = 802, + [806] = 801, + [807] = 807, + [808] = 807, + [809] = 807, [810] = 810, [811] = 811, [812] = 812, - [813] = 810, - [814] = 812, - [815] = 811, - [816] = 812, - [817] = 817, - [818] = 812, - [819] = 819, + [813] = 813, + [814] = 811, + [815] = 810, + [816] = 816, + [817] = 813, + [818] = 818, + [819] = 810, [820] = 820, - [821] = 821, - [822] = 810, - [823] = 808, - [824] = 824, - [825] = 824, - [826] = 806, - [827] = 824, - [828] = 808, + [821] = 810, + [822] = 818, + [823] = 813, + [824] = 810, + [825] = 810, + [826] = 826, + [827] = 816, + [828] = 826, [829] = 810, - [830] = 812, + [830] = 830, [831] = 831, - [832] = 808, - [833] = 808, - [834] = 811, - [835] = 812, - [836] = 824, - [837] = 821, - [838] = 808, - [839] = 808, - [840] = 808, - [841] = 811, - [842] = 808, - [843] = 808, - [844] = 806, - [845] = 808, - [846] = 806, - [847] = 811, - [848] = 848, - [849] = 824, - [850] = 810, - [851] = 806, - [852] = 811, - [853] = 824, - [854] = 854, - [855] = 855, - [856] = 854, - [857] = 854, + [832] = 816, + [833] = 833, + [834] = 816, + [835] = 811, + [836] = 826, + [837] = 810, + [838] = 818, + [839] = 811, + [840] = 816, + [841] = 810, + [842] = 818, + [843] = 826, + [844] = 818, + [845] = 810, + [846] = 813, + [847] = 847, + [848] = 826, + [849] = 816, + [850] = 811, + [851] = 826, + [852] = 810, + [853] = 813, + [854] = 811, + [855] = 810, + [856] = 831, + [857] = 813, [858] = 858, [859] = 859, [860] = 860, [861] = 861, - [862] = 858, + [862] = 862, [863] = 863, - [864] = 864, - [865] = 858, + [864] = 860, + [865] = 865, [866] = 866, [867] = 867, [868] = 868, [869] = 869, - [870] = 870, + [870] = 859, [871] = 861, - [872] = 863, - [873] = 867, - [874] = 868, + [872] = 865, + [873] = 873, + [874] = 874, [875] = 875, - [876] = 869, + [876] = 873, [877] = 877, - [878] = 855, - [879] = 866, + [878] = 875, + [879] = 862, [880] = 880, [881] = 881, - [882] = 858, - [883] = 861, - [884] = 864, - [885] = 881, - [886] = 880, - [887] = 887, - [888] = 870, - [889] = 889, + [882] = 877, + [883] = 883, + [884] = 875, + [885] = 885, + [886] = 886, + [887] = 883, + [888] = 888, + [889] = 877, [890] = 890, - [891] = 869, - [892] = 868, - [893] = 869, - [894] = 867, - [895] = 895, - [896] = 896, - [897] = 861, - [898] = 868, - [899] = 899, - [900] = 855, - [901] = 864, - [902] = 863, - [903] = 903, - [904] = 896, - [905] = 899, - [906] = 866, - [907] = 890, - [908] = 864, - [909] = 863, - [910] = 910, - [911] = 910, - [912] = 896, - [913] = 855, - [914] = 890, - [915] = 903, - [916] = 896, - [917] = 899, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 910, - [922] = 858, - [923] = 899, - [924] = 924, - [925] = 854, - [926] = 870, - [927] = 896, - [928] = 854, - [929] = 867, - [930] = 903, - [931] = 864, - [932] = 932, - [933] = 858, - [934] = 934, - [935] = 863, - [936] = 880, - [937] = 866, - [938] = 861, - [939] = 899, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 862, + [896] = 894, + [897] = 863, + [898] = 862, + [899] = 860, + [900] = 880, + [901] = 860, + [902] = 875, + [903] = 888, + [904] = 862, + [905] = 874, + [906] = 890, + [907] = 907, + [908] = 881, + [909] = 858, + [910] = 858, + [911] = 860, + [912] = 912, + [913] = 880, + [914] = 883, + [915] = 860, + [916] = 907, + [917] = 917, + [918] = 917, + [919] = 907, + [920] = 862, + [921] = 861, + [922] = 874, + [923] = 859, + [924] = 912, + [925] = 859, + [926] = 858, + [927] = 883, + [928] = 880, + [929] = 859, + [930] = 881, + [931] = 931, + [932] = 931, + [933] = 917, + [934] = 861, + [935] = 907, + [936] = 865, + [937] = 937, + [938] = 865, + [939] = 861, [940] = 940, - [941] = 866, - [942] = 942, - [943] = 870, - [944] = 870, - [945] = 855, - [946] = 903, - [947] = 869, - [948] = 866, - [949] = 880, - [950] = 890, - [951] = 868, - [952] = 952, - [953] = 867, + [941] = 881, + [942] = 912, + [943] = 912, + [944] = 874, + [945] = 945, + [946] = 881, + [947] = 891, + [948] = 874, + [949] = 874, + [950] = 861, + [951] = 865, + [952] = 868, + [953] = 953, [954] = 954, - [955] = 880, - [956] = 952, - [957] = 957, - [958] = 860, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 910, - [963] = 855, - [964] = 864, - [965] = 863, - [966] = 919, - [967] = 940, - [968] = 903, - [969] = 890, - [970] = 861, - [971] = 903, - [972] = 899, - [973] = 910, - [974] = 870, - [975] = 869, - [976] = 854, - [977] = 868, - [978] = 867, - [979] = 910, - [980] = 890, - [981] = 880, - [982] = 859, - [983] = 957, - [984] = 896, - [985] = 817, - [986] = 881, - [987] = 881, + [955] = 873, + [956] = 873, + [957] = 858, + [958] = 875, + [959] = 907, + [960] = 875, + [961] = 912, + [962] = 877, + [963] = 877, + [964] = 886, + [965] = 917, + [966] = 858, + [967] = 863, + [968] = 865, + [969] = 863, + [970] = 873, + [971] = 917, + [972] = 863, + [973] = 863, + [974] = 974, + [975] = 880, + [976] = 883, + [977] = 977, + [978] = 883, + [979] = 880, + [980] = 917, + [981] = 907, + [982] = 982, + [983] = 859, + [984] = 873, + [985] = 881, + [986] = 877, + [987] = 912, [988] = 988, - [989] = 988, - [990] = 881, - [991] = 991, - [992] = 881, + [989] = 891, + [990] = 990, + [991] = 990, + [992] = 891, [993] = 993, - [994] = 993, - [995] = 995, - [996] = 881, - [997] = 995, - [998] = 998, - [999] = 995, - [1000] = 881, + [994] = 994, + [995] = 891, + [996] = 994, + [997] = 891, + [998] = 833, + [999] = 891, + [1000] = 1000, [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 881, + [1002] = 1001, + [1003] = 891, + [1004] = 1001, [1005] = 1005, - [1006] = 1003, - [1007] = 1007, - [1008] = 1003, - [1009] = 1009, - [1010] = 821, - [1011] = 881, - [1012] = 881, + [1006] = 1006, + [1007] = 831, + [1008] = 1008, + [1009] = 891, + [1010] = 891, + [1011] = 1011, + [1012] = 1012, [1013] = 1013, - [1014] = 881, - [1015] = 1015, + [1014] = 1008, + [1015] = 891, [1016] = 1016, - [1017] = 881, + [1017] = 1017, [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1018, - [1022] = 1022, - [1023] = 1007, - [1024] = 1005, - [1025] = 1007, - [1026] = 1026, - [1027] = 793, - [1028] = 817, - [1029] = 1029, - [1030] = 991, - [1031] = 1031, - [1032] = 1029, - [1033] = 1033, - [1034] = 881, + [1019] = 1016, + [1020] = 891, + [1021] = 1021, + [1022] = 891, + [1023] = 1023, + [1024] = 1008, + [1025] = 1025, + [1026] = 1012, + [1027] = 1027, + [1028] = 1006, + [1029] = 1012, + [1030] = 891, + [1031] = 891, + [1032] = 993, + [1033] = 833, + [1034] = 1034, [1035] = 1035, - [1036] = 784, - [1037] = 881, - [1038] = 1038, - [1039] = 1039, + [1036] = 1036, + [1037] = 1037, + [1038] = 1034, + [1039] = 794, [1040] = 1040, - [1041] = 1041, - [1042] = 1035, - [1043] = 881, - [1044] = 1031, - [1045] = 1045, - [1046] = 1040, - [1047] = 1029, - [1048] = 1031, - [1049] = 1029, - [1050] = 1035, - [1051] = 1029, - [1052] = 1039, + [1041] = 793, + [1042] = 1034, + [1043] = 891, + [1044] = 1044, + [1045] = 1037, + [1046] = 1046, + [1047] = 1034, + [1048] = 1048, + [1049] = 1044, + [1050] = 1040, + [1051] = 1040, + [1052] = 1034, [1053] = 1053, - [1054] = 1038, + [1054] = 1054, [1055] = 1055, - [1056] = 1045, - [1057] = 1029, - [1058] = 1031, - [1059] = 1031, + [1056] = 1037, + [1057] = 1054, + [1058] = 1058, + [1059] = 1059, [1060] = 1060, - [1061] = 1031, - [1062] = 1060, - [1063] = 1038, - [1064] = 1064, - [1065] = 1065, - [1066] = 1045, - [1067] = 1029, - [1068] = 1029, - [1069] = 1069, - [1070] = 1070, - [1071] = 1029, - [1072] = 1065, - [1073] = 1069, - [1074] = 1064, + [1061] = 1034, + [1062] = 1062, + [1063] = 1055, + [1064] = 1037, + [1065] = 1034, + [1066] = 1058, + [1067] = 1067, + [1068] = 1037, + [1069] = 1034, + [1070] = 1060, + [1071] = 1071, + [1072] = 1048, + [1073] = 1062, + [1074] = 1059, [1075] = 1055, - [1076] = 1076, - [1077] = 1019, - [1078] = 1064, - [1079] = 1069, - [1080] = 1045, - [1081] = 1053, - [1082] = 1009, - [1083] = 1031, - [1084] = 1069, - [1085] = 1069, - [1086] = 1026, - [1087] = 1029, - [1088] = 1064, - [1089] = 1016, - [1090] = 1076, - [1091] = 1001, + [1076] = 1037, + [1077] = 1048, + [1078] = 1071, + [1079] = 1034, + [1080] = 1034, + [1081] = 1013, + [1082] = 1048, + [1083] = 794, + [1084] = 1046, + [1085] = 1085, + [1086] = 1037, + [1087] = 1021, + [1088] = 1027, + [1089] = 1011, + [1090] = 1037, + [1091] = 1035, [1092] = 1092, - [1093] = 1031, - [1094] = 1092, - [1095] = 1026, - [1096] = 1020, - [1097] = 1022, - [1098] = 1098, - [1099] = 1099, - [1100] = 1038, - [1101] = 1069, - [1102] = 1038, - [1103] = 1064, - [1104] = 784, + [1093] = 1023, + [1094] = 1005, + [1095] = 1095, + [1096] = 1035, + [1097] = 1055, + [1098] = 1060, + [1099] = 1034, + [1100] = 1048, + [1101] = 1101, + [1102] = 1060, + [1103] = 1060, + [1104] = 1017, [1105] = 1105, - [1106] = 1002, - [1107] = 1064, - [1108] = 1029, - [1109] = 793, - [1110] = 1038, - [1111] = 1105, - [1112] = 1069, - [1113] = 1070, - [1114] = 1064, - [1115] = 1038, - [1116] = 1029, - [1117] = 1117, - [1118] = 1029, - [1119] = 1069, - [1120] = 1120, - [1121] = 1121, - [1122] = 1026, - [1123] = 1123, - [1124] = 1064, - [1125] = 1121, - [1126] = 1038, + [1106] = 1071, + [1107] = 1048, + [1108] = 1105, + [1109] = 1071, + [1110] = 1071, + [1111] = 1101, + [1112] = 1060, + [1113] = 793, + [1114] = 1071, + [1115] = 1085, + [1116] = 1116, + [1117] = 1037, + [1118] = 1035, + [1119] = 1119, + [1120] = 1034, + [1121] = 1067, + [1122] = 1122, + [1123] = 1071, + [1124] = 1048, + [1125] = 1060, + [1126] = 1060, [1127] = 1127, - [1128] = 1128, - [1129] = 1041, - [1130] = 1031, - [1131] = 1026, - [1132] = 1038, - [1133] = 1069, - [1134] = 1040, - [1135] = 1069, - [1136] = 1039, - [1137] = 1137, - [1138] = 1026, + [1128] = 1053, + [1129] = 1048, + [1130] = 1130, + [1131] = 1071, + [1132] = 1034, + [1133] = 1035, + [1134] = 1134, + [1135] = 1122, + [1136] = 1035, + [1137] = 1071, + [1138] = 1048, [1139] = 1139, [1140] = 1140, - [1141] = 1069, + [1141] = 1060, [1142] = 1142, - [1143] = 1143, - [1144] = 1064, - [1145] = 1064, - [1146] = 1069, - [1147] = 1064, - [1148] = 1064, - [1149] = 1149, - [1150] = 1026, - [1151] = 1099, - [1152] = 1152, - [1153] = 1026, - [1154] = 1064, - [1155] = 1155, - [1156] = 1064, - [1157] = 1069, - [1158] = 1055, - [1159] = 1159, - [1160] = 1053, - [1161] = 1069, - [1162] = 1098, - [1163] = 1064, - [1164] = 1117, - [1165] = 1070, - [1166] = 1026, - [1167] = 1069, - [1168] = 1168, - [1169] = 1168, - [1170] = 1168, - [1171] = 1168, - [1172] = 1168, - [1173] = 1168, - [1174] = 1174, - [1175] = 1175, - [1176] = 1175, - [1177] = 1177, + [1143] = 1071, + [1144] = 1044, + [1145] = 1071, + [1146] = 1060, + [1147] = 1147, + [1148] = 1148, + [1149] = 1060, + [1150] = 1071, + [1151] = 1151, + [1152] = 1060, + [1153] = 1054, + [1154] = 1154, + [1155] = 1060, + [1156] = 1046, + [1157] = 1060, + [1158] = 1058, + [1159] = 1035, + [1160] = 1160, + [1161] = 1071, + [1162] = 1092, + [1163] = 1163, + [1164] = 1071, + [1165] = 1035, + [1166] = 1095, + [1167] = 1035, + [1168] = 1127, + [1169] = 1060, + [1170] = 1067, + [1171] = 1071, + [1172] = 1172, + [1173] = 1172, + [1174] = 1172, + [1175] = 1172, + [1176] = 1172, + [1177] = 1172, [1178] = 1178, [1179] = 1179, - [1180] = 1177, - [1181] = 1175, - [1182] = 1177, - [1183] = 1175, - [1184] = 1178, - [1185] = 1179, - [1186] = 1177, - [1187] = 1178, - [1188] = 1178, - [1189] = 1179, - [1190] = 1177, - [1191] = 1175, - [1192] = 1175, - [1193] = 1179, - [1194] = 1177, - [1195] = 1179, - [1196] = 1179, - [1197] = 1178, - [1198] = 1198, - [1199] = 147, - [1200] = 1200, - [1201] = 1201, - [1202] = 1200, - [1203] = 1200, - [1204] = 1200, - [1205] = 135, - [1206] = 1200, - [1207] = 1200, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 125, + [1180] = 1180, + [1181] = 1181, + [1182] = 1180, + [1183] = 1179, + [1184] = 1180, + [1185] = 1180, + [1186] = 1179, + [1187] = 1179, + [1188] = 1188, + [1189] = 1181, + [1190] = 1188, + [1191] = 1188, + [1192] = 1179, + [1193] = 1180, + [1194] = 1180, + [1195] = 1181, + [1196] = 1188, + [1197] = 1181, + [1198] = 1181, + [1199] = 1188, + [1200] = 1179, + [1201] = 1181, + [1202] = 1202, + [1203] = 1203, + [1204] = 1203, + [1205] = 1205, + [1206] = 139, + [1207] = 1203, + [1208] = 1203, + [1209] = 1203, + [1210] = 159, + [1211] = 1203, + [1212] = 1212, [1213] = 1213, [1214] = 1214, [1215] = 1215, - [1216] = 1211, - [1217] = 126, + [1216] = 1215, + [1217] = 1217, [1218] = 1218, - [1219] = 1211, - [1220] = 122, - [1221] = 1211, - [1222] = 147, - [1223] = 1211, + [1219] = 1219, + [1220] = 1220, + [1221] = 1215, + [1222] = 139, + [1223] = 117, [1224] = 1224, - [1225] = 1225, + [1225] = 1215, [1226] = 1226, - [1227] = 1211, - [1228] = 1211, - [1229] = 135, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, + [1227] = 1227, + [1228] = 124, + [1229] = 122, + [1230] = 121, + [1231] = 1215, + [1232] = 1215, + [1233] = 159, + [1234] = 1215, [1235] = 1235, [1236] = 1236, [1237] = 1237, @@ -5264,24 +5274,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1239] = 1239, [1240] = 1240, [1241] = 1241, - [1242] = 548, + [1242] = 1242, [1243] = 1243, - [1244] = 125, - [1245] = 126, - [1246] = 848, - [1247] = 1247, - [1248] = 819, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 799, + [1248] = 1248, [1249] = 1249, [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 136, + [1253] = 1253, [1254] = 1254, [1255] = 1255, [1256] = 1256, [1257] = 1257, [1258] = 1258, - [1259] = 831, + [1259] = 1259, [1260] = 1260, [1261] = 1261, [1262] = 1262, @@ -5291,60 +5301,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1266] = 1266, [1267] = 1267, [1268] = 1268, - [1269] = 139, + [1269] = 1269, [1270] = 1270, - [1271] = 1271, + [1271] = 798, [1272] = 1272, - [1273] = 547, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, + [1273] = 1273, + [1274] = 800, + [1275] = 820, + [1276] = 134, + [1277] = 133, [1278] = 1278, [1279] = 1279, [1280] = 1280, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, + [1281] = 830, + [1282] = 847, + [1283] = 121, + [1284] = 122, + [1285] = 124, [1286] = 1286, - [1287] = 546, + [1287] = 1287, [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1292, - [1293] = 1293, + [1292] = 160, + [1293] = 548, [1294] = 1294, [1295] = 1295, [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 794, + [1299] = 1299, [1300] = 1300, - [1301] = 150, - [1302] = 545, + [1301] = 1301, + [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, [1306] = 1306, - [1307] = 1307, + [1307] = 549, [1308] = 1308, [1309] = 1309, - [1310] = 1310, + [1310] = 150, [1311] = 1311, [1312] = 1312, [1313] = 1313, [1314] = 1314, [1315] = 1315, - [1316] = 795, + [1316] = 1316, [1317] = 1317, [1318] = 1318, [1319] = 1319, [1320] = 1320, [1321] = 1321, - [1322] = 1322, + [1322] = 550, [1323] = 1323, [1324] = 1324, [1325] = 1325, @@ -5355,8 +5365,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1330] = 1330, [1331] = 1331, [1332] = 1332, - [1333] = 796, - [1334] = 544, + [1333] = 1333, + [1334] = 1334, [1335] = 1335, [1336] = 1336, [1337] = 1337, @@ -5374,7 +5384,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1349] = 1349, [1350] = 1350, [1351] = 1351, - [1352] = 1352, + [1352] = 546, [1353] = 1353, [1354] = 1354, [1355] = 1355, @@ -5384,837 +5394,837 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 139, - [1363] = 1363, - [1364] = 1292, - [1365] = 141, + [1362] = 1362, + [1363] = 547, + [1364] = 1364, + [1365] = 1365, [1366] = 1366, - [1367] = 136, + [1367] = 1367, [1368] = 1368, - [1369] = 1369, - [1370] = 1300, + [1369] = 1259, + [1370] = 1251, [1371] = 1371, - [1372] = 1298, + [1372] = 1372, [1373] = 1373, [1374] = 1374, [1375] = 1375, - [1376] = 137, - [1377] = 1210, + [1376] = 1376, + [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 142, - [1381] = 1283, - [1382] = 1352, - [1383] = 1344, + [1380] = 1380, + [1381] = 148, + [1382] = 1382, + [1383] = 1383, [1384] = 1384, - [1385] = 1306, - [1386] = 1318, - [1387] = 1308, - [1388] = 1388, - [1389] = 1346, - [1390] = 1284, - [1391] = 1286, - [1392] = 1346, + [1385] = 1385, + [1386] = 1386, + [1387] = 1273, + [1388] = 1269, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 143, [1393] = 1393, - [1394] = 151, - [1395] = 1395, + [1394] = 1394, + [1395] = 150, [1396] = 1396, [1397] = 1397, - [1398] = 133, - [1399] = 1399, + [1398] = 151, + [1399] = 142, [1400] = 1400, - [1401] = 141, + [1401] = 1401, [1402] = 1402, - [1403] = 1403, - [1404] = 1209, - [1405] = 1279, - [1406] = 1344, + [1403] = 1372, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, [1407] = 1407, - [1408] = 1318, + [1408] = 1408, [1409] = 1409, - [1410] = 153, - [1411] = 1352, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, + [1410] = 1410, + [1411] = 1265, + [1412] = 1372, + [1413] = 1268, + [1414] = 1267, [1415] = 1415, - [1416] = 1359, - [1417] = 1360, - [1418] = 1267, - [1419] = 1292, - [1420] = 1420, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 142, [1421] = 1421, - [1422] = 137, - [1423] = 1327, - [1424] = 1424, + [1422] = 1214, + [1423] = 1423, + [1424] = 1266, [1425] = 1425, - [1426] = 1426, + [1426] = 1264, [1427] = 1427, - [1428] = 1428, + [1428] = 1263, [1429] = 1429, - [1430] = 1262, - [1431] = 1342, - [1432] = 1432, - [1433] = 1433, - [1434] = 153, - [1435] = 1351, - [1436] = 1359, - [1437] = 1356, - [1438] = 1357, - [1439] = 1363, + [1430] = 1266, + [1431] = 1267, + [1432] = 1268, + [1433] = 1269, + [1434] = 1261, + [1435] = 1260, + [1436] = 1436, + [1437] = 1372, + [1438] = 1438, + [1439] = 1439, [1440] = 1262, - [1441] = 1255, - [1442] = 1336, - [1443] = 1349, - [1444] = 1353, - [1445] = 1329, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, [1446] = 1446, [1447] = 1447, [1448] = 1448, - [1449] = 1265, + [1449] = 1449, [1450] = 1450, - [1451] = 1267, + [1451] = 1451, [1452] = 1452, - [1453] = 1327, + [1453] = 1257, [1454] = 1454, - [1455] = 1279, - [1456] = 1456, - [1457] = 1457, - [1458] = 1360, - [1459] = 1363, - [1460] = 1342, - [1461] = 1329, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 133, - [1466] = 1407, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 142, - [1471] = 1283, - [1472] = 1298, - [1473] = 1473, - [1474] = 1353, - [1475] = 1349, - [1476] = 1476, - [1477] = 1477, - [1478] = 1265, - [1479] = 1284, - [1480] = 1286, - [1481] = 1336, - [1482] = 1482, - [1483] = 1483, - [1484] = 1300, - [1485] = 1485, - [1486] = 1384, - [1487] = 150, - [1488] = 1488, - [1489] = 1255, - [1490] = 1357, - [1491] = 151, - [1492] = 1396, - [1493] = 1493, - [1494] = 1494, - [1495] = 1363, - [1496] = 1356, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1351, - [1502] = 1502, - [1503] = 1308, + [1455] = 1455, + [1456] = 143, + [1457] = 133, + [1458] = 134, + [1459] = 148, + [1460] = 1460, + [1461] = 1213, + [1462] = 144, + [1463] = 1265, + [1464] = 1255, + [1465] = 1254, + [1466] = 1264, + [1467] = 1262, + [1468] = 163, + [1469] = 1258, + [1470] = 160, + [1471] = 1251, + [1472] = 1472, + [1473] = 1252, + [1474] = 1248, + [1475] = 1246, + [1476] = 1273, + [1477] = 1244, + [1478] = 1478, + [1479] = 1243, + [1480] = 1242, + [1481] = 1241, + [1482] = 1240, + [1483] = 1239, + [1484] = 1238, + [1485] = 1248, + [1486] = 1486, + [1487] = 1252, + [1488] = 1258, + [1489] = 1259, + [1490] = 1238, + [1491] = 1239, + [1492] = 1240, + [1493] = 1241, + [1494] = 1242, + [1495] = 1243, + [1496] = 1244, + [1497] = 1245, + [1498] = 1246, + [1499] = 1394, + [1500] = 151, + [1501] = 1401, + [1502] = 163, + [1503] = 1245, [1504] = 1504, [1505] = 1505, [1506] = 1506, - [1507] = 1306, - [1508] = 1218, + [1507] = 1507, + [1508] = 1419, [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1314, - [1514] = 1213, - [1515] = 1511, - [1516] = 1516, - [1517] = 1214, - [1518] = 1215, - [1519] = 1511, - [1520] = 1520, - [1521] = 1251, - [1522] = 1522, - [1523] = 1252, - [1524] = 1283, - [1525] = 1525, - [1526] = 1526, - [1527] = 1226, - [1528] = 1300, - [1529] = 1230, - [1530] = 1284, - [1531] = 1407, - [1532] = 1286, - [1533] = 1396, - [1534] = 1292, - [1535] = 1535, - [1536] = 1536, - [1537] = 1520, - [1538] = 1538, - [1539] = 1511, - [1540] = 1384, - [1541] = 1526, - [1542] = 1298, - [1543] = 1543, - [1544] = 1306, - [1545] = 1545, - [1546] = 1546, - [1547] = 1512, - [1548] = 1511, - [1549] = 1538, - [1550] = 1308, - [1551] = 1318, - [1552] = 1428, - [1553] = 1512, - [1554] = 1329, - [1555] = 1327, - [1556] = 1353, - [1557] = 1511, - [1558] = 1526, - [1559] = 1512, - [1560] = 1428, - [1561] = 1262, - [1562] = 1349, - [1563] = 1336, - [1564] = 1255, - [1565] = 1357, - [1566] = 1252, - [1567] = 1356, - [1568] = 1251, - [1569] = 1351, - [1570] = 1512, - [1571] = 1511, + [1510] = 1263, + [1511] = 1261, + [1512] = 144, + [1513] = 1260, + [1514] = 1257, + [1515] = 1255, + [1516] = 1254, + [1517] = 1258, + [1518] = 1218, + [1519] = 1519, + [1520] = 1226, + [1521] = 1238, + [1522] = 1239, + [1523] = 1240, + [1524] = 1241, + [1525] = 1242, + [1526] = 1267, + [1527] = 1243, + [1528] = 1244, + [1529] = 1529, + [1530] = 1245, + [1531] = 1246, + [1532] = 1532, + [1533] = 1251, + [1534] = 1254, + [1535] = 1255, + [1536] = 1268, + [1537] = 1257, + [1538] = 1269, + [1539] = 1260, + [1540] = 1261, + [1541] = 1263, + [1542] = 1542, + [1543] = 1224, + [1544] = 1248, + [1545] = 1252, + [1546] = 1478, + [1547] = 1547, + [1548] = 1548, + [1549] = 1278, + [1550] = 1259, + [1551] = 1262, + [1552] = 1552, + [1553] = 1553, + [1554] = 1279, + [1555] = 1264, + [1556] = 1547, + [1557] = 1557, + [1558] = 1542, + [1559] = 1559, + [1560] = 1265, + [1561] = 1561, + [1562] = 1273, + [1563] = 1532, + [1564] = 1542, + [1565] = 1552, + [1566] = 1566, + [1567] = 1567, + [1568] = 1547, + [1569] = 1559, + [1570] = 1547, + [1571] = 1266, [1572] = 1572, - [1573] = 1265, - [1574] = 1342, - [1575] = 1360, - [1576] = 1576, - [1577] = 1359, - [1578] = 1225, - [1579] = 1224, - [1580] = 1267, - [1581] = 1279, - [1582] = 1352, - [1583] = 1346, - [1584] = 1526, - [1585] = 1526, - [1586] = 1344, - [1587] = 1344, - [1588] = 1270, - [1589] = 1589, - [1590] = 1251, - [1591] = 1252, - [1592] = 796, - [1593] = 1593, - [1594] = 1594, - [1595] = 1545, + [1573] = 1573, + [1574] = 1574, + [1575] = 1278, + [1576] = 1227, + [1577] = 1249, + [1578] = 1419, + [1579] = 1542, + [1580] = 1478, + [1581] = 1547, + [1582] = 1582, + [1583] = 1219, + [1584] = 1394, + [1585] = 1279, + [1586] = 1547, + [1587] = 1559, + [1588] = 1401, + [1589] = 1559, + [1590] = 1542, + [1591] = 1235, + [1592] = 1547, + [1593] = 1220, + [1594] = 1559, + [1595] = 1217, [1596] = 1596, - [1597] = 1597, - [1598] = 1266, - [1599] = 1263, - [1600] = 1296, - [1601] = 1601, - [1602] = 1602, + [1597] = 1336, + [1598] = 1298, + [1599] = 1279, + [1600] = 1297, + [1601] = 1567, + [1602] = 1278, [1603] = 1603, - [1604] = 1589, - [1605] = 1249, - [1606] = 1251, + [1604] = 1472, + [1605] = 1605, + [1606] = 1606, [1607] = 1252, - [1608] = 1279, - [1609] = 1609, - [1610] = 1267, - [1611] = 1265, - [1612] = 1612, - [1613] = 1262, - [1614] = 1251, - [1615] = 1615, - [1616] = 1252, - [1617] = 1432, - [1618] = 122, - [1619] = 1252, - [1620] = 1251, - [1621] = 1425, - [1622] = 1433, - [1623] = 1340, - [1624] = 1330, - [1625] = 1274, - [1626] = 1323, - [1627] = 1322, - [1628] = 1320, - [1629] = 1319, - [1630] = 1317, - [1631] = 1313, - [1632] = 1312, - [1633] = 1310, - [1634] = 1572, - [1635] = 1305, - [1636] = 1636, - [1637] = 546, - [1638] = 1289, - [1639] = 1285, - [1640] = 1276, - [1641] = 1272, - [1642] = 1271, - [1643] = 1261, - [1644] = 1260, - [1645] = 1257, - [1646] = 1256, - [1647] = 1231, - [1648] = 1254, - [1649] = 1250, - [1650] = 1247, - [1651] = 548, - [1652] = 1407, - [1653] = 1239, - [1654] = 1235, - [1655] = 1234, - [1656] = 848, - [1657] = 1233, - [1658] = 1268, - [1659] = 1293, - [1660] = 1348, - [1661] = 1258, - [1662] = 1358, - [1663] = 1355, - [1664] = 1354, - [1665] = 1350, - [1666] = 1347, - [1667] = 1345, - [1668] = 1343, - [1669] = 1339, - [1670] = 1338, - [1671] = 1337, - [1672] = 1335, - [1673] = 544, - [1674] = 1674, - [1675] = 794, - [1676] = 1332, - [1677] = 1331, - [1678] = 1328, - [1679] = 819, - [1680] = 1326, - [1681] = 1325, - [1682] = 1324, - [1683] = 1321, - [1684] = 1315, - [1685] = 1309, - [1686] = 1425, - [1687] = 1249, - [1688] = 1264, - [1689] = 1615, - [1690] = 1307, - [1691] = 1304, - [1692] = 1303, - [1693] = 545, - [1694] = 1283, - [1695] = 1695, - [1696] = 1284, - [1697] = 1286, - [1698] = 1292, - [1699] = 1265, - [1700] = 1267, - [1701] = 1701, - [1702] = 1279, - [1703] = 1615, - [1704] = 1341, - [1705] = 1300, - [1706] = 1262, - [1707] = 1545, - [1708] = 1433, - [1709] = 1709, - [1710] = 831, - [1711] = 1232, - [1712] = 1295, - [1713] = 1294, - [1714] = 1594, - [1715] = 1291, - [1716] = 1290, - [1717] = 1288, - [1718] = 1593, - [1719] = 1344, - [1720] = 1346, - [1721] = 1352, - [1722] = 1282, - [1723] = 1281, - [1724] = 1280, - [1725] = 1278, - [1726] = 1726, - [1727] = 1277, - [1728] = 1572, - [1729] = 1636, - [1730] = 1432, - [1731] = 1615, - [1732] = 1300, - [1733] = 1695, - [1734] = 795, - [1735] = 1275, - [1736] = 1346, - [1737] = 547, - [1738] = 1352, - [1739] = 1359, - [1740] = 1360, - [1741] = 1396, - [1742] = 1342, - [1743] = 1351, - [1744] = 1356, - [1745] = 1359, - [1746] = 1360, - [1747] = 1342, - [1748] = 1357, - [1749] = 1351, - [1750] = 1356, - [1751] = 1357, - [1752] = 1255, - [1753] = 1255, - [1754] = 1298, - [1755] = 1306, - [1756] = 1289, - [1757] = 1336, - [1758] = 1336, - [1759] = 1349, - [1760] = 1760, - [1761] = 1353, - [1762] = 1329, - [1763] = 1763, - [1764] = 1764, - [1765] = 1349, - [1766] = 1353, - [1767] = 1327, - [1768] = 1768, - [1769] = 1308, - [1770] = 1318, - [1771] = 122, - [1772] = 1308, - [1773] = 1318, - [1774] = 1306, - [1775] = 1298, - [1776] = 1292, - [1777] = 1286, - [1778] = 1311, - [1779] = 1615, - [1780] = 1329, - [1781] = 1284, - [1782] = 1726, - [1783] = 1327, - [1784] = 1283, - [1785] = 1384, - [1786] = 1236, - [1787] = 1237, - [1788] = 1238, - [1789] = 1240, - [1790] = 1241, - [1791] = 1297, - [1792] = 1792, - [1793] = 1243, - [1794] = 1306, - [1795] = 1329, - [1796] = 144, - [1797] = 131, - [1798] = 1462, - [1799] = 134, - [1800] = 1284, - [1801] = 1283, - [1802] = 1457, - [1803] = 1463, - [1804] = 1804, - [1805] = 144, - [1806] = 132, - [1807] = 164, - [1808] = 1452, - [1809] = 129, - [1810] = 1251, - [1811] = 1467, - [1812] = 1252, - [1813] = 1289, - [1814] = 1352, - [1815] = 1359, + [1608] = 1296, + [1609] = 1258, + [1610] = 799, + [1611] = 548, + [1612] = 1250, + [1613] = 1613, + [1614] = 1258, + [1615] = 1259, + [1616] = 1259, + [1617] = 1242, + [1618] = 1243, + [1619] = 1619, + [1620] = 1278, + [1621] = 1621, + [1622] = 1622, + [1623] = 1619, + [1624] = 1567, + [1625] = 1603, + [1626] = 800, + [1627] = 1294, + [1628] = 1246, + [1629] = 1256, + [1630] = 117, + [1631] = 1596, + [1632] = 1295, + [1633] = 1244, + [1634] = 1266, + [1635] = 1337, + [1636] = 1245, + [1637] = 1342, + [1638] = 1343, + [1639] = 1344, + [1640] = 1345, + [1641] = 1347, + [1642] = 1349, + [1643] = 1350, + [1644] = 1351, + [1645] = 1246, + [1646] = 1353, + [1647] = 1262, + [1648] = 1394, + [1649] = 1357, + [1650] = 1358, + [1651] = 547, + [1652] = 1371, + [1653] = 1300, + [1654] = 1264, + [1655] = 1619, + [1656] = 1301, + [1657] = 1251, + [1658] = 1269, + [1659] = 1268, + [1660] = 1267, + [1661] = 1266, + [1662] = 1265, + [1663] = 1273, + [1664] = 1302, + [1665] = 1366, + [1666] = 1367, + [1667] = 1368, + [1668] = 1237, + [1669] = 1365, + [1670] = 1364, + [1671] = 1362, + [1672] = 1361, + [1673] = 1360, + [1674] = 1359, + [1675] = 1356, + [1676] = 1355, + [1677] = 1354, + [1678] = 546, + [1679] = 1245, + [1680] = 1680, + [1681] = 1273, + [1682] = 1265, + [1683] = 1683, + [1684] = 1244, + [1685] = 1279, + [1686] = 1622, + [1687] = 1519, + [1688] = 1236, + [1689] = 1252, + [1690] = 1248, + [1691] = 1348, + [1692] = 1346, + [1693] = 1341, + [1694] = 847, + [1695] = 1243, + [1696] = 1278, + [1697] = 1339, + [1698] = 1338, + [1699] = 1299, + [1700] = 1335, + [1701] = 1334, + [1702] = 1333, + [1703] = 1332, + [1704] = 1331, + [1705] = 1330, + [1706] = 1329, + [1707] = 1328, + [1708] = 1327, + [1709] = 1326, + [1710] = 1325, + [1711] = 1324, + [1712] = 1323, + [1713] = 550, + [1714] = 1240, + [1715] = 1715, + [1716] = 1303, + [1717] = 1717, + [1718] = 1279, + [1719] = 1280, + [1720] = 1254, + [1721] = 1680, + [1722] = 1371, + [1723] = 1606, + [1724] = 1724, + [1725] = 1725, + [1726] = 1253, + [1727] = 798, + [1728] = 1401, + [1729] = 1238, + [1730] = 1730, + [1731] = 1304, + [1732] = 1321, + [1733] = 1320, + [1734] = 1319, + [1735] = 830, + [1736] = 1318, + [1737] = 1317, + [1738] = 1316, + [1739] = 1315, + [1740] = 1314, + [1741] = 1305, + [1742] = 1519, + [1743] = 1306, + [1744] = 1255, + [1745] = 1313, + [1746] = 1312, + [1747] = 1486, + [1748] = 1280, + [1749] = 1419, + [1750] = 820, + [1751] = 1340, + [1752] = 1270, + [1753] = 1248, + [1754] = 1619, + [1755] = 1251, + [1756] = 1238, + [1757] = 1254, + [1758] = 1311, + [1759] = 1759, + [1760] = 1257, + [1761] = 1242, + [1762] = 1272, + [1763] = 1309, + [1764] = 1619, + [1765] = 1272, + [1766] = 1241, + [1767] = 1308, + [1768] = 1255, + [1769] = 1269, + [1770] = 1291, + [1771] = 549, + [1772] = 1290, + [1773] = 1289, + [1774] = 1774, + [1775] = 117, + [1776] = 1486, + [1777] = 1241, + [1778] = 1268, + [1779] = 1267, + [1780] = 1239, + [1781] = 1781, + [1782] = 1263, + [1783] = 1261, + [1784] = 1261, + [1785] = 1279, + [1786] = 1263, + [1787] = 1787, + [1788] = 1260, + [1789] = 1789, + [1790] = 1257, + [1791] = 1791, + [1792] = 1759, + [1793] = 1240, + [1794] = 1794, + [1795] = 1260, + [1796] = 1262, + [1797] = 1472, + [1798] = 1286, + [1799] = 1278, + [1800] = 1239, + [1801] = 1264, + [1802] = 1287, + [1803] = 1288, + [1804] = 1378, + [1805] = 1805, + [1806] = 1806, + [1807] = 1417, + [1808] = 1808, + [1809] = 1418, + [1810] = 1519, + [1811] = 1811, + [1812] = 156, + [1813] = 1410, + [1814] = 1409, + [1815] = 1406, [1816] = 1816, - [1817] = 1469, - [1818] = 159, - [1819] = 1819, - [1820] = 1488, - [1821] = 1286, - [1822] = 1822, - [1823] = 159, - [1824] = 1360, - [1825] = 1342, - [1826] = 1351, - [1827] = 1356, - [1828] = 1804, - [1829] = 1804, - [1830] = 1822, - [1831] = 131, - [1832] = 1816, - [1833] = 1819, - [1834] = 134, - [1835] = 1292, - [1836] = 1504, - [1837] = 1505, - [1838] = 1298, - [1839] = 1357, - [1840] = 1804, - [1841] = 1841, - [1842] = 1842, - [1843] = 1843, - [1844] = 1844, - [1845] = 1545, - [1846] = 160, - [1847] = 1804, - [1848] = 1454, - [1849] = 1804, - [1850] = 1375, - [1851] = 148, - [1852] = 1249, - [1853] = 1432, - [1854] = 148, - [1855] = 1374, - [1856] = 1255, - [1857] = 1336, - [1858] = 1425, - [1859] = 1373, - [1860] = 160, - [1861] = 1371, - [1862] = 1400, - [1863] = 1346, - [1864] = 1864, - [1865] = 1344, - [1866] = 1369, - [1867] = 1300, - [1868] = 1279, - [1869] = 1869, - [1870] = 1473, - [1871] = 157, - [1872] = 1289, - [1873] = 1572, - [1874] = 1368, - [1875] = 1402, - [1876] = 1804, - [1877] = 1709, - [1878] = 1366, - [1879] = 1879, - [1880] = 162, - [1881] = 146, - [1882] = 132, - [1883] = 1425, - [1884] = 1267, - [1885] = 1476, - [1886] = 1308, - [1887] = 1887, - [1888] = 1318, - [1889] = 1252, - [1890] = 1420, - [1891] = 1251, - [1892] = 1494, - [1893] = 1545, - [1894] = 1869, - [1895] = 1895, - [1896] = 1421, - [1897] = 1433, - [1898] = 1397, - [1899] = 1899, - [1900] = 1822, - [1901] = 157, - [1902] = 1887, - [1903] = 1819, - [1904] = 1464, - [1905] = 1428, - [1906] = 1403, - [1907] = 1426, - [1908] = 1432, - [1909] = 1819, - [1910] = 1822, - [1911] = 1911, - [1912] = 1477, - [1913] = 1804, - [1914] = 143, - [1915] = 162, + [1817] = 1408, + [1818] = 1818, + [1819] = 1407, + [1820] = 153, + [1821] = 162, + [1822] = 1280, + [1823] = 1401, + [1824] = 1394, + [1825] = 1806, + [1826] = 1816, + [1827] = 1808, + [1828] = 1405, + [1829] = 1486, + [1830] = 1472, + [1831] = 1811, + [1832] = 1404, + [1833] = 1806, + [1834] = 161, + [1835] = 1419, + [1836] = 1519, + [1837] = 1436, + [1838] = 1486, + [1839] = 1805, + [1840] = 1415, + [1841] = 158, + [1842] = 1416, + [1843] = 1421, + [1844] = 1425, + [1845] = 1260, + [1846] = 1263, + [1847] = 1261, + [1848] = 1478, + [1849] = 131, + [1850] = 1396, + [1851] = 146, + [1852] = 166, + [1853] = 1438, + [1854] = 1439, + [1855] = 1400, + [1856] = 132, + [1857] = 1806, + [1858] = 1858, + [1859] = 157, + [1860] = 155, + [1861] = 1861, + [1862] = 1862, + [1863] = 1257, + [1864] = 1255, + [1865] = 1254, + [1866] = 1251, + [1867] = 137, + [1868] = 1246, + [1869] = 1390, + [1870] = 1245, + [1871] = 1871, + [1872] = 1380, + [1873] = 1379, + [1874] = 1452, + [1875] = 153, + [1876] = 1451, + [1877] = 1450, + [1878] = 1449, + [1879] = 1244, + [1880] = 1243, + [1881] = 1377, + [1882] = 1242, + [1883] = 1241, + [1884] = 1448, + [1885] = 1376, + [1886] = 1519, + [1887] = 1240, + [1888] = 1239, + [1889] = 1423, + [1890] = 1238, + [1891] = 1613, + [1892] = 1248, + [1893] = 1806, + [1894] = 1252, + [1895] = 1808, + [1896] = 1258, + [1897] = 1897, + [1898] = 1472, + [1899] = 1816, + [1900] = 1383, + [1901] = 164, + [1902] = 1374, + [1903] = 1816, + [1904] = 1373, + [1905] = 1259, + [1906] = 1262, + [1907] = 1264, + [1908] = 1808, + [1909] = 1391, + [1910] = 1447, + [1911] = 1806, + [1912] = 1397, + [1913] = 164, + [1914] = 1914, + [1915] = 1567, [1916] = 1916, - [1917] = 1709, - [1918] = 146, - [1919] = 1425, - [1920] = 1327, - [1921] = 164, - [1922] = 1482, - [1923] = 1923, - [1924] = 1384, - [1925] = 143, - [1926] = 1396, - [1927] = 1497, - [1928] = 1498, - [1929] = 1407, - [1930] = 1499, - [1931] = 1500, - [1932] = 1427, - [1933] = 1432, - [1934] = 1262, - [1935] = 1446, - [1936] = 1936, - [1937] = 1822, - [1938] = 1938, - [1939] = 1819, - [1940] = 1415, - [1941] = 1414, - [1942] = 1413, - [1943] = 1412, - [1944] = 1944, - [1945] = 1447, - [1946] = 1545, - [1947] = 1448, - [1948] = 1450, - [1949] = 1265, - [1950] = 1409, - [1951] = 1399, - [1952] = 129, - [1953] = 1506, - [1954] = 1395, - [1955] = 1379, - [1956] = 1349, - [1957] = 1493, - [1958] = 1485, - [1959] = 1959, - [1960] = 1456, - [1961] = 1353, - [1962] = 1483, - [1963] = 1289, - [1964] = 1298, - [1965] = 1965, - [1966] = 1353, - [1967] = 1433, - [1968] = 1249, - [1969] = 1545, - [1970] = 1329, - [1971] = 1525, - [1972] = 1262, - [1973] = 1432, - [1974] = 1327, - [1975] = 1318, - [1976] = 1308, - [1977] = 1344, - [1978] = 1346, - [1979] = 1352, - [1980] = 1359, - [1981] = 1360, - [1982] = 1342, - [1983] = 1351, - [1984] = 1356, - [1985] = 1357, - [1986] = 1986, - [1987] = 1255, - [1988] = 1336, - [1989] = 1349, - [1990] = 1306, - [1991] = 1396, - [1992] = 1986, - [1993] = 1300, - [1994] = 1709, - [1995] = 1292, - [1996] = 1986, - [1997] = 1965, - [1998] = 1433, - [1999] = 1252, - [2000] = 1986, - [2001] = 1986, - [2002] = 2002, - [2003] = 1251, - [2004] = 1286, - [2005] = 1265, - [2006] = 1284, - [2007] = 1283, - [2008] = 1425, - [2009] = 2009, - [2010] = 1267, - [2011] = 1279, - [2012] = 1545, - [2013] = 2013, - [2014] = 2014, - [2015] = 1433, - [2016] = 2016, - [2017] = 1407, - [2018] = 2018, - [2019] = 2019, - [2020] = 1396, - [2021] = 2021, - [2022] = 2022, + [1917] = 1917, + [1918] = 1265, + [1919] = 1919, + [1920] = 1402, + [1921] = 1273, + [1922] = 1269, + [1923] = 1371, + [1924] = 1268, + [1925] = 1808, + [1926] = 1926, + [1927] = 1267, + [1928] = 1266, + [1929] = 1441, + [1930] = 155, + [1931] = 1486, + [1932] = 157, + [1933] = 162, + [1934] = 1442, + [1935] = 1279, + [1936] = 1278, + [1937] = 1472, + [1938] = 1382, + [1939] = 1272, + [1940] = 1384, + [1941] = 1455, + [1942] = 1806, + [1943] = 1427, + [1944] = 1454, + [1945] = 1385, + [1946] = 1386, + [1947] = 161, + [1948] = 158, + [1949] = 1806, + [1950] = 1272, + [1951] = 156, + [1952] = 131, + [1953] = 1429, + [1954] = 1816, + [1955] = 1955, + [1956] = 1956, + [1957] = 1957, + [1958] = 1393, + [1959] = 1443, + [1960] = 1613, + [1961] = 1444, + [1962] = 1389, + [1963] = 1445, + [1964] = 146, + [1965] = 166, + [1966] = 132, + [1967] = 1967, + [1968] = 137, + [1969] = 1969, + [1970] = 1279, + [1971] = 1278, + [1972] = 1967, + [1973] = 1259, + [1974] = 1974, + [1975] = 1974, + [1976] = 1613, + [1977] = 1371, + [1978] = 1279, + [1979] = 1979, + [1980] = 1278, + [1981] = 1280, + [1982] = 1974, + [1983] = 1519, + [1984] = 1984, + [1985] = 1472, + [1986] = 1974, + [1987] = 1974, + [1988] = 1266, + [1989] = 1574, + [1990] = 1519, + [1991] = 1486, + [1992] = 1979, + [1993] = 1267, + [1994] = 1401, + [1995] = 1268, + [1996] = 1371, + [1997] = 1269, + [1998] = 1998, + [1999] = 1273, + [2000] = 1263, + [2001] = 1261, + [2002] = 1260, + [2003] = 1257, + [2004] = 1265, + [2005] = 1255, + [2006] = 1254, + [2007] = 1264, + [2008] = 1251, + [2009] = 1246, + [2010] = 1245, + [2011] = 1262, + [2012] = 1258, + [2013] = 1244, + [2014] = 1272, + [2015] = 1243, + [2016] = 1252, + [2017] = 1242, + [2018] = 1241, + [2019] = 1240, + [2020] = 1239, + [2021] = 1248, + [2022] = 1238, [2023] = 2023, - [2024] = 1384, - [2025] = 2021, - [2026] = 1264, + [2024] = 2024, + [2025] = 2023, + [2026] = 2026, [2027] = 2027, - [2028] = 2016, - [2029] = 2029, - [2030] = 2016, - [2031] = 1433, - [2032] = 1289, + [2028] = 2028, + [2029] = 1532, + [2030] = 2023, + [2031] = 2031, + [2032] = 1519, [2033] = 2033, - [2034] = 1425, - [2035] = 2016, + [2034] = 2034, + [2035] = 2035, [2036] = 2036, - [2037] = 1289, - [2038] = 1545, - [2039] = 2016, - [2040] = 2016, - [2041] = 1520, - [2042] = 2042, - [2043] = 2042, + [2037] = 1371, + [2038] = 2023, + [2039] = 1371, + [2040] = 2040, + [2041] = 1272, + [2042] = 1472, + [2043] = 2043, [2044] = 2044, [2045] = 2045, - [2046] = 2016, - [2047] = 2047, - [2048] = 2048, - [2049] = 1432, + [2046] = 1340, + [2047] = 1272, + [2048] = 1486, + [2049] = 2049, [2050] = 2050, [2051] = 2051, [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, + [2053] = 2026, + [2054] = 1419, + [2055] = 2024, [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 1911, - [2060] = 1709, - [2061] = 1396, + [2057] = 1401, + [2058] = 1394, + [2059] = 2023, + [2060] = 2023, + [2061] = 2023, [2062] = 2062, [2063] = 2063, - [2064] = 2055, - [2065] = 1384, + [2064] = 2064, + [2065] = 1613, [2066] = 2066, - [2067] = 2066, + [2067] = 2067, [2068] = 2068, [2069] = 2069, - [2070] = 2066, + [2070] = 2062, [2071] = 2071, - [2072] = 2055, - [2073] = 2066, + [2072] = 2072, + [2073] = 2073, [2074] = 2074, - [2075] = 2066, - [2076] = 2076, - [2077] = 2066, - [2078] = 2078, - [2079] = 2069, - [2080] = 2055, + [2075] = 2075, + [2076] = 1858, + [2077] = 2077, + [2078] = 2075, + [2079] = 2062, + [2080] = 2075, [2081] = 2081, [2082] = 2082, - [2083] = 2062, - [2084] = 2066, - [2085] = 1289, - [2086] = 2055, - [2087] = 2068, + [2083] = 2083, + [2084] = 2069, + [2085] = 2085, + [2086] = 2086, + [2087] = 2064, [2088] = 2088, - [2089] = 2081, - [2090] = 1407, + [2089] = 2064, + [2090] = 2062, [2091] = 2091, - [2092] = 2069, - [2093] = 2068, - [2094] = 2094, - [2095] = 2057, - [2096] = 2069, + [2092] = 1419, + [2093] = 2093, + [2094] = 2062, + [2095] = 2095, + [2096] = 1401, [2097] = 2097, - [2098] = 2069, - [2099] = 2068, - [2100] = 2068, - [2101] = 2101, + [2098] = 1394, + [2099] = 2099, + [2100] = 2082, + [2101] = 2075, [2102] = 2102, - [2103] = 2103, - [2104] = 2076, - [2105] = 2055, + [2103] = 2073, + [2104] = 2075, + [2105] = 2069, [2106] = 2106, - [2107] = 2055, + [2107] = 2064, [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2109, - [2112] = 2112, - [2113] = 2113, - [2114] = 2109, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2109, + [2109] = 2069, + [2110] = 2069, + [2111] = 1272, + [2112] = 2075, + [2113] = 2074, + [2114] = 2108, + [2115] = 2062, + [2116] = 2064, + [2117] = 2062, + [2118] = 2075, [2119] = 2119, [2120] = 2120, - [2121] = 2109, + [2121] = 2121, [2122] = 2122, [2123] = 2123, [2124] = 2124, [2125] = 2125, - [2126] = 2122, - [2127] = 2109, - [2128] = 2128, + [2126] = 2126, + [2127] = 2127, + [2128] = 2120, [2129] = 2129, [2130] = 2130, - [2131] = 2113, - [2132] = 2109, - [2133] = 2119, - [2134] = 2115, - [2135] = 2135, - [2136] = 2136, + [2131] = 2120, + [2132] = 2132, + [2133] = 2133, + [2134] = 2120, + [2135] = 2120, + [2136] = 2130, [2137] = 2137, - [2138] = 2138, - [2139] = 2139, + [2138] = 2132, + [2139] = 2120, [2140] = 2140, [2141] = 2141, - [2142] = 2142, + [2142] = 2127, [2143] = 2143, [2144] = 2144, - [2145] = 2145, - [2146] = 2069, + [2145] = 2140, + [2146] = 2120, [2147] = 2147, [2148] = 2148, [2149] = 2149, - [2150] = 2068, - [2151] = 2069, - [2152] = 2068, - [2153] = 2069, - [2154] = 2068, - [2155] = 2069, - [2156] = 2068, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2064, [2157] = 2157, [2158] = 2158, - [2159] = 2069, - [2160] = 2069, - [2161] = 2068, - [2162] = 2068, - [2163] = 2069, - [2164] = 2068, - [2165] = 2165, - [2166] = 2166, - [2167] = 2144, - [2168] = 2145, + [2159] = 2064, + [2160] = 2064, + [2161] = 2069, + [2162] = 2069, + [2163] = 2163, + [2164] = 2069, + [2165] = 2064, + [2166] = 2064, + [2167] = 2069, + [2168] = 2064, [2169] = 2169, - [2170] = 2170, - [2171] = 1123, - [2172] = 2166, - [2173] = 2166, - [2174] = 2170, + [2170] = 2069, + [2171] = 2069, + [2172] = 2172, + [2173] = 2069, + [2174] = 2064, [2175] = 2175, - [2176] = 2176, + [2176] = 2153, [2177] = 2177, [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, + [2179] = 2177, + [2180] = 2151, + [2181] = 2177, [2182] = 2182, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, + [2183] = 2178, + [2184] = 1130, + [2185] = 160, [2186] = 2186, [2187] = 2187, [2188] = 2188, [2189] = 2189, - [2190] = 141, + [2190] = 2190, [2191] = 2191, - [2192] = 2192, + [2192] = 143, [2193] = 2193, [2194] = 2194, [2195] = 2195, @@ -6227,76 +6237,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 150, + [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, - [2209] = 1137, + [2209] = 2209, [2210] = 2210, - [2211] = 151, - [2212] = 139, - [2213] = 2113, - [2214] = 2110, - [2215] = 2215, + [2211] = 2211, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 150, [2216] = 2216, [2217] = 2217, - [2218] = 2218, + [2218] = 151, [2219] = 2219, - [2220] = 150, - [2221] = 2221, - [2222] = 139, - [2223] = 2223, - [2224] = 2218, - [2225] = 2135, - [2226] = 2116, - [2227] = 2115, - [2228] = 2112, + [2220] = 2220, + [2221] = 1140, + [2222] = 2222, + [2223] = 2130, + [2224] = 2140, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2141, [2229] = 2229, - [2230] = 2115, - [2231] = 2119, - [2232] = 2122, - [2233] = 2119, - [2234] = 2122, - [2235] = 2113, - [2236] = 796, - [2237] = 794, - [2238] = 2238, - [2239] = 2239, - [2240] = 1152, + [2230] = 2125, + [2231] = 2140, + [2232] = 160, + [2233] = 150, + [2234] = 2234, + [2235] = 2235, + [2236] = 2229, + [2237] = 2122, + [2238] = 2127, + [2239] = 2126, + [2240] = 2127, [2241] = 2241, - [2242] = 795, + [2242] = 2132, [2243] = 2243, - [2244] = 141, - [2245] = 2245, + [2244] = 2130, + [2245] = 2132, [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 2248, - [2250] = 2245, + [2247] = 1154, + [2248] = 799, + [2249] = 2246, + [2250] = 2250, [2251] = 2251, - [2252] = 1159, - [2253] = 2243, + [2252] = 151, + [2253] = 2253, [2254] = 2254, [2255] = 2255, - [2256] = 2238, - [2257] = 151, - [2258] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2251, [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, + [2260] = 1160, + [2261] = 2253, + [2262] = 143, [2263] = 2263, - [2264] = 2123, - [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, + [2264] = 2264, + [2265] = 2250, + [2266] = 798, + [2267] = 2259, + [2268] = 800, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 2274, + [2274] = 2133, [2275] = 2275, [2276] = 2276, [2277] = 2277, @@ -6320,1173 +6330,1173 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2295] = 2295, [2296] = 2296, [2297] = 2294, - [2298] = 2298, + [2298] = 2287, [2299] = 2299, - [2300] = 2291, - [2301] = 2292, + [2300] = 2300, + [2301] = 2301, [2302] = 2302, - [2303] = 2285, - [2304] = 2290, + [2303] = 2303, + [2304] = 2304, [2305] = 2305, - [2306] = 2296, + [2306] = 2306, [2307] = 2307, - [2308] = 1261, - [2309] = 1213, - [2310] = 1355, - [2311] = 1270, - [2312] = 1313, - [2313] = 1350, - [2314] = 1347, - [2315] = 1345, - [2316] = 1354, - [2317] = 1260, - [2318] = 1257, - [2319] = 1256, - [2320] = 1231, - [2321] = 1254, - [2322] = 1317, - [2323] = 1319, - [2324] = 1250, - [2325] = 1247, - [2326] = 1210, - [2327] = 1343, - [2328] = 1339, - [2329] = 1320, - [2330] = 1322, - [2331] = 1338, - [2332] = 1305, - [2333] = 1337, - [2334] = 1323, - [2335] = 1335, - [2336] = 1310, - [2337] = 1274, - [2338] = 1214, - [2339] = 1215, - [2340] = 1312, - [2341] = 1358, - [2342] = 1271, - [2343] = 1258, - [2344] = 1348, - [2345] = 1293, - [2346] = 1307, - [2347] = 1324, - [2348] = 1303, - [2349] = 1275, - [2350] = 1218, - [2351] = 1304, - [2352] = 147, - [2353] = 135, - [2354] = 1230, - [2355] = 1226, - [2356] = 1285, - [2357] = 1332, - [2358] = 1328, - [2359] = 1295, - [2360] = 1294, - [2361] = 1291, - [2362] = 1277, - [2363] = 1315, - [2364] = 1309, - [2365] = 1288, - [2366] = 2366, - [2367] = 1236, - [2368] = 1237, - [2369] = 1239, - [2370] = 1238, - [2371] = 2366, - [2372] = 1330, - [2373] = 2366, - [2374] = 1272, - [2375] = 1326, - [2376] = 2366, - [2377] = 1321, - [2378] = 1240, - [2379] = 1268, - [2380] = 1241, - [2381] = 1276, - [2382] = 1234, - [2383] = 2366, - [2384] = 1210, - [2385] = 1278, - [2386] = 1224, - [2387] = 2366, - [2388] = 1225, - [2389] = 1213, - [2390] = 2366, - [2391] = 1282, - [2392] = 1214, - [2393] = 1215, - [2394] = 1243, - [2395] = 1233, - [2396] = 2366, - [2397] = 1281, - [2398] = 1232, - [2399] = 2399, - [2400] = 1354, - [2401] = 2399, - [2402] = 2402, - [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 2406, - [2407] = 2399, - [2408] = 1280, - [2409] = 1340, - [2410] = 2403, - [2411] = 2406, - [2412] = 1247, - [2413] = 1250, - [2414] = 1254, - [2415] = 1231, - [2416] = 1256, - [2417] = 1257, - [2418] = 1260, - [2419] = 1261, - [2420] = 1270, - [2421] = 1271, - [2422] = 2402, - [2423] = 1218, - [2424] = 2424, - [2425] = 2425, - [2426] = 1263, - [2427] = 1290, - [2428] = 2428, - [2429] = 1305, - [2430] = 1310, - [2431] = 1312, - [2432] = 1313, - [2433] = 1317, - [2434] = 1319, - [2435] = 1320, - [2436] = 1322, - [2437] = 1323, - [2438] = 1274, - [2439] = 1235, - [2440] = 2399, - [2441] = 2403, - [2442] = 1293, - [2443] = 1348, - [2444] = 2444, - [2445] = 1258, - [2446] = 1358, - [2447] = 1355, - [2448] = 2406, - [2449] = 2403, - [2450] = 1350, - [2451] = 1347, - [2452] = 1345, - [2453] = 2403, - [2454] = 2406, - [2455] = 2402, - [2456] = 1331, - [2457] = 1343, - [2458] = 2399, - [2459] = 1339, - [2460] = 1338, - [2461] = 1337, - [2462] = 1335, - [2463] = 2402, - [2464] = 2402, - [2465] = 2406, - [2466] = 1325, - [2467] = 2467, - [2468] = 2468, - [2469] = 1266, - [2470] = 1324, - [2471] = 2471, - [2472] = 2472, - [2473] = 1213, - [2474] = 2474, - [2475] = 796, - [2476] = 1304, - [2477] = 794, - [2478] = 1303, - [2479] = 2479, - [2480] = 1215, - [2481] = 1210, - [2482] = 2482, - [2483] = 2483, - [2484] = 1226, - [2485] = 2485, - [2486] = 2482, - [2487] = 795, - [2488] = 2488, - [2489] = 2489, + [2308] = 2286, + [2309] = 2309, + [2310] = 2310, + [2311] = 2305, + [2312] = 2309, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, + [2316] = 2302, + [2317] = 2317, + [2318] = 1354, + [2319] = 1361, + [2320] = 1364, + [2321] = 1331, + [2322] = 1332, + [2323] = 1333, + [2324] = 1334, + [2325] = 1218, + [2326] = 1335, + [2327] = 1336, + [2328] = 1365, + [2329] = 1237, + [2330] = 1323, + [2331] = 1343, + [2332] = 1344, + [2333] = 1345, + [2334] = 1324, + [2335] = 1358, + [2336] = 1357, + [2337] = 1353, + [2338] = 1328, + [2339] = 1360, + [2340] = 1351, + [2341] = 1329, + [2342] = 1362, + [2343] = 1350, + [2344] = 1213, + [2345] = 1327, + [2346] = 1359, + [2347] = 1356, + [2348] = 1235, + [2349] = 1330, + [2350] = 1355, + [2351] = 1217, + [2352] = 1326, + [2353] = 1347, + [2354] = 1325, + [2355] = 1349, + [2356] = 1315, + [2357] = 1316, + [2358] = 1311, + [2359] = 1296, + [2360] = 1308, + [2361] = 1219, + [2362] = 1309, + [2363] = 159, + [2364] = 139, + [2365] = 1224, + [2366] = 1226, + [2367] = 2367, + [2368] = 1288, + [2369] = 1287, + [2370] = 2367, + [2371] = 1291, + [2372] = 1290, + [2373] = 1286, + [2374] = 1289, + [2375] = 1314, + [2376] = 1348, + [2377] = 1341, + [2378] = 1312, + [2379] = 1318, + [2380] = 1339, + [2381] = 1319, + [2382] = 2367, + [2383] = 2367, + [2384] = 1321, + [2385] = 1313, + [2386] = 2367, + [2387] = 1235, + [2388] = 1213, + [2389] = 1218, + [2390] = 2367, + [2391] = 1306, + [2392] = 1305, + [2393] = 1217, + [2394] = 2367, + [2395] = 1366, + [2396] = 1367, + [2397] = 1368, + [2398] = 1304, + [2399] = 1338, + [2400] = 1220, + [2401] = 1303, + [2402] = 1227, + [2403] = 2367, + [2404] = 1302, + [2405] = 1301, + [2406] = 1300, + [2407] = 1342, + [2408] = 1298, + [2409] = 1297, + [2410] = 1325, + [2411] = 1219, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2413, + [2417] = 2417, + [2418] = 1323, + [2419] = 1324, + [2420] = 2420, + [2421] = 1326, + [2422] = 1327, + [2423] = 1328, + [2424] = 1329, + [2425] = 1330, + [2426] = 1331, + [2427] = 1332, + [2428] = 1333, + [2429] = 1334, + [2430] = 1335, + [2431] = 1336, + [2432] = 2415, + [2433] = 2415, + [2434] = 2434, + [2435] = 2414, + [2436] = 2415, + [2437] = 2415, + [2438] = 2413, + [2439] = 2420, + [2440] = 1320, + [2441] = 2414, + [2442] = 2442, + [2443] = 2414, + [2444] = 2414, + [2445] = 1354, + [2446] = 1355, + [2447] = 1356, + [2448] = 1359, + [2449] = 1360, + [2450] = 1361, + [2451] = 1362, + [2452] = 1364, + [2453] = 1365, + [2454] = 1237, + [2455] = 1295, + [2456] = 1294, + [2457] = 1317, + [2458] = 2458, + [2459] = 2413, + [2460] = 2420, + [2461] = 1358, + [2462] = 1357, + [2463] = 1353, + [2464] = 1351, + [2465] = 1350, + [2466] = 1349, + [2467] = 1347, + [2468] = 1345, + [2469] = 1344, + [2470] = 1343, + [2471] = 2420, + [2472] = 1337, + [2473] = 2473, + [2474] = 2413, + [2475] = 2475, + [2476] = 2476, + [2477] = 2420, + [2478] = 1299, + [2479] = 1236, + [2480] = 1346, + [2481] = 2481, + [2482] = 1311, + [2483] = 1224, + [2484] = 798, + [2485] = 1309, + [2486] = 1213, + [2487] = 2487, + [2488] = 1315, + [2489] = 1308, [2490] = 2490, - [2491] = 2491, - [2492] = 1275, - [2493] = 2482, + [2491] = 800, + [2492] = 1296, + [2493] = 2493, [2494] = 2494, - [2495] = 1307, - [2496] = 1214, - [2497] = 1348, - [2498] = 1355, + [2495] = 2495, + [2496] = 2493, + [2497] = 2497, + [2498] = 2498, [2499] = 2499, - [2500] = 2500, - [2501] = 1354, - [2502] = 1350, - [2503] = 1347, + [2500] = 1218, + [2501] = 1217, + [2502] = 1235, + [2503] = 799, [2504] = 2504, - [2505] = 147, - [2506] = 2506, + [2505] = 2505, + [2506] = 1316, [2507] = 2507, - [2508] = 1345, - [2509] = 1343, - [2510] = 1339, - [2511] = 1230, - [2512] = 1258, - [2513] = 1358, - [2514] = 1338, + [2508] = 2493, + [2509] = 2509, + [2510] = 1326, + [2511] = 2511, + [2512] = 1219, + [2513] = 1220, + [2514] = 1227, [2515] = 2515, - [2516] = 1337, - [2517] = 1335, - [2518] = 2518, - [2519] = 1218, - [2520] = 2520, - [2521] = 2521, - [2522] = 1293, - [2523] = 1247, - [2524] = 1250, - [2525] = 1254, - [2526] = 1231, - [2527] = 2527, - [2528] = 1256, - [2529] = 1257, - [2530] = 1260, - [2531] = 1261, - [2532] = 1270, - [2533] = 1271, + [2516] = 1323, + [2517] = 2517, + [2518] = 1324, + [2519] = 1325, + [2520] = 1327, + [2521] = 1328, + [2522] = 2522, + [2523] = 2523, + [2524] = 1329, + [2525] = 1330, + [2526] = 1331, + [2527] = 1332, + [2528] = 1333, + [2529] = 1334, + [2530] = 1335, + [2531] = 2531, + [2532] = 2532, + [2533] = 1336, [2534] = 2534, [2535] = 2535, - [2536] = 1305, - [2537] = 2537, - [2538] = 2504, - [2539] = 1224, - [2540] = 1310, - [2541] = 1225, - [2542] = 2504, - [2543] = 1312, + [2536] = 2509, + [2537] = 1354, + [2538] = 2509, + [2539] = 1355, + [2540] = 1356, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, [2544] = 2544, - [2545] = 2545, - [2546] = 1313, - [2547] = 2547, + [2545] = 159, + [2546] = 1359, + [2547] = 1360, [2548] = 2548, - [2549] = 1317, - [2550] = 1319, - [2551] = 2551, - [2552] = 1320, - [2553] = 1322, - [2554] = 2504, - [2555] = 1323, - [2556] = 1274, - [2557] = 2504, - [2558] = 135, - [2559] = 2559, - [2560] = 2560, - [2561] = 1288, - [2562] = 1285, - [2563] = 819, - [2564] = 2564, - [2565] = 1239, - [2566] = 1232, - [2567] = 1238, - [2568] = 1295, - [2569] = 1237, - [2570] = 1236, - [2571] = 1304, - [2572] = 1303, - [2573] = 795, - [2574] = 1307, - [2575] = 1315, - [2576] = 1235, - [2577] = 1294, - [2578] = 1291, - [2579] = 1290, - [2580] = 1234, - [2581] = 1282, - [2582] = 1281, - [2583] = 1280, - [2584] = 1324, - [2585] = 1278, - [2586] = 796, - [2587] = 1266, - [2588] = 831, - [2589] = 1321, - [2590] = 1325, - [2591] = 1326, - [2592] = 1277, - [2593] = 545, - [2594] = 1275, - [2595] = 1263, - [2596] = 2596, - [2597] = 1328, - [2598] = 1309, - [2599] = 548, - [2600] = 1331, - [2601] = 1272, - [2602] = 1276, - [2603] = 848, - [2604] = 1243, - [2605] = 1233, - [2606] = 1226, - [2607] = 1268, - [2608] = 546, - [2609] = 1330, - [2610] = 547, - [2611] = 1340, - [2612] = 1332, - [2613] = 1241, - [2614] = 794, - [2615] = 2615, - [2616] = 1240, - [2617] = 544, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2624, - [2625] = 1230, - [2626] = 2626, - [2627] = 2619, - [2628] = 2628, - [2629] = 2622, - [2630] = 2630, - [2631] = 2631, + [2549] = 1226, + [2550] = 1361, + [2551] = 2509, + [2552] = 2552, + [2553] = 1362, + [2554] = 139, + [2555] = 1364, + [2556] = 1365, + [2557] = 1237, + [2558] = 1358, + [2559] = 1357, + [2560] = 1353, + [2561] = 1351, + [2562] = 1350, + [2563] = 1349, + [2564] = 1347, + [2565] = 2565, + [2566] = 1345, + [2567] = 2567, + [2568] = 1344, + [2569] = 1343, + [2570] = 2570, + [2571] = 2571, + [2572] = 2509, + [2573] = 830, + [2574] = 546, + [2575] = 847, + [2576] = 799, + [2577] = 1342, + [2578] = 548, + [2579] = 549, + [2580] = 547, + [2581] = 2581, + [2582] = 2582, + [2583] = 1319, + [2584] = 1306, + [2585] = 1304, + [2586] = 1305, + [2587] = 1291, + [2588] = 1303, + [2589] = 1236, + [2590] = 1290, + [2591] = 550, + [2592] = 1301, + [2593] = 1300, + [2594] = 1289, + [2595] = 1308, + [2596] = 1366, + [2597] = 1367, + [2598] = 1296, + [2599] = 1288, + [2600] = 1287, + [2601] = 1337, + [2602] = 1297, + [2603] = 1302, + [2604] = 1338, + [2605] = 1321, + [2606] = 1368, + [2607] = 800, + [2608] = 1339, + [2609] = 1312, + [2610] = 1313, + [2611] = 1286, + [2612] = 1309, + [2613] = 1311, + [2614] = 2614, + [2615] = 1299, + [2616] = 1298, + [2617] = 1314, + [2618] = 1294, + [2619] = 820, + [2620] = 1320, + [2621] = 1224, + [2622] = 1317, + [2623] = 1295, + [2624] = 1348, + [2625] = 798, + [2626] = 1346, + [2627] = 1316, + [2628] = 1341, + [2629] = 1315, + [2630] = 1318, + [2631] = 1227, [2632] = 2632, [2633] = 2633, - [2634] = 1224, - [2635] = 2619, - [2636] = 2618, - [2637] = 1210, - [2638] = 2638, - [2639] = 2622, - [2640] = 2640, - [2641] = 1213, - [2642] = 2631, - [2643] = 1214, - [2644] = 1215, - [2645] = 1225, - [2646] = 2504, - [2647] = 1239, + [2634] = 2634, + [2635] = 2633, + [2636] = 2636, + [2637] = 2634, + [2638] = 2634, + [2639] = 1226, + [2640] = 1220, + [2641] = 2641, + [2642] = 2642, + [2643] = 2633, + [2644] = 1213, + [2645] = 2645, + [2646] = 2646, + [2647] = 2647, [2648] = 2648, - [2649] = 2504, - [2650] = 2650, - [2651] = 2651, - [2652] = 848, + [2649] = 2649, + [2650] = 1218, + [2651] = 1217, + [2652] = 2652, [2653] = 2653, - [2654] = 819, - [2655] = 2655, - [2656] = 2504, - [2657] = 2628, - [2658] = 2658, - [2659] = 2648, - [2660] = 2660, - [2661] = 545, - [2662] = 2662, - [2663] = 2633, + [2654] = 2632, + [2655] = 1235, + [2656] = 2656, + [2657] = 2657, + [2658] = 2648, + [2659] = 546, + [2660] = 1341, + [2661] = 1303, + [2662] = 1304, + [2663] = 1305, [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 1309, - [2668] = 1315, - [2669] = 1232, - [2670] = 1321, - [2671] = 1295, - [2672] = 1325, - [2673] = 1326, - [2674] = 819, - [2675] = 1328, - [2676] = 1331, - [2677] = 1332, + [2665] = 1306, + [2666] = 820, + [2667] = 2667, + [2668] = 2668, + [2669] = 1302, + [2670] = 1301, + [2671] = 1300, + [2672] = 2672, + [2673] = 2673, + [2674] = 1299, + [2675] = 1298, + [2676] = 549, + [2677] = 1297, [2678] = 2678, - [2679] = 1294, - [2680] = 1291, - [2681] = 544, - [2682] = 1290, - [2683] = 1288, - [2684] = 1282, - [2685] = 2678, - [2686] = 2664, - [2687] = 1281, - [2688] = 1280, - [2689] = 1278, - [2690] = 2665, - [2691] = 1277, - [2692] = 2692, - [2693] = 2678, - [2694] = 2504, - [2695] = 2695, - [2696] = 1268, - [2697] = 1233, - [2698] = 2698, - [2699] = 2699, - [2700] = 848, - [2701] = 1234, - [2702] = 1235, - [2703] = 831, - [2704] = 547, - [2705] = 2653, - [2706] = 2504, - [2707] = 548, - [2708] = 2662, + [2679] = 548, + [2680] = 2680, + [2681] = 2681, + [2682] = 2509, + [2683] = 159, + [2684] = 820, + [2685] = 1312, + [2686] = 1313, + [2687] = 2681, + [2688] = 1314, + [2689] = 2667, + [2690] = 2690, + [2691] = 1317, + [2692] = 1318, + [2693] = 830, + [2694] = 1319, + [2695] = 1320, + [2696] = 1321, + [2697] = 2509, + [2698] = 2681, + [2699] = 550, + [2700] = 2700, + [2701] = 1291, + [2702] = 1290, + [2703] = 1289, + [2704] = 2704, + [2705] = 1236, + [2706] = 1288, + [2707] = 1287, + [2708] = 2672, [2709] = 2709, - [2710] = 2710, - [2711] = 2650, - [2712] = 135, - [2713] = 2504, - [2714] = 831, - [2715] = 2715, - [2716] = 2666, - [2717] = 2717, - [2718] = 1272, - [2719] = 1276, - [2720] = 1285, - [2721] = 2504, - [2722] = 546, - [2723] = 1218, - [2724] = 2666, + [2710] = 1286, + [2711] = 2711, + [2712] = 2712, + [2713] = 2645, + [2714] = 1338, + [2715] = 1339, + [2716] = 2678, + [2717] = 2709, + [2718] = 847, + [2719] = 1294, + [2720] = 1346, + [2721] = 1348, + [2722] = 1295, + [2723] = 2723, + [2724] = 2724, [2725] = 2725, - [2726] = 1236, - [2727] = 1237, - [2728] = 1238, - [2729] = 2729, - [2730] = 2730, - [2731] = 1240, - [2732] = 1241, - [2733] = 1330, - [2734] = 2734, - [2735] = 1340, - [2736] = 2638, - [2737] = 147, - [2738] = 1263, - [2739] = 1243, - [2740] = 1266, - [2741] = 2741, - [2742] = 796, - [2743] = 2633, - [2744] = 126, - [2745] = 2741, - [2746] = 2746, - [2747] = 795, - [2748] = 2746, - [2749] = 2749, - [2750] = 2750, - [2751] = 794, - [2752] = 2741, - [2753] = 2741, - [2754] = 1226, - [2755] = 2741, - [2756] = 2741, + [2726] = 2726, + [2727] = 2727, + [2728] = 2728, + [2729] = 2704, + [2730] = 2509, + [2731] = 830, + [2732] = 2509, + [2733] = 2509, + [2734] = 1219, + [2735] = 2735, + [2736] = 1368, + [2737] = 1367, + [2738] = 1366, + [2739] = 2509, + [2740] = 547, + [2741] = 847, + [2742] = 2742, + [2743] = 2743, + [2744] = 2509, + [2745] = 2657, + [2746] = 2656, + [2747] = 2742, + [2748] = 2748, + [2749] = 2667, + [2750] = 139, + [2751] = 1342, + [2752] = 2726, + [2753] = 1337, + [2754] = 800, + [2755] = 2755, + [2756] = 2756, [2757] = 2757, - [2758] = 2741, - [2759] = 2741, + [2758] = 1224, + [2759] = 2759, [2760] = 2760, - [2761] = 2761, - [2762] = 2762, + [2761] = 799, + [2762] = 798, [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, + [2764] = 2763, + [2765] = 2763, + [2766] = 2763, + [2767] = 2763, + [2768] = 121, [2769] = 2769, - [2770] = 2770, - [2771] = 125, - [2772] = 136, - [2773] = 2764, - [2774] = 2774, - [2775] = 2775, + [2770] = 122, + [2771] = 2656, + [2772] = 2763, + [2773] = 2763, + [2774] = 2763, + [2775] = 2769, [2776] = 2776, [2777] = 2777, [2778] = 2778, - [2779] = 2779, + [2779] = 2668, [2780] = 2780, [2781] = 2781, [2782] = 2782, - [2783] = 2615, + [2783] = 2614, [2784] = 2784, [2785] = 2785, - [2786] = 2778, - [2787] = 1225, + [2786] = 2786, + [2787] = 2787, [2788] = 2788, - [2789] = 1224, + [2789] = 2789, [2790] = 2790, [2791] = 2791, [2792] = 2792, [2793] = 2793, [2794] = 2794, [2795] = 2795, - [2796] = 2796, + [2796] = 2777, [2797] = 2797, [2798] = 2798, - [2799] = 2799, + [2799] = 2673, [2800] = 2800, [2801] = 2801, [2802] = 2802, [2803] = 2803, [2804] = 2804, [2805] = 2805, - [2806] = 2766, + [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2782, + [2809] = 2809, [2810] = 2810, - [2811] = 2811, + [2811] = 2809, [2812] = 2812, - [2813] = 2813, - [2814] = 2784, - [2815] = 2778, - [2816] = 2785, - [2817] = 2762, + [2813] = 2804, + [2814] = 2794, + [2815] = 2815, + [2816] = 2816, + [2817] = 2817, [2818] = 2818, [2819] = 2819, - [2820] = 2820, - [2821] = 2807, + [2820] = 1220, + [2821] = 1227, [2822] = 2822, - [2823] = 2763, - [2824] = 2810, + [2823] = 2823, + [2824] = 2824, [2825] = 2825, [2826] = 2826, [2827] = 2827, [2828] = 2828, [2829] = 2829, - [2830] = 2775, + [2830] = 2830, [2831] = 2831, [2832] = 2832, [2833] = 2833, - [2834] = 2695, + [2834] = 2781, [2835] = 2835, [2836] = 2836, [2837] = 2837, - [2838] = 2833, - [2839] = 2785, - [2840] = 2781, - [2841] = 2841, + [2838] = 2778, + [2839] = 2794, + [2840] = 2840, + [2841] = 2836, [2842] = 2842, - [2843] = 2843, - [2844] = 2658, - [2845] = 2626, - [2846] = 2655, + [2843] = 2780, + [2844] = 124, + [2845] = 2795, + [2846] = 2846, [2847] = 2847, - [2848] = 2660, + [2848] = 2782, [2849] = 2849, - [2850] = 2734, - [2851] = 2847, - [2852] = 2852, - [2853] = 2833, - [2854] = 2775, - [2855] = 2855, - [2856] = 2852, - [2857] = 2843, - [2858] = 2858, + [2850] = 2723, + [2851] = 2851, + [2852] = 2728, + [2853] = 2853, + [2854] = 2842, + [2855] = 2846, + [2856] = 2856, + [2857] = 2857, + [2858] = 2808, [2859] = 2859, - [2860] = 2860, + [2860] = 2792, [2861] = 2861, - [2862] = 2862, - [2863] = 2777, - [2864] = 2859, + [2862] = 2776, + [2863] = 2788, + [2864] = 2780, [2865] = 2865, - [2866] = 2866, + [2866] = 2798, [2867] = 2867, [2868] = 2868, - [2869] = 2836, - [2870] = 2770, - [2871] = 2871, + [2869] = 2782, + [2870] = 2649, + [2871] = 133, [2872] = 2872, - [2873] = 2873, + [2873] = 134, [2874] = 2874, [2875] = 2875, - [2876] = 2872, - [2877] = 2877, - [2878] = 2878, + [2876] = 2876, + [2877] = 2785, + [2878] = 2792, [2879] = 2879, - [2880] = 544, - [2881] = 2874, - [2882] = 2877, - [2883] = 2872, - [2884] = 2884, - [2885] = 547, - [2886] = 545, - [2887] = 2887, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2784, + [2884] = 2791, + [2885] = 2735, + [2886] = 2886, + [2887] = 2645, [2888] = 2888, - [2889] = 2875, - [2890] = 2873, - [2891] = 2873, - [2892] = 2873, - [2893] = 2874, - [2894] = 2874, - [2895] = 2888, - [2896] = 2860, - [2897] = 2877, - [2898] = 2837, + [2889] = 2889, + [2890] = 2847, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2893, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, [2899] = 2899, - [2900] = 2873, - [2901] = 548, + [2900] = 2900, + [2901] = 2901, [2902] = 2902, - [2903] = 2832, - [2904] = 2872, + [2903] = 2849, + [2904] = 2904, [2905] = 2905, - [2906] = 2829, + [2906] = 2898, [2907] = 2907, - [2908] = 2875, - [2909] = 2861, + [2908] = 2908, + [2909] = 2909, [2910] = 2910, [2911] = 2911, - [2912] = 546, + [2912] = 2908, [2913] = 2913, - [2914] = 2862, - [2915] = 2907, + [2914] = 2914, + [2915] = 2915, [2916] = 2916, [2917] = 2917, - [2918] = 2918, + [2918] = 2859, [2919] = 2919, - [2920] = 2875, - [2921] = 2875, - [2922] = 2866, - [2923] = 2868, - [2924] = 2924, - [2925] = 2849, - [2926] = 2926, - [2927] = 2835, + [2920] = 2920, + [2921] = 2921, + [2922] = 2898, + [2923] = 2822, + [2924] = 2915, + [2925] = 2823, + [2926] = 2910, + [2927] = 2904, [2928] = 2928, - [2929] = 1280, - [2930] = 1290, - [2931] = 2872, - [2932] = 2638, + [2929] = 2920, + [2930] = 2824, + [2931] = 2931, + [2932] = 2932, [2933] = 2933, - [2934] = 2877, - [2935] = 2842, - [2936] = 2828, + [2934] = 2934, + [2935] = 2935, + [2936] = 2936, [2937] = 2937, - [2938] = 2938, - [2939] = 2939, + [2938] = 2896, + [2939] = 2817, [2940] = 2940, [2941] = 2941, - [2942] = 2942, - [2943] = 2888, - [2944] = 2944, - [2945] = 2873, - [2946] = 2596, - [2947] = 2874, - [2948] = 2948, - [2949] = 2855, - [2950] = 2813, - [2951] = 2812, - [2952] = 2888, - [2953] = 2953, - [2954] = 2811, + [2942] = 2908, + [2943] = 2921, + [2944] = 1337, + [2945] = 2945, + [2946] = 2893, + [2947] = 2947, + [2948] = 2831, + [2949] = 2657, + [2950] = 2851, + [2951] = 2816, + [2952] = 2952, + [2953] = 2898, + [2954] = 2954, [2955] = 2955, - [2956] = 2628, - [2957] = 2957, - [2958] = 2958, - [2959] = 2808, - [2960] = 2960, - [2961] = 2961, - [2962] = 2962, - [2963] = 2963, + [2956] = 2908, + [2957] = 2897, + [2958] = 2897, + [2959] = 2888, + [2960] = 2900, + [2961] = 2818, + [2962] = 1294, + [2963] = 1295, [2964] = 2964, - [2965] = 2965, - [2966] = 2802, - [2967] = 2801, - [2968] = 2968, + [2965] = 2904, + [2966] = 2966, + [2967] = 1346, + [2968] = 2786, [2969] = 2969, - [2970] = 2799, - [2971] = 2917, - [2972] = 2797, - [2973] = 2973, - [2974] = 2969, - [2975] = 1340, - [2976] = 2953, - [2977] = 2872, - [2978] = 2926, - [2979] = 2877, - [2980] = 2980, - [2981] = 2902, - [2982] = 2899, + [2970] = 2970, + [2971] = 2971, + [2972] = 2832, + [2973] = 2915, + [2974] = 2954, + [2975] = 2919, + [2976] = 2807, + [2977] = 2904, + [2978] = 547, + [2979] = 2825, + [2980] = 2904, + [2981] = 2829, + [2982] = 2982, [2983] = 2983, - [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 2874, - [2988] = 2988, - [2989] = 2989, - [2990] = 1266, - [2991] = 1263, - [2992] = 2980, - [2993] = 2940, - [2994] = 2994, - [2995] = 2995, - [2996] = 2902, - [2997] = 2997, - [2998] = 2998, - [2999] = 2911, - [3000] = 1235, - [3001] = 3001, - [3002] = 2968, - [3003] = 2875, - [3004] = 2989, - [3005] = 2888, - [3006] = 2788, - [3007] = 3007, - [3008] = 3008, - [3009] = 2796, - [3010] = 2968, - [3011] = 2790, + [2984] = 2853, + [2985] = 546, + [2986] = 2893, + [2987] = 2897, + [2988] = 550, + [2989] = 2982, + [2990] = 2898, + [2991] = 2896, + [2992] = 2896, + [2993] = 2803, + [2994] = 2815, + [2995] = 549, + [2996] = 2996, + [2997] = 2802, + [2998] = 2837, + [2999] = 2999, + [3000] = 3000, + [3001] = 548, + [3002] = 2908, + [3003] = 2907, + [3004] = 1320, + [3005] = 1317, + [3006] = 2945, + [3007] = 2893, + [3008] = 1299, + [3009] = 2886, + [3010] = 1236, + [3011] = 3011, [3012] = 3012, - [3013] = 2937, - [3014] = 2795, - [3015] = 2955, - [3016] = 1331, - [3017] = 1325, - [3018] = 3018, - [3019] = 2973, - [3020] = 2793, - [3021] = 2888, - [3022] = 2877, - [3023] = 3023, - [3024] = 3024, - [3025] = 2791, - [3026] = 3026, - [3027] = 3027, + [3013] = 3013, + [3014] = 3014, + [3015] = 2893, + [3016] = 3016, + [3017] = 2881, + [3018] = 2955, + [3019] = 2896, + [3020] = 2896, + [3021] = 2897, + [3022] = 3022, + [3023] = 2897, + [3024] = 2907, + [3025] = 3016, + [3026] = 2904, + [3027] = 2828, [3028] = 3028, - [3029] = 672, - [3030] = 667, - [3031] = 664, - [3032] = 3032, - [3033] = 632, + [3029] = 2581, + [3030] = 3030, + [3031] = 2947, + [3032] = 2898, + [3033] = 2934, [3034] = 3034, - [3035] = 3035, - [3036] = 3036, + [3035] = 2908, + [3036] = 2872, [3037] = 3037, [3038] = 3038, - [3039] = 3039, - [3040] = 3040, + [3039] = 2865, + [3040] = 2830, [3041] = 3041, - [3042] = 598, + [3042] = 614, [3043] = 3043, [3044] = 3044, - [3045] = 674, + [3045] = 3045, [3046] = 3046, - [3047] = 3047, - [3048] = 3048, + [3047] = 673, + [3048] = 669, [3049] = 3049, - [3050] = 3050, + [3050] = 654, [3051] = 3051, - [3052] = 662, + [3052] = 3052, [3053] = 3053, [3054] = 3054, [3055] = 3055, [3056] = 3056, - [3057] = 658, + [3057] = 3057, [3058] = 3058, [3059] = 3059, - [3060] = 3060, - [3061] = 631, - [3062] = 3060, + [3060] = 3038, + [3061] = 3061, + [3062] = 3053, [3063] = 3063, - [3064] = 629, - [3065] = 3065, - [3066] = 625, + [3064] = 3064, + [3065] = 3049, + [3066] = 647, [3067] = 3067, [3068] = 3068, - [3069] = 3069, - [3070] = 657, - [3071] = 647, + [3069] = 3052, + [3070] = 3070, + [3071] = 3071, [3072] = 3072, [3073] = 3073, [3074] = 3074, [3075] = 3075, [3076] = 3076, - [3077] = 605, + [3077] = 3077, [3078] = 3078, - [3079] = 3079, + [3079] = 3041, [3080] = 3080, [3081] = 3081, - [3082] = 645, - [3083] = 3060, - [3084] = 602, + [3082] = 3082, + [3083] = 3083, + [3084] = 630, [3085] = 3085, [3086] = 3086, - [3087] = 601, + [3087] = 620, [3088] = 3088, - [3089] = 610, + [3089] = 601, [3090] = 3090, - [3091] = 3091, - [3092] = 3038, + [3091] = 2790, + [3092] = 3092, [3093] = 3093, - [3094] = 635, - [3095] = 669, + [3094] = 3094, + [3095] = 676, [3096] = 3096, [3097] = 3097, - [3098] = 737, - [3099] = 3099, + [3098] = 604, + [3099] = 629, [3100] = 3100, [3101] = 3101, - [3102] = 3028, - [3103] = 3103, + [3102] = 3102, + [3103] = 649, [3104] = 3104, - [3105] = 738, - [3106] = 3078, + [3105] = 631, + [3106] = 3106, [3107] = 3107, [3108] = 3108, - [3109] = 3109, + [3109] = 611, [3110] = 3110, [3111] = 3111, - [3112] = 3112, - [3113] = 3076, - [3114] = 693, + [3112] = 3045, + [3113] = 3113, + [3114] = 3114, [3115] = 3115, - [3116] = 663, - [3117] = 626, + [3116] = 3037, + [3117] = 3117, [3118] = 3118, - [3119] = 640, - [3120] = 3120, + [3119] = 3119, + [3120] = 3064, [3121] = 3121, - [3122] = 720, - [3123] = 633, - [3124] = 636, - [3125] = 2827, - [3126] = 3126, - [3127] = 3127, - [3128] = 726, - [3129] = 603, - [3130] = 618, + [3122] = 3122, + [3123] = 3123, + [3124] = 3124, + [3125] = 3119, + [3126] = 632, + [3127] = 633, + [3128] = 634, + [3129] = 635, + [3130] = 636, [3131] = 3131, - [3132] = 622, - [3133] = 741, + [3132] = 3132, + [3133] = 3133, [3134] = 3134, - [3135] = 3038, - [3136] = 3091, - [3137] = 2826, - [3138] = 668, - [3139] = 3139, - [3140] = 623, - [3141] = 743, - [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 671, - [3146] = 3081, - [3147] = 624, - [3148] = 3148, - [3149] = 3149, + [3135] = 3135, + [3136] = 653, + [3137] = 3137, + [3138] = 3138, + [3139] = 727, + [3140] = 735, + [3141] = 3082, + [3142] = 3072, + [3143] = 3057, + [3144] = 3058, + [3145] = 736, + [3146] = 737, + [3147] = 738, + [3148] = 3056, + [3149] = 3083, [3150] = 3150, - [3151] = 759, - [3152] = 745, - [3153] = 3038, - [3154] = 613, + [3151] = 612, + [3152] = 615, + [3153] = 754, + [3154] = 3113, [3155] = 3155, - [3156] = 3156, - [3157] = 3148, - [3158] = 607, + [3156] = 3108, + [3157] = 3110, + [3158] = 144, [3159] = 3159, - [3160] = 3160, - [3161] = 3075, - [3162] = 600, - [3163] = 3074, - [3164] = 621, - [3165] = 3165, - [3166] = 3166, - [3167] = 749, - [3168] = 3168, - [3169] = 3169, - [3170] = 678, + [3160] = 755, + [3161] = 756, + [3162] = 757, + [3163] = 3073, + [3164] = 3164, + [3165] = 2826, + [3166] = 2874, + [3167] = 704, + [3168] = 3150, + [3169] = 163, + [3170] = 3070, [3171] = 3171, - [3172] = 3048, - [3173] = 740, - [3174] = 3131, - [3175] = 670, - [3176] = 3159, - [3177] = 2841, - [3178] = 3178, - [3179] = 628, - [3180] = 673, - [3181] = 3060, - [3182] = 3182, + [3172] = 3054, + [3173] = 3173, + [3174] = 3174, + [3175] = 3175, + [3176] = 617, + [3177] = 3085, + [3178] = 701, + [3179] = 3179, + [3180] = 3131, + [3181] = 700, + [3182] = 3134, [3183] = 3183, - [3184] = 3100, + [3184] = 3184, [3185] = 3185, [3186] = 3186, [3187] = 3187, [3188] = 3188, - [3189] = 3189, + [3189] = 3159, [3190] = 3190, - [3191] = 3191, - [3192] = 3121, + [3191] = 3055, + [3192] = 3192, [3193] = 3193, - [3194] = 3194, - [3195] = 3049, + [3194] = 656, + [3195] = 3195, [3196] = 3196, - [3197] = 3197, - [3198] = 3198, - [3199] = 3199, - [3200] = 3200, + [3197] = 712, + [3198] = 2964, + [3199] = 749, + [3200] = 697, [3201] = 3201, - [3202] = 742, - [3203] = 3203, - [3204] = 665, - [3205] = 666, - [3206] = 3206, - [3207] = 3150, - [3208] = 3208, + [3202] = 3202, + [3203] = 623, + [3204] = 730, + [3205] = 692, + [3206] = 694, + [3207] = 3183, + [3208] = 679, [3209] = 3209, - [3210] = 747, - [3211] = 3051, - [3212] = 3115, - [3213] = 3213, - [3214] = 3214, - [3215] = 724, - [3216] = 732, - [3217] = 3217, - [3218] = 3109, - [3219] = 733, - [3220] = 1324, - [3221] = 3156, + [3210] = 640, + [3211] = 662, + [3212] = 763, + [3213] = 638, + [3214] = 637, + [3215] = 3215, + [3216] = 3216, + [3217] = 643, + [3218] = 3218, + [3219] = 642, + [3220] = 729, + [3221] = 734, [3222] = 3222, - [3223] = 700, - [3224] = 3224, - [3225] = 3101, - [3226] = 3226, - [3227] = 734, - [3228] = 133, + [3223] = 657, + [3224] = 725, + [3225] = 3225, + [3226] = 1315, + [3227] = 3171, + [3228] = 1316, [3229] = 3229, - [3230] = 3038, - [3231] = 3104, - [3232] = 3232, - [3233] = 735, - [3234] = 3065, + [3230] = 3113, + [3231] = 3231, + [3232] = 3094, + [3233] = 3113, + [3234] = 2827, [3235] = 3235, - [3236] = 3236, - [3237] = 760, - [3238] = 3238, + [3236] = 3155, + [3237] = 3237, + [3238] = 3059, [3239] = 3239, [3240] = 3240, - [3241] = 3104, - [3242] = 153, + [3241] = 3241, + [3242] = 3242, [3243] = 3243, - [3244] = 615, + [3244] = 3244, [3245] = 3245, - [3246] = 3127, - [3247] = 3247, + [3246] = 3123, + [3247] = 3171, [3248] = 3248, [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 2958, - [3253] = 3126, - [3254] = 751, - [3255] = 3255, - [3256] = 3060, - [3257] = 3026, - [3258] = 3099, - [3259] = 707, - [3260] = 752, - [3261] = 753, - [3262] = 3072, - [3263] = 754, + [3250] = 748, + [3251] = 3185, + [3252] = 740, + [3253] = 3253, + [3254] = 719, + [3255] = 3171, + [3256] = 625, + [3257] = 3257, + [3258] = 652, + [3259] = 3259, + [3260] = 3260, + [3261] = 721, + [3262] = 3171, + [3263] = 3263, [3264] = 3264, - [3265] = 3222, - [3266] = 2997, - [3267] = 3081, - [3268] = 3086, - [3269] = 3078, + [3265] = 3265, + [3266] = 613, + [3267] = 3267, + [3268] = 720, + [3269] = 3269, [3270] = 3270, - [3271] = 3090, - [3272] = 3076, - [3273] = 677, - [3274] = 682, - [3275] = 3120, - [3276] = 3276, + [3271] = 3132, + [3272] = 3272, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 733, [3277] = 3277, - [3278] = 728, - [3279] = 3279, + [3278] = 3078, + [3279] = 659, [3280] = 3280, - [3281] = 727, - [3282] = 3232, - [3283] = 2957, - [3284] = 3155, - [3285] = 711, - [3286] = 3286, - [3287] = 2805, - [3288] = 3131, - [3289] = 3245, - [3290] = 3120, - [3291] = 756, - [3292] = 3292, - [3293] = 750, - [3294] = 606, - [3295] = 3295, - [3296] = 3296, - [3297] = 3065, - [3298] = 2884, - [3299] = 3299, + [3281] = 661, + [3282] = 3282, + [3283] = 3113, + [3284] = 3284, + [3285] = 664, + [3286] = 622, + [3287] = 3287, + [3288] = 690, + [3289] = 3289, + [3290] = 3155, + [3291] = 3291, + [3292] = 3132, + [3293] = 3055, + [3294] = 3097, + [3295] = 3096, + [3296] = 663, + [3297] = 3297, + [3298] = 3059, + [3299] = 610, [3300] = 3300, [3301] = 3301, [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3305, + [3303] = 607, + [3304] = 2914, + [3305] = 706, [3306] = 3306, - [3307] = 3307, - [3308] = 3303, - [3309] = 3309, - [3310] = 3302, + [3307] = 3097, + [3308] = 693, + [3309] = 705, + [3310] = 3064, [3311] = 3311, - [3312] = 3312, + [3312] = 703, [3313] = 3313, - [3314] = 3301, + [3314] = 3314, [3315] = 3315, - [3316] = 3316, + [3316] = 3096, [3317] = 3317, [3318] = 3318, [3319] = 3319, - [3320] = 3304, + [3320] = 3320, [3321] = 3321, [3322] = 3322, [3323] = 3323, [3324] = 3324, [3325] = 3325, - [3326] = 3302, - [3327] = 3302, + [3326] = 3326, + [3327] = 3317, [3328] = 3328, [3329] = 3329, - [3330] = 3328, + [3330] = 3325, [3331] = 3331, [3332] = 3332, [3333] = 3333, - [3334] = 3302, - [3335] = 3313, - [3336] = 3309, - [3337] = 3301, - [3338] = 3321, - [3339] = 3321, - [3340] = 3322, + [3334] = 3334, + [3335] = 3335, + [3336] = 3317, + [3337] = 3337, + [3338] = 3324, + [3339] = 3339, + [3340] = 3325, [3341] = 3341, - [3342] = 3309, + [3342] = 3342, [3343] = 3343, - [3344] = 3301, + [3344] = 3344, [3345] = 3345, - [3346] = 3322, + [3346] = 3346, [3347] = 3347, - [3348] = 3348, - [3349] = 3321, - [3350] = 3350, - [3351] = 3322, + [3348] = 3333, + [3349] = 3329, + [3350] = 3321, + [3351] = 3351, [3352] = 3352, - [3353] = 3331, - [3354] = 3307, - [3355] = 3355, - [3356] = 3333, + [3353] = 3323, + [3354] = 3325, + [3355] = 3343, + [3356] = 3347, [3357] = 3357, - [3358] = 3328, + [3358] = 3358, [3359] = 3359, - [3360] = 3305, - [3361] = 3361, + [3360] = 3360, + [3361] = 3333, [3362] = 3362, - [3363] = 3363, - [3364] = 3364, - [3365] = 3365, - [3366] = 3328, - [3367] = 3321, - [3368] = 3322, - [3369] = 3369, - [3370] = 3370, - [3371] = 3371, - [3372] = 3372, - [3373] = 3373, + [3363] = 3329, + [3364] = 3357, + [3365] = 3323, + [3366] = 3366, + [3367] = 3333, + [3368] = 3329, + [3369] = 3326, + [3370] = 3339, + [3371] = 3345, + [3372] = 3341, + [3373] = 3317, [3374] = 3374, [3375] = 3375, [3376] = 3376, - [3377] = 3309, - [3378] = 3322, - [3379] = 3321, - [3380] = 3301, - [3381] = 3328, - [3382] = 3305, - [3383] = 3306, - [3384] = 3331, - [3385] = 3309, - [3386] = 3307, - [3387] = 3325, - [3388] = 3388, + [3377] = 3321, + [3378] = 3378, + [3379] = 3379, + [3380] = 3380, + [3381] = 3317, + [3382] = 3382, + [3383] = 3383, + [3384] = 3329, + [3385] = 3333, + [3386] = 3343, + [3387] = 3347, + [3388] = 3317, [3389] = 3389, - [3390] = 3313, + [3390] = 3390, [3391] = 3391, - [3392] = 3302, + [3392] = 3345, [3393] = 3393, - [3394] = 3394, + [3394] = 3347, [3395] = 3395, - [3396] = 3305, - [3397] = 3307, - [3398] = 3398, - [3399] = 3307, - [3400] = 3309, - [3401] = 3313, - [3402] = 3331, - [3403] = 3311, - [3404] = 3375, - [3405] = 3370, - [3406] = 3301, - [3407] = 3316, - [3408] = 3317, - [3409] = 3313, + [3396] = 3343, + [3397] = 3321, + [3398] = 3345, + [3399] = 3325, + [3400] = 3351, + [3401] = 3347, + [3402] = 3343, + [3403] = 3325, + [3404] = 3357, + [3405] = 3357, + [3406] = 3343, + [3407] = 3347, + [3408] = 3408, + [3409] = 3409, [3410] = 3410, - [3411] = 3411, - [3412] = 3331, - [3413] = 3307, - [3414] = 3414, - [3415] = 3328, - [3416] = 3416, - [3417] = 3301, - [3418] = 3309, - [3419] = 3359, - [3420] = 3305, - [3421] = 3305, - [3422] = 3322, - [3423] = 3321, + [3411] = 3323, + [3412] = 3362, + [3413] = 3345, + [3414] = 3360, + [3415] = 3357, + [3416] = 3333, + [3417] = 3329, + [3418] = 3418, + [3419] = 3323, + [3420] = 3420, + [3421] = 3421, + [3422] = 3422, + [3423] = 3423, [3424] = 3424, [3425] = 3425, - [3426] = 1288, + [3426] = 3323, [3427] = 3427, [3428] = 3428, - [3429] = 3429, - [3430] = 3430, + [3429] = 3424, + [3430] = 3345, [3431] = 3431, - [3432] = 3432, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, - [3436] = 3436, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, + [3432] = 3428, + [3433] = 3393, + [3434] = 3343, + [3435] = 3333, + [3436] = 3329, + [3437] = 3390, + [3438] = 3321, + [3439] = 3347, [3440] = 3440, [3441] = 3441, [3442] = 3442, [3443] = 3443, [3444] = 3444, - [3445] = 3445, - [3446] = 3446, + [3445] = 1306, + [3446] = 1302, [3447] = 3447, [3448] = 3448, [3449] = 3449, - [3450] = 3447, + [3450] = 3450, [3451] = 3451, [3452] = 3452, - [3453] = 3453, - [3454] = 3454, + [3453] = 3440, + [3454] = 2847, [3455] = 3455, [3456] = 3456, [3457] = 3457, [3458] = 3458, - [3459] = 3424, + [3459] = 3459, [3460] = 3460, - [3461] = 3442, + [3461] = 3461, [3462] = 3462, - [3463] = 2836, - [3464] = 3424, + [3463] = 3463, + [3464] = 3464, [3465] = 3465, [3466] = 3466, [3467] = 3467, @@ -7494,8 +7504,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3469] = 3469, [3470] = 3470, [3471] = 3471, - [3472] = 3443, - [3473] = 3446, + [3472] = 3448, + [3473] = 3451, [3474] = 3474, [3475] = 3475, [3476] = 3476, @@ -7503,464 +7513,464 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 3428, - [3482] = 3465, - [3483] = 3471, - [3484] = 3436, - [3485] = 3214, - [3486] = 3432, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 3485, + [3486] = 3486, [3487] = 3487, - [3488] = 3436, + [3488] = 3488, [3489] = 3489, - [3490] = 3475, + [3490] = 3478, [3491] = 3491, [3492] = 3492, - [3493] = 3446, - [3494] = 3447, - [3495] = 3432, - [3496] = 2849, - [3497] = 3479, + [3493] = 3493, + [3494] = 3494, + [3495] = 3495, + [3496] = 3496, + [3497] = 3497, [3498] = 3498, [3499] = 3499, - [3500] = 3500, + [3500] = 3462, [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 2842, - [3505] = 3505, - [3506] = 3506, - [3507] = 3428, - [3508] = 3508, + [3504] = 3504, + [3505] = 2786, + [3506] = 3469, + [3507] = 3478, + [3508] = 3444, [3509] = 3509, [3510] = 3510, - [3511] = 3511, - [3512] = 3443, - [3513] = 3513, - [3514] = 3514, + [3511] = 3451, + [3512] = 3512, + [3513] = 3441, + [3514] = 3469, [3515] = 3515, [3516] = 3516, [3517] = 3517, - [3518] = 3518, - [3519] = 3519, - [3520] = 3499, - [3521] = 3501, - [3522] = 2828, - [3523] = 3506, - [3524] = 1232, - [3525] = 3458, - [3526] = 3503, - [3527] = 3454, - [3528] = 3505, + [3518] = 3465, + [3519] = 3464, + [3520] = 3442, + [3521] = 3444, + [3522] = 3522, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3526, + [3527] = 3527, + [3528] = 3528, [3529] = 3529, [3530] = 3530, - [3531] = 3509, - [3532] = 3517, - [3533] = 3518, - [3534] = 3519, - [3535] = 3424, + [3531] = 3531, + [3532] = 3444, + [3533] = 3504, + [3534] = 3534, + [3535] = 3531, [3536] = 3536, - [3537] = 3537, - [3538] = 3538, + [3537] = 3448, + [3538] = 3523, [3539] = 3539, - [3540] = 3469, + [3540] = 3164, [3541] = 3541, - [3542] = 3538, - [3543] = 3543, + [3542] = 3465, + [3543] = 3464, [3544] = 3544, - [3545] = 3545, - [3546] = 3546, + [3545] = 3524, + [3546] = 3441, [3547] = 3547, - [3548] = 3213, + [3548] = 3548, [3549] = 3549, - [3550] = 3550, - [3551] = 3430, + [3550] = 3440, + [3551] = 2802, [3552] = 3552, [3553] = 3553, - [3554] = 3554, + [3554] = 3451, [3555] = 3555, - [3556] = 3506, + [3556] = 3526, [3557] = 3557, [3558] = 3558, - [3559] = 3436, - [3560] = 3560, - [3561] = 3446, - [3562] = 3447, - [3563] = 3550, - [3564] = 3564, + [3559] = 3559, + [3560] = 3495, + [3561] = 3561, + [3562] = 3528, + [3563] = 3530, + [3564] = 3548, [3565] = 3565, - [3566] = 3566, - [3567] = 3443, + [3566] = 3501, + [3567] = 3567, [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 3572, - [3573] = 3573, + [3569] = 3478, + [3570] = 3534, + [3571] = 3539, + [3572] = 3244, + [3573] = 3549, [3574] = 3574, - [3575] = 3575, - [3576] = 3576, - [3577] = 3577, + [3575] = 3512, + [3576] = 3451, + [3577] = 3478, [3578] = 3578, - [3579] = 3579, + [3579] = 3469, [3580] = 3580, - [3581] = 3581, - [3582] = 3582, - [3583] = 3446, - [3584] = 3447, - [3585] = 3443, - [3586] = 3586, - [3587] = 3587, - [3588] = 3588, + [3581] = 3448, + [3582] = 3474, + [3583] = 3477, + [3584] = 3469, + [3585] = 3585, + [3586] = 3465, + [3587] = 3464, + [3588] = 3457, [3589] = 3589, - [3590] = 3428, - [3591] = 3591, - [3592] = 3592, + [3590] = 3493, + [3591] = 2830, + [3592] = 3448, [3593] = 3593, [3594] = 3594, [3595] = 3595, [3596] = 3596, - [3597] = 3582, - [3598] = 3432, - [3599] = 3436, - [3600] = 3429, - [3601] = 3601, - [3602] = 3440, - [3603] = 3441, + [3597] = 3451, + [3598] = 3565, + [3599] = 3599, + [3600] = 3470, + [3601] = 3469, + [3602] = 3602, + [3603] = 3603, [3604] = 3604, [3605] = 3605, - [3606] = 3443, - [3607] = 2868, - [3608] = 3608, - [3609] = 3592, - [3610] = 3593, + [3606] = 3606, + [3607] = 3465, + [3608] = 3465, + [3609] = 3464, + [3610] = 3448, [3611] = 3611, - [3612] = 3502, - [3613] = 3489, - [3614] = 3487, + [3612] = 3612, + [3613] = 3529, + [3614] = 3614, [3615] = 3615, - [3616] = 3616, - [3617] = 3456, - [3618] = 3457, - [3619] = 3446, - [3620] = 3447, + [3616] = 605, + [3617] = 3617, + [3618] = 3618, + [3619] = 3619, + [3620] = 3620, [3621] = 3621, - [3622] = 3622, - [3623] = 3428, - [3624] = 3502, - [3625] = 3499, - [3626] = 3432, - [3627] = 3068, - [3628] = 3436, - [3629] = 3432, - [3630] = 3596, - [3631] = 3437, - [3632] = 3501, - [3633] = 3438, - [3634] = 3503, + [3622] = 3444, + [3623] = 3464, + [3624] = 3624, + [3625] = 3447, + [3626] = 3626, + [3627] = 3627, + [3628] = 3580, + [3629] = 3465, + [3630] = 3630, + [3631] = 3464, + [3632] = 3524, + [3633] = 2859, + [3634] = 3634, [3635] = 3635, [3636] = 3636, - [3637] = 3505, - [3638] = 3511, - [3639] = 604, + [3637] = 3637, + [3638] = 3638, + [3639] = 3639, [3640] = 3640, [3641] = 3641, - [3642] = 3447, - [3643] = 3480, - [3644] = 3424, + [3642] = 3642, + [3643] = 3526, + [3644] = 2804, [3645] = 3645, [3646] = 3646, - [3647] = 3446, + [3647] = 3647, [3648] = 3648, - [3649] = 3443, - [3650] = 3650, + [3649] = 3649, + [3650] = 3645, [3651] = 3651, - [3652] = 3445, - [3653] = 2866, - [3654] = 3654, - [3655] = 3329, - [3656] = 3656, - [3657] = 3657, - [3658] = 3658, - [3659] = 3659, - [3660] = 3660, + [3652] = 3617, + [3653] = 3528, + [3654] = 3648, + [3655] = 3655, + [3656] = 3647, + [3657] = 3619, + [3658] = 3651, + [3659] = 3499, + [3660] = 3489, [3661] = 3661, - [3662] = 3662, - [3663] = 3663, + [3662] = 3530, + [3663] = 3448, [3664] = 3664, - [3665] = 3665, + [3665] = 3547, [3666] = 3666, - [3667] = 3667, + [3667] = 3642, [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3656, + [3669] = 3202, + [3670] = 3641, + [3671] = 3671, [3672] = 3672, [3673] = 3673, - [3674] = 3674, - [3675] = 2199, + [3674] = 2206, + [3675] = 3675, [3676] = 3676, - [3677] = 2200, + [3677] = 3677, [3678] = 3678, - [3679] = 3679, + [3679] = 2187, [3680] = 3680, [3681] = 3681, [3682] = 3682, [3683] = 3683, [3684] = 3684, [3685] = 3685, - [3686] = 2194, - [3687] = 3687, + [3686] = 3686, + [3687] = 2189, [3688] = 3688, [3689] = 3689, [3690] = 3690, [3691] = 3691, [3692] = 3692, - [3693] = 2195, + [3693] = 3693, [3694] = 3694, - [3695] = 3695, - [3696] = 3692, + [3695] = 2191, + [3696] = 3696, [3697] = 3697, [3698] = 3698, - [3699] = 3699, - [3700] = 3700, - [3701] = 3701, - [3702] = 3702, + [3699] = 3693, + [3700] = 3691, + [3701] = 3681, + [3702] = 2198, [3703] = 3703, - [3704] = 3704, + [3704] = 2190, [3705] = 3705, - [3706] = 3706, - [3707] = 3682, + [3706] = 2211, + [3707] = 2204, [3708] = 3708, [3709] = 3709, - [3710] = 3710, + [3710] = 2209, [3711] = 3711, [3712] = 3712, [3713] = 3713, [3714] = 3714, [3715] = 3715, - [3716] = 3716, - [3717] = 3664, - [3718] = 3718, - [3719] = 2884, + [3716] = 2213, + [3717] = 2188, + [3718] = 2196, + [3719] = 2214, [3720] = 3720, [3721] = 3721, - [3722] = 3678, - [3723] = 3723, - [3724] = 2191, - [3725] = 3725, - [3726] = 3726, + [3722] = 3722, + [3723] = 2220, + [3724] = 3724, + [3725] = 2222, + [3726] = 2205, [3727] = 3727, [3728] = 3728, [3729] = 3729, [3730] = 3730, - [3731] = 3731, + [3731] = 3673, [3732] = 3732, - [3733] = 3733, + [3733] = 2208, [3734] = 3734, - [3735] = 3682, - [3736] = 3736, - [3737] = 2997, - [3738] = 3738, - [3739] = 3702, - [3740] = 3740, + [3735] = 3735, + [3736] = 3037, + [3737] = 3737, + [3738] = 3038, + [3739] = 3739, + [3740] = 2207, [3741] = 3741, - [3742] = 3742, - [3743] = 2198, + [3742] = 3678, + [3743] = 793, [3744] = 3744, - [3745] = 3657, - [3746] = 3718, + [3745] = 794, + [3746] = 3746, [3747] = 3747, - [3748] = 3706, + [3748] = 3374, [3749] = 3749, [3750] = 3750, - [3751] = 3702, - [3752] = 3720, + [3751] = 3751, + [3752] = 3752, [3753] = 3753, - [3754] = 3692, + [3754] = 3709, [3755] = 3755, [3756] = 3756, [3757] = 3757, [3758] = 3758, [3759] = 3759, - [3760] = 3731, + [3760] = 3760, [3761] = 3761, - [3762] = 3697, + [3762] = 3762, [3763] = 3763, - [3764] = 3764, + [3764] = 2197, [3765] = 3765, - [3766] = 3757, - [3767] = 3759, - [3768] = 3749, - [3769] = 3761, + [3766] = 3766, + [3767] = 3685, + [3768] = 3768, + [3769] = 2195, [3770] = 3770, - [3771] = 3702, + [3771] = 3771, [3772] = 3772, [3773] = 3773, [3774] = 3774, [3775] = 3775, - [3776] = 3656, - [3777] = 3679, - [3778] = 2203, - [3779] = 3656, - [3780] = 3772, + [3776] = 3776, + [3777] = 3714, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, [3781] = 3781, [3782] = 3782, [3783] = 3783, [3784] = 3784, - [3785] = 2202, - [3786] = 3786, - [3787] = 3736, - [3788] = 3714, - [3789] = 3740, - [3790] = 3690, - [3791] = 3684, + [3785] = 3785, + [3786] = 3675, + [3787] = 3787, + [3788] = 3772, + [3789] = 3789, + [3790] = 3790, + [3791] = 3791, [3792] = 3792, - [3793] = 3689, - [3794] = 3694, - [3795] = 3695, - [3796] = 3796, - [3797] = 3713, + [3793] = 3793, + [3794] = 3789, + [3795] = 3682, + [3796] = 3791, + [3797] = 3797, [3798] = 3798, [3799] = 3799, - [3800] = 3682, - [3801] = 3700, - [3802] = 3713, + [3800] = 3797, + [3801] = 3798, + [3802] = 3799, [3803] = 3803, - [3804] = 3669, - [3805] = 3805, - [3806] = 3806, - [3807] = 3764, - [3808] = 3808, + [3804] = 3804, + [3805] = 3771, + [3806] = 2964, + [3807] = 3807, + [3808] = 3724, [3809] = 3809, - [3810] = 3695, - [3811] = 3684, - [3812] = 3689, - [3813] = 3689, - [3814] = 3814, + [3810] = 3810, + [3811] = 3757, + [3812] = 3758, + [3813] = 3759, + [3814] = 3760, [3815] = 3815, [3816] = 3816, [3817] = 3817, - [3818] = 3684, - [3819] = 2193, - [3820] = 3695, + [3818] = 3818, + [3819] = 3714, + [3820] = 3803, [3821] = 3821, - [3822] = 3822, - [3823] = 3713, + [3822] = 3682, + [3823] = 3724, [3824] = 3824, [3825] = 3825, [3826] = 3826, - [3827] = 3730, - [3828] = 3763, + [3827] = 3827, + [3828] = 3714, [3829] = 3829, - [3830] = 2177, - [3831] = 3831, - [3832] = 2179, - [3833] = 3833, - [3834] = 3834, - [3835] = 3835, - [3836] = 2197, - [3837] = 3682, - [3838] = 2175, + [3830] = 3830, + [3831] = 3722, + [3832] = 3832, + [3833] = 3741, + [3834] = 3744, + [3835] = 3734, + [3836] = 3821, + [3837] = 3721, + [3838] = 3714, [3839] = 3839, - [3840] = 3839, - [3841] = 3656, - [3842] = 3835, - [3843] = 3684, + [3840] = 3720, + [3841] = 3760, + [3842] = 3759, + [3843] = 3758, [3844] = 3844, - [3845] = 3845, - [3846] = 3703, - [3847] = 3847, - [3848] = 3691, - [3849] = 3774, - [3850] = 3850, - [3851] = 3851, - [3852] = 3682, - [3853] = 3853, - [3854] = 3758, - [3855] = 3829, - [3856] = 3806, - [3857] = 3700, - [3858] = 3858, - [3859] = 3756, - [3860] = 2189, - [3861] = 2210, - [3862] = 3862, - [3863] = 3863, + [3845] = 3757, + [3846] = 3804, + [3847] = 3768, + [3848] = 3708, + [3849] = 3849, + [3850] = 3688, + [3851] = 3676, + [3852] = 3852, + [3853] = 3816, + [3854] = 3825, + [3855] = 3855, + [3856] = 3771, + [3857] = 3844, + [3858] = 3724, + [3859] = 3760, + [3860] = 3759, + [3861] = 3758, + [3862] = 3818, + [3863] = 3757, [3864] = 3864, - [3865] = 3692, - [3866] = 3689, - [3867] = 3695, - [3868] = 3697, - [3869] = 3702, + [3865] = 3776, + [3866] = 3682, + [3867] = 3682, + [3868] = 3817, + [3869] = 3869, [3870] = 3870, - [3871] = 3753, - [3872] = 3729, - [3873] = 3680, + [3871] = 3810, + [3872] = 3872, + [3873] = 3873, [3874] = 3874, - [3875] = 3713, - [3876] = 2187, - [3877] = 3744, - [3878] = 3742, + [3875] = 3875, + [3876] = 3809, + [3877] = 3826, + [3878] = 2216, [3879] = 3879, - [3880] = 3681, - [3881] = 3738, - [3882] = 2957, - [3883] = 2958, - [3884] = 3774, - [3885] = 3728, - [3886] = 2184, + [3880] = 3880, + [3881] = 2217, + [3882] = 3826, + [3883] = 3883, + [3884] = 3884, + [3885] = 3793, + [3886] = 3883, [3887] = 3887, [3888] = 3888, - [3889] = 3683, - [3890] = 2185, - [3891] = 3685, - [3892] = 3705, - [3893] = 3709, - [3894] = 2208, - [3895] = 3715, - [3896] = 3661, - [3897] = 3664, - [3898] = 3663, - [3899] = 3668, - [3900] = 2201, - [3901] = 2196, - [3902] = 3714, - [3903] = 2192, + [3889] = 3889, + [3890] = 3890, + [3891] = 3757, + [3892] = 3758, + [3893] = 3874, + [3894] = 3759, + [3895] = 3760, + [3896] = 3724, + [3897] = 3887, + [3898] = 3898, + [3899] = 3816, + [3900] = 3771, + [3901] = 3872, + [3902] = 3902, + [3903] = 3869, [3904] = 3904, - [3905] = 793, - [3906] = 3741, - [3907] = 784, - [3908] = 3657, - [3909] = 3656, - [3910] = 3910, - [3911] = 3911, - [3912] = 3723, - [3913] = 3747, - [3914] = 3692, - [3915] = 3915, - [3916] = 3702, - [3917] = 3917, - [3918] = 3740, - [3919] = 3692, - [3920] = 3725, - [3921] = 3921, - [3922] = 3727, + [3905] = 3905, + [3906] = 3793, + [3907] = 3889, + [3908] = 3771, + [3909] = 3714, + [3910] = 3809, + [3911] = 3783, + [3912] = 3912, + [3913] = 3773, + [3914] = 3914, + [3915] = 3771, + [3916] = 3776, + [3917] = 3724, + [3918] = 3918, + [3919] = 3775, + [3920] = 3770, + [3921] = 3762, + [3922] = 3761, [3923] = 3923, - [3924] = 3924, - [3925] = 3925, + [3924] = 3682, + [3925] = 3879, [3926] = 3926, - [3927] = 3927, - [3928] = 3928, - [3929] = 3929, + [3927] = 3673, + [3928] = 3807, + [3929] = 2914, [3930] = 3930, - [3931] = 3931, - [3932] = 3932, + [3931] = 3883, + [3932] = 3890, [3933] = 3933, [3934] = 3934, [3935] = 3935, - [3936] = 3936, + [3936] = 3739, [3937] = 3937, - [3938] = 3938, + [3938] = 3888, [3939] = 3939, [3940] = 3940, [3941] = 3941, @@ -7986,293 +7996,322 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3961] = 3961, [3962] = 3962, [3963] = 3963, - [3964] = 3936, + [3964] = 3964, [3965] = 3965, [3966] = 3966, [3967] = 3967, [3968] = 3968, - [3969] = 3933, + [3969] = 3969, [3970] = 3970, [3971] = 3971, - [3972] = 3931, - [3973] = 3930, - [3974] = 3929, + [3972] = 3972, + [3973] = 3964, + [3974] = 3974, [3975] = 3975, - [3976] = 3926, + [3976] = 3976, [3977] = 3977, [3978] = 3978, [3979] = 3979, [3980] = 3980, - [3981] = 3926, + [3981] = 3981, [3982] = 3982, - [3983] = 3929, - [3984] = 3930, - [3985] = 3931, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, [3986] = 3986, - [3987] = 3933, - [3988] = 3948, + [3987] = 3987, + [3988] = 3988, [3989] = 3989, - [3990] = 3936, + [3990] = 3990, [3991] = 3991, - [3992] = 3957, - [3993] = 3956, - [3994] = 3994, - [3995] = 3949, - [3996] = 3996, - [3997] = 3997, - [3998] = 3998, - [3999] = 3999, - [4000] = 4000, - [4001] = 4001, - [4002] = 3982, - [4003] = 4003, - [4004] = 3956, - [4005] = 3957, - [4006] = 3936, - [4007] = 3954, - [4008] = 4008, - [4009] = 3949, - [4010] = 3946, - [4011] = 3939, - [4012] = 3934, - [4013] = 3947, - [4014] = 3945, + [3992] = 3992, + [3993] = 3992, + [3994] = 3989, + [3995] = 3954, + [3996] = 3985, + [3997] = 3983, + [3998] = 3954, + [3999] = 3982, + [4000] = 3958, + [4001] = 3981, + [4002] = 3989, + [4003] = 3992, + [4004] = 3980, + [4005] = 3979, + [4006] = 3978, + [4007] = 4007, + [4008] = 3952, + [4009] = 3977, + [4010] = 3955, + [4011] = 3956, + [4012] = 3957, + [4013] = 3976, + [4014] = 3959, [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 4018, - [4019] = 3951, - [4020] = 4020, - [4021] = 4021, - [4022] = 4022, - [4023] = 3926, - [4024] = 4024, - [4025] = 3975, - [4026] = 4026, - [4027] = 3934, - [4028] = 3979, + [4016] = 3974, + [4017] = 3962, + [4018] = 3962, + [4019] = 3961, + [4020] = 3960, + [4021] = 3953, + [4022] = 3950, + [4023] = 3947, + [4024] = 3946, + [4025] = 3944, + [4026] = 3959, + [4027] = 3942, + [4028] = 3941, [4029] = 4029, [4030] = 4030, [4031] = 4031, - [4032] = 4032, + [4032] = 3943, [4033] = 3957, - [4034] = 4034, + [4034] = 3962, [4035] = 3956, - [4036] = 3935, - [4037] = 4037, - [4038] = 4038, - [4039] = 3929, - [4040] = 3998, - [4041] = 3930, - [4042] = 3931, - [4043] = 4043, + [4036] = 3955, + [4037] = 3972, + [4038] = 3971, + [4039] = 4039, + [4040] = 4040, + [4041] = 4041, + [4042] = 3952, + [4043] = 3966, [4044] = 4044, - [4045] = 4045, - [4046] = 4046, - [4047] = 3945, - [4048] = 3942, + [4045] = 3967, + [4046] = 3968, + [4047] = 3969, + [4048] = 3970, [4049] = 4049, - [4050] = 3999, - [4051] = 4051, - [4052] = 3936, - [4053] = 3940, - [4054] = 3928, - [4055] = 3927, - [4056] = 3925, - [4057] = 3924, - [4058] = 3934, - [4059] = 3952, + [4050] = 4050, + [4051] = 3952, + [4052] = 4052, + [4053] = 4041, + [4054] = 4054, + [4055] = 3971, + [4056] = 4056, + [4057] = 4057, + [4058] = 4058, + [4059] = 3972, [4060] = 4060, - [4061] = 3944, - [4062] = 3943, - [4063] = 3953, - [4064] = 3946, - [4065] = 3949, - [4066] = 3948, + [4061] = 3975, + [4062] = 4062, + [4063] = 3955, + [4064] = 3964, + [4065] = 3956, + [4066] = 3957, [4067] = 4067, - [4068] = 3954, - [4069] = 4003, - [4070] = 3966, - [4071] = 4071, - [4072] = 4072, - [4073] = 3968, - [4074] = 3970, + [4068] = 3990, + [4069] = 3986, + [4070] = 4070, + [4071] = 3975, + [4072] = 3988, + [4073] = 4030, + [4074] = 4074, [4075] = 4075, - [4076] = 4076, - [4077] = 3971, - [4078] = 3978, - [4079] = 4001, - [4080] = 4051, - [4081] = 4029, - [4082] = 3942, - [4083] = 3940, - [4084] = 3982, - [4085] = 4085, - [4086] = 3928, - [4087] = 4049, - [4088] = 3927, - [4089] = 3925, - [4090] = 3933, - [4091] = 4091, - [4092] = 3924, - [4093] = 4030, - [4094] = 3952, - [4095] = 3979, - [4096] = 3980, - [4097] = 3944, - [4098] = 3943, - [4099] = 4046, - [4100] = 3953, - [4101] = 3986, - [4102] = 4001, - [4103] = 3948, - [4104] = 3955, - [4105] = 3955, - [4106] = 3986, - [4107] = 3980, - [4108] = 3946, - [4109] = 3999, - [4110] = 4043, - [4111] = 3978, - [4112] = 3994, - [4113] = 4045, - [4114] = 3977, - [4115] = 3971, - [4116] = 3970, - [4117] = 4117, - [4118] = 3996, - [4119] = 3997, - [4120] = 4117, - [4121] = 3931, - [4122] = 3930, - [4123] = 4123, - [4124] = 3929, - [4125] = 4000, + [4076] = 3987, + [4077] = 4050, + [4078] = 3986, + [4079] = 4039, + [4080] = 3986, + [4081] = 3975, + [4082] = 3987, + [4083] = 3988, + [4084] = 3990, + [4085] = 3987, + [4086] = 3992, + [4087] = 4074, + [4088] = 3989, + [4089] = 3985, + [4090] = 3964, + [4091] = 3984, + [4092] = 3972, + [4093] = 3971, + [4094] = 3983, + [4095] = 3982, + [4096] = 3981, + [4097] = 3963, + [4098] = 3982, + [4099] = 4099, + [4100] = 3988, + [4101] = 3980, + [4102] = 3979, + [4103] = 3990, + [4104] = 3984, + [4105] = 3977, + [4106] = 3970, + [4107] = 4107, + [4108] = 3976, + [4109] = 3969, + [4110] = 3968, + [4111] = 3967, + [4112] = 4112, + [4113] = 3974, + [4114] = 3957, + [4115] = 3961, + [4116] = 3956, + [4117] = 3955, + [4118] = 3960, + [4119] = 3966, + [4120] = 3953, + [4121] = 3970, + [4122] = 3962, + [4123] = 3969, + [4124] = 4070, + [4125] = 3950, [4126] = 4126, - [4127] = 3968, - [4128] = 3966, - [4129] = 4000, - [4130] = 4001, - [4131] = 3982, - [4132] = 3931, - [4133] = 3999, - [4134] = 3936, - [4135] = 3997, - [4136] = 4037, - [4137] = 3930, - [4138] = 3996, - [4139] = 3929, - [4140] = 3926, - [4141] = 3955, - [4142] = 3975, - [4143] = 3929, - [4144] = 3930, - [4145] = 3931, - [4146] = 3986, - [4147] = 3980, - [4148] = 3979, - [4149] = 4000, - [4150] = 3978, - [4151] = 3977, - [4152] = 3971, - [4153] = 3970, + [4127] = 4041, + [4128] = 3952, + [4129] = 3985, + [4130] = 3968, + [4131] = 3984, + [4132] = 3983, + [4133] = 3976, + [4134] = 3967, + [4135] = 3981, + [4136] = 4112, + [4137] = 3947, + [4138] = 3979, + [4139] = 3980, + [4140] = 3957, + [4141] = 3956, + [4142] = 3978, + [4143] = 3955, + [4144] = 3977, + [4145] = 4145, + [4146] = 3946, + [4147] = 3944, + [4148] = 3942, + [4149] = 3941, + [4150] = 3943, + [4151] = 3974, + [4152] = 3974, + [4153] = 3967, [4154] = 3968, - [4155] = 3966, - [4156] = 4156, - [4157] = 3948, - [4158] = 3999, - [4159] = 3997, - [4160] = 3994, - [4161] = 3996, - [4162] = 3953, - [4163] = 3943, - [4164] = 3944, - [4165] = 3952, - [4166] = 4060, - [4167] = 3924, - [4168] = 3925, - [4169] = 3927, - [4170] = 3928, - [4171] = 3940, - [4172] = 3942, - [4173] = 4173, - [4174] = 3954, - [4175] = 3956, - [4176] = 4176, - [4177] = 3994, - [4178] = 3957, - [4179] = 3949, - [4180] = 3946, - [4181] = 3934, - [4182] = 3946, - [4183] = 4183, - [4184] = 3977, - [4185] = 3975, - [4186] = 3949, - [4187] = 3954, + [4155] = 3969, + [4156] = 3970, + [4157] = 3971, + [4158] = 3972, + [4159] = 4159, + [4160] = 4058, + [4161] = 4161, + [4162] = 3975, + [4163] = 3966, + [4164] = 3978, + [4165] = 3989, + [4166] = 3992, + [4167] = 4067, + [4168] = 3952, + [4169] = 4169, + [4170] = 4041, + [4171] = 3955, + [4172] = 3956, + [4173] = 3957, + [4174] = 3987, + [4175] = 4175, + [4176] = 3988, + [4177] = 4177, + [4178] = 4178, + [4179] = 3990, + [4180] = 4180, + [4181] = 3992, + [4182] = 4182, + [4183] = 3989, + [4184] = 4184, + [4185] = 3985, + [4186] = 3984, + [4187] = 4187, [4188] = 4188, - [4189] = 3934, - [4190] = 4001, - [4191] = 4000, - [4192] = 3926, - [4193] = 3956, - [4194] = 3975, + [4189] = 4189, + [4190] = 4190, + [4191] = 3983, + [4192] = 3982, + [4193] = 3981, + [4194] = 4194, [4195] = 4195, - [4196] = 3999, - [4197] = 4037, - [4198] = 3929, - [4199] = 3997, - [4200] = 3930, - [4201] = 3931, - [4202] = 3975, - [4203] = 4071, - [4204] = 3926, - [4205] = 4205, - [4206] = 3957, - [4207] = 3996, - [4208] = 4026, - [4209] = 4209, + [4196] = 4196, + [4197] = 4060, + [4198] = 3961, + [4199] = 3960, + [4200] = 4200, + [4201] = 3980, + [4202] = 3950, + [4203] = 3947, + [4204] = 3946, + [4205] = 3944, + [4206] = 3979, + [4207] = 3942, + [4208] = 3941, + [4209] = 3978, [4210] = 4210, - [4211] = 4211, - [4212] = 3955, - [4213] = 3986, - [4214] = 3980, - [4215] = 3975, - [4216] = 3975, - [4217] = 4037, - [4218] = 3979, - [4219] = 3926, - [4220] = 3978, - [4221] = 4221, - [4222] = 4037, - [4223] = 3977, - [4224] = 4075, - [4225] = 4076, - [4226] = 4021, - [4227] = 3971, - [4228] = 4205, - [4229] = 4195, - [4230] = 3970, - [4231] = 4037, - [4232] = 1427, - [4233] = 3968, - [4234] = 4085, - [4235] = 3966, - [4236] = 3932, - [4237] = 3941, - [4238] = 3948, - [4239] = 3933, - [4240] = 4240, - [4241] = 3953, - [4242] = 3943, - [4243] = 3944, - [4244] = 3952, - [4245] = 3924, - [4246] = 3925, - [4247] = 3927, - [4248] = 3928, - [4249] = 3940, + [4211] = 4126, + [4212] = 4212, + [4213] = 4041, + [4214] = 3943, + [4215] = 3977, + [4216] = 4054, + [4217] = 3976, + [4218] = 3953, + [4219] = 3974, + [4220] = 3961, + [4221] = 3952, + [4222] = 4182, + [4223] = 4041, + [4224] = 4224, + [4225] = 3990, + [4226] = 3955, + [4227] = 4227, + [4228] = 3956, + [4229] = 3957, + [4230] = 4230, + [4231] = 4070, + [4232] = 4232, + [4233] = 4233, + [4234] = 3960, + [4235] = 3953, + [4236] = 4041, + [4237] = 3950, + [4238] = 1423, + [4239] = 3952, + [4240] = 3947, + [4241] = 4241, + [4242] = 3986, + [4243] = 4243, + [4244] = 4244, + [4245] = 4041, + [4246] = 4070, + [4247] = 3946, + [4248] = 3944, + [4249] = 4049, [4250] = 3942, + [4251] = 4070, + [4252] = 3941, + [4253] = 3943, + [4254] = 3987, + [4255] = 3988, + [4256] = 3959, + [4257] = 4212, + [4258] = 4210, + [4259] = 3986, + [4260] = 4070, + [4261] = 4261, + [4262] = 4262, + [4263] = 4044, + [4264] = 4264, + [4265] = 4169, + [4266] = 4264, + [4267] = 4267, + [4268] = 3959, + [4269] = 4269, + [4270] = 4040, + [4271] = 4271, + [4272] = 4244, + [4273] = 4075, + [4274] = 4243, + [4275] = 4107, + [4276] = 4276, + [4277] = 4175, + [4278] = 3970, + [4279] = 3962, }; static inline bool anon_sym_BANG_character_set_1(int32_t c) { @@ -8389,32 +8428,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(10); if (lookahead == '$') ADVANCE(254); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(167); + if (lookahead == '%') ADVANCE(179); + if (lookahead == '&') ADVANCE(159); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(179); + if (lookahead == '+') ADVANCE(171); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(182); - if (lookahead == '.') ADVANCE(136); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(128); if (lookahead == '/') ADVANCE(235); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(126); + if (lookahead == '<') ADVANCE(184); if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(125); if (lookahead == '?') ADVANCE(260); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(55); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(170); + if (lookahead == '^') ADVANCE(162); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(173); + if (lookahead == '|') ADVANCE(165); if (lookahead == '}') ADVANCE(108); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); @@ -8444,32 +8483,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(110); if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(38); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(167); + if (lookahead == '%') ADVANCE(179); + if (lookahead == '&') ADVANCE(159); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(179); + if (lookahead == '+') ADVANCE(171); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(181); - if (lookahead == '.') ADVANCE(137); - if (lookahead == '/') ADVANCE(134); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(177); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(125); + if (lookahead == '<') ADVANCE(183); if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(125); if (lookahead == '?') ADVANCE(260); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(170); + if (lookahead == '^') ADVANCE(162); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(173); + if (lookahead == '|') ADVANCE(165); if (lookahead == '}') ADVANCE(108); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(3) @@ -8480,30 +8519,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == '!') ADVANCE(110); if (lookahead == '"') ADVANCE(199); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(167); + if (lookahead == '%') ADVANCE(179); + if (lookahead == '&') ADVANCE(159); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(179); + if (lookahead == '+') ADVANCE(171); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(181); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(134); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(177); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); - if (lookahead == '<') ADVANCE(126); + if (lookahead == '<') ADVANCE(184); if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(125); if (lookahead == '?') ADVANCE(260); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); - if (lookahead == '^') ADVANCE(170); + if (lookahead == '^') ADVANCE(162); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(172); + if (lookahead == '|') ADVANCE(164); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(4) @@ -8516,30 +8555,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 5: if (lookahead == '!') ADVANCE(110); if (lookahead == '"') ADVANCE(199); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(167); + if (lookahead == '%') ADVANCE(179); + if (lookahead == '&') ADVANCE(159); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(179); + if (lookahead == '+') ADVANCE(171); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(181); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(134); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(177); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); - if (lookahead == '<') ADVANCE(126); + if (lookahead == '<') ADVANCE(184); if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(125); if (lookahead == '?') ADVANCE(260); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); - if (lookahead == '^') ADVANCE(170); + if (lookahead == '^') ADVANCE(162); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(172); + if (lookahead == '|') ADVANCE(164); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(5) @@ -8552,31 +8591,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 6: if (lookahead == '!') ADVANCE(110); if (lookahead == '"') ADVANCE(199); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(167); + if (lookahead == '%') ADVANCE(179); + if (lookahead == '&') ADVANCE(159); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(179); + if (lookahead == '+') ADVANCE(171); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(181); - if (lookahead == '.') ADVANCE(135); - if (lookahead == '/') ADVANCE(134); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(177); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(125); + if (lookahead == '<') ADVANCE(183); if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(125); if (lookahead == '?') ADVANCE(260); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(170); + if (lookahead == '^') ADVANCE(162); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(172); + if (lookahead == '|') ADVANCE(164); if (lookahead == '}') ADVANCE(108); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) if (lookahead != 0 && @@ -8587,30 +8626,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 7: if (lookahead == '!') ADVANCE(110); if (lookahead == '"') ADVANCE(199); - if (lookahead == '%') ADVANCE(184); - if (lookahead == '&') ADVANCE(168); + if (lookahead == '%') ADVANCE(178); + if (lookahead == '&') ADVANCE(160); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(101); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(135); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(176); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(127); + if (lookahead == '<') ADVANCE(185); if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(132); + if (lookahead == '>') ADVANCE(126); if (lookahead == '?') ADVANCE(261); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(169); + if (lookahead == '^') ADVANCE(161); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(175); + if (lookahead == '|') ADVANCE(167); if (lookahead == '}') ADVANCE(108); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) if (lookahead != 0 && @@ -8620,29 +8659,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 8: if (lookahead == '!') ADVANCE(110); - if (lookahead == '%') ADVANCE(184); - if (lookahead == '&') ADVANCE(168); + if (lookahead == '%') ADVANCE(178); + if (lookahead == '&') ADVANCE(160); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(101); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(135); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(176); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(127); + if (lookahead == '<') ADVANCE(185); if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(132); + if (lookahead == '>') ADVANCE(126); if (lookahead == '?') ADVANCE(30); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(169); + if (lookahead == '^') ADVANCE(161); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(174); + if (lookahead == '|') ADVANCE(166); if (lookahead == '}') ADVANCE(108); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); @@ -8653,29 +8692,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 9: if (lookahead == '!') ADVANCE(110); - if (lookahead == '%') ADVANCE(184); - if (lookahead == '&') ADVANCE(168); + if (lookahead == '%') ADVANCE(178); + if (lookahead == '&') ADVANCE(160); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(101); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(135); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(176); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(127); + if (lookahead == '<') ADVANCE(185); if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(132); + if (lookahead == '>') ADVANCE(126); if (lookahead == '?') ADVANCE(30); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(169); + if (lookahead == '^') ADVANCE(161); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(174); + if (lookahead == '|') ADVANCE(166); if (lookahead == '}') ADVANCE(108); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) if (lookahead != 0 && @@ -8695,28 +8734,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(109); if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(38); - if (lookahead == '&') ADVANCE(166); + if (lookahead == '&') ADVANCE(158); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(99); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(183); - if (lookahead == '.') ADVANCE(136); + if (lookahead == '-') ADVANCE(175); + if (lookahead == '.') ADVANCE(128); if (lookahead == '/') ADVANCE(21); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(124); + if (lookahead == '<') ADVANCE(182); if (lookahead == '=') ADVANCE(104); - if (lookahead == '>') ADVANCE(130); + if (lookahead == '>') ADVANCE(124); if (lookahead == '?') ADVANCE(258); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(176); + if (lookahead == '|') ADVANCE(168); if (lookahead == '}') ADVANCE(108); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) @@ -8731,21 +8770,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(109); if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(38); - if (lookahead == '&') ADVANCE(166); + if (lookahead == '&') ADVANCE(158); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(177); + if (lookahead == '+') ADVANCE(169); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(183); - if (lookahead == '.') ADVANCE(136); + if (lookahead == '-') ADVANCE(175); + if (lookahead == '.') ADVANCE(128); if (lookahead == '/') ADVANCE(235); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(124); + if (lookahead == '<') ADVANCE(182); if (lookahead == '=') ADVANCE(104); - if (lookahead == '>') ADVANCE(130); + if (lookahead == '>') ADVANCE(124); if (lookahead == '?') ADVANCE(258); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); @@ -8753,7 +8792,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(116); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(176); + if (lookahead == '|') ADVANCE(168); if (lookahead == '}') ADVANCE(108); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) @@ -8767,21 +8806,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(109); if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(38); - if (lookahead == '&') ADVANCE(166); + if (lookahead == '&') ADVANCE(158); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(177); + if (lookahead == '+') ADVANCE(169); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(183); - if (lookahead == '.') ADVANCE(136); + if (lookahead == '-') ADVANCE(175); + if (lookahead == '.') ADVANCE(128); if (lookahead == '/') ADVANCE(21); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(124); + if (lookahead == '<') ADVANCE(182); if (lookahead == '=') ADVANCE(104); - if (lookahead == '>') ADVANCE(130); + if (lookahead == '>') ADVANCE(124); if (lookahead == '?') ADVANCE(258); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); @@ -8789,7 +8828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(116); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(176); + if (lookahead == '|') ADVANCE(168); if (lookahead == '}') ADVANCE(108); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) @@ -8802,18 +8841,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 15: if (lookahead == '!') ADVANCE(109); if (lookahead == '"') ADVANCE(199); - if (lookahead == '&') ADVANCE(166); + if (lookahead == '&') ADVANCE(158); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); + if (lookahead == '-') ADVANCE(172); if (lookahead == '.') ADVANCE(29); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '/') ADVANCE(176); if (lookahead == '0') ADVANCE(245); - if (lookahead == '<') ADVANCE(129); + if (lookahead == '<') ADVANCE(187); if (lookahead == '?') ADVANCE(258); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); @@ -8821,7 +8860,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(116); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(171); + if (lookahead == '|') ADVANCE(163); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) @@ -8834,21 +8873,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 16: if (lookahead == '!') ADVANCE(109); if (lookahead == '"') ADVANCE(199); - if (lookahead == '&') ADVANCE(166); + if (lookahead == '&') ADVANCE(158); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(176); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(129); + if (lookahead == '<') ADVANCE(187); if (lookahead == '=') ADVANCE(104); - if (lookahead == '>') ADVANCE(130); + if (lookahead == '>') ADVANCE(124); if (lookahead == '?') ADVANCE(259); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); @@ -8856,7 +8895,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(116); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(176); + if (lookahead == '|') ADVANCE(168); if (lookahead == '}') ADVANCE(108); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); @@ -8942,11 +8981,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(139); + if (lookahead == '.') ADVANCE(131); if (lookahead == '?') ADVANCE(194); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(155); + if (lookahead == '.') ADVANCE(147); END_STATE(); case 32: if (lookahead == ':') ADVANCE(262); @@ -9213,32 +9252,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(10); if (lookahead == '$') ADVANCE(254); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(167); + if (lookahead == '%') ADVANCE(179); + if (lookahead == '&') ADVANCE(159); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(179); + if (lookahead == '+') ADVANCE(171); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(182); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(176); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(126); + if (lookahead == '<') ADVANCE(184); if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(125); if (lookahead == '?') ADVANCE(260); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(170); + if (lookahead == '^') ADVANCE(162); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(106); - if (lookahead == '|') ADVANCE(173); + if (lookahead == '|') ADVANCE(165); if (lookahead == '}') ADVANCE(108); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); @@ -9250,32 +9289,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(97); if (lookahead == '!') ADVANCE(110); if (lookahead == '"') ADVANCE(199); - if (lookahead == '%') ADVANCE(184); - if (lookahead == '&') ADVANCE(168); + if (lookahead == '%') ADVANCE(178); + if (lookahead == '&') ADVANCE(160); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(101); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(137); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(176); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(128); + if (lookahead == '<') ADVANCE(186); if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(132); + if (lookahead == '>') ADVANCE(126); if (lookahead == '?') ADVANCE(30); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(57); if (lookahead == ']') ADVANCE(116); - if (lookahead == '^') ADVANCE(169); + if (lookahead == '^') ADVANCE(161); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(174); + if (lookahead == '|') ADVANCE(166); if (lookahead == '}') ADVANCE(108); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); @@ -9288,22 +9327,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(109); if (lookahead == '"') ADVANCE(199); if (lookahead == '#') ADVANCE(10); - if (lookahead == '&') ADVANCE(166); + if (lookahead == '&') ADVANCE(158); if (lookahead == '\'') ADVANCE(200); if (lookahead == '(') ADVANCE(111); if (lookahead == ')') ADVANCE(112); if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(178); + if (lookahead == '+') ADVANCE(170); if (lookahead == ',') ADVANCE(107); - if (lookahead == '-') ADVANCE(180); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(133); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(176); if (lookahead == '0') ADVANCE(245); if (lookahead == ':') ADVANCE(114); if (lookahead == ';') ADVANCE(113); - if (lookahead == '<') ADVANCE(129); + if (lookahead == '<') ADVANCE(187); if (lookahead == '=') ADVANCE(104); - if (lookahead == '>') ADVANCE(130); + if (lookahead == '>') ADVANCE(124); if (lookahead == '?') ADVANCE(258); if (lookahead == '@') ADVANCE(257); if (lookahead == '[') ADVANCE(115); @@ -9311,7 +9350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(116); if (lookahead == '`') ADVANCE(233); if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(176); + if (lookahead == '|') ADVANCE(168); if (lookahead == '}') ADVANCE(108); if (lookahead == '~') ADVANCE(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); @@ -9334,12 +9373,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(187); - if (lookahead == '=') ADVANCE(142); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '=') ADVANCE(134); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(186); + if (lookahead == '*') ADVANCE(180); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_EQ); @@ -9348,11 +9387,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 103: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(189); - if (lookahead == '>') ADVANCE(138); + if (lookahead == '>') ADVANCE(130); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(138); + if (lookahead == '>') ADVANCE(130); END_STATE(); case 105: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -9425,257 +9464,257 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(25); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(25); - if (lookahead == '<') ADVANCE(165); - if (lookahead == '=') ADVANCE(188); - END_STATE(); - case 126: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(25); - if (lookahead == '<') ADVANCE(165); - if (lookahead == '=') ADVANCE(188); - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(25); - if (lookahead == '<') ADVANCE(164); - if (lookahead == '=') ADVANCE(188); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(25); - if (lookahead == '<') ADVANCE(164); - if (lookahead == '=') ADVANCE(188); - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(25); - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 130: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 131: + case 125: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(193); - if (lookahead == '>') ADVANCE(160); + if (lookahead == '>') ADVANCE(152); END_STATE(); - case 132: + case 126: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(193); - if (lookahead == '>') ADVANCE(161); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(23); - if (lookahead == '/') ADVANCE(230); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(23); - if (lookahead == '/') ADVANCE(230); - if (lookahead == '=') ADVANCE(143); + if (lookahead == '>') ADVANCE(153); END_STATE(); - case 135: + case 127: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 136: + case 128: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(31); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); - case 137: + case 129: ACCEPT_TOKEN(anon_sym_DOT); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); - case 138: + case 130: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 139: + case 131: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 140: + case 132: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 141: + case 133: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 142: + case 134: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 143: + case 135: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 144: + case 136: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 145: + case 137: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 146: + case 138: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 147: + case 139: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 148: + case 140: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 149: + case 141: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 150: + case 142: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 151: + case 143: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 152: + case 144: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 153: + case 145: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 154: + case 146: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 155: + case 147: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 156: + case 148: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 157: + case 149: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 158: + case 150: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 159: + case 151: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(153); + if (lookahead == '=') ADVANCE(145); END_STATE(); - case 160: + case 152: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(148); - if (lookahead == '>') ADVANCE(163); + if (lookahead == '=') ADVANCE(140); + if (lookahead == '>') ADVANCE(155); END_STATE(); - case 161: + case 153: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '>') ADVANCE(154); END_STATE(); - case 162: + case 154: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 163: + case 155: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '=') ADVANCE(141); END_STATE(); - case 164: + case 156: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 165: + case 157: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(150); + if (lookahead == '=') ADVANCE(142); END_STATE(); - case 166: + case 158: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 167: + case 159: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(157); - if (lookahead == '=') ADVANCE(146); + if (lookahead == '&') ADVANCE(149); + if (lookahead == '=') ADVANCE(138); END_STATE(); - case 168: + case 160: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(156); + if (lookahead == '&') ADVANCE(148); END_STATE(); - case 169: + case 161: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 170: + case 162: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(145); + if (lookahead == '=') ADVANCE(137); END_STATE(); - case 171: + case 163: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 172: + case 164: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '|') ADVANCE(159); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '|') ADVANCE(151); END_STATE(); - case 173: + case 165: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '|') ADVANCE(159); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '|') ADVANCE(151); if (lookahead == '}') ADVANCE(265); END_STATE(); - case 174: + case 166: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(158); + if (lookahead == '|') ADVANCE(150); END_STATE(); - case 175: + case 167: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(158); + if (lookahead == '|') ADVANCE(150); if (lookahead == '}') ADVANCE(265); END_STATE(); - case 176: + case 168: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '}') ADVANCE(265); END_STATE(); - case 177: + case 169: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 178: + case 170: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(197); END_STATE(); - case 179: + case 171: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(197); - if (lookahead == '=') ADVANCE(140); + if (lookahead == '=') ADVANCE(132); END_STATE(); - case 180: + case 172: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(198); END_STATE(); - case 181: + case 173: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(198); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') ADVANCE(133); END_STATE(); - case 182: + case 174: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(198); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') ADVANCE(133); if (lookahead == '?') ADVANCE(32); END_STATE(); - case 183: + case 175: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(35); END_STATE(); - case 184: + case 176: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(230); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '=') ADVANCE(135); + END_STATE(); + case 178: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 185: + case 179: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '=') ADVANCE(136); END_STATE(); - case 186: + case 180: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 187: + case 181: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '=') ADVANCE(143); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(25); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(25); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(188); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(25); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(188); + if (lookahead == 't') ADVANCE(42); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(25); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(188); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(25); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(188); + if (lookahead == 't') ADVANCE(42); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(25); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 188: ACCEPT_TOKEN(anon_sym_LT_EQ); @@ -9702,7 +9741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(154); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_TILDE); @@ -10109,16 +10148,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 259: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(139); + if (lookahead == '.') ADVANCE(131); END_STATE(); case 260: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(139); + if (lookahead == '.') ADVANCE(131); if (lookahead == '?') ADVANCE(195); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(139); + if (lookahead == '.') ADVANCE(131); if (lookahead == '?') ADVANCE(194); END_STATE(); case 262: @@ -11283,24 +11322,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [47] = {.lex_state = 96}, [48] = {.lex_state = 96}, [49] = {.lex_state = 96}, - [50] = {.lex_state = 5, .external_lex_state = 2}, - [51] = {.lex_state = 15}, - [52] = {.lex_state = 15}, + [50] = {.lex_state = 15}, + [51] = {.lex_state = 5, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 15}, [55] = {.lex_state = 15}, [56] = {.lex_state = 5, .external_lex_state = 2}, [57] = {.lex_state = 15}, [58] = {.lex_state = 15}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 15}, - [61] = {.lex_state = 15}, - [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 15}, + [59] = {.lex_state = 15}, + [60] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 15}, + [63] = {.lex_state = 15}, + [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 15}, - [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 15}, + [66] = {.lex_state = 15}, + [67] = {.lex_state = 5, .external_lex_state = 2}, [68] = {.lex_state = 15}, [69] = {.lex_state = 15}, [70] = {.lex_state = 15}, @@ -11324,8 +11363,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 95, .external_lex_state = 2}, [89] = {.lex_state = 95, .external_lex_state = 3}, [90] = {.lex_state = 95, .external_lex_state = 3}, - [91] = {.lex_state = 95, .external_lex_state = 2}, - [92] = {.lex_state = 95, .external_lex_state = 3}, + [91] = {.lex_state = 95, .external_lex_state = 3}, + [92] = {.lex_state = 95, .external_lex_state = 2}, [93] = {.lex_state = 95, .external_lex_state = 2}, [94] = {.lex_state = 95, .external_lex_state = 2}, [95] = {.lex_state = 95, .external_lex_state = 2}, @@ -11340,8 +11379,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 3, .external_lex_state = 3}, [105] = {.lex_state = 3, .external_lex_state = 2}, [106] = {.lex_state = 3, .external_lex_state = 2}, - [107] = {.lex_state = 3, .external_lex_state = 2}, - [108] = {.lex_state = 3, .external_lex_state = 3}, + [107] = {.lex_state = 3, .external_lex_state = 3}, + [108] = {.lex_state = 3, .external_lex_state = 2}, [109] = {.lex_state = 3, .external_lex_state = 2}, [110] = {.lex_state = 3, .external_lex_state = 2}, [111] = {.lex_state = 3, .external_lex_state = 2}, @@ -11350,37 +11389,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 3, .external_lex_state = 2}, [115] = {.lex_state = 96}, [116] = {.lex_state = 96}, - [117] = {.lex_state = 96}, + [117] = {.lex_state = 95, .external_lex_state = 3}, [118] = {.lex_state = 96}, [119] = {.lex_state = 96}, [120] = {.lex_state = 96}, - [121] = {.lex_state = 96}, + [121] = {.lex_state = 95, .external_lex_state = 3}, [122] = {.lex_state = 95, .external_lex_state = 3}, [123] = {.lex_state = 96}, - [124] = {.lex_state = 96}, - [125] = {.lex_state = 95, .external_lex_state = 3}, - [126] = {.lex_state = 95, .external_lex_state = 3}, + [124] = {.lex_state = 95, .external_lex_state = 3}, + [125] = {.lex_state = 96}, + [126] = {.lex_state = 96}, [127] = {.lex_state = 96}, [128] = {.lex_state = 96}, - [129] = {.lex_state = 95, .external_lex_state = 3}, + [129] = {.lex_state = 96}, [130] = {.lex_state = 96}, [131] = {.lex_state = 95, .external_lex_state = 3}, [132] = {.lex_state = 95, .external_lex_state = 3}, [133] = {.lex_state = 95, .external_lex_state = 3}, [134] = {.lex_state = 95, .external_lex_state = 3}, - [135] = {.lex_state = 95, .external_lex_state = 3}, - [136] = {.lex_state = 95, .external_lex_state = 3}, + [135] = {.lex_state = 96}, + [136] = {.lex_state = 96}, [137] = {.lex_state = 95, .external_lex_state = 3}, [138] = {.lex_state = 96}, [139] = {.lex_state = 95, .external_lex_state = 3}, [140] = {.lex_state = 96}, - [141] = {.lex_state = 95, .external_lex_state = 3}, + [141] = {.lex_state = 96}, [142] = {.lex_state = 95, .external_lex_state = 3}, [143] = {.lex_state = 95, .external_lex_state = 3}, [144] = {.lex_state = 95, .external_lex_state = 3}, [145] = {.lex_state = 96}, [146] = {.lex_state = 95, .external_lex_state = 3}, - [147] = {.lex_state = 95, .external_lex_state = 3}, + [147] = {.lex_state = 96}, [148] = {.lex_state = 95, .external_lex_state = 3}, [149] = {.lex_state = 96}, [150] = {.lex_state = 95, .external_lex_state = 3}, @@ -11388,19 +11427,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [152] = {.lex_state = 96}, [153] = {.lex_state = 95, .external_lex_state = 3}, [154] = {.lex_state = 96}, - [155] = {.lex_state = 96}, - [156] = {.lex_state = 96}, + [155] = {.lex_state = 95, .external_lex_state = 3}, + [156] = {.lex_state = 95, .external_lex_state = 3}, [157] = {.lex_state = 95, .external_lex_state = 3}, - [158] = {.lex_state = 96}, + [158] = {.lex_state = 95, .external_lex_state = 3}, [159] = {.lex_state = 95, .external_lex_state = 3}, [160] = {.lex_state = 95, .external_lex_state = 3}, - [161] = {.lex_state = 96}, + [161] = {.lex_state = 95, .external_lex_state = 3}, [162] = {.lex_state = 95, .external_lex_state = 3}, - [163] = {.lex_state = 96}, + [163] = {.lex_state = 95, .external_lex_state = 3}, [164] = {.lex_state = 95, .external_lex_state = 3}, [165] = {.lex_state = 96}, - [166] = {.lex_state = 96, .external_lex_state = 4}, - [167] = {.lex_state = 96}, + [166] = {.lex_state = 95, .external_lex_state = 3}, + [167] = {.lex_state = 96, .external_lex_state = 4}, [168] = {.lex_state = 96}, [169] = {.lex_state = 96}, [170] = {.lex_state = 96}, @@ -11408,20 +11447,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 96}, [173] = {.lex_state = 96}, [174] = {.lex_state = 96}, - [175] = {.lex_state = 5, .external_lex_state = 2}, + [175] = {.lex_state = 96}, [176] = {.lex_state = 96}, [177] = {.lex_state = 96}, [178] = {.lex_state = 96}, [179] = {.lex_state = 96}, - [180] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 96}, [181] = {.lex_state = 96}, [182] = {.lex_state = 5, .external_lex_state = 2}, - [183] = {.lex_state = 5, .external_lex_state = 2}, - [184] = {.lex_state = 96}, - [185] = {.lex_state = 96}, + [183] = {.lex_state = 96}, + [184] = {.lex_state = 5, .external_lex_state = 2}, + [185] = {.lex_state = 5, .external_lex_state = 2}, [186] = {.lex_state = 96}, [187] = {.lex_state = 96}, - [188] = {.lex_state = 96}, + [188] = {.lex_state = 5, .external_lex_state = 2}, [189] = {.lex_state = 96}, [190] = {.lex_state = 96}, [191] = {.lex_state = 96}, @@ -11439,7 +11478,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [203] = {.lex_state = 96}, [204] = {.lex_state = 96}, [205] = {.lex_state = 96}, - [206] = {.lex_state = 96, .external_lex_state = 4}, + [206] = {.lex_state = 96}, [207] = {.lex_state = 96}, [208] = {.lex_state = 96}, [209] = {.lex_state = 96}, @@ -11451,14 +11490,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [215] = {.lex_state = 96}, [216] = {.lex_state = 96}, [217] = {.lex_state = 96}, - [218] = {.lex_state = 96}, + [218] = {.lex_state = 96, .external_lex_state = 4}, [219] = {.lex_state = 96}, - [220] = {.lex_state = 6, .external_lex_state = 3}, + [220] = {.lex_state = 96}, [221] = {.lex_state = 6, .external_lex_state = 3}, - [222] = {.lex_state = 6, .external_lex_state = 3}, - [223] = {.lex_state = 96}, + [222] = {.lex_state = 96}, + [223] = {.lex_state = 6, .external_lex_state = 3}, [224] = {.lex_state = 96}, - [225] = {.lex_state = 96}, + [225] = {.lex_state = 6, .external_lex_state = 3}, [226] = {.lex_state = 96}, [227] = {.lex_state = 96}, [228] = {.lex_state = 96}, @@ -11754,13 +11793,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [518] = {.lex_state = 96}, [519] = {.lex_state = 96}, [520] = {.lex_state = 96}, - [521] = {.lex_state = 3, .external_lex_state = 3}, - [522] = {.lex_state = 3, .external_lex_state = 3}, + [521] = {.lex_state = 96}, + [522] = {.lex_state = 96}, [523] = {.lex_state = 3, .external_lex_state = 3}, - [524] = {.lex_state = 6, .external_lex_state = 3}, - [525] = {.lex_state = 6, .external_lex_state = 3}, - [526] = {.lex_state = 3, .external_lex_state = 3}, - [527] = {.lex_state = 3, .external_lex_state = 3}, + [524] = {.lex_state = 3, .external_lex_state = 3}, + [525] = {.lex_state = 3, .external_lex_state = 3}, + [526] = {.lex_state = 6, .external_lex_state = 3}, + [527] = {.lex_state = 6, .external_lex_state = 3}, [528] = {.lex_state = 3, .external_lex_state = 3}, [529] = {.lex_state = 3, .external_lex_state = 3}, [530] = {.lex_state = 3, .external_lex_state = 3}, @@ -11770,11 +11809,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [534] = {.lex_state = 3, .external_lex_state = 3}, [535] = {.lex_state = 3, .external_lex_state = 3}, [536] = {.lex_state = 3, .external_lex_state = 3}, - [537] = {.lex_state = 96}, + [537] = {.lex_state = 3, .external_lex_state = 3}, [538] = {.lex_state = 3, .external_lex_state = 3}, [539] = {.lex_state = 3, .external_lex_state = 3}, [540] = {.lex_state = 3, .external_lex_state = 3}, - [541] = {.lex_state = 96}, + [541] = {.lex_state = 3, .external_lex_state = 3}, [542] = {.lex_state = 3, .external_lex_state = 3}, [543] = {.lex_state = 3, .external_lex_state = 3}, [544] = {.lex_state = 96}, @@ -11782,80 +11821,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [546] = {.lex_state = 96}, [547] = {.lex_state = 96}, [548] = {.lex_state = 96}, - [549] = {.lex_state = 3, .external_lex_state = 3}, - [550] = {.lex_state = 3, .external_lex_state = 3}, + [549] = {.lex_state = 96}, + [550] = {.lex_state = 96}, [551] = {.lex_state = 3, .external_lex_state = 3}, [552] = {.lex_state = 3, .external_lex_state = 3}, [553] = {.lex_state = 3, .external_lex_state = 3}, [554] = {.lex_state = 3, .external_lex_state = 3}, - [555] = {.lex_state = 3, .external_lex_state = 2}, - [556] = {.lex_state = 3, .external_lex_state = 2}, + [555] = {.lex_state = 3, .external_lex_state = 3}, + [556] = {.lex_state = 3, .external_lex_state = 3}, [557] = {.lex_state = 3, .external_lex_state = 2}, [558] = {.lex_state = 3, .external_lex_state = 2}, [559] = {.lex_state = 3, .external_lex_state = 2}, - [560] = {.lex_state = 3, .external_lex_state = 3}, - [561] = {.lex_state = 3, .external_lex_state = 3}, + [560] = {.lex_state = 3, .external_lex_state = 2}, + [561] = {.lex_state = 3, .external_lex_state = 2}, [562] = {.lex_state = 3, .external_lex_state = 3}, [563] = {.lex_state = 3, .external_lex_state = 3}, - [564] = {.lex_state = 3, .external_lex_state = 3}, + [564] = {.lex_state = 3, .external_lex_state = 2}, [565] = {.lex_state = 3, .external_lex_state = 3}, - [566] = {.lex_state = 3, .external_lex_state = 2}, + [566] = {.lex_state = 3, .external_lex_state = 3}, [567] = {.lex_state = 3, .external_lex_state = 3}, - [568] = {.lex_state = 96, .external_lex_state = 4}, - [569] = {.lex_state = 6, .external_lex_state = 2}, - [570] = {.lex_state = 6, .external_lex_state = 2}, - [571] = {.lex_state = 96}, - [572] = {.lex_state = 3, .external_lex_state = 2}, - [573] = {.lex_state = 96, .external_lex_state = 4}, - [574] = {.lex_state = 3, .external_lex_state = 3}, - [575] = {.lex_state = 3, .external_lex_state = 3}, - [576] = {.lex_state = 96, .external_lex_state = 4}, - [577] = {.lex_state = 96, .external_lex_state = 4}, + [568] = {.lex_state = 3, .external_lex_state = 3}, + [569] = {.lex_state = 3, .external_lex_state = 3}, + [570] = {.lex_state = 3, .external_lex_state = 2}, + [571] = {.lex_state = 96, .external_lex_state = 4}, + [572] = {.lex_state = 96, .external_lex_state = 4}, + [573] = {.lex_state = 96}, + [574] = {.lex_state = 6, .external_lex_state = 2}, + [575] = {.lex_state = 6, .external_lex_state = 2}, + [576] = {.lex_state = 96}, + [577] = {.lex_state = 3, .external_lex_state = 3}, [578] = {.lex_state = 3, .external_lex_state = 2}, [579] = {.lex_state = 96, .external_lex_state = 4}, - [580] = {.lex_state = 96, .external_lex_state = 4}, - [581] = {.lex_state = 3, .external_lex_state = 3}, + [580] = {.lex_state = 3, .external_lex_state = 3}, + [581] = {.lex_state = 96}, [582] = {.lex_state = 3, .external_lex_state = 3}, - [583] = {.lex_state = 3, .external_lex_state = 2}, - [584] = {.lex_state = 3, .external_lex_state = 2}, - [585] = {.lex_state = 3, .external_lex_state = 2}, - [586] = {.lex_state = 96, .external_lex_state = 4}, - [587] = {.lex_state = 96, .external_lex_state = 4}, - [588] = {.lex_state = 3, .external_lex_state = 2}, - [589] = {.lex_state = 3, .external_lex_state = 3}, - [590] = {.lex_state = 96}, - [591] = {.lex_state = 96}, - [592] = {.lex_state = 3, .external_lex_state = 2}, + [583] = {.lex_state = 3, .external_lex_state = 3}, + [584] = {.lex_state = 96, .external_lex_state = 4}, + [585] = {.lex_state = 96, .external_lex_state = 4}, + [586] = {.lex_state = 3, .external_lex_state = 2}, + [587] = {.lex_state = 3, .external_lex_state = 2}, + [588] = {.lex_state = 96, .external_lex_state = 4}, + [589] = {.lex_state = 3, .external_lex_state = 2}, + [590] = {.lex_state = 3, .external_lex_state = 3}, + [591] = {.lex_state = 96, .external_lex_state = 4}, + [592] = {.lex_state = 96, .external_lex_state = 4}, [593] = {.lex_state = 3, .external_lex_state = 2}, - [594] = {.lex_state = 96}, - [595] = {.lex_state = 96}, - [596] = {.lex_state = 3, .external_lex_state = 2}, - [597] = {.lex_state = 3, .external_lex_state = 2}, - [598] = {.lex_state = 96, .external_lex_state = 4}, - [599] = {.lex_state = 96}, - [600] = {.lex_state = 96, .external_lex_state = 4}, + [594] = {.lex_state = 3, .external_lex_state = 2}, + [595] = {.lex_state = 3, .external_lex_state = 2}, + [596] = {.lex_state = 96}, + [597] = {.lex_state = 96}, + [598] = {.lex_state = 96}, + [599] = {.lex_state = 3, .external_lex_state = 2}, + [600] = {.lex_state = 3, .external_lex_state = 2}, [601] = {.lex_state = 96, .external_lex_state = 4}, - [602] = {.lex_state = 96, .external_lex_state = 4}, - [603] = {.lex_state = 96, .external_lex_state = 4}, - [604] = {.lex_state = 96}, - [605] = {.lex_state = 96, .external_lex_state = 4}, - [606] = {.lex_state = 96, .external_lex_state = 4}, + [602] = {.lex_state = 96}, + [603] = {.lex_state = 96}, + [604] = {.lex_state = 96, .external_lex_state = 4}, + [605] = {.lex_state = 96}, + [606] = {.lex_state = 96}, [607] = {.lex_state = 96, .external_lex_state = 4}, [608] = {.lex_state = 96}, [609] = {.lex_state = 3, .external_lex_state = 2}, [610] = {.lex_state = 96, .external_lex_state = 4}, - [611] = {.lex_state = 96}, - [612] = {.lex_state = 96}, + [611] = {.lex_state = 96, .external_lex_state = 4}, + [612] = {.lex_state = 96, .external_lex_state = 4}, [613] = {.lex_state = 96, .external_lex_state = 4}, - [614] = {.lex_state = 96}, + [614] = {.lex_state = 96, .external_lex_state = 4}, [615] = {.lex_state = 96, .external_lex_state = 4}, [616] = {.lex_state = 96}, - [617] = {.lex_state = 96}, - [618] = {.lex_state = 96, .external_lex_state = 4}, + [617] = {.lex_state = 96, .external_lex_state = 4}, + [618] = {.lex_state = 96}, [619] = {.lex_state = 96}, - [620] = {.lex_state = 96}, + [620] = {.lex_state = 96, .external_lex_state = 4}, [621] = {.lex_state = 96}, - [622] = {.lex_state = 96}, + [622] = {.lex_state = 96, .external_lex_state = 4}, [623] = {.lex_state = 96}, [624] = {.lex_state = 96}, [625] = {.lex_state = 96}, @@ -11998,10 +12037,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [762] = {.lex_state = 96}, [763] = {.lex_state = 96}, [764] = {.lex_state = 96}, - [765] = {.lex_state = 13}, - [766] = {.lex_state = 13}, - [767] = {.lex_state = 13}, - [768] = {.lex_state = 13}, + [765] = {.lex_state = 96}, + [766] = {.lex_state = 96}, + [767] = {.lex_state = 96}, + [768] = {.lex_state = 96}, [769] = {.lex_state = 13}, [770] = {.lex_state = 13}, [771] = {.lex_state = 13}, @@ -12013,83 +12052,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 13}, [778] = {.lex_state = 13}, [779] = {.lex_state = 13}, - [780] = {.lex_state = 96}, - [781] = {.lex_state = 96}, - [782] = {.lex_state = 96}, - [783] = {.lex_state = 96}, + [780] = {.lex_state = 13}, + [781] = {.lex_state = 13}, + [782] = {.lex_state = 13}, + [783] = {.lex_state = 13}, [784] = {.lex_state = 96}, [785] = {.lex_state = 96}, - [786] = {.lex_state = 13}, - [787] = {.lex_state = 96}, + [786] = {.lex_state = 96}, + [787] = {.lex_state = 13}, [788] = {.lex_state = 96}, [789] = {.lex_state = 96}, [790] = {.lex_state = 96}, [791] = {.lex_state = 96}, [792] = {.lex_state = 96}, [793] = {.lex_state = 96}, - [794] = {.lex_state = 16}, - [795] = {.lex_state = 16}, - [796] = {.lex_state = 16}, - [797] = {.lex_state = 3, .external_lex_state = 3}, - [798] = {.lex_state = 3, .external_lex_state = 3}, - [799] = {.lex_state = 3, .external_lex_state = 3}, - [800] = {.lex_state = 3, .external_lex_state = 3}, + [794] = {.lex_state = 96}, + [795] = {.lex_state = 96}, + [796] = {.lex_state = 96}, + [797] = {.lex_state = 96}, + [798] = {.lex_state = 16}, + [799] = {.lex_state = 16}, + [800] = {.lex_state = 16}, [801] = {.lex_state = 3, .external_lex_state = 3}, [802] = {.lex_state = 3, .external_lex_state = 3}, - [803] = {.lex_state = 13}, - [804] = {.lex_state = 13}, - [805] = {.lex_state = 13}, - [806] = {.lex_state = 13}, + [803] = {.lex_state = 3, .external_lex_state = 3}, + [804] = {.lex_state = 3, .external_lex_state = 3}, + [805] = {.lex_state = 3, .external_lex_state = 3}, + [806] = {.lex_state = 3, .external_lex_state = 3}, [807] = {.lex_state = 13}, - [808] = {.lex_state = 12}, - [809] = {.lex_state = 12}, - [810] = {.lex_state = 13}, + [808] = {.lex_state = 13}, + [809] = {.lex_state = 13}, + [810] = {.lex_state = 12}, [811] = {.lex_state = 13}, [812] = {.lex_state = 13}, [813] = {.lex_state = 13}, [814] = {.lex_state = 13}, - [815] = {.lex_state = 13}, + [815] = {.lex_state = 12}, [816] = {.lex_state = 13}, - [817] = {.lex_state = 3, .external_lex_state = 2}, + [817] = {.lex_state = 13}, [818] = {.lex_state = 13}, - [819] = {.lex_state = 96}, - [820] = {.lex_state = 13}, - [821] = {.lex_state = 3, .external_lex_state = 2}, + [819] = {.lex_state = 12}, + [820] = {.lex_state = 96}, + [821] = {.lex_state = 12}, [822] = {.lex_state = 13}, - [823] = {.lex_state = 12}, - [824] = {.lex_state = 13}, - [825] = {.lex_state = 13}, + [823] = {.lex_state = 13}, + [824] = {.lex_state = 12}, + [825] = {.lex_state = 12}, [826] = {.lex_state = 13}, [827] = {.lex_state = 13}, - [828] = {.lex_state = 12}, - [829] = {.lex_state = 13}, - [830] = {.lex_state = 13}, - [831] = {.lex_state = 96}, - [832] = {.lex_state = 12}, - [833] = {.lex_state = 12}, + [828] = {.lex_state = 13}, + [829] = {.lex_state = 12}, + [830] = {.lex_state = 96}, + [831] = {.lex_state = 3, .external_lex_state = 2}, + [832] = {.lex_state = 13}, + [833] = {.lex_state = 3, .external_lex_state = 2}, [834] = {.lex_state = 13}, [835] = {.lex_state = 13}, [836] = {.lex_state = 13}, - [837] = {.lex_state = 3, .external_lex_state = 2}, - [838] = {.lex_state = 12}, - [839] = {.lex_state = 12}, - [840] = {.lex_state = 12}, - [841] = {.lex_state = 13}, - [842] = {.lex_state = 12}, - [843] = {.lex_state = 12}, + [837] = {.lex_state = 12}, + [838] = {.lex_state = 13}, + [839] = {.lex_state = 13}, + [840] = {.lex_state = 13}, + [841] = {.lex_state = 12}, + [842] = {.lex_state = 13}, + [843] = {.lex_state = 13}, [844] = {.lex_state = 13}, [845] = {.lex_state = 12}, [846] = {.lex_state = 13}, - [847] = {.lex_state = 13}, - [848] = {.lex_state = 96}, + [847] = {.lex_state = 96}, + [848] = {.lex_state = 13}, [849] = {.lex_state = 13}, [850] = {.lex_state = 13}, [851] = {.lex_state = 13}, - [852] = {.lex_state = 13}, + [852] = {.lex_state = 12}, [853] = {.lex_state = 13}, [854] = {.lex_state = 13}, - [855] = {.lex_state = 13}, - [856] = {.lex_state = 13}, + [855] = {.lex_state = 12}, + [856] = {.lex_state = 3, .external_lex_state = 2}, [857] = {.lex_state = 13}, [858] = {.lex_state = 13}, [859] = {.lex_state = 13}, @@ -12114,17 +12153,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [878] = {.lex_state = 13}, [879] = {.lex_state = 13}, [880] = {.lex_state = 13}, - [881] = {.lex_state = 3, .external_lex_state = 2}, + [881] = {.lex_state = 13}, [882] = {.lex_state = 13}, [883] = {.lex_state = 13}, [884] = {.lex_state = 13}, - [885] = {.lex_state = 3, .external_lex_state = 2}, + [885] = {.lex_state = 13}, [886] = {.lex_state = 13}, [887] = {.lex_state = 13}, [888] = {.lex_state = 13}, [889] = {.lex_state = 13}, [890] = {.lex_state = 13}, - [891] = {.lex_state = 13}, + [891] = {.lex_state = 3, .external_lex_state = 2}, [892] = {.lex_state = 13}, [893] = {.lex_state = 13}, [894] = {.lex_state = 13}, @@ -12180,7 +12219,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [944] = {.lex_state = 13}, [945] = {.lex_state = 13}, [946] = {.lex_state = 13}, - [947] = {.lex_state = 13}, + [947] = {.lex_state = 3, .external_lex_state = 2}, [948] = {.lex_state = 13}, [949] = {.lex_state = 13}, [950] = {.lex_state = 13}, @@ -12218,10 +12257,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [982] = {.lex_state = 13}, [983] = {.lex_state = 13}, [984] = {.lex_state = 13}, - [985] = {.lex_state = 3, .external_lex_state = 2}, - [986] = {.lex_state = 3, .external_lex_state = 3}, - [987] = {.lex_state = 3, .external_lex_state = 3}, - [988] = {.lex_state = 3, .external_lex_state = 3}, + [985] = {.lex_state = 13}, + [986] = {.lex_state = 13}, + [987] = {.lex_state = 13}, + [988] = {.lex_state = 13}, [989] = {.lex_state = 3, .external_lex_state = 3}, [990] = {.lex_state = 3, .external_lex_state = 3}, [991] = {.lex_state = 3, .external_lex_state = 3}, @@ -12229,245 +12268,245 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [993] = {.lex_state = 3, .external_lex_state = 3}, [994] = {.lex_state = 3, .external_lex_state = 3}, [995] = {.lex_state = 3, .external_lex_state = 3}, - [996] = {.lex_state = 6, .external_lex_state = 2}, + [996] = {.lex_state = 3, .external_lex_state = 3}, [997] = {.lex_state = 3, .external_lex_state = 3}, [998] = {.lex_state = 3, .external_lex_state = 2}, - [999] = {.lex_state = 3, .external_lex_state = 3}, - [1000] = {.lex_state = 6, .external_lex_state = 2}, - [1001] = {.lex_state = 6, .external_lex_state = 2}, - [1002] = {.lex_state = 6, .external_lex_state = 2}, - [1003] = {.lex_state = 3, .external_lex_state = 3}, - [1004] = {.lex_state = 3, .external_lex_state = 2}, - [1005] = {.lex_state = 3, .external_lex_state = 3}, + [999] = {.lex_state = 6, .external_lex_state = 2}, + [1000] = {.lex_state = 3, .external_lex_state = 2}, + [1001] = {.lex_state = 3, .external_lex_state = 3}, + [1002] = {.lex_state = 3, .external_lex_state = 3}, + [1003] = {.lex_state = 6, .external_lex_state = 2}, + [1004] = {.lex_state = 3, .external_lex_state = 3}, + [1005] = {.lex_state = 6, .external_lex_state = 2}, [1006] = {.lex_state = 3, .external_lex_state = 3}, - [1007] = {.lex_state = 3, .external_lex_state = 3}, + [1007] = {.lex_state = 3, .external_lex_state = 2}, [1008] = {.lex_state = 3, .external_lex_state = 3}, - [1009] = {.lex_state = 6, .external_lex_state = 2}, - [1010] = {.lex_state = 3, .external_lex_state = 2}, - [1011] = {.lex_state = 3, .external_lex_state = 3}, + [1009] = {.lex_state = 3, .external_lex_state = 3}, + [1010] = {.lex_state = 3, .external_lex_state = 3}, + [1011] = {.lex_state = 6, .external_lex_state = 2}, [1012] = {.lex_state = 3, .external_lex_state = 3}, - [1013] = {.lex_state = 3, .external_lex_state = 2}, + [1013] = {.lex_state = 6, .external_lex_state = 2}, [1014] = {.lex_state = 3, .external_lex_state = 3}, [1015] = {.lex_state = 3, .external_lex_state = 2}, - [1016] = {.lex_state = 6, .external_lex_state = 2}, - [1017] = {.lex_state = 3, .external_lex_state = 2}, - [1018] = {.lex_state = 12}, - [1019] = {.lex_state = 6, .external_lex_state = 2}, - [1020] = {.lex_state = 6, .external_lex_state = 2}, - [1021] = {.lex_state = 12}, - [1022] = {.lex_state = 6, .external_lex_state = 2}, - [1023] = {.lex_state = 3, .external_lex_state = 3}, + [1016] = {.lex_state = 12}, + [1017] = {.lex_state = 6, .external_lex_state = 2}, + [1018] = {.lex_state = 3, .external_lex_state = 2}, + [1019] = {.lex_state = 12}, + [1020] = {.lex_state = 3, .external_lex_state = 3}, + [1021] = {.lex_state = 6, .external_lex_state = 2}, + [1022] = {.lex_state = 3, .external_lex_state = 2}, + [1023] = {.lex_state = 6, .external_lex_state = 2}, [1024] = {.lex_state = 3, .external_lex_state = 3}, - [1025] = {.lex_state = 3, .external_lex_state = 3}, - [1026] = {.lex_state = 6, .external_lex_state = 2}, + [1025] = {.lex_state = 3, .external_lex_state = 2}, + [1026] = {.lex_state = 3, .external_lex_state = 3}, [1027] = {.lex_state = 6, .external_lex_state = 2}, - [1028] = {.lex_state = 3, .external_lex_state = 2}, - [1029] = {.lex_state = 3, .external_lex_state = 2}, + [1028] = {.lex_state = 3, .external_lex_state = 3}, + [1029] = {.lex_state = 3, .external_lex_state = 3}, [1030] = {.lex_state = 3, .external_lex_state = 2}, [1031] = {.lex_state = 3, .external_lex_state = 2}, - [1032] = {.lex_state = 3, .external_lex_state = 3}, + [1032] = {.lex_state = 3, .external_lex_state = 2}, [1033] = {.lex_state = 3, .external_lex_state = 2}, - [1034] = {.lex_state = 3, .external_lex_state = 2}, - [1035] = {.lex_state = 3, .external_lex_state = 3}, - [1036] = {.lex_state = 6, .external_lex_state = 2}, + [1034] = {.lex_state = 3, .external_lex_state = 3}, + [1035] = {.lex_state = 6, .external_lex_state = 2}, + [1036] = {.lex_state = 3, .external_lex_state = 2}, [1037] = {.lex_state = 3, .external_lex_state = 2}, [1038] = {.lex_state = 3, .external_lex_state = 2}, - [1039] = {.lex_state = 3, .external_lex_state = 2}, - [1040] = {.lex_state = 3, .external_lex_state = 2}, - [1041] = {.lex_state = 3, .external_lex_state = 2}, - [1042] = {.lex_state = 3, .external_lex_state = 2}, + [1039] = {.lex_state = 6, .external_lex_state = 2}, + [1040] = {.lex_state = 3, .external_lex_state = 3}, + [1041] = {.lex_state = 6, .external_lex_state = 2}, + [1042] = {.lex_state = 3, .external_lex_state = 3}, [1043] = {.lex_state = 3, .external_lex_state = 2}, - [1044] = {.lex_state = 3, .external_lex_state = 3}, + [1044] = {.lex_state = 3, .external_lex_state = 2}, [1045] = {.lex_state = 3, .external_lex_state = 3}, [1046] = {.lex_state = 3, .external_lex_state = 2}, [1047] = {.lex_state = 3, .external_lex_state = 3}, - [1048] = {.lex_state = 3, .external_lex_state = 3}, + [1048] = {.lex_state = 3, .external_lex_state = 2}, [1049] = {.lex_state = 3, .external_lex_state = 2}, [1050] = {.lex_state = 3, .external_lex_state = 2}, - [1051] = {.lex_state = 3, .external_lex_state = 3}, + [1051] = {.lex_state = 3, .external_lex_state = 2}, [1052] = {.lex_state = 3, .external_lex_state = 2}, [1053] = {.lex_state = 3, .external_lex_state = 2}, - [1054] = {.lex_state = 3, .external_lex_state = 3}, - [1055] = {.lex_state = 3, .external_lex_state = 2}, - [1056] = {.lex_state = 3, .external_lex_state = 2}, - [1057] = {.lex_state = 6, .external_lex_state = 2}, - [1058] = {.lex_state = 3, .external_lex_state = 3}, - [1059] = {.lex_state = 3, .external_lex_state = 2}, + [1054] = {.lex_state = 3, .external_lex_state = 2}, + [1055] = {.lex_state = 3, .external_lex_state = 3}, + [1056] = {.lex_state = 3, .external_lex_state = 3}, + [1057] = {.lex_state = 3, .external_lex_state = 2}, + [1058] = {.lex_state = 3, .external_lex_state = 2}, + [1059] = {.lex_state = 3, .external_lex_state = 3}, [1060] = {.lex_state = 3, .external_lex_state = 2}, - [1061] = {.lex_state = 6, .external_lex_state = 2}, + [1061] = {.lex_state = 3, .external_lex_state = 2}, [1062] = {.lex_state = 3, .external_lex_state = 2}, - [1063] = {.lex_state = 3, .external_lex_state = 3}, + [1063] = {.lex_state = 3, .external_lex_state = 2}, [1064] = {.lex_state = 3, .external_lex_state = 2}, - [1065] = {.lex_state = 3, .external_lex_state = 3}, + [1065] = {.lex_state = 6, .external_lex_state = 2}, [1066] = {.lex_state = 3, .external_lex_state = 2}, [1067] = {.lex_state = 3, .external_lex_state = 2}, [1068] = {.lex_state = 3, .external_lex_state = 3}, - [1069] = {.lex_state = 3, .external_lex_state = 2}, + [1069] = {.lex_state = 3, .external_lex_state = 3}, [1070] = {.lex_state = 3, .external_lex_state = 2}, [1071] = {.lex_state = 3, .external_lex_state = 2}, [1072] = {.lex_state = 3, .external_lex_state = 3}, [1073] = {.lex_state = 3, .external_lex_state = 2}, - [1074] = {.lex_state = 3, .external_lex_state = 2}, + [1074] = {.lex_state = 3, .external_lex_state = 3}, [1075] = {.lex_state = 3, .external_lex_state = 2}, - [1076] = {.lex_state = 3, .external_lex_state = 3}, + [1076] = {.lex_state = 6, .external_lex_state = 2}, [1077] = {.lex_state = 3, .external_lex_state = 3}, - [1078] = {.lex_state = 3, .external_lex_state = 3}, - [1079] = {.lex_state = 3, .external_lex_state = 3}, + [1078] = {.lex_state = 3, .external_lex_state = 2}, + [1079] = {.lex_state = 3, .external_lex_state = 2}, [1080] = {.lex_state = 3, .external_lex_state = 2}, - [1081] = {.lex_state = 3, .external_lex_state = 2}, + [1081] = {.lex_state = 3, .external_lex_state = 3}, [1082] = {.lex_state = 3, .external_lex_state = 3}, - [1083] = {.lex_state = 3, .external_lex_state = 2}, - [1084] = {.lex_state = 3, .external_lex_state = 3}, - [1085] = {.lex_state = 3, .external_lex_state = 3}, - [1086] = {.lex_state = 3, .external_lex_state = 3}, - [1087] = {.lex_state = 3, .external_lex_state = 2}, + [1083] = {.lex_state = 3, .external_lex_state = 3}, + [1084] = {.lex_state = 3, .external_lex_state = 2}, + [1085] = {.lex_state = 3, .external_lex_state = 2}, + [1086] = {.lex_state = 3, .external_lex_state = 2}, + [1087] = {.lex_state = 3, .external_lex_state = 3}, [1088] = {.lex_state = 3, .external_lex_state = 3}, [1089] = {.lex_state = 3, .external_lex_state = 3}, - [1090] = {.lex_state = 3, .external_lex_state = 3}, + [1090] = {.lex_state = 3, .external_lex_state = 2}, [1091] = {.lex_state = 3, .external_lex_state = 3}, [1092] = {.lex_state = 3, .external_lex_state = 3}, - [1093] = {.lex_state = 3, .external_lex_state = 2}, + [1093] = {.lex_state = 3, .external_lex_state = 3}, [1094] = {.lex_state = 3, .external_lex_state = 3}, - [1095] = {.lex_state = 3, .external_lex_state = 2}, - [1096] = {.lex_state = 3, .external_lex_state = 3}, - [1097] = {.lex_state = 3, .external_lex_state = 3}, + [1095] = {.lex_state = 3, .external_lex_state = 3}, + [1096] = {.lex_state = 3, .external_lex_state = 2}, + [1097] = {.lex_state = 3, .external_lex_state = 2}, [1098] = {.lex_state = 3, .external_lex_state = 3}, - [1099] = {.lex_state = 3, .external_lex_state = 3}, - [1100] = {.lex_state = 3, .external_lex_state = 3}, + [1099] = {.lex_state = 3, .external_lex_state = 2}, + [1100] = {.lex_state = 6, .external_lex_state = 2}, [1101] = {.lex_state = 3, .external_lex_state = 3}, - [1102] = {.lex_state = 6, .external_lex_state = 2}, + [1102] = {.lex_state = 3, .external_lex_state = 3}, [1103] = {.lex_state = 3, .external_lex_state = 3}, [1104] = {.lex_state = 3, .external_lex_state = 3}, - [1105] = {.lex_state = 3, .external_lex_state = 2}, + [1105] = {.lex_state = 3, .external_lex_state = 3}, [1106] = {.lex_state = 3, .external_lex_state = 3}, - [1107] = {.lex_state = 3, .external_lex_state = 3}, - [1108] = {.lex_state = 3, .external_lex_state = 2}, + [1107] = {.lex_state = 3, .external_lex_state = 2}, + [1108] = {.lex_state = 3, .external_lex_state = 3}, [1109] = {.lex_state = 3, .external_lex_state = 3}, - [1110] = {.lex_state = 3, .external_lex_state = 2}, - [1111] = {.lex_state = 3, .external_lex_state = 2}, - [1112] = {.lex_state = 6, .external_lex_state = 2}, - [1113] = {.lex_state = 3, .external_lex_state = 2}, - [1114] = {.lex_state = 6, .external_lex_state = 2}, + [1110] = {.lex_state = 3, .external_lex_state = 3}, + [1111] = {.lex_state = 3, .external_lex_state = 3}, + [1112] = {.lex_state = 3, .external_lex_state = 3}, + [1113] = {.lex_state = 3, .external_lex_state = 3}, + [1114] = {.lex_state = 3, .external_lex_state = 3}, [1115] = {.lex_state = 3, .external_lex_state = 2}, [1116] = {.lex_state = 3, .external_lex_state = 2}, - [1117] = {.lex_state = 3, .external_lex_state = 3}, - [1118] = {.lex_state = 3, .external_lex_state = 2}, - [1119] = {.lex_state = 6, .external_lex_state = 2}, - [1120] = {.lex_state = 96}, - [1121] = {.lex_state = 3, .external_lex_state = 3}, + [1117] = {.lex_state = 3, .external_lex_state = 2}, + [1118] = {.lex_state = 3, .external_lex_state = 3}, + [1119] = {.lex_state = 3, .external_lex_state = 2}, + [1120] = {.lex_state = 3, .external_lex_state = 2}, + [1121] = {.lex_state = 3, .external_lex_state = 2}, [1122] = {.lex_state = 3, .external_lex_state = 3}, - [1123] = {.lex_state = 96}, - [1124] = {.lex_state = 6, .external_lex_state = 2}, - [1125] = {.lex_state = 3, .external_lex_state = 3}, - [1126] = {.lex_state = 3, .external_lex_state = 2}, - [1127] = {.lex_state = 3, .external_lex_state = 2}, + [1123] = {.lex_state = 6, .external_lex_state = 2}, + [1124] = {.lex_state = 3, .external_lex_state = 2}, + [1125] = {.lex_state = 6, .external_lex_state = 2}, + [1126] = {.lex_state = 6, .external_lex_state = 2}, + [1127] = {.lex_state = 3, .external_lex_state = 3}, [1128] = {.lex_state = 3, .external_lex_state = 2}, [1129] = {.lex_state = 3, .external_lex_state = 2}, - [1130] = {.lex_state = 3, .external_lex_state = 2}, - [1131] = {.lex_state = 3, .external_lex_state = 3}, + [1130] = {.lex_state = 96}, + [1131] = {.lex_state = 6, .external_lex_state = 2}, [1132] = {.lex_state = 3, .external_lex_state = 2}, [1133] = {.lex_state = 3, .external_lex_state = 3}, - [1134] = {.lex_state = 3, .external_lex_state = 2}, + [1134] = {.lex_state = 96}, [1135] = {.lex_state = 3, .external_lex_state = 3}, - [1136] = {.lex_state = 3, .external_lex_state = 2}, - [1137] = {.lex_state = 96}, - [1138] = {.lex_state = 6, .external_lex_state = 2}, - [1139] = {.lex_state = 3, .external_lex_state = 2}, - [1140] = {.lex_state = 3, .external_lex_state = 2}, + [1136] = {.lex_state = 6, .external_lex_state = 2}, + [1137] = {.lex_state = 3, .external_lex_state = 2}, + [1138] = {.lex_state = 3, .external_lex_state = 2}, + [1139] = {.lex_state = 96}, + [1140] = {.lex_state = 96}, [1141] = {.lex_state = 3, .external_lex_state = 2}, [1142] = {.lex_state = 3, .external_lex_state = 2}, - [1143] = {.lex_state = 3, .external_lex_state = 2}, - [1144] = {.lex_state = 3, .external_lex_state = 3}, - [1145] = {.lex_state = 3, .external_lex_state = 2}, - [1146] = {.lex_state = 3, .external_lex_state = 2}, + [1143] = {.lex_state = 3, .external_lex_state = 3}, + [1144] = {.lex_state = 3, .external_lex_state = 2}, + [1145] = {.lex_state = 3, .external_lex_state = 3}, + [1146] = {.lex_state = 3, .external_lex_state = 3}, [1147] = {.lex_state = 3, .external_lex_state = 2}, - [1148] = {.lex_state = 3, .external_lex_state = 3}, - [1149] = {.lex_state = 96}, + [1148] = {.lex_state = 3, .external_lex_state = 2}, + [1149] = {.lex_state = 3, .external_lex_state = 2}, [1150] = {.lex_state = 3, .external_lex_state = 2}, [1151] = {.lex_state = 3, .external_lex_state = 2}, - [1152] = {.lex_state = 96}, - [1153] = {.lex_state = 3, .external_lex_state = 3}, - [1154] = {.lex_state = 3, .external_lex_state = 2}, - [1155] = {.lex_state = 96}, + [1152] = {.lex_state = 3, .external_lex_state = 3}, + [1153] = {.lex_state = 3, .external_lex_state = 2}, + [1154] = {.lex_state = 96}, + [1155] = {.lex_state = 3, .external_lex_state = 2}, [1156] = {.lex_state = 3, .external_lex_state = 2}, [1157] = {.lex_state = 3, .external_lex_state = 2}, [1158] = {.lex_state = 3, .external_lex_state = 2}, - [1159] = {.lex_state = 96}, - [1160] = {.lex_state = 3, .external_lex_state = 2}, + [1159] = {.lex_state = 3, .external_lex_state = 2}, + [1160] = {.lex_state = 96}, [1161] = {.lex_state = 3, .external_lex_state = 2}, [1162] = {.lex_state = 3, .external_lex_state = 2}, - [1163] = {.lex_state = 3, .external_lex_state = 2}, + [1163] = {.lex_state = 96}, [1164] = {.lex_state = 3, .external_lex_state = 2}, - [1165] = {.lex_state = 3, .external_lex_state = 2}, + [1165] = {.lex_state = 3, .external_lex_state = 3}, [1166] = {.lex_state = 3, .external_lex_state = 2}, [1167] = {.lex_state = 3, .external_lex_state = 2}, - [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 13}, - [1170] = {.lex_state = 13}, - [1171] = {.lex_state = 13}, + [1168] = {.lex_state = 3, .external_lex_state = 2}, + [1169] = {.lex_state = 3, .external_lex_state = 2}, + [1170] = {.lex_state = 3, .external_lex_state = 2}, + [1171] = {.lex_state = 3, .external_lex_state = 2}, [1172] = {.lex_state = 13}, [1173] = {.lex_state = 13}, - [1174] = {.lex_state = 7, .external_lex_state = 3}, + [1174] = {.lex_state = 13}, [1175] = {.lex_state = 13}, [1176] = {.lex_state = 13}, [1177] = {.lex_state = 13}, - [1178] = {.lex_state = 12, .external_lex_state = 4}, + [1178] = {.lex_state = 7, .external_lex_state = 3}, [1179] = {.lex_state = 13}, [1180] = {.lex_state = 13}, [1181] = {.lex_state = 13}, [1182] = {.lex_state = 13}, [1183] = {.lex_state = 13}, - [1184] = {.lex_state = 12, .external_lex_state = 4}, + [1184] = {.lex_state = 13}, [1185] = {.lex_state = 13}, [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 12, .external_lex_state = 4}, + [1187] = {.lex_state = 13}, [1188] = {.lex_state = 12, .external_lex_state = 4}, [1189] = {.lex_state = 13}, - [1190] = {.lex_state = 13}, - [1191] = {.lex_state = 13}, + [1190] = {.lex_state = 12, .external_lex_state = 4}, + [1191] = {.lex_state = 12, .external_lex_state = 4}, [1192] = {.lex_state = 13}, [1193] = {.lex_state = 13}, [1194] = {.lex_state = 13}, [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 13}, - [1197] = {.lex_state = 12, .external_lex_state = 4}, - [1198] = {.lex_state = 12, .external_lex_state = 4}, - [1199] = {.lex_state = 7, .external_lex_state = 3}, + [1196] = {.lex_state = 12, .external_lex_state = 4}, + [1197] = {.lex_state = 13}, + [1198] = {.lex_state = 13}, + [1199] = {.lex_state = 12, .external_lex_state = 4}, [1200] = {.lex_state = 13}, [1201] = {.lex_state = 13}, [1202] = {.lex_state = 13}, [1203] = {.lex_state = 13}, [1204] = {.lex_state = 13}, - [1205] = {.lex_state = 7, .external_lex_state = 3}, - [1206] = {.lex_state = 13}, + [1205] = {.lex_state = 12, .external_lex_state = 4}, + [1206] = {.lex_state = 7, .external_lex_state = 3}, [1207] = {.lex_state = 13}, - [1208] = {.lex_state = 12, .external_lex_state = 4}, - [1209] = {.lex_state = 7, .external_lex_state = 2}, - [1210] = {.lex_state = 7, .external_lex_state = 2}, - [1211] = {.lex_state = 96}, - [1212] = {.lex_state = 7, .external_lex_state = 3}, + [1208] = {.lex_state = 13}, + [1209] = {.lex_state = 13}, + [1210] = {.lex_state = 7, .external_lex_state = 3}, + [1211] = {.lex_state = 13}, + [1212] = {.lex_state = 12, .external_lex_state = 4}, [1213] = {.lex_state = 7, .external_lex_state = 2}, [1214] = {.lex_state = 7, .external_lex_state = 2}, - [1215] = {.lex_state = 7, .external_lex_state = 2}, + [1215] = {.lex_state = 96}, [1216] = {.lex_state = 96}, - [1217] = {.lex_state = 7, .external_lex_state = 3}, + [1217] = {.lex_state = 7, .external_lex_state = 2}, [1218] = {.lex_state = 7, .external_lex_state = 2}, - [1219] = {.lex_state = 96}, - [1220] = {.lex_state = 7, .external_lex_state = 3}, + [1219] = {.lex_state = 7, .external_lex_state = 2}, + [1220] = {.lex_state = 7, .external_lex_state = 2}, [1221] = {.lex_state = 96}, [1222] = {.lex_state = 7, .external_lex_state = 2}, - [1223] = {.lex_state = 96}, + [1223] = {.lex_state = 7, .external_lex_state = 3}, [1224] = {.lex_state = 7, .external_lex_state = 2}, - [1225] = {.lex_state = 7, .external_lex_state = 2}, + [1225] = {.lex_state = 96}, [1226] = {.lex_state = 7, .external_lex_state = 2}, - [1227] = {.lex_state = 96}, - [1228] = {.lex_state = 96}, - [1229] = {.lex_state = 7, .external_lex_state = 2}, - [1230] = {.lex_state = 7, .external_lex_state = 2}, - [1231] = {.lex_state = 7, .external_lex_state = 2}, - [1232] = {.lex_state = 7, .external_lex_state = 2}, + [1227] = {.lex_state = 7, .external_lex_state = 2}, + [1228] = {.lex_state = 7, .external_lex_state = 3}, + [1229] = {.lex_state = 7, .external_lex_state = 3}, + [1230] = {.lex_state = 7, .external_lex_state = 3}, + [1231] = {.lex_state = 96}, + [1232] = {.lex_state = 96}, [1233] = {.lex_state = 7, .external_lex_state = 2}, - [1234] = {.lex_state = 7, .external_lex_state = 2}, + [1234] = {.lex_state = 96}, [1235] = {.lex_state = 7, .external_lex_state = 2}, [1236] = {.lex_state = 7, .external_lex_state = 2}, [1237] = {.lex_state = 7, .external_lex_state = 2}, @@ -12486,7 +12525,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 7, .external_lex_state = 2}, [1251] = {.lex_state = 7, .external_lex_state = 2}, [1252] = {.lex_state = 7, .external_lex_state = 2}, - [1253] = {.lex_state = 7, .external_lex_state = 3}, + [1253] = {.lex_state = 7, .external_lex_state = 2}, [1254] = {.lex_state = 7, .external_lex_state = 2}, [1255] = {.lex_state = 7, .external_lex_state = 2}, [1256] = {.lex_state = 7, .external_lex_state = 2}, @@ -12502,15 +12541,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1266] = {.lex_state = 7, .external_lex_state = 2}, [1267] = {.lex_state = 7, .external_lex_state = 2}, [1268] = {.lex_state = 7, .external_lex_state = 2}, - [1269] = {.lex_state = 7, .external_lex_state = 3}, + [1269] = {.lex_state = 7, .external_lex_state = 2}, [1270] = {.lex_state = 7, .external_lex_state = 2}, [1271] = {.lex_state = 7, .external_lex_state = 2}, [1272] = {.lex_state = 7, .external_lex_state = 2}, [1273] = {.lex_state = 7, .external_lex_state = 2}, [1274] = {.lex_state = 7, .external_lex_state = 2}, [1275] = {.lex_state = 7, .external_lex_state = 2}, - [1276] = {.lex_state = 7, .external_lex_state = 2}, - [1277] = {.lex_state = 7, .external_lex_state = 2}, + [1276] = {.lex_state = 7, .external_lex_state = 3}, + [1277] = {.lex_state = 7, .external_lex_state = 3}, [1278] = {.lex_state = 7, .external_lex_state = 2}, [1279] = {.lex_state = 7, .external_lex_state = 2}, [1280] = {.lex_state = 7, .external_lex_state = 2}, @@ -12525,7 +12564,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1289] = {.lex_state = 7, .external_lex_state = 2}, [1290] = {.lex_state = 7, .external_lex_state = 2}, [1291] = {.lex_state = 7, .external_lex_state = 2}, - [1292] = {.lex_state = 7, .external_lex_state = 2}, + [1292] = {.lex_state = 7, .external_lex_state = 3}, [1293] = {.lex_state = 7, .external_lex_state = 2}, [1294] = {.lex_state = 7, .external_lex_state = 2}, [1295] = {.lex_state = 7, .external_lex_state = 2}, @@ -12534,7 +12573,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1298] = {.lex_state = 7, .external_lex_state = 2}, [1299] = {.lex_state = 7, .external_lex_state = 2}, [1300] = {.lex_state = 7, .external_lex_state = 2}, - [1301] = {.lex_state = 7, .external_lex_state = 3}, + [1301] = {.lex_state = 7, .external_lex_state = 2}, [1302] = {.lex_state = 7, .external_lex_state = 2}, [1303] = {.lex_state = 7, .external_lex_state = 2}, [1304] = {.lex_state = 7, .external_lex_state = 2}, @@ -12543,7 +12582,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1307] = {.lex_state = 7, .external_lex_state = 2}, [1308] = {.lex_state = 7, .external_lex_state = 2}, [1309] = {.lex_state = 7, .external_lex_state = 2}, - [1310] = {.lex_state = 7, .external_lex_state = 2}, + [1310] = {.lex_state = 7, .external_lex_state = 3}, [1311] = {.lex_state = 7, .external_lex_state = 2}, [1312] = {.lex_state = 7, .external_lex_state = 2}, [1313] = {.lex_state = 7, .external_lex_state = 2}, @@ -12594,280 +12633,280 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1358] = {.lex_state = 7, .external_lex_state = 2}, [1359] = {.lex_state = 7, .external_lex_state = 2}, [1360] = {.lex_state = 7, .external_lex_state = 2}, - [1361] = {.lex_state = 7, .external_lex_state = 3}, - [1362] = {.lex_state = 7, .external_lex_state = 3}, + [1361] = {.lex_state = 7, .external_lex_state = 2}, + [1362] = {.lex_state = 7, .external_lex_state = 2}, [1363] = {.lex_state = 7, .external_lex_state = 2}, - [1364] = {.lex_state = 7, .external_lex_state = 3}, + [1364] = {.lex_state = 7, .external_lex_state = 2}, [1365] = {.lex_state = 7, .external_lex_state = 2}, [1366] = {.lex_state = 7, .external_lex_state = 2}, [1367] = {.lex_state = 7, .external_lex_state = 2}, [1368] = {.lex_state = 7, .external_lex_state = 2}, - [1369] = {.lex_state = 7, .external_lex_state = 2}, + [1369] = {.lex_state = 7, .external_lex_state = 3}, [1370] = {.lex_state = 7, .external_lex_state = 3}, [1371] = {.lex_state = 7, .external_lex_state = 2}, - [1372] = {.lex_state = 7, .external_lex_state = 3}, + [1372] = {.lex_state = 7, .external_lex_state = 2}, [1373] = {.lex_state = 7, .external_lex_state = 2}, [1374] = {.lex_state = 7, .external_lex_state = 2}, - [1375] = {.lex_state = 7, .external_lex_state = 2}, + [1375] = {.lex_state = 96}, [1376] = {.lex_state = 7, .external_lex_state = 2}, - [1377] = {.lex_state = 7, .external_lex_state = 3}, - [1378] = {.lex_state = 7, .external_lex_state = 3}, + [1377] = {.lex_state = 7, .external_lex_state = 2}, + [1378] = {.lex_state = 7, .external_lex_state = 2}, [1379] = {.lex_state = 7, .external_lex_state = 2}, - [1380] = {.lex_state = 7, .external_lex_state = 3}, - [1381] = {.lex_state = 7, .external_lex_state = 3}, - [1382] = {.lex_state = 7, .external_lex_state = 3}, - [1383] = {.lex_state = 7, .external_lex_state = 3}, + [1380] = {.lex_state = 7, .external_lex_state = 2}, + [1381] = {.lex_state = 7, .external_lex_state = 2}, + [1382] = {.lex_state = 7, .external_lex_state = 2}, + [1383] = {.lex_state = 7, .external_lex_state = 2}, [1384] = {.lex_state = 7, .external_lex_state = 2}, - [1385] = {.lex_state = 7, .external_lex_state = 3}, - [1386] = {.lex_state = 7, .external_lex_state = 3}, + [1385] = {.lex_state = 7, .external_lex_state = 2}, + [1386] = {.lex_state = 7, .external_lex_state = 2}, [1387] = {.lex_state = 7, .external_lex_state = 3}, [1388] = {.lex_state = 7, .external_lex_state = 3}, - [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 7, .external_lex_state = 3}, - [1391] = {.lex_state = 7, .external_lex_state = 3}, + [1389] = {.lex_state = 7, .external_lex_state = 2}, + [1390] = {.lex_state = 7, .external_lex_state = 2}, + [1391] = {.lex_state = 7, .external_lex_state = 2}, [1392] = {.lex_state = 7, .external_lex_state = 3}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, + [1393] = {.lex_state = 7, .external_lex_state = 2}, [1394] = {.lex_state = 7, .external_lex_state = 2}, - [1395] = {.lex_state = 7, .external_lex_state = 2}, + [1395] = {.lex_state = 7, .external_lex_state = 3}, [1396] = {.lex_state = 7, .external_lex_state = 2}, [1397] = {.lex_state = 7, .external_lex_state = 2}, - [1398] = {.lex_state = 7, .external_lex_state = 2}, + [1398] = {.lex_state = 7, .external_lex_state = 3}, [1399] = {.lex_state = 7, .external_lex_state = 2}, [1400] = {.lex_state = 7, .external_lex_state = 2}, - [1401] = {.lex_state = 7, .external_lex_state = 3}, + [1401] = {.lex_state = 7, .external_lex_state = 2}, [1402] = {.lex_state = 7, .external_lex_state = 2}, [1403] = {.lex_state = 7, .external_lex_state = 2}, - [1404] = {.lex_state = 7, .external_lex_state = 3}, - [1405] = {.lex_state = 7, .external_lex_state = 3}, - [1406] = {.lex_state = 7, .external_lex_state = 3}, + [1404] = {.lex_state = 7, .external_lex_state = 2}, + [1405] = {.lex_state = 7, .external_lex_state = 2}, + [1406] = {.lex_state = 7, .external_lex_state = 2}, [1407] = {.lex_state = 7, .external_lex_state = 2}, - [1408] = {.lex_state = 7, .external_lex_state = 3}, + [1408] = {.lex_state = 7, .external_lex_state = 2}, [1409] = {.lex_state = 7, .external_lex_state = 2}, [1410] = {.lex_state = 7, .external_lex_state = 2}, [1411] = {.lex_state = 7, .external_lex_state = 3}, [1412] = {.lex_state = 7, .external_lex_state = 2}, - [1413] = {.lex_state = 7, .external_lex_state = 2}, - [1414] = {.lex_state = 7, .external_lex_state = 2}, + [1413] = {.lex_state = 7, .external_lex_state = 3}, + [1414] = {.lex_state = 7, .external_lex_state = 3}, [1415] = {.lex_state = 7, .external_lex_state = 2}, - [1416] = {.lex_state = 7, .external_lex_state = 3}, - [1417] = {.lex_state = 7, .external_lex_state = 3}, - [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 7, .external_lex_state = 2}, + [1416] = {.lex_state = 7, .external_lex_state = 2}, + [1417] = {.lex_state = 7, .external_lex_state = 2}, + [1418] = {.lex_state = 7, .external_lex_state = 2}, + [1419] = {.lex_state = 7, .external_lex_state = 2}, + [1420] = {.lex_state = 7, .external_lex_state = 3}, [1421] = {.lex_state = 7, .external_lex_state = 2}, [1422] = {.lex_state = 7, .external_lex_state = 3}, - [1423] = {.lex_state = 7, .external_lex_state = 3}, - [1424] = {.lex_state = 96}, + [1423] = {.lex_state = 7, .external_lex_state = 2}, + [1424] = {.lex_state = 7, .external_lex_state = 3}, [1425] = {.lex_state = 7, .external_lex_state = 2}, - [1426] = {.lex_state = 7, .external_lex_state = 2}, + [1426] = {.lex_state = 7, .external_lex_state = 3}, [1427] = {.lex_state = 7, .external_lex_state = 2}, [1428] = {.lex_state = 7, .external_lex_state = 3}, [1429] = {.lex_state = 7, .external_lex_state = 2}, [1430] = {.lex_state = 7, .external_lex_state = 3}, [1431] = {.lex_state = 7, .external_lex_state = 3}, - [1432] = {.lex_state = 7, .external_lex_state = 2}, - [1433] = {.lex_state = 7, .external_lex_state = 2}, + [1432] = {.lex_state = 7, .external_lex_state = 3}, + [1433] = {.lex_state = 7, .external_lex_state = 3}, [1434] = {.lex_state = 7, .external_lex_state = 3}, [1435] = {.lex_state = 7, .external_lex_state = 3}, - [1436] = {.lex_state = 7, .external_lex_state = 3}, - [1437] = {.lex_state = 7, .external_lex_state = 3}, - [1438] = {.lex_state = 7, .external_lex_state = 3}, + [1436] = {.lex_state = 7, .external_lex_state = 2}, + [1437] = {.lex_state = 7, .external_lex_state = 2}, + [1438] = {.lex_state = 7, .external_lex_state = 2}, [1439] = {.lex_state = 7, .external_lex_state = 2}, [1440] = {.lex_state = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 3}, - [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 7, .external_lex_state = 3}, - [1444] = {.lex_state = 7, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, + [1441] = {.lex_state = 7, .external_lex_state = 2}, + [1442] = {.lex_state = 7, .external_lex_state = 2}, + [1443] = {.lex_state = 7, .external_lex_state = 2}, + [1444] = {.lex_state = 7, .external_lex_state = 2}, + [1445] = {.lex_state = 7, .external_lex_state = 2}, [1446] = {.lex_state = 7, .external_lex_state = 2}, [1447] = {.lex_state = 7, .external_lex_state = 2}, [1448] = {.lex_state = 7, .external_lex_state = 2}, - [1449] = {.lex_state = 7, .external_lex_state = 3}, + [1449] = {.lex_state = 7, .external_lex_state = 2}, [1450] = {.lex_state = 7, .external_lex_state = 2}, - [1451] = {.lex_state = 7, .external_lex_state = 3}, + [1451] = {.lex_state = 7, .external_lex_state = 2}, [1452] = {.lex_state = 7, .external_lex_state = 2}, [1453] = {.lex_state = 7, .external_lex_state = 3}, [1454] = {.lex_state = 7, .external_lex_state = 2}, - [1455] = {.lex_state = 7, .external_lex_state = 3}, + [1455] = {.lex_state = 7, .external_lex_state = 2}, [1456] = {.lex_state = 7, .external_lex_state = 2}, [1457] = {.lex_state = 7, .external_lex_state = 2}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 2}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, + [1458] = {.lex_state = 7, .external_lex_state = 2}, + [1459] = {.lex_state = 7, .external_lex_state = 3}, + [1460] = {.lex_state = 7, .external_lex_state = 2}, [1461] = {.lex_state = 7, .external_lex_state = 3}, - [1462] = {.lex_state = 7, .external_lex_state = 2}, - [1463] = {.lex_state = 7, .external_lex_state = 2}, - [1464] = {.lex_state = 7, .external_lex_state = 2}, + [1462] = {.lex_state = 7, .external_lex_state = 3}, + [1463] = {.lex_state = 7, .external_lex_state = 3}, + [1464] = {.lex_state = 7, .external_lex_state = 3}, [1465] = {.lex_state = 7, .external_lex_state = 3}, - [1466] = {.lex_state = 7, .external_lex_state = 2}, - [1467] = {.lex_state = 7, .external_lex_state = 2}, + [1466] = {.lex_state = 7, .external_lex_state = 3}, + [1467] = {.lex_state = 7, .external_lex_state = 3}, [1468] = {.lex_state = 7, .external_lex_state = 3}, - [1469] = {.lex_state = 7, .external_lex_state = 2}, - [1470] = {.lex_state = 7, .external_lex_state = 2}, + [1469] = {.lex_state = 7, .external_lex_state = 3}, + [1470] = {.lex_state = 7, .external_lex_state = 3}, [1471] = {.lex_state = 7, .external_lex_state = 3}, - [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 7, .external_lex_state = 2}, + [1472] = {.lex_state = 7, .external_lex_state = 2}, + [1473] = {.lex_state = 7, .external_lex_state = 3}, [1474] = {.lex_state = 7, .external_lex_state = 3}, [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 2}, - [1477] = {.lex_state = 7, .external_lex_state = 2}, + [1476] = {.lex_state = 7, .external_lex_state = 3}, + [1477] = {.lex_state = 7, .external_lex_state = 3}, [1478] = {.lex_state = 7, .external_lex_state = 3}, [1479] = {.lex_state = 7, .external_lex_state = 3}, [1480] = {.lex_state = 7, .external_lex_state = 3}, [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 7, .external_lex_state = 2}, - [1483] = {.lex_state = 7, .external_lex_state = 2}, + [1482] = {.lex_state = 7, .external_lex_state = 3}, + [1483] = {.lex_state = 7, .external_lex_state = 3}, [1484] = {.lex_state = 7, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 2}, + [1485] = {.lex_state = 7, .external_lex_state = 3}, [1486] = {.lex_state = 7, .external_lex_state = 2}, [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 2}, + [1488] = {.lex_state = 7, .external_lex_state = 3}, [1489] = {.lex_state = 7, .external_lex_state = 3}, [1490] = {.lex_state = 7, .external_lex_state = 3}, [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 2}, - [1493] = {.lex_state = 7, .external_lex_state = 2}, - [1494] = {.lex_state = 7, .external_lex_state = 2}, - [1495] = {.lex_state = 7, .external_lex_state = 2}, + [1492] = {.lex_state = 7, .external_lex_state = 3}, + [1493] = {.lex_state = 7, .external_lex_state = 3}, + [1494] = {.lex_state = 7, .external_lex_state = 3}, + [1495] = {.lex_state = 7, .external_lex_state = 3}, [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 2}, - [1498] = {.lex_state = 7, .external_lex_state = 2}, + [1497] = {.lex_state = 7, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, [1499] = {.lex_state = 7, .external_lex_state = 2}, [1500] = {.lex_state = 7, .external_lex_state = 2}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, + [1501] = {.lex_state = 7, .external_lex_state = 2}, [1502] = {.lex_state = 7, .external_lex_state = 2}, [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 2}, - [1505] = {.lex_state = 7, .external_lex_state = 2}, - [1506] = {.lex_state = 7, .external_lex_state = 2}, + [1504] = {.lex_state = 7, .external_lex_state = 3}, + [1505] = {.lex_state = 7, .external_lex_state = 3}, + [1506] = {.lex_state = 7, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, + [1508] = {.lex_state = 7, .external_lex_state = 2}, [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 2}, - [1511] = {.lex_state = 7, .external_lex_state = 2}, - [1512] = {.lex_state = 13}, + [1510] = {.lex_state = 7, .external_lex_state = 3}, + [1511] = {.lex_state = 7, .external_lex_state = 3}, + [1512] = {.lex_state = 7, .external_lex_state = 2}, [1513] = {.lex_state = 7, .external_lex_state = 3}, [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 2}, + [1515] = {.lex_state = 7, .external_lex_state = 3}, [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, + [1517] = {.lex_state = 7, .external_lex_state = 2}, [1518] = {.lex_state = 7, .external_lex_state = 3}, [1519] = {.lex_state = 7, .external_lex_state = 2}, - [1520] = {.lex_state = 7, .external_lex_state = 2}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, + [1520] = {.lex_state = 7, .external_lex_state = 3}, + [1521] = {.lex_state = 7, .external_lex_state = 2}, [1522] = {.lex_state = 7, .external_lex_state = 2}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, + [1523] = {.lex_state = 7, .external_lex_state = 2}, [1524] = {.lex_state = 7, .external_lex_state = 2}, [1525] = {.lex_state = 7, .external_lex_state = 2}, - [1526] = {.lex_state = 13}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, + [1526] = {.lex_state = 7, .external_lex_state = 2}, + [1527] = {.lex_state = 7, .external_lex_state = 2}, [1528] = {.lex_state = 7, .external_lex_state = 2}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1529] = {.lex_state = 7, .external_lex_state = 2}, [1530] = {.lex_state = 7, .external_lex_state = 2}, [1531] = {.lex_state = 7, .external_lex_state = 2}, [1532] = {.lex_state = 7, .external_lex_state = 2}, [1533] = {.lex_state = 7, .external_lex_state = 2}, [1534] = {.lex_state = 7, .external_lex_state = 2}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 7, .external_lex_state = 2}, + [1536] = {.lex_state = 7, .external_lex_state = 2}, [1537] = {.lex_state = 7, .external_lex_state = 2}, [1538] = {.lex_state = 7, .external_lex_state = 2}, [1539] = {.lex_state = 7, .external_lex_state = 2}, [1540] = {.lex_state = 7, .external_lex_state = 2}, - [1541] = {.lex_state = 13}, - [1542] = {.lex_state = 7, .external_lex_state = 2}, - [1543] = {.lex_state = 7, .external_lex_state = 2}, + [1541] = {.lex_state = 7, .external_lex_state = 2}, + [1542] = {.lex_state = 13}, + [1543] = {.lex_state = 7, .external_lex_state = 3}, [1544] = {.lex_state = 7, .external_lex_state = 2}, [1545] = {.lex_state = 7, .external_lex_state = 2}, - [1546] = {.lex_state = 13}, - [1547] = {.lex_state = 13}, - [1548] = {.lex_state = 7, .external_lex_state = 2}, - [1549] = {.lex_state = 7, .external_lex_state = 2}, + [1546] = {.lex_state = 7, .external_lex_state = 3}, + [1547] = {.lex_state = 7, .external_lex_state = 2}, + [1548] = {.lex_state = 7, .external_lex_state = 3}, + [1549] = {.lex_state = 7, .external_lex_state = 3}, [1550] = {.lex_state = 7, .external_lex_state = 2}, [1551] = {.lex_state = 7, .external_lex_state = 2}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 13}, - [1554] = {.lex_state = 7, .external_lex_state = 2}, + [1552] = {.lex_state = 7, .external_lex_state = 2}, + [1553] = {.lex_state = 7, .external_lex_state = 3}, + [1554] = {.lex_state = 7, .external_lex_state = 3}, [1555] = {.lex_state = 7, .external_lex_state = 2}, [1556] = {.lex_state = 7, .external_lex_state = 2}, - [1557] = {.lex_state = 7, .external_lex_state = 2}, + [1557] = {.lex_state = 7, .external_lex_state = 3}, [1558] = {.lex_state = 13}, [1559] = {.lex_state = 13}, [1560] = {.lex_state = 7, .external_lex_state = 2}, - [1561] = {.lex_state = 7, .external_lex_state = 2}, + [1561] = {.lex_state = 7, .external_lex_state = 3}, [1562] = {.lex_state = 7, .external_lex_state = 2}, [1563] = {.lex_state = 7, .external_lex_state = 2}, - [1564] = {.lex_state = 7, .external_lex_state = 2}, + [1564] = {.lex_state = 13}, [1565] = {.lex_state = 7, .external_lex_state = 2}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 2}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 2}, - [1570] = {.lex_state = 13}, + [1566] = {.lex_state = 7, .external_lex_state = 2}, + [1567] = {.lex_state = 7, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 2}, + [1569] = {.lex_state = 13}, + [1570] = {.lex_state = 7, .external_lex_state = 2}, [1571] = {.lex_state = 7, .external_lex_state = 2}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, + [1572] = {.lex_state = 13}, [1573] = {.lex_state = 7, .external_lex_state = 2}, [1574] = {.lex_state = 7, .external_lex_state = 2}, - [1575] = {.lex_state = 7, .external_lex_state = 2}, - [1576] = {.lex_state = 7, .external_lex_state = 2}, - [1577] = {.lex_state = 7, .external_lex_state = 2}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, + [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 7, .external_lex_state = 3}, + [1577] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .external_lex_state = 2}, + [1579] = {.lex_state = 13}, [1580] = {.lex_state = 7, .external_lex_state = 2}, [1581] = {.lex_state = 7, .external_lex_state = 2}, [1582] = {.lex_state = 7, .external_lex_state = 2}, - [1583] = {.lex_state = 7, .external_lex_state = 2}, - [1584] = {.lex_state = 13}, - [1585] = {.lex_state = 13}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1584] = {.lex_state = 7, .external_lex_state = 2}, + [1585] = {.lex_state = 7, .external_lex_state = 3}, [1586] = {.lex_state = 7, .external_lex_state = 2}, - [1587] = {.lex_state = 7, .external_lex_state = 2}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 2}, - [1590] = {.lex_state = 7, .external_lex_state = 2}, - [1591] = {.lex_state = 7, .external_lex_state = 2}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 2}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, + [1587] = {.lex_state = 13}, + [1588] = {.lex_state = 7, .external_lex_state = 2}, + [1589] = {.lex_state = 13}, + [1590] = {.lex_state = 13}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, + [1592] = {.lex_state = 7, .external_lex_state = 2}, + [1593] = {.lex_state = 7, .external_lex_state = 3}, + [1594] = {.lex_state = 13}, [1595] = {.lex_state = 7, .external_lex_state = 3}, [1596] = {.lex_state = 7, .external_lex_state = 2}, - [1597] = {.lex_state = 7, .external_lex_state = 2}, + [1597] = {.lex_state = 7, .external_lex_state = 3}, [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1599] = {.lex_state = 7, .external_lex_state = 2}, [1600] = {.lex_state = 7, .external_lex_state = 3}, [1601] = {.lex_state = 7, .external_lex_state = 2}, [1602] = {.lex_state = 7, .external_lex_state = 2}, [1603] = {.lex_state = 7, .external_lex_state = 2}, - [1604] = {.lex_state = 7, .external_lex_state = 2}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, + [1604] = {.lex_state = 7, .external_lex_state = 3}, + [1605] = {.lex_state = 7, .external_lex_state = 2}, [1606] = {.lex_state = 7, .external_lex_state = 2}, [1607] = {.lex_state = 7, .external_lex_state = 2}, [1608] = {.lex_state = 7, .external_lex_state = 3}, [1609] = {.lex_state = 7, .external_lex_state = 3}, [1610] = {.lex_state = 7, .external_lex_state = 3}, [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 2}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 8, .external_lex_state = 2}, [1614] = {.lex_state = 7, .external_lex_state = 2}, - [1615] = {.lex_state = 13, .external_lex_state = 4}, + [1615] = {.lex_state = 7, .external_lex_state = 3}, [1616] = {.lex_state = 7, .external_lex_state = 2}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 2}, + [1617] = {.lex_state = 7, .external_lex_state = 2}, + [1618] = {.lex_state = 7, .external_lex_state = 2}, + [1619] = {.lex_state = 13, .external_lex_state = 4}, [1620] = {.lex_state = 7, .external_lex_state = 2}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, + [1621] = {.lex_state = 7, .external_lex_state = 2}, + [1622] = {.lex_state = 7, .external_lex_state = 2}, + [1623] = {.lex_state = 13, .external_lex_state = 4}, + [1624] = {.lex_state = 7, .external_lex_state = 2}, + [1625] = {.lex_state = 7, .external_lex_state = 2}, [1626] = {.lex_state = 7, .external_lex_state = 3}, [1627] = {.lex_state = 7, .external_lex_state = 3}, [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, + [1631] = {.lex_state = 7, .external_lex_state = 2}, [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 2}, + [1633] = {.lex_state = 7, .external_lex_state = 2}, + [1634] = {.lex_state = 7, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 2}, [1637] = {.lex_state = 7, .external_lex_state = 3}, @@ -12878,25 +12917,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1642] = {.lex_state = 7, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, + [1645] = {.lex_state = 7, .external_lex_state = 2}, [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, + [1647] = {.lex_state = 7, .external_lex_state = 2}, [1648] = {.lex_state = 7, .external_lex_state = 3}, [1649] = {.lex_state = 7, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, [1652] = {.lex_state = 7, .external_lex_state = 3}, [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, + [1654] = {.lex_state = 7, .external_lex_state = 2}, + [1655] = {.lex_state = 13, .external_lex_state = 4}, [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, + [1657] = {.lex_state = 7, .external_lex_state = 2}, + [1658] = {.lex_state = 7, .external_lex_state = 2}, + [1659] = {.lex_state = 7, .external_lex_state = 2}, + [1660] = {.lex_state = 7, .external_lex_state = 2}, + [1661] = {.lex_state = 7, .external_lex_state = 2}, + [1662] = {.lex_state = 7, .external_lex_state = 2}, + [1663] = {.lex_state = 7, .external_lex_state = 2}, [1664] = {.lex_state = 7, .external_lex_state = 3}, [1665] = {.lex_state = 7, .external_lex_state = 3}, [1666] = {.lex_state = 7, .external_lex_state = 3}, @@ -12907,7 +12946,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1671] = {.lex_state = 7, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 2}, + [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, [1677] = {.lex_state = 7, .external_lex_state = 3}, @@ -12916,270 +12955,270 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1680] = {.lex_state = 7, .external_lex_state = 3}, [1681] = {.lex_state = 7, .external_lex_state = 3}, [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, + [1683] = {.lex_state = 7, .external_lex_state = 2}, [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, + [1685] = {.lex_state = 7, .external_lex_state = 2}, + [1686] = {.lex_state = 7, .external_lex_state = 2}, [1687] = {.lex_state = 7, .external_lex_state = 3}, [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 13, .external_lex_state = 4}, + [1689] = {.lex_state = 7, .external_lex_state = 3}, [1690] = {.lex_state = 7, .external_lex_state = 3}, [1691] = {.lex_state = 7, .external_lex_state = 3}, [1692] = {.lex_state = 7, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, [1694] = {.lex_state = 7, .external_lex_state = 3}, [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 2}, [1697] = {.lex_state = 7, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 2}, - [1700] = {.lex_state = 7, .external_lex_state = 2}, - [1701] = {.lex_state = 7, .external_lex_state = 2}, - [1702] = {.lex_state = 7, .external_lex_state = 2}, - [1703] = {.lex_state = 13, .external_lex_state = 4}, + [1699] = {.lex_state = 7, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .external_lex_state = 3}, + [1701] = {.lex_state = 7, .external_lex_state = 3}, + [1702] = {.lex_state = 7, .external_lex_state = 3}, + [1703] = {.lex_state = 7, .external_lex_state = 3}, [1704] = {.lex_state = 7, .external_lex_state = 3}, [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 2}, + [1706] = {.lex_state = 7, .external_lex_state = 3}, [1707] = {.lex_state = 7, .external_lex_state = 3}, [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 8, .external_lex_state = 2}, + [1709] = {.lex_state = 7, .external_lex_state = 3}, [1710] = {.lex_state = 7, .external_lex_state = 3}, [1711] = {.lex_state = 7, .external_lex_state = 3}, [1712] = {.lex_state = 7, .external_lex_state = 3}, [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 7, .external_lex_state = 2}, + [1715] = {.lex_state = 7, .external_lex_state = 2}, [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1717] = {.lex_state = 7, .external_lex_state = 2}, [1718] = {.lex_state = 7, .external_lex_state = 2}, [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 2}, [1721] = {.lex_state = 7, .external_lex_state = 3}, [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 2}, + [1723] = {.lex_state = 7, .external_lex_state = 2}, + [1724] = {.lex_state = 7, .external_lex_state = 2}, + [1725] = {.lex_state = 7, .external_lex_state = 2}, + [1726] = {.lex_state = 7, .external_lex_state = 3}, [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 2}, - [1729] = {.lex_state = 7, .external_lex_state = 2}, - [1730] = {.lex_state = 7, .external_lex_state = 3}, - [1731] = {.lex_state = 13, .external_lex_state = 4}, - [1732] = {.lex_state = 7, .external_lex_state = 2}, + [1728] = {.lex_state = 7, .external_lex_state = 3}, + [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1730] = {.lex_state = 7, .external_lex_state = 2}, + [1731] = {.lex_state = 7, .external_lex_state = 3}, + [1732] = {.lex_state = 7, .external_lex_state = 3}, [1733] = {.lex_state = 7, .external_lex_state = 3}, [1734] = {.lex_state = 7, .external_lex_state = 3}, [1735] = {.lex_state = 7, .external_lex_state = 3}, - [1736] = {.lex_state = 7, .external_lex_state = 2}, + [1736] = {.lex_state = 7, .external_lex_state = 3}, [1737] = {.lex_state = 7, .external_lex_state = 3}, - [1738] = {.lex_state = 7, .external_lex_state = 2}, - [1739] = {.lex_state = 7, .external_lex_state = 2}, - [1740] = {.lex_state = 7, .external_lex_state = 2}, + [1738] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 7, .external_lex_state = 3}, + [1740] = {.lex_state = 7, .external_lex_state = 3}, [1741] = {.lex_state = 7, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 2}, - [1743] = {.lex_state = 7, .external_lex_state = 2}, + [1742] = {.lex_state = 7, .external_lex_state = 3}, + [1743] = {.lex_state = 7, .external_lex_state = 3}, [1744] = {.lex_state = 7, .external_lex_state = 2}, [1745] = {.lex_state = 7, .external_lex_state = 3}, [1746] = {.lex_state = 7, .external_lex_state = 3}, [1747] = {.lex_state = 7, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 2}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, [1749] = {.lex_state = 7, .external_lex_state = 3}, [1750] = {.lex_state = 7, .external_lex_state = 3}, [1751] = {.lex_state = 7, .external_lex_state = 3}, [1752] = {.lex_state = 7, .external_lex_state = 3}, [1753] = {.lex_state = 7, .external_lex_state = 2}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, + [1754] = {.lex_state = 13, .external_lex_state = 4}, [1755] = {.lex_state = 7, .external_lex_state = 3}, [1756] = {.lex_state = 7, .external_lex_state = 2}, [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 2}, - [1759] = {.lex_state = 7, .external_lex_state = 2}, + [1758] = {.lex_state = 7, .external_lex_state = 3}, + [1759] = {.lex_state = 7, .external_lex_state = 3}, [1760] = {.lex_state = 7, .external_lex_state = 2}, - [1761] = {.lex_state = 7, .external_lex_state = 2}, + [1761] = {.lex_state = 7, .external_lex_state = 3}, [1762] = {.lex_state = 7, .external_lex_state = 2}, - [1763] = {.lex_state = 7, .external_lex_state = 2}, - [1764] = {.lex_state = 7, .external_lex_state = 2}, + [1763] = {.lex_state = 7, .external_lex_state = 3}, + [1764] = {.lex_state = 13, .external_lex_state = 4}, [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 7, .external_lex_state = 2}, - [1768] = {.lex_state = 7, .external_lex_state = 2}, + [1766] = {.lex_state = 7, .external_lex_state = 2}, + [1767] = {.lex_state = 7, .external_lex_state = 3}, + [1768] = {.lex_state = 7, .external_lex_state = 3}, [1769] = {.lex_state = 7, .external_lex_state = 3}, - [1770] = {.lex_state = 7, .external_lex_state = 2}, + [1770] = {.lex_state = 7, .external_lex_state = 3}, [1771] = {.lex_state = 7, .external_lex_state = 3}, - [1772] = {.lex_state = 7, .external_lex_state = 2}, + [1772] = {.lex_state = 7, .external_lex_state = 3}, [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 7, .external_lex_state = 2}, - [1775] = {.lex_state = 7, .external_lex_state = 2}, - [1776] = {.lex_state = 7, .external_lex_state = 2}, - [1777] = {.lex_state = 7, .external_lex_state = 2}, + [1774] = {.lex_state = 7, .external_lex_state = 3}, + [1775] = {.lex_state = 7, .external_lex_state = 3}, + [1776] = {.lex_state = 7, .external_lex_state = 3}, + [1777] = {.lex_state = 7, .external_lex_state = 3}, [1778] = {.lex_state = 7, .external_lex_state = 3}, - [1779] = {.lex_state = 13, .external_lex_state = 4}, + [1779] = {.lex_state = 7, .external_lex_state = 3}, [1780] = {.lex_state = 7, .external_lex_state = 3}, [1781] = {.lex_state = 7, .external_lex_state = 2}, [1782] = {.lex_state = 7, .external_lex_state = 2}, - [1783] = {.lex_state = 7, .external_lex_state = 3}, - [1784] = {.lex_state = 7, .external_lex_state = 2}, - [1785] = {.lex_state = 7, .external_lex_state = 3}, + [1783] = {.lex_state = 7, .external_lex_state = 2}, + [1784] = {.lex_state = 7, .external_lex_state = 3}, + [1785] = {.lex_state = 7, .external_lex_state = 2}, [1786] = {.lex_state = 7, .external_lex_state = 3}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, + [1787] = {.lex_state = 7, .external_lex_state = 2}, [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 7, .external_lex_state = 3}, + [1789] = {.lex_state = 7, .external_lex_state = 2}, [1790] = {.lex_state = 7, .external_lex_state = 3}, - [1791] = {.lex_state = 7, .external_lex_state = 3}, - [1792] = {.lex_state = 7, .external_lex_state = 2}, + [1791] = {.lex_state = 7, .external_lex_state = 2}, + [1792] = {.lex_state = 7, .external_lex_state = 3}, [1793] = {.lex_state = 7, .external_lex_state = 3}, [1794] = {.lex_state = 7, .external_lex_state = 2}, [1795] = {.lex_state = 7, .external_lex_state = 2}, [1796] = {.lex_state = 7, .external_lex_state = 3}, [1797] = {.lex_state = 7, .external_lex_state = 3}, [1798] = {.lex_state = 7, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, + [1799] = {.lex_state = 7, .external_lex_state = 2}, [1800] = {.lex_state = 7, .external_lex_state = 2}, - [1801] = {.lex_state = 7, .external_lex_state = 2}, + [1801] = {.lex_state = 7, .external_lex_state = 3}, [1802] = {.lex_state = 7, .external_lex_state = 3}, [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 7, .external_lex_state = 2}, - [1805] = {.lex_state = 7, .external_lex_state = 3}, - [1806] = {.lex_state = 7, .external_lex_state = 3}, + [1804] = {.lex_state = 7, .external_lex_state = 3}, + [1805] = {.lex_state = 7, .external_lex_state = 2}, + [1806] = {.lex_state = 7, .external_lex_state = 2}, [1807] = {.lex_state = 7, .external_lex_state = 3}, - [1808] = {.lex_state = 7, .external_lex_state = 3}, + [1808] = {.lex_state = 13, .external_lex_state = 4}, [1809] = {.lex_state = 7, .external_lex_state = 3}, [1810] = {.lex_state = 7, .external_lex_state = 2}, - [1811] = {.lex_state = 7, .external_lex_state = 3}, - [1812] = {.lex_state = 7, .external_lex_state = 2}, + [1811] = {.lex_state = 7, .external_lex_state = 2}, + [1812] = {.lex_state = 7, .external_lex_state = 3}, [1813] = {.lex_state = 7, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 2}, - [1815] = {.lex_state = 7, .external_lex_state = 2}, - [1816] = {.lex_state = 7, .external_lex_state = 2}, + [1814] = {.lex_state = 7, .external_lex_state = 3}, + [1815] = {.lex_state = 7, .external_lex_state = 3}, + [1816] = {.lex_state = 13, .external_lex_state = 4}, [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 3}, - [1819] = {.lex_state = 13, .external_lex_state = 4}, + [1818] = {.lex_state = 7, .external_lex_state = 2}, + [1819] = {.lex_state = 7, .external_lex_state = 3}, [1820] = {.lex_state = 7, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 2}, - [1822] = {.lex_state = 13, .external_lex_state = 4}, + [1821] = {.lex_state = 7, .external_lex_state = 3}, + [1822] = {.lex_state = 7, .external_lex_state = 2}, [1823] = {.lex_state = 7, .external_lex_state = 3}, - [1824] = {.lex_state = 7, .external_lex_state = 2}, + [1824] = {.lex_state = 7, .external_lex_state = 3}, [1825] = {.lex_state = 7, .external_lex_state = 2}, - [1826] = {.lex_state = 7, .external_lex_state = 2}, - [1827] = {.lex_state = 7, .external_lex_state = 2}, - [1828] = {.lex_state = 7, .external_lex_state = 2}, + [1826] = {.lex_state = 13, .external_lex_state = 4}, + [1827] = {.lex_state = 13, .external_lex_state = 4}, + [1828] = {.lex_state = 7, .external_lex_state = 3}, [1829] = {.lex_state = 7, .external_lex_state = 2}, - [1830] = {.lex_state = 13, .external_lex_state = 4}, - [1831] = {.lex_state = 7, .external_lex_state = 3}, - [1832] = {.lex_state = 7, .external_lex_state = 2}, - [1833] = {.lex_state = 13, .external_lex_state = 4}, + [1830] = {.lex_state = 7, .external_lex_state = 2}, + [1831] = {.lex_state = 7, .external_lex_state = 2}, + [1832] = {.lex_state = 7, .external_lex_state = 3}, + [1833] = {.lex_state = 7, .external_lex_state = 2}, [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 7, .external_lex_state = 2}, - [1836] = {.lex_state = 7, .external_lex_state = 3}, + [1835] = {.lex_state = 7, .external_lex_state = 3}, + [1836] = {.lex_state = 7, .external_lex_state = 2}, [1837] = {.lex_state = 7, .external_lex_state = 3}, [1838] = {.lex_state = 7, .external_lex_state = 2}, [1839] = {.lex_state = 7, .external_lex_state = 2}, - [1840] = {.lex_state = 7, .external_lex_state = 2}, - [1841] = {.lex_state = 7, .external_lex_state = 2}, + [1840] = {.lex_state = 7, .external_lex_state = 3}, + [1841] = {.lex_state = 7, .external_lex_state = 3}, [1842] = {.lex_state = 7, .external_lex_state = 3}, - [1843] = {.lex_state = 7, .external_lex_state = 2}, - [1844] = {.lex_state = 7, .external_lex_state = 2}, + [1843] = {.lex_state = 7, .external_lex_state = 3}, + [1844] = {.lex_state = 7, .external_lex_state = 3}, [1845] = {.lex_state = 7, .external_lex_state = 2}, - [1846] = {.lex_state = 7, .external_lex_state = 3}, + [1846] = {.lex_state = 7, .external_lex_state = 2}, [1847] = {.lex_state = 7, .external_lex_state = 2}, - [1848] = {.lex_state = 7, .external_lex_state = 3}, - [1849] = {.lex_state = 7, .external_lex_state = 2}, + [1848] = {.lex_state = 7, .external_lex_state = 2}, + [1849] = {.lex_state = 7, .external_lex_state = 3}, [1850] = {.lex_state = 7, .external_lex_state = 3}, [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 7, .external_lex_state = 2}, - [1853] = {.lex_state = 7, .external_lex_state = 2}, + [1852] = {.lex_state = 7, .external_lex_state = 3}, + [1853] = {.lex_state = 7, .external_lex_state = 3}, [1854] = {.lex_state = 7, .external_lex_state = 3}, [1855] = {.lex_state = 7, .external_lex_state = 3}, - [1856] = {.lex_state = 7, .external_lex_state = 2}, + [1856] = {.lex_state = 7, .external_lex_state = 3}, [1857] = {.lex_state = 7, .external_lex_state = 2}, - [1858] = {.lex_state = 7, .external_lex_state = 2}, + [1858] = {.lex_state = 7, .external_lex_state = 3}, [1859] = {.lex_state = 7, .external_lex_state = 3}, [1860] = {.lex_state = 7, .external_lex_state = 3}, - [1861] = {.lex_state = 7, .external_lex_state = 3}, - [1862] = {.lex_state = 7, .external_lex_state = 3}, + [1861] = {.lex_state = 7, .external_lex_state = 2}, + [1862] = {.lex_state = 7, .external_lex_state = 2}, [1863] = {.lex_state = 7, .external_lex_state = 2}, [1864] = {.lex_state = 7, .external_lex_state = 2}, [1865] = {.lex_state = 7, .external_lex_state = 2}, - [1866] = {.lex_state = 7, .external_lex_state = 3}, - [1867] = {.lex_state = 7, .external_lex_state = 2}, + [1866] = {.lex_state = 7, .external_lex_state = 2}, + [1867] = {.lex_state = 7, .external_lex_state = 3}, [1868] = {.lex_state = 7, .external_lex_state = 2}, - [1869] = {.lex_state = 7, .external_lex_state = 2}, - [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 7, .external_lex_state = 3}, + [1869] = {.lex_state = 7, .external_lex_state = 3}, + [1870] = {.lex_state = 7, .external_lex_state = 2}, + [1871] = {.lex_state = 12, .external_lex_state = 4}, [1872] = {.lex_state = 7, .external_lex_state = 3}, - [1873] = {.lex_state = 7, .external_lex_state = 2}, + [1873] = {.lex_state = 7, .external_lex_state = 3}, [1874] = {.lex_state = 7, .external_lex_state = 3}, [1875] = {.lex_state = 7, .external_lex_state = 3}, - [1876] = {.lex_state = 7, .external_lex_state = 2}, - [1877] = {.lex_state = 8, .external_lex_state = 3}, + [1876] = {.lex_state = 7, .external_lex_state = 3}, + [1877] = {.lex_state = 7, .external_lex_state = 3}, [1878] = {.lex_state = 7, .external_lex_state = 3}, [1879] = {.lex_state = 7, .external_lex_state = 2}, - [1880] = {.lex_state = 7, .external_lex_state = 3}, + [1880] = {.lex_state = 7, .external_lex_state = 2}, [1881] = {.lex_state = 7, .external_lex_state = 3}, - [1882] = {.lex_state = 7, .external_lex_state = 3}, + [1882] = {.lex_state = 7, .external_lex_state = 2}, [1883] = {.lex_state = 7, .external_lex_state = 2}, - [1884] = {.lex_state = 7, .external_lex_state = 2}, + [1884] = {.lex_state = 7, .external_lex_state = 3}, [1885] = {.lex_state = 7, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 2}, + [1886] = {.lex_state = 7, .external_lex_state = 3}, [1887] = {.lex_state = 7, .external_lex_state = 2}, [1888] = {.lex_state = 7, .external_lex_state = 2}, [1889] = {.lex_state = 7, .external_lex_state = 3}, - [1890] = {.lex_state = 7, .external_lex_state = 3}, - [1891] = {.lex_state = 7, .external_lex_state = 3}, - [1892] = {.lex_state = 7, .external_lex_state = 3}, - [1893] = {.lex_state = 7, .external_lex_state = 3}, + [1890] = {.lex_state = 7, .external_lex_state = 2}, + [1891] = {.lex_state = 8, .external_lex_state = 3}, + [1892] = {.lex_state = 7, .external_lex_state = 2}, + [1893] = {.lex_state = 7, .external_lex_state = 2}, [1894] = {.lex_state = 7, .external_lex_state = 2}, - [1895] = {.lex_state = 7, .external_lex_state = 2}, - [1896] = {.lex_state = 7, .external_lex_state = 3}, + [1895] = {.lex_state = 13, .external_lex_state = 4}, + [1896] = {.lex_state = 7, .external_lex_state = 2}, [1897] = {.lex_state = 7, .external_lex_state = 2}, - [1898] = {.lex_state = 7, .external_lex_state = 3}, - [1899] = {.lex_state = 7, .external_lex_state = 3}, - [1900] = {.lex_state = 13, .external_lex_state = 4}, + [1898] = {.lex_state = 7, .external_lex_state = 2}, + [1899] = {.lex_state = 13, .external_lex_state = 4}, + [1900] = {.lex_state = 7, .external_lex_state = 3}, [1901] = {.lex_state = 7, .external_lex_state = 3}, - [1902] = {.lex_state = 7, .external_lex_state = 2}, + [1902] = {.lex_state = 7, .external_lex_state = 3}, [1903] = {.lex_state = 13, .external_lex_state = 4}, [1904] = {.lex_state = 7, .external_lex_state = 3}, [1905] = {.lex_state = 7, .external_lex_state = 2}, - [1906] = {.lex_state = 7, .external_lex_state = 3}, - [1907] = {.lex_state = 7, .external_lex_state = 3}, - [1908] = {.lex_state = 7, .external_lex_state = 2}, - [1909] = {.lex_state = 13, .external_lex_state = 4}, - [1910] = {.lex_state = 13, .external_lex_state = 4}, - [1911] = {.lex_state = 7, .external_lex_state = 3}, + [1906] = {.lex_state = 7, .external_lex_state = 2}, + [1907] = {.lex_state = 7, .external_lex_state = 2}, + [1908] = {.lex_state = 13, .external_lex_state = 4}, + [1909] = {.lex_state = 7, .external_lex_state = 3}, + [1910] = {.lex_state = 7, .external_lex_state = 3}, + [1911] = {.lex_state = 7, .external_lex_state = 2}, [1912] = {.lex_state = 7, .external_lex_state = 3}, - [1913] = {.lex_state = 7, .external_lex_state = 2}, - [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 7, .external_lex_state = 3}, + [1913] = {.lex_state = 7, .external_lex_state = 3}, + [1914] = {.lex_state = 7, .external_lex_state = 2}, + [1915] = {.lex_state = 7, .external_lex_state = 2}, [1916] = {.lex_state = 7, .external_lex_state = 2}, - [1917] = {.lex_state = 8, .external_lex_state = 3}, - [1918] = {.lex_state = 7, .external_lex_state = 3}, - [1919] = {.lex_state = 7, .external_lex_state = 2}, - [1920] = {.lex_state = 7, .external_lex_state = 2}, - [1921] = {.lex_state = 7, .external_lex_state = 3}, - [1922] = {.lex_state = 7, .external_lex_state = 3}, + [1917] = {.lex_state = 7, .external_lex_state = 2}, + [1918] = {.lex_state = 7, .external_lex_state = 2}, + [1919] = {.lex_state = 7, .external_lex_state = 3}, + [1920] = {.lex_state = 7, .external_lex_state = 3}, + [1921] = {.lex_state = 7, .external_lex_state = 2}, + [1922] = {.lex_state = 7, .external_lex_state = 2}, [1923] = {.lex_state = 7, .external_lex_state = 2}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 3}, - [1926] = {.lex_state = 7, .external_lex_state = 3}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 7, .external_lex_state = 3}, + [1924] = {.lex_state = 7, .external_lex_state = 2}, + [1925] = {.lex_state = 13, .external_lex_state = 4}, + [1926] = {.lex_state = 7, .external_lex_state = 2}, + [1927] = {.lex_state = 7, .external_lex_state = 2}, + [1928] = {.lex_state = 7, .external_lex_state = 2}, [1929] = {.lex_state = 7, .external_lex_state = 3}, [1930] = {.lex_state = 7, .external_lex_state = 3}, - [1931] = {.lex_state = 7, .external_lex_state = 3}, + [1931] = {.lex_state = 7, .external_lex_state = 2}, [1932] = {.lex_state = 7, .external_lex_state = 3}, - [1933] = {.lex_state = 7, .external_lex_state = 2}, - [1934] = {.lex_state = 7, .external_lex_state = 2}, + [1933] = {.lex_state = 7, .external_lex_state = 3}, + [1934] = {.lex_state = 7, .external_lex_state = 3}, [1935] = {.lex_state = 7, .external_lex_state = 3}, - [1936] = {.lex_state = 7, .external_lex_state = 2}, - [1937] = {.lex_state = 13, .external_lex_state = 4}, - [1938] = {.lex_state = 12, .external_lex_state = 4}, - [1939] = {.lex_state = 13, .external_lex_state = 4}, + [1936] = {.lex_state = 7, .external_lex_state = 3}, + [1937] = {.lex_state = 7, .external_lex_state = 2}, + [1938] = {.lex_state = 7, .external_lex_state = 3}, + [1939] = {.lex_state = 7, .external_lex_state = 3}, [1940] = {.lex_state = 7, .external_lex_state = 3}, [1941] = {.lex_state = 7, .external_lex_state = 3}, - [1942] = {.lex_state = 7, .external_lex_state = 3}, + [1942] = {.lex_state = 7, .external_lex_state = 2}, [1943] = {.lex_state = 7, .external_lex_state = 3}, - [1944] = {.lex_state = 7, .external_lex_state = 2}, + [1944] = {.lex_state = 7, .external_lex_state = 3}, [1945] = {.lex_state = 7, .external_lex_state = 3}, - [1946] = {.lex_state = 7, .external_lex_state = 2}, + [1946] = {.lex_state = 7, .external_lex_state = 3}, [1947] = {.lex_state = 7, .external_lex_state = 3}, [1948] = {.lex_state = 7, .external_lex_state = 3}, [1949] = {.lex_state = 7, .external_lex_state = 2}, @@ -13187,210 +13226,210 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1951] = {.lex_state = 7, .external_lex_state = 3}, [1952] = {.lex_state = 7, .external_lex_state = 3}, [1953] = {.lex_state = 7, .external_lex_state = 3}, - [1954] = {.lex_state = 7, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, + [1954] = {.lex_state = 13, .external_lex_state = 4}, + [1955] = {.lex_state = 7, .external_lex_state = 2}, [1956] = {.lex_state = 7, .external_lex_state = 2}, - [1957] = {.lex_state = 7, .external_lex_state = 3}, + [1957] = {.lex_state = 7, .external_lex_state = 2}, [1958] = {.lex_state = 7, .external_lex_state = 3}, - [1959] = {.lex_state = 7, .external_lex_state = 2}, - [1960] = {.lex_state = 7, .external_lex_state = 3}, - [1961] = {.lex_state = 7, .external_lex_state = 2}, + [1959] = {.lex_state = 7, .external_lex_state = 3}, + [1960] = {.lex_state = 8, .external_lex_state = 3}, + [1961] = {.lex_state = 7, .external_lex_state = 3}, [1962] = {.lex_state = 7, .external_lex_state = 3}, - [1963] = {.lex_state = 7, .external_lex_state = 2}, - [1964] = {.lex_state = 7, .external_lex_state = 2}, - [1965] = {.lex_state = 7, .external_lex_state = 2}, - [1966] = {.lex_state = 7, .external_lex_state = 2}, - [1967] = {.lex_state = 7, .external_lex_state = 3}, - [1968] = {.lex_state = 7, .external_lex_state = 2}, - [1969] = {.lex_state = 7, .external_lex_state = 2}, + [1963] = {.lex_state = 7, .external_lex_state = 3}, + [1964] = {.lex_state = 7, .external_lex_state = 3}, + [1965] = {.lex_state = 7, .external_lex_state = 3}, + [1966] = {.lex_state = 7, .external_lex_state = 3}, + [1967] = {.lex_state = 7, .external_lex_state = 2}, + [1968] = {.lex_state = 7, .external_lex_state = 3}, + [1969] = {.lex_state = 7, .external_lex_state = 3}, [1970] = {.lex_state = 7, .external_lex_state = 2}, [1971] = {.lex_state = 7, .external_lex_state = 2}, [1972] = {.lex_state = 7, .external_lex_state = 2}, - [1973] = {.lex_state = 7, .external_lex_state = 3}, - [1974] = {.lex_state = 7, .external_lex_state = 2}, - [1975] = {.lex_state = 7, .external_lex_state = 2}, - [1976] = {.lex_state = 7, .external_lex_state = 2}, - [1977] = {.lex_state = 7, .external_lex_state = 2}, + [1973] = {.lex_state = 7, .external_lex_state = 2}, + [1974] = {.lex_state = 13, .external_lex_state = 4}, + [1975] = {.lex_state = 13, .external_lex_state = 4}, + [1976] = {.lex_state = 8, .external_lex_state = 2}, + [1977] = {.lex_state = 7, .external_lex_state = 3}, [1978] = {.lex_state = 7, .external_lex_state = 2}, [1979] = {.lex_state = 7, .external_lex_state = 2}, [1980] = {.lex_state = 7, .external_lex_state = 2}, [1981] = {.lex_state = 7, .external_lex_state = 2}, - [1982] = {.lex_state = 7, .external_lex_state = 2}, + [1982] = {.lex_state = 13, .external_lex_state = 4}, [1983] = {.lex_state = 7, .external_lex_state = 2}, - [1984] = {.lex_state = 7, .external_lex_state = 2}, - [1985] = {.lex_state = 7, .external_lex_state = 2}, + [1984] = {.lex_state = 13, .external_lex_state = 4}, + [1985] = {.lex_state = 7, .external_lex_state = 3}, [1986] = {.lex_state = 13, .external_lex_state = 4}, - [1987] = {.lex_state = 7, .external_lex_state = 2}, + [1987] = {.lex_state = 13, .external_lex_state = 4}, [1988] = {.lex_state = 7, .external_lex_state = 2}, [1989] = {.lex_state = 7, .external_lex_state = 2}, [1990] = {.lex_state = 7, .external_lex_state = 2}, - [1991] = {.lex_state = 7, .external_lex_state = 2}, - [1992] = {.lex_state = 13, .external_lex_state = 4}, + [1991] = {.lex_state = 7, .external_lex_state = 3}, + [1992] = {.lex_state = 7, .external_lex_state = 2}, [1993] = {.lex_state = 7, .external_lex_state = 2}, - [1994] = {.lex_state = 8, .external_lex_state = 2}, + [1994] = {.lex_state = 7, .external_lex_state = 2}, [1995] = {.lex_state = 7, .external_lex_state = 2}, - [1996] = {.lex_state = 13, .external_lex_state = 4}, + [1996] = {.lex_state = 7, .external_lex_state = 2}, [1997] = {.lex_state = 7, .external_lex_state = 2}, - [1998] = {.lex_state = 7, .external_lex_state = 2}, + [1998] = {.lex_state = 13, .external_lex_state = 4}, [1999] = {.lex_state = 7, .external_lex_state = 2}, - [2000] = {.lex_state = 13, .external_lex_state = 4}, - [2001] = {.lex_state = 13, .external_lex_state = 4}, - [2002] = {.lex_state = 13, .external_lex_state = 4}, + [2000] = {.lex_state = 7, .external_lex_state = 2}, + [2001] = {.lex_state = 7, .external_lex_state = 2}, + [2002] = {.lex_state = 7, .external_lex_state = 2}, [2003] = {.lex_state = 7, .external_lex_state = 2}, [2004] = {.lex_state = 7, .external_lex_state = 2}, [2005] = {.lex_state = 7, .external_lex_state = 2}, [2006] = {.lex_state = 7, .external_lex_state = 2}, [2007] = {.lex_state = 7, .external_lex_state = 2}, - [2008] = {.lex_state = 7, .external_lex_state = 3}, - [2009] = {.lex_state = 13, .external_lex_state = 4}, + [2008] = {.lex_state = 7, .external_lex_state = 2}, + [2009] = {.lex_state = 7, .external_lex_state = 2}, [2010] = {.lex_state = 7, .external_lex_state = 2}, [2011] = {.lex_state = 7, .external_lex_state = 2}, [2012] = {.lex_state = 7, .external_lex_state = 2}, [2013] = {.lex_state = 7, .external_lex_state = 2}, - [2014] = {.lex_state = 13, .external_lex_state = 4}, + [2014] = {.lex_state = 7, .external_lex_state = 2}, [2015] = {.lex_state = 7, .external_lex_state = 2}, - [2016] = {.lex_state = 13}, + [2016] = {.lex_state = 7, .external_lex_state = 2}, [2017] = {.lex_state = 7, .external_lex_state = 2}, - [2018] = {.lex_state = 13, .external_lex_state = 4}, + [2018] = {.lex_state = 7, .external_lex_state = 2}, [2019] = {.lex_state = 7, .external_lex_state = 2}, [2020] = {.lex_state = 7, .external_lex_state = 2}, - [2021] = {.lex_state = 96}, - [2022] = {.lex_state = 13, .external_lex_state = 4}, - [2023] = {.lex_state = 13, .external_lex_state = 4}, - [2024] = {.lex_state = 7, .external_lex_state = 2}, - [2025] = {.lex_state = 96}, - [2026] = {.lex_state = 7, .external_lex_state = 2}, + [2021] = {.lex_state = 7, .external_lex_state = 2}, + [2022] = {.lex_state = 7, .external_lex_state = 2}, + [2023] = {.lex_state = 13}, + [2024] = {.lex_state = 96}, + [2025] = {.lex_state = 13}, + [2026] = {.lex_state = 7, .external_lex_state = 3}, [2027] = {.lex_state = 7, .external_lex_state = 2}, - [2028] = {.lex_state = 13}, + [2028] = {.lex_state = 7, .external_lex_state = 2}, [2029] = {.lex_state = 7, .external_lex_state = 2}, [2030] = {.lex_state = 13}, - [2031] = {.lex_state = 7, .external_lex_state = 2}, + [2031] = {.lex_state = 13, .external_lex_state = 4}, [2032] = {.lex_state = 7, .external_lex_state = 2}, [2033] = {.lex_state = 13, .external_lex_state = 4}, [2034] = {.lex_state = 7, .external_lex_state = 2}, - [2035] = {.lex_state = 13}, + [2035] = {.lex_state = 13, .external_lex_state = 4}, [2036] = {.lex_state = 13, .external_lex_state = 4}, - [2037] = {.lex_state = 7, .external_lex_state = 3}, - [2038] = {.lex_state = 7, .external_lex_state = 2}, - [2039] = {.lex_state = 13}, - [2040] = {.lex_state = 13}, + [2037] = {.lex_state = 7, .external_lex_state = 2}, + [2038] = {.lex_state = 13}, + [2039] = {.lex_state = 7, .external_lex_state = 2}, + [2040] = {.lex_state = 7, .external_lex_state = 2}, [2041] = {.lex_state = 7, .external_lex_state = 2}, - [2042] = {.lex_state = 7, .external_lex_state = 3}, - [2043] = {.lex_state = 7, .external_lex_state = 3}, - [2044] = {.lex_state = 7, .external_lex_state = 2}, + [2042] = {.lex_state = 7, .external_lex_state = 2}, + [2043] = {.lex_state = 13, .external_lex_state = 4}, + [2044] = {.lex_state = 13, .external_lex_state = 4}, [2045] = {.lex_state = 7, .external_lex_state = 2}, - [2046] = {.lex_state = 13}, - [2047] = {.lex_state = 7, .external_lex_state = 2}, + [2046] = {.lex_state = 7, .external_lex_state = 2}, + [2047] = {.lex_state = 7, .external_lex_state = 3}, [2048] = {.lex_state = 7, .external_lex_state = 2}, - [2049] = {.lex_state = 7, .external_lex_state = 2}, - [2050] = {.lex_state = 13, .external_lex_state = 4}, + [2049] = {.lex_state = 13, .external_lex_state = 4}, + [2050] = {.lex_state = 7, .external_lex_state = 2}, [2051] = {.lex_state = 13, .external_lex_state = 4}, - [2052] = {.lex_state = 13, .external_lex_state = 4}, - [2053] = {.lex_state = 96}, - [2054] = {.lex_state = 13, .external_lex_state = 4}, - [2055] = {.lex_state = 13}, - [2056] = {.lex_state = 13, .external_lex_state = 4}, - [2057] = {.lex_state = 13, .external_lex_state = 4}, - [2058] = {.lex_state = 13, .external_lex_state = 4}, - [2059] = {.lex_state = 7, .external_lex_state = 2}, - [2060] = {.lex_state = 8, .external_lex_state = 2}, - [2061] = {.lex_state = 7, .external_lex_state = 2}, - [2062] = {.lex_state = 13, .external_lex_state = 4}, - [2063] = {.lex_state = 13, .external_lex_state = 4}, - [2064] = {.lex_state = 13}, - [2065] = {.lex_state = 7, .external_lex_state = 2}, - [2066] = {.lex_state = 13}, - [2067] = {.lex_state = 13}, + [2052] = {.lex_state = 7, .external_lex_state = 2}, + [2053] = {.lex_state = 7, .external_lex_state = 3}, + [2054] = {.lex_state = 7, .external_lex_state = 2}, + [2055] = {.lex_state = 96}, + [2056] = {.lex_state = 7, .external_lex_state = 2}, + [2057] = {.lex_state = 7, .external_lex_state = 2}, + [2058] = {.lex_state = 7, .external_lex_state = 2}, + [2059] = {.lex_state = 13}, + [2060] = {.lex_state = 13}, + [2061] = {.lex_state = 13}, + [2062] = {.lex_state = 13}, + [2063] = {.lex_state = 96}, + [2064] = {.lex_state = 13, .external_lex_state = 4}, + [2065] = {.lex_state = 8, .external_lex_state = 2}, + [2066] = {.lex_state = 13, .external_lex_state = 4}, + [2067] = {.lex_state = 13, .external_lex_state = 4}, [2068] = {.lex_state = 13, .external_lex_state = 4}, [2069] = {.lex_state = 13, .external_lex_state = 4}, [2070] = {.lex_state = 13}, [2071] = {.lex_state = 13, .external_lex_state = 4}, - [2072] = {.lex_state = 13}, - [2073] = {.lex_state = 13}, + [2072] = {.lex_state = 13, .external_lex_state = 4}, + [2073] = {.lex_state = 13, .external_lex_state = 4}, [2074] = {.lex_state = 13, .external_lex_state = 4}, [2075] = {.lex_state = 13}, - [2076] = {.lex_state = 13, .external_lex_state = 4}, - [2077] = {.lex_state = 13}, - [2078] = {.lex_state = 13, .external_lex_state = 4}, - [2079] = {.lex_state = 13, .external_lex_state = 4}, + [2076] = {.lex_state = 7, .external_lex_state = 2}, + [2077] = {.lex_state = 13, .external_lex_state = 4}, + [2078] = {.lex_state = 13}, + [2079] = {.lex_state = 13}, [2080] = {.lex_state = 13}, [2081] = {.lex_state = 13, .external_lex_state = 4}, [2082] = {.lex_state = 13, .external_lex_state = 4}, [2083] = {.lex_state = 13, .external_lex_state = 4}, - [2084] = {.lex_state = 13}, - [2085] = {.lex_state = 7, .external_lex_state = 2}, - [2086] = {.lex_state = 13}, + [2084] = {.lex_state = 13, .external_lex_state = 4}, + [2085] = {.lex_state = 13, .external_lex_state = 4}, + [2086] = {.lex_state = 13, .external_lex_state = 4}, [2087] = {.lex_state = 13, .external_lex_state = 4}, [2088] = {.lex_state = 13, .external_lex_state = 4}, [2089] = {.lex_state = 13, .external_lex_state = 4}, - [2090] = {.lex_state = 7, .external_lex_state = 2}, + [2090] = {.lex_state = 13}, [2091] = {.lex_state = 13, .external_lex_state = 4}, - [2092] = {.lex_state = 13, .external_lex_state = 4}, + [2092] = {.lex_state = 7, .external_lex_state = 2}, [2093] = {.lex_state = 13, .external_lex_state = 4}, - [2094] = {.lex_state = 13, .external_lex_state = 4}, + [2094] = {.lex_state = 13}, [2095] = {.lex_state = 13, .external_lex_state = 4}, - [2096] = {.lex_state = 13, .external_lex_state = 4}, + [2096] = {.lex_state = 7, .external_lex_state = 2}, [2097] = {.lex_state = 13, .external_lex_state = 4}, - [2098] = {.lex_state = 13, .external_lex_state = 4}, + [2098] = {.lex_state = 7, .external_lex_state = 2}, [2099] = {.lex_state = 13, .external_lex_state = 4}, [2100] = {.lex_state = 13, .external_lex_state = 4}, - [2101] = {.lex_state = 13, .external_lex_state = 4}, + [2101] = {.lex_state = 13}, [2102] = {.lex_state = 13, .external_lex_state = 4}, [2103] = {.lex_state = 13, .external_lex_state = 4}, - [2104] = {.lex_state = 13, .external_lex_state = 4}, - [2105] = {.lex_state = 13}, + [2104] = {.lex_state = 13}, + [2105] = {.lex_state = 13, .external_lex_state = 4}, [2106] = {.lex_state = 13, .external_lex_state = 4}, - [2107] = {.lex_state = 13}, + [2107] = {.lex_state = 13, .external_lex_state = 4}, [2108] = {.lex_state = 13, .external_lex_state = 4}, - [2109] = {.lex_state = 13}, + [2109] = {.lex_state = 13, .external_lex_state = 4}, [2110] = {.lex_state = 13, .external_lex_state = 4}, - [2111] = {.lex_state = 13}, - [2112] = {.lex_state = 13, .external_lex_state = 4}, + [2111] = {.lex_state = 7, .external_lex_state = 2}, + [2112] = {.lex_state = 13}, [2113] = {.lex_state = 13, .external_lex_state = 4}, - [2114] = {.lex_state = 13}, - [2115] = {.lex_state = 13, .external_lex_state = 4}, + [2114] = {.lex_state = 13, .external_lex_state = 4}, + [2115] = {.lex_state = 13}, [2116] = {.lex_state = 13, .external_lex_state = 4}, - [2117] = {.lex_state = 13, .external_lex_state = 4}, + [2117] = {.lex_state = 13}, [2118] = {.lex_state = 13}, [2119] = {.lex_state = 13, .external_lex_state = 4}, - [2120] = {.lex_state = 13, .external_lex_state = 4}, - [2121] = {.lex_state = 13}, + [2120] = {.lex_state = 13}, + [2121] = {.lex_state = 96}, [2122] = {.lex_state = 13, .external_lex_state = 4}, [2123] = {.lex_state = 13, .external_lex_state = 4}, [2124] = {.lex_state = 13, .external_lex_state = 4}, [2125] = {.lex_state = 13, .external_lex_state = 4}, [2126] = {.lex_state = 13, .external_lex_state = 4}, - [2127] = {.lex_state = 13}, - [2128] = {.lex_state = 13, .external_lex_state = 4}, - [2129] = {.lex_state = 96}, - [2130] = {.lex_state = 13}, - [2131] = {.lex_state = 13, .external_lex_state = 4}, - [2132] = {.lex_state = 13}, + [2127] = {.lex_state = 13, .external_lex_state = 4}, + [2128] = {.lex_state = 13}, + [2129] = {.lex_state = 13}, + [2130] = {.lex_state = 13, .external_lex_state = 4}, + [2131] = {.lex_state = 13}, + [2132] = {.lex_state = 13, .external_lex_state = 4}, [2133] = {.lex_state = 13, .external_lex_state = 4}, - [2134] = {.lex_state = 13, .external_lex_state = 4}, - [2135] = {.lex_state = 13, .external_lex_state = 4}, + [2134] = {.lex_state = 13}, + [2135] = {.lex_state = 13}, [2136] = {.lex_state = 13, .external_lex_state = 4}, - [2137] = {.lex_state = 13}, - [2138] = {.lex_state = 96, .external_lex_state = 4}, + [2137] = {.lex_state = 13, .external_lex_state = 4}, + [2138] = {.lex_state = 13, .external_lex_state = 4}, [2139] = {.lex_state = 13}, - [2140] = {.lex_state = 96, .external_lex_state = 4}, - [2141] = {.lex_state = 96, .external_lex_state = 4}, - [2142] = {.lex_state = 96, .external_lex_state = 4}, - [2143] = {.lex_state = 13}, + [2140] = {.lex_state = 13, .external_lex_state = 4}, + [2141] = {.lex_state = 13, .external_lex_state = 4}, + [2142] = {.lex_state = 13, .external_lex_state = 4}, + [2143] = {.lex_state = 13, .external_lex_state = 4}, [2144] = {.lex_state = 13, .external_lex_state = 4}, [2145] = {.lex_state = 13, .external_lex_state = 4}, [2146] = {.lex_state = 13}, - [2147] = {.lex_state = 13}, + [2147] = {.lex_state = 96, .external_lex_state = 4}, [2148] = {.lex_state = 96, .external_lex_state = 4}, - [2149] = {.lex_state = 13}, + [2149] = {.lex_state = 96, .external_lex_state = 4}, [2150] = {.lex_state = 13}, - [2151] = {.lex_state = 13}, + [2151] = {.lex_state = 13, .external_lex_state = 4}, [2152] = {.lex_state = 13}, - [2153] = {.lex_state = 13}, + [2153] = {.lex_state = 13, .external_lex_state = 4}, [2154] = {.lex_state = 13}, - [2155] = {.lex_state = 13}, + [2155] = {.lex_state = 96, .external_lex_state = 4}, [2156] = {.lex_state = 13}, - [2157] = {.lex_state = 13}, + [2157] = {.lex_state = 96, .external_lex_state = 4}, [2158] = {.lex_state = 96, .external_lex_state = 4}, [2159] = {.lex_state = 13}, [2160] = {.lex_state = 13}, @@ -13399,60 +13438,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2163] = {.lex_state = 13}, [2164] = {.lex_state = 13}, [2165] = {.lex_state = 13}, - [2166] = {.lex_state = 96}, + [2166] = {.lex_state = 13}, [2167] = {.lex_state = 13}, [2168] = {.lex_state = 13}, [2169] = {.lex_state = 13}, - [2170] = {.lex_state = 96}, + [2170] = {.lex_state = 13}, [2171] = {.lex_state = 13}, - [2172] = {.lex_state = 96}, - [2173] = {.lex_state = 96}, - [2174] = {.lex_state = 96}, - [2175] = {.lex_state = 13, .external_lex_state = 4}, - [2176] = {.lex_state = 13, .external_lex_state = 4}, - [2177] = {.lex_state = 13, .external_lex_state = 4}, - [2178] = {.lex_state = 13}, - [2179] = {.lex_state = 13, .external_lex_state = 4}, + [2172] = {.lex_state = 13}, + [2173] = {.lex_state = 13}, + [2174] = {.lex_state = 13}, + [2175] = {.lex_state = 13}, + [2176] = {.lex_state = 13}, + [2177] = {.lex_state = 96}, + [2178] = {.lex_state = 96}, + [2179] = {.lex_state = 96}, [2180] = {.lex_state = 13}, - [2181] = {.lex_state = 13}, + [2181] = {.lex_state = 96}, [2182] = {.lex_state = 13}, - [2183] = {.lex_state = 13}, - [2184] = {.lex_state = 13, .external_lex_state = 4}, + [2183] = {.lex_state = 96}, + [2184] = {.lex_state = 13}, [2185] = {.lex_state = 13, .external_lex_state = 4}, [2186] = {.lex_state = 13}, [2187] = {.lex_state = 13, .external_lex_state = 4}, - [2188] = {.lex_state = 13}, + [2188] = {.lex_state = 13, .external_lex_state = 4}, [2189] = {.lex_state = 13, .external_lex_state = 4}, [2190] = {.lex_state = 13, .external_lex_state = 4}, [2191] = {.lex_state = 13, .external_lex_state = 4}, [2192] = {.lex_state = 13, .external_lex_state = 4}, - [2193] = {.lex_state = 13, .external_lex_state = 4}, - [2194] = {.lex_state = 13, .external_lex_state = 4}, + [2193] = {.lex_state = 13}, + [2194] = {.lex_state = 13}, [2195] = {.lex_state = 13, .external_lex_state = 4}, [2196] = {.lex_state = 13, .external_lex_state = 4}, [2197] = {.lex_state = 13, .external_lex_state = 4}, [2198] = {.lex_state = 13, .external_lex_state = 4}, - [2199] = {.lex_state = 13, .external_lex_state = 4}, - [2200] = {.lex_state = 13, .external_lex_state = 4}, - [2201] = {.lex_state = 13, .external_lex_state = 4}, - [2202] = {.lex_state = 13, .external_lex_state = 4}, - [2203] = {.lex_state = 13, .external_lex_state = 4}, - [2204] = {.lex_state = 13}, + [2199] = {.lex_state = 13}, + [2200] = {.lex_state = 13}, + [2201] = {.lex_state = 13}, + [2202] = {.lex_state = 13}, + [2203] = {.lex_state = 13}, + [2204] = {.lex_state = 13, .external_lex_state = 4}, [2205] = {.lex_state = 13, .external_lex_state = 4}, - [2206] = {.lex_state = 13}, - [2207] = {.lex_state = 13}, + [2206] = {.lex_state = 13, .external_lex_state = 4}, + [2207] = {.lex_state = 13, .external_lex_state = 4}, [2208] = {.lex_state = 13, .external_lex_state = 4}, - [2209] = {.lex_state = 13}, - [2210] = {.lex_state = 13, .external_lex_state = 4}, + [2209] = {.lex_state = 13, .external_lex_state = 4}, + [2210] = {.lex_state = 13}, [2211] = {.lex_state = 13, .external_lex_state = 4}, - [2212] = {.lex_state = 13, .external_lex_state = 4}, - [2213] = {.lex_state = 13}, - [2214] = {.lex_state = 13}, - [2215] = {.lex_state = 13}, - [2216] = {.lex_state = 13}, - [2217] = {.lex_state = 13}, - [2218] = {.lex_state = 13}, - [2219] = {.lex_state = 13}, + [2212] = {.lex_state = 13}, + [2213] = {.lex_state = 13, .external_lex_state = 4}, + [2214] = {.lex_state = 13, .external_lex_state = 4}, + [2215] = {.lex_state = 13, .external_lex_state = 4}, + [2216] = {.lex_state = 13, .external_lex_state = 4}, + [2217] = {.lex_state = 13, .external_lex_state = 4}, + [2218] = {.lex_state = 13, .external_lex_state = 4}, + [2219] = {.lex_state = 13, .external_lex_state = 4}, [2220] = {.lex_state = 13, .external_lex_state = 4}, [2221] = {.lex_state = 13}, [2222] = {.lex_state = 13, .external_lex_state = 4}, @@ -13460,54 +13499,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2224] = {.lex_state = 13}, [2225] = {.lex_state = 13}, [2226] = {.lex_state = 13}, - [2227] = {.lex_state = 13}, + [2227] = {.lex_state = 96}, [2228] = {.lex_state = 13}, - [2229] = {.lex_state = 96}, + [2229] = {.lex_state = 13}, [2230] = {.lex_state = 13}, [2231] = {.lex_state = 13}, - [2232] = {.lex_state = 13}, - [2233] = {.lex_state = 13}, + [2232] = {.lex_state = 13, .external_lex_state = 4}, + [2233] = {.lex_state = 13, .external_lex_state = 4}, [2234] = {.lex_state = 13}, [2235] = {.lex_state = 13}, [2236] = {.lex_state = 13}, [2237] = {.lex_state = 13}, - [2238] = {.lex_state = 96}, - [2239] = {.lex_state = 96}, + [2238] = {.lex_state = 13}, + [2239] = {.lex_state = 13}, [2240] = {.lex_state = 13}, - [2241] = {.lex_state = 96}, + [2241] = {.lex_state = 13}, [2242] = {.lex_state = 13}, - [2243] = {.lex_state = 96}, + [2243] = {.lex_state = 13}, [2244] = {.lex_state = 13}, - [2245] = {.lex_state = 96}, - [2246] = {.lex_state = 13}, - [2247] = {.lex_state = 96}, - [2248] = {.lex_state = 96}, + [2245] = {.lex_state = 13}, + [2246] = {.lex_state = 96}, + [2247] = {.lex_state = 13}, + [2248] = {.lex_state = 13}, [2249] = {.lex_state = 96}, [2250] = {.lex_state = 96}, - [2251] = {.lex_state = 13}, + [2251] = {.lex_state = 96}, [2252] = {.lex_state = 13}, [2253] = {.lex_state = 96}, [2254] = {.lex_state = 96}, - [2255] = {.lex_state = 96}, - [2256] = {.lex_state = 96}, - [2257] = {.lex_state = 13}, + [2255] = {.lex_state = 13}, + [2256] = {.lex_state = 13}, + [2257] = {.lex_state = 96}, [2258] = {.lex_state = 96}, [2259] = {.lex_state = 96}, - [2260] = {.lex_state = 96}, + [2260] = {.lex_state = 13}, [2261] = {.lex_state = 96}, - [2262] = {.lex_state = 96}, + [2262] = {.lex_state = 13}, [2263] = {.lex_state = 96}, - [2264] = {.lex_state = 13}, + [2264] = {.lex_state = 96}, [2265] = {.lex_state = 96}, - [2266] = {.lex_state = 96}, + [2266] = {.lex_state = 13}, [2267] = {.lex_state = 96}, - [2268] = {.lex_state = 96}, + [2268] = {.lex_state = 13}, [2269] = {.lex_state = 96}, [2270] = {.lex_state = 96}, [2271] = {.lex_state = 96}, [2272] = {.lex_state = 96}, [2273] = {.lex_state = 96}, - [2274] = {.lex_state = 96}, + [2274] = {.lex_state = 13}, [2275] = {.lex_state = 96}, [2276] = {.lex_state = 96}, [2277] = {.lex_state = 96}, @@ -13541,16 +13580,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2305] = {.lex_state = 96}, [2306] = {.lex_state = 96}, [2307] = {.lex_state = 96}, - [2308] = {.lex_state = 16}, - [2309] = {.lex_state = 16}, - [2310] = {.lex_state = 16}, - [2311] = {.lex_state = 16}, - [2312] = {.lex_state = 16}, - [2313] = {.lex_state = 16}, - [2314] = {.lex_state = 16}, - [2315] = {.lex_state = 16}, - [2316] = {.lex_state = 16}, - [2317] = {.lex_state = 16}, + [2308] = {.lex_state = 96}, + [2309] = {.lex_state = 96}, + [2310] = {.lex_state = 96}, + [2311] = {.lex_state = 96}, + [2312] = {.lex_state = 96}, + [2313] = {.lex_state = 96}, + [2314] = {.lex_state = 96}, + [2315] = {.lex_state = 96}, + [2316] = {.lex_state = 96}, + [2317] = {.lex_state = 96}, [2318] = {.lex_state = 16}, [2319] = {.lex_state = 16}, [2320] = {.lex_state = 16}, @@ -13559,7 +13598,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2323] = {.lex_state = 16}, [2324] = {.lex_state = 16}, [2325] = {.lex_state = 16}, - [2326] = {.lex_state = 12}, + [2326] = {.lex_state = 16}, [2327] = {.lex_state = 16}, [2328] = {.lex_state = 16}, [2329] = {.lex_state = 16}, @@ -13577,249 +13616,249 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2341] = {.lex_state = 16}, [2342] = {.lex_state = 16}, [2343] = {.lex_state = 16}, - [2344] = {.lex_state = 16}, + [2344] = {.lex_state = 12}, [2345] = {.lex_state = 16}, [2346] = {.lex_state = 16}, - [2347] = {.lex_state = 12}, + [2347] = {.lex_state = 16}, [2348] = {.lex_state = 16}, [2349] = {.lex_state = 16}, - [2350] = {.lex_state = 12}, + [2350] = {.lex_state = 16}, [2351] = {.lex_state = 16}, - [2352] = {.lex_state = 12, .external_lex_state = 4}, - [2353] = {.lex_state = 12, .external_lex_state = 4}, - [2354] = {.lex_state = 96}, - [2355] = {.lex_state = 12}, - [2356] = {.lex_state = 96}, - [2357] = {.lex_state = 96}, - [2358] = {.lex_state = 96}, - [2359] = {.lex_state = 96}, - [2360] = {.lex_state = 96}, - [2361] = {.lex_state = 96}, - [2362] = {.lex_state = 96}, - [2363] = {.lex_state = 96}, - [2364] = {.lex_state = 96}, - [2365] = {.lex_state = 96}, - [2366] = {.lex_state = 4}, - [2367] = {.lex_state = 96}, + [2352] = {.lex_state = 16}, + [2353] = {.lex_state = 16}, + [2354] = {.lex_state = 16}, + [2355] = {.lex_state = 16}, + [2356] = {.lex_state = 12}, + [2357] = {.lex_state = 12}, + [2358] = {.lex_state = 16}, + [2359] = {.lex_state = 16}, + [2360] = {.lex_state = 16}, + [2361] = {.lex_state = 12}, + [2362] = {.lex_state = 16}, + [2363] = {.lex_state = 12, .external_lex_state = 4}, + [2364] = {.lex_state = 12, .external_lex_state = 4}, + [2365] = {.lex_state = 12}, + [2366] = {.lex_state = 96}, + [2367] = {.lex_state = 4}, [2368] = {.lex_state = 96}, [2369] = {.lex_state = 96}, - [2370] = {.lex_state = 96}, - [2371] = {.lex_state = 4}, + [2370] = {.lex_state = 4}, + [2371] = {.lex_state = 96}, [2372] = {.lex_state = 96}, - [2373] = {.lex_state = 4}, + [2373] = {.lex_state = 96}, [2374] = {.lex_state = 96}, [2375] = {.lex_state = 96}, - [2376] = {.lex_state = 4}, + [2376] = {.lex_state = 96}, [2377] = {.lex_state = 96}, [2378] = {.lex_state = 96}, [2379] = {.lex_state = 96}, [2380] = {.lex_state = 96}, [2381] = {.lex_state = 96}, - [2382] = {.lex_state = 96}, + [2382] = {.lex_state = 4}, [2383] = {.lex_state = 4}, - [2384] = {.lex_state = 12, .external_lex_state = 4}, + [2384] = {.lex_state = 96}, [2385] = {.lex_state = 96}, - [2386] = {.lex_state = 96}, - [2387] = {.lex_state = 4}, - [2388] = {.lex_state = 96}, + [2386] = {.lex_state = 4}, + [2387] = {.lex_state = 16, .external_lex_state = 4}, + [2388] = {.lex_state = 12, .external_lex_state = 4}, [2389] = {.lex_state = 16, .external_lex_state = 4}, [2390] = {.lex_state = 4}, [2391] = {.lex_state = 96}, - [2392] = {.lex_state = 16, .external_lex_state = 4}, + [2392] = {.lex_state = 96}, [2393] = {.lex_state = 16, .external_lex_state = 4}, - [2394] = {.lex_state = 96}, + [2394] = {.lex_state = 4}, [2395] = {.lex_state = 96}, - [2396] = {.lex_state = 4}, + [2396] = {.lex_state = 96}, [2397] = {.lex_state = 96}, [2398] = {.lex_state = 96}, [2399] = {.lex_state = 96}, - [2400] = {.lex_state = 16, .external_lex_state = 4}, + [2400] = {.lex_state = 96}, [2401] = {.lex_state = 96}, [2402] = {.lex_state = 96}, - [2403] = {.lex_state = 96}, - [2404] = {.lex_state = 13, .external_lex_state = 4}, + [2403] = {.lex_state = 4}, + [2404] = {.lex_state = 96}, [2405] = {.lex_state = 96}, [2406] = {.lex_state = 96}, [2407] = {.lex_state = 96}, [2408] = {.lex_state = 96}, [2409] = {.lex_state = 96}, - [2410] = {.lex_state = 96}, - [2411] = {.lex_state = 96}, - [2412] = {.lex_state = 16, .external_lex_state = 4}, - [2413] = {.lex_state = 16, .external_lex_state = 4}, - [2414] = {.lex_state = 16, .external_lex_state = 4}, - [2415] = {.lex_state = 16, .external_lex_state = 4}, - [2416] = {.lex_state = 16, .external_lex_state = 4}, - [2417] = {.lex_state = 16, .external_lex_state = 4}, + [2410] = {.lex_state = 16, .external_lex_state = 4}, + [2411] = {.lex_state = 12, .external_lex_state = 4}, + [2412] = {.lex_state = 13, .external_lex_state = 4}, + [2413] = {.lex_state = 96}, + [2414] = {.lex_state = 96}, + [2415] = {.lex_state = 96}, + [2416] = {.lex_state = 96}, + [2417] = {.lex_state = 13, .external_lex_state = 4}, [2418] = {.lex_state = 16, .external_lex_state = 4}, [2419] = {.lex_state = 16, .external_lex_state = 4}, - [2420] = {.lex_state = 16, .external_lex_state = 4}, + [2420] = {.lex_state = 96}, [2421] = {.lex_state = 16, .external_lex_state = 4}, - [2422] = {.lex_state = 96}, - [2423] = {.lex_state = 12, .external_lex_state = 4}, - [2424] = {.lex_state = 13, .external_lex_state = 4}, - [2425] = {.lex_state = 13, .external_lex_state = 4}, - [2426] = {.lex_state = 96}, - [2427] = {.lex_state = 96}, - [2428] = {.lex_state = 13, .external_lex_state = 4}, + [2422] = {.lex_state = 16, .external_lex_state = 4}, + [2423] = {.lex_state = 16, .external_lex_state = 4}, + [2424] = {.lex_state = 16, .external_lex_state = 4}, + [2425] = {.lex_state = 16, .external_lex_state = 4}, + [2426] = {.lex_state = 16, .external_lex_state = 4}, + [2427] = {.lex_state = 16, .external_lex_state = 4}, + [2428] = {.lex_state = 16, .external_lex_state = 4}, [2429] = {.lex_state = 16, .external_lex_state = 4}, [2430] = {.lex_state = 16, .external_lex_state = 4}, [2431] = {.lex_state = 16, .external_lex_state = 4}, - [2432] = {.lex_state = 16, .external_lex_state = 4}, - [2433] = {.lex_state = 16, .external_lex_state = 4}, - [2434] = {.lex_state = 16, .external_lex_state = 4}, - [2435] = {.lex_state = 16, .external_lex_state = 4}, - [2436] = {.lex_state = 16, .external_lex_state = 4}, - [2437] = {.lex_state = 16, .external_lex_state = 4}, - [2438] = {.lex_state = 16, .external_lex_state = 4}, + [2432] = {.lex_state = 96}, + [2433] = {.lex_state = 96}, + [2434] = {.lex_state = 13, .external_lex_state = 4}, + [2435] = {.lex_state = 96}, + [2436] = {.lex_state = 96}, + [2437] = {.lex_state = 96}, + [2438] = {.lex_state = 96}, [2439] = {.lex_state = 96}, [2440] = {.lex_state = 96}, [2441] = {.lex_state = 96}, - [2442] = {.lex_state = 16, .external_lex_state = 4}, - [2443] = {.lex_state = 16, .external_lex_state = 4}, - [2444] = {.lex_state = 13, .external_lex_state = 4}, + [2442] = {.lex_state = 13, .external_lex_state = 4}, + [2443] = {.lex_state = 96}, + [2444] = {.lex_state = 96}, [2445] = {.lex_state = 16, .external_lex_state = 4}, [2446] = {.lex_state = 16, .external_lex_state = 4}, [2447] = {.lex_state = 16, .external_lex_state = 4}, - [2448] = {.lex_state = 96}, - [2449] = {.lex_state = 96}, + [2448] = {.lex_state = 16, .external_lex_state = 4}, + [2449] = {.lex_state = 16, .external_lex_state = 4}, [2450] = {.lex_state = 16, .external_lex_state = 4}, [2451] = {.lex_state = 16, .external_lex_state = 4}, [2452] = {.lex_state = 16, .external_lex_state = 4}, - [2453] = {.lex_state = 96}, - [2454] = {.lex_state = 96}, + [2453] = {.lex_state = 16, .external_lex_state = 4}, + [2454] = {.lex_state = 16, .external_lex_state = 4}, [2455] = {.lex_state = 96}, [2456] = {.lex_state = 96}, - [2457] = {.lex_state = 16, .external_lex_state = 4}, - [2458] = {.lex_state = 96}, - [2459] = {.lex_state = 16, .external_lex_state = 4}, - [2460] = {.lex_state = 16, .external_lex_state = 4}, + [2457] = {.lex_state = 96}, + [2458] = {.lex_state = 13, .external_lex_state = 4}, + [2459] = {.lex_state = 96}, + [2460] = {.lex_state = 96}, [2461] = {.lex_state = 16, .external_lex_state = 4}, [2462] = {.lex_state = 16, .external_lex_state = 4}, - [2463] = {.lex_state = 96}, - [2464] = {.lex_state = 96}, - [2465] = {.lex_state = 96}, - [2466] = {.lex_state = 96}, - [2467] = {.lex_state = 13, .external_lex_state = 4}, - [2468] = {.lex_state = 13, .external_lex_state = 4}, - [2469] = {.lex_state = 96}, - [2470] = {.lex_state = 12, .external_lex_state = 4}, - [2471] = {.lex_state = 13, .external_lex_state = 4}, - [2472] = {.lex_state = 13}, - [2473] = {.lex_state = 16, .external_lex_state = 5}, - [2474] = {.lex_state = 13, .external_lex_state = 4}, - [2475] = {.lex_state = 16, .external_lex_state = 4}, - [2476] = {.lex_state = 16, .external_lex_state = 4}, - [2477] = {.lex_state = 16, .external_lex_state = 4}, - [2478] = {.lex_state = 16, .external_lex_state = 4}, - [2479] = {.lex_state = 13, .external_lex_state = 4}, - [2480] = {.lex_state = 16, .external_lex_state = 5}, - [2481] = {.lex_state = 12, .external_lex_state = 5}, - [2482] = {.lex_state = 96}, - [2483] = {.lex_state = 13, .external_lex_state = 4}, - [2484] = {.lex_state = 12, .external_lex_state = 4}, - [2485] = {.lex_state = 13, .external_lex_state = 4}, - [2486] = {.lex_state = 96}, - [2487] = {.lex_state = 16, .external_lex_state = 4}, - [2488] = {.lex_state = 13, .external_lex_state = 4}, - [2489] = {.lex_state = 13, .external_lex_state = 4}, + [2463] = {.lex_state = 16, .external_lex_state = 4}, + [2464] = {.lex_state = 16, .external_lex_state = 4}, + [2465] = {.lex_state = 16, .external_lex_state = 4}, + [2466] = {.lex_state = 16, .external_lex_state = 4}, + [2467] = {.lex_state = 16, .external_lex_state = 4}, + [2468] = {.lex_state = 16, .external_lex_state = 4}, + [2469] = {.lex_state = 16, .external_lex_state = 4}, + [2470] = {.lex_state = 16, .external_lex_state = 4}, + [2471] = {.lex_state = 96}, + [2472] = {.lex_state = 96}, + [2473] = {.lex_state = 13, .external_lex_state = 4}, + [2474] = {.lex_state = 96}, + [2475] = {.lex_state = 96}, + [2476] = {.lex_state = 13, .external_lex_state = 4}, + [2477] = {.lex_state = 96}, + [2478] = {.lex_state = 96}, + [2479] = {.lex_state = 96}, + [2480] = {.lex_state = 96}, + [2481] = {.lex_state = 13, .external_lex_state = 4}, + [2482] = {.lex_state = 16, .external_lex_state = 4}, + [2483] = {.lex_state = 12, .external_lex_state = 4}, + [2484] = {.lex_state = 16, .external_lex_state = 4}, + [2485] = {.lex_state = 16, .external_lex_state = 4}, + [2486] = {.lex_state = 12, .external_lex_state = 5}, + [2487] = {.lex_state = 13, .external_lex_state = 4}, + [2488] = {.lex_state = 12, .external_lex_state = 4}, + [2489] = {.lex_state = 16, .external_lex_state = 4}, [2490] = {.lex_state = 13, .external_lex_state = 4}, - [2491] = {.lex_state = 13, .external_lex_state = 4}, + [2491] = {.lex_state = 16, .external_lex_state = 4}, [2492] = {.lex_state = 16, .external_lex_state = 4}, [2493] = {.lex_state = 96}, [2494] = {.lex_state = 13, .external_lex_state = 4}, - [2495] = {.lex_state = 16, .external_lex_state = 4}, - [2496] = {.lex_state = 16, .external_lex_state = 5}, - [2497] = {.lex_state = 16, .external_lex_state = 5}, - [2498] = {.lex_state = 16, .external_lex_state = 5}, + [2495] = {.lex_state = 13, .external_lex_state = 4}, + [2496] = {.lex_state = 96}, + [2497] = {.lex_state = 13, .external_lex_state = 4}, + [2498] = {.lex_state = 13, .external_lex_state = 4}, [2499] = {.lex_state = 13, .external_lex_state = 4}, - [2500] = {.lex_state = 13, .external_lex_state = 4}, + [2500] = {.lex_state = 16, .external_lex_state = 5}, [2501] = {.lex_state = 16, .external_lex_state = 5}, [2502] = {.lex_state = 16, .external_lex_state = 5}, - [2503] = {.lex_state = 16, .external_lex_state = 5}, - [2504] = {.lex_state = 13, .external_lex_state = 4}, - [2505] = {.lex_state = 13}, - [2506] = {.lex_state = 13, .external_lex_state = 4}, + [2503] = {.lex_state = 16, .external_lex_state = 4}, + [2504] = {.lex_state = 13}, + [2505] = {.lex_state = 13, .external_lex_state = 4}, + [2506] = {.lex_state = 12, .external_lex_state = 4}, [2507] = {.lex_state = 13, .external_lex_state = 4}, - [2508] = {.lex_state = 16, .external_lex_state = 5}, - [2509] = {.lex_state = 16, .external_lex_state = 5}, + [2508] = {.lex_state = 96}, + [2509] = {.lex_state = 13, .external_lex_state = 4}, [2510] = {.lex_state = 16, .external_lex_state = 5}, - [2511] = {.lex_state = 96, .external_lex_state = 4}, - [2512] = {.lex_state = 16, .external_lex_state = 5}, - [2513] = {.lex_state = 16, .external_lex_state = 5}, - [2514] = {.lex_state = 16, .external_lex_state = 5}, + [2511] = {.lex_state = 13, .external_lex_state = 4}, + [2512] = {.lex_state = 12, .external_lex_state = 5}, + [2513] = {.lex_state = 96, .external_lex_state = 4}, + [2514] = {.lex_state = 96, .external_lex_state = 4}, [2515] = {.lex_state = 13, .external_lex_state = 4}, [2516] = {.lex_state = 16, .external_lex_state = 5}, - [2517] = {.lex_state = 16, .external_lex_state = 5}, - [2518] = {.lex_state = 13, .external_lex_state = 4}, - [2519] = {.lex_state = 12, .external_lex_state = 5}, - [2520] = {.lex_state = 13, .external_lex_state = 4}, - [2521] = {.lex_state = 13, .external_lex_state = 4}, - [2522] = {.lex_state = 16, .external_lex_state = 5}, - [2523] = {.lex_state = 16, .external_lex_state = 5}, + [2517] = {.lex_state = 13, .external_lex_state = 4}, + [2518] = {.lex_state = 16, .external_lex_state = 5}, + [2519] = {.lex_state = 16, .external_lex_state = 5}, + [2520] = {.lex_state = 16, .external_lex_state = 5}, + [2521] = {.lex_state = 16, .external_lex_state = 5}, + [2522] = {.lex_state = 13, .external_lex_state = 4}, + [2523] = {.lex_state = 13, .external_lex_state = 4}, [2524] = {.lex_state = 16, .external_lex_state = 5}, [2525] = {.lex_state = 16, .external_lex_state = 5}, [2526] = {.lex_state = 16, .external_lex_state = 5}, - [2527] = {.lex_state = 13}, + [2527] = {.lex_state = 16, .external_lex_state = 5}, [2528] = {.lex_state = 16, .external_lex_state = 5}, [2529] = {.lex_state = 16, .external_lex_state = 5}, [2530] = {.lex_state = 16, .external_lex_state = 5}, - [2531] = {.lex_state = 16, .external_lex_state = 5}, - [2532] = {.lex_state = 16, .external_lex_state = 5}, + [2531] = {.lex_state = 13, .external_lex_state = 4}, + [2532] = {.lex_state = 13, .external_lex_state = 4}, [2533] = {.lex_state = 16, .external_lex_state = 5}, [2534] = {.lex_state = 13, .external_lex_state = 4}, [2535] = {.lex_state = 13, .external_lex_state = 4}, - [2536] = {.lex_state = 16, .external_lex_state = 5}, - [2537] = {.lex_state = 13, .external_lex_state = 4}, + [2536] = {.lex_state = 13, .external_lex_state = 4}, + [2537] = {.lex_state = 16, .external_lex_state = 5}, [2538] = {.lex_state = 13, .external_lex_state = 4}, - [2539] = {.lex_state = 96, .external_lex_state = 4}, + [2539] = {.lex_state = 16, .external_lex_state = 5}, [2540] = {.lex_state = 16, .external_lex_state = 5}, - [2541] = {.lex_state = 96, .external_lex_state = 4}, - [2542] = {.lex_state = 13, .external_lex_state = 4}, - [2543] = {.lex_state = 16, .external_lex_state = 5}, + [2541] = {.lex_state = 13, .external_lex_state = 4}, + [2542] = {.lex_state = 13}, + [2543] = {.lex_state = 13, .external_lex_state = 4}, [2544] = {.lex_state = 13, .external_lex_state = 4}, - [2545] = {.lex_state = 13, .external_lex_state = 4}, + [2545] = {.lex_state = 13}, [2546] = {.lex_state = 16, .external_lex_state = 5}, - [2547] = {.lex_state = 96}, + [2547] = {.lex_state = 16, .external_lex_state = 5}, [2548] = {.lex_state = 13, .external_lex_state = 4}, - [2549] = {.lex_state = 16, .external_lex_state = 5}, + [2549] = {.lex_state = 96, .external_lex_state = 4}, [2550] = {.lex_state = 16, .external_lex_state = 5}, [2551] = {.lex_state = 13, .external_lex_state = 4}, - [2552] = {.lex_state = 16, .external_lex_state = 5}, + [2552] = {.lex_state = 13, .external_lex_state = 4}, [2553] = {.lex_state = 16, .external_lex_state = 5}, - [2554] = {.lex_state = 13, .external_lex_state = 4}, + [2554] = {.lex_state = 13}, [2555] = {.lex_state = 16, .external_lex_state = 5}, [2556] = {.lex_state = 16, .external_lex_state = 5}, - [2557] = {.lex_state = 13, .external_lex_state = 4}, - [2558] = {.lex_state = 13}, - [2559] = {.lex_state = 13, .external_lex_state = 4}, - [2560] = {.lex_state = 13, .external_lex_state = 4}, - [2561] = {.lex_state = 96, .external_lex_state = 4}, - [2562] = {.lex_state = 96, .external_lex_state = 4}, - [2563] = {.lex_state = 96, .external_lex_state = 4}, - [2564] = {.lex_state = 96}, - [2565] = {.lex_state = 96, .external_lex_state = 4}, - [2566] = {.lex_state = 96, .external_lex_state = 4}, - [2567] = {.lex_state = 96, .external_lex_state = 4}, - [2568] = {.lex_state = 96, .external_lex_state = 4}, - [2569] = {.lex_state = 96, .external_lex_state = 4}, - [2570] = {.lex_state = 96, .external_lex_state = 4}, - [2571] = {.lex_state = 16, .external_lex_state = 5}, - [2572] = {.lex_state = 16, .external_lex_state = 5}, - [2573] = {.lex_state = 16, .external_lex_state = 5}, - [2574] = {.lex_state = 16, .external_lex_state = 5}, + [2557] = {.lex_state = 16, .external_lex_state = 5}, + [2558] = {.lex_state = 16, .external_lex_state = 5}, + [2559] = {.lex_state = 16, .external_lex_state = 5}, + [2560] = {.lex_state = 16, .external_lex_state = 5}, + [2561] = {.lex_state = 16, .external_lex_state = 5}, + [2562] = {.lex_state = 16, .external_lex_state = 5}, + [2563] = {.lex_state = 16, .external_lex_state = 5}, + [2564] = {.lex_state = 16, .external_lex_state = 5}, + [2565] = {.lex_state = 13, .external_lex_state = 4}, + [2566] = {.lex_state = 16, .external_lex_state = 5}, + [2567] = {.lex_state = 13, .external_lex_state = 4}, + [2568] = {.lex_state = 16, .external_lex_state = 5}, + [2569] = {.lex_state = 16, .external_lex_state = 5}, + [2570] = {.lex_state = 96}, + [2571] = {.lex_state = 13, .external_lex_state = 4}, + [2572] = {.lex_state = 13, .external_lex_state = 4}, + [2573] = {.lex_state = 96, .external_lex_state = 4}, + [2574] = {.lex_state = 96, .external_lex_state = 4}, [2575] = {.lex_state = 96, .external_lex_state = 4}, - [2576] = {.lex_state = 96, .external_lex_state = 4}, + [2576] = {.lex_state = 16, .external_lex_state = 5}, [2577] = {.lex_state = 96, .external_lex_state = 4}, [2578] = {.lex_state = 96, .external_lex_state = 4}, [2579] = {.lex_state = 96, .external_lex_state = 4}, [2580] = {.lex_state = 96, .external_lex_state = 4}, - [2581] = {.lex_state = 96, .external_lex_state = 4}, - [2582] = {.lex_state = 96, .external_lex_state = 4}, + [2581] = {.lex_state = 13, .external_lex_state = 4}, + [2582] = {.lex_state = 96}, [2583] = {.lex_state = 96, .external_lex_state = 4}, - [2584] = {.lex_state = 12, .external_lex_state = 5}, + [2584] = {.lex_state = 96, .external_lex_state = 4}, [2585] = {.lex_state = 96, .external_lex_state = 4}, - [2586] = {.lex_state = 16, .external_lex_state = 5}, + [2586] = {.lex_state = 96, .external_lex_state = 4}, [2587] = {.lex_state = 96, .external_lex_state = 4}, [2588] = {.lex_state = 96, .external_lex_state = 4}, [2589] = {.lex_state = 96, .external_lex_state = 4}, @@ -13827,11 +13866,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2591] = {.lex_state = 96, .external_lex_state = 4}, [2592] = {.lex_state = 96, .external_lex_state = 4}, [2593] = {.lex_state = 96, .external_lex_state = 4}, - [2594] = {.lex_state = 16, .external_lex_state = 5}, - [2595] = {.lex_state = 96, .external_lex_state = 4}, - [2596] = {.lex_state = 13, .external_lex_state = 4}, + [2594] = {.lex_state = 96, .external_lex_state = 4}, + [2595] = {.lex_state = 16, .external_lex_state = 5}, + [2596] = {.lex_state = 96, .external_lex_state = 4}, [2597] = {.lex_state = 96, .external_lex_state = 4}, - [2598] = {.lex_state = 96, .external_lex_state = 4}, + [2598] = {.lex_state = 16, .external_lex_state = 5}, [2599] = {.lex_state = 96, .external_lex_state = 4}, [2600] = {.lex_state = 96, .external_lex_state = 4}, [2601] = {.lex_state = 96, .external_lex_state = 4}, @@ -13839,1373 +13878,1373 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2603] = {.lex_state = 96, .external_lex_state = 4}, [2604] = {.lex_state = 96, .external_lex_state = 4}, [2605] = {.lex_state = 96, .external_lex_state = 4}, - [2606] = {.lex_state = 12, .external_lex_state = 5}, - [2607] = {.lex_state = 96, .external_lex_state = 4}, + [2606] = {.lex_state = 96, .external_lex_state = 4}, + [2607] = {.lex_state = 16, .external_lex_state = 5}, [2608] = {.lex_state = 96, .external_lex_state = 4}, [2609] = {.lex_state = 96, .external_lex_state = 4}, [2610] = {.lex_state = 96, .external_lex_state = 4}, [2611] = {.lex_state = 96, .external_lex_state = 4}, - [2612] = {.lex_state = 96, .external_lex_state = 4}, - [2613] = {.lex_state = 96, .external_lex_state = 4}, - [2614] = {.lex_state = 16, .external_lex_state = 5}, - [2615] = {.lex_state = 13, .external_lex_state = 4}, + [2612] = {.lex_state = 16, .external_lex_state = 5}, + [2613] = {.lex_state = 16, .external_lex_state = 5}, + [2614] = {.lex_state = 13, .external_lex_state = 4}, + [2615] = {.lex_state = 96, .external_lex_state = 4}, [2616] = {.lex_state = 96, .external_lex_state = 4}, [2617] = {.lex_state = 96, .external_lex_state = 4}, - [2618] = {.lex_state = 12}, - [2619] = {.lex_state = 12}, + [2618] = {.lex_state = 96, .external_lex_state = 4}, + [2619] = {.lex_state = 96, .external_lex_state = 4}, [2620] = {.lex_state = 96, .external_lex_state = 4}, - [2621] = {.lex_state = 96}, - [2622] = {.lex_state = 12}, + [2621] = {.lex_state = 12, .external_lex_state = 5}, + [2622] = {.lex_state = 96, .external_lex_state = 4}, [2623] = {.lex_state = 96, .external_lex_state = 4}, - [2624] = {.lex_state = 12}, - [2625] = {.lex_state = 96, .external_lex_state = 5}, - [2626] = {.lex_state = 13, .external_lex_state = 4}, - [2627] = {.lex_state = 12}, + [2624] = {.lex_state = 96, .external_lex_state = 4}, + [2625] = {.lex_state = 16, .external_lex_state = 5}, + [2626] = {.lex_state = 96, .external_lex_state = 4}, + [2627] = {.lex_state = 12, .external_lex_state = 5}, [2628] = {.lex_state = 96, .external_lex_state = 4}, - [2629] = {.lex_state = 12}, - [2630] = {.lex_state = 96}, - [2631] = {.lex_state = 12}, - [2632] = {.lex_state = 96}, - [2633] = {.lex_state = 96, .external_lex_state = 4}, - [2634] = {.lex_state = 96, .external_lex_state = 5}, + [2629] = {.lex_state = 12, .external_lex_state = 5}, + [2630] = {.lex_state = 96, .external_lex_state = 4}, + [2631] = {.lex_state = 96, .external_lex_state = 5}, + [2632] = {.lex_state = 12}, + [2633] = {.lex_state = 12}, + [2634] = {.lex_state = 12}, [2635] = {.lex_state = 12}, - [2636] = {.lex_state = 12}, - [2637] = {.lex_state = 13}, - [2638] = {.lex_state = 96, .external_lex_state = 4}, - [2639] = {.lex_state = 12}, - [2640] = {.lex_state = 96}, - [2641] = {.lex_state = 16}, - [2642] = {.lex_state = 12}, - [2643] = {.lex_state = 16}, - [2644] = {.lex_state = 16}, - [2645] = {.lex_state = 96, .external_lex_state = 5}, - [2646] = {.lex_state = 13}, - [2647] = {.lex_state = 96, .external_lex_state = 5}, + [2636] = {.lex_state = 96}, + [2637] = {.lex_state = 12}, + [2638] = {.lex_state = 12}, + [2639] = {.lex_state = 96, .external_lex_state = 5}, + [2640] = {.lex_state = 96, .external_lex_state = 5}, + [2641] = {.lex_state = 96, .external_lex_state = 4}, + [2642] = {.lex_state = 96, .external_lex_state = 4}, + [2643] = {.lex_state = 12}, + [2644] = {.lex_state = 13}, + [2645] = {.lex_state = 96, .external_lex_state = 4}, + [2646] = {.lex_state = 12}, + [2647] = {.lex_state = 96}, [2648] = {.lex_state = 12}, - [2649] = {.lex_state = 13}, - [2650] = {.lex_state = 12}, - [2651] = {.lex_state = 96, .external_lex_state = 4}, - [2652] = {.lex_state = 96, .external_lex_state = 5}, - [2653] = {.lex_state = 12}, - [2654] = {.lex_state = 96, .external_lex_state = 5}, - [2655] = {.lex_state = 96}, - [2656] = {.lex_state = 13}, - [2657] = {.lex_state = 96, .external_lex_state = 5}, - [2658] = {.lex_state = 96}, - [2659] = {.lex_state = 12}, - [2660] = {.lex_state = 96}, + [2649] = {.lex_state = 13, .external_lex_state = 4}, + [2650] = {.lex_state = 16}, + [2651] = {.lex_state = 16}, + [2652] = {.lex_state = 96}, + [2653] = {.lex_state = 96}, + [2654] = {.lex_state = 12}, + [2655] = {.lex_state = 16}, + [2656] = {.lex_state = 96, .external_lex_state = 4}, + [2657] = {.lex_state = 96, .external_lex_state = 4}, + [2658] = {.lex_state = 12}, + [2659] = {.lex_state = 96, .external_lex_state = 5}, + [2660] = {.lex_state = 96, .external_lex_state = 5}, [2661] = {.lex_state = 96, .external_lex_state = 5}, - [2662] = {.lex_state = 12}, - [2663] = {.lex_state = 96}, - [2664] = {.lex_state = 12}, - [2665] = {.lex_state = 12}, - [2666] = {.lex_state = 12}, - [2667] = {.lex_state = 96, .external_lex_state = 5}, - [2668] = {.lex_state = 96, .external_lex_state = 5}, + [2662] = {.lex_state = 96, .external_lex_state = 5}, + [2663] = {.lex_state = 96, .external_lex_state = 5}, + [2664] = {.lex_state = 96}, + [2665] = {.lex_state = 96, .external_lex_state = 5}, + [2666] = {.lex_state = 15}, + [2667] = {.lex_state = 12}, + [2668] = {.lex_state = 96}, [2669] = {.lex_state = 96, .external_lex_state = 5}, [2670] = {.lex_state = 96, .external_lex_state = 5}, [2671] = {.lex_state = 96, .external_lex_state = 5}, - [2672] = {.lex_state = 96, .external_lex_state = 5}, - [2673] = {.lex_state = 96, .external_lex_state = 5}, - [2674] = {.lex_state = 15}, + [2672] = {.lex_state = 12}, + [2673] = {.lex_state = 96}, + [2674] = {.lex_state = 96, .external_lex_state = 5}, [2675] = {.lex_state = 96, .external_lex_state = 5}, [2676] = {.lex_state = 96, .external_lex_state = 5}, [2677] = {.lex_state = 96, .external_lex_state = 5}, [2678] = {.lex_state = 12}, [2679] = {.lex_state = 96, .external_lex_state = 5}, - [2680] = {.lex_state = 96, .external_lex_state = 5}, - [2681] = {.lex_state = 96, .external_lex_state = 5}, - [2682] = {.lex_state = 96, .external_lex_state = 5}, + [2680] = {.lex_state = 96}, + [2681] = {.lex_state = 12}, + [2682] = {.lex_state = 13}, [2683] = {.lex_state = 96, .external_lex_state = 5}, [2684] = {.lex_state = 96, .external_lex_state = 5}, - [2685] = {.lex_state = 12}, - [2686] = {.lex_state = 12}, - [2687] = {.lex_state = 96, .external_lex_state = 5}, + [2685] = {.lex_state = 96, .external_lex_state = 5}, + [2686] = {.lex_state = 96, .external_lex_state = 5}, + [2687] = {.lex_state = 12}, [2688] = {.lex_state = 96, .external_lex_state = 5}, - [2689] = {.lex_state = 96, .external_lex_state = 5}, - [2690] = {.lex_state = 12}, + [2689] = {.lex_state = 12}, + [2690] = {.lex_state = 96, .external_lex_state = 4}, [2691] = {.lex_state = 96, .external_lex_state = 5}, - [2692] = {.lex_state = 96, .external_lex_state = 4}, - [2693] = {.lex_state = 12}, - [2694] = {.lex_state = 13}, - [2695] = {.lex_state = 96}, + [2692] = {.lex_state = 96, .external_lex_state = 5}, + [2693] = {.lex_state = 15}, + [2694] = {.lex_state = 96, .external_lex_state = 5}, + [2695] = {.lex_state = 96, .external_lex_state = 5}, [2696] = {.lex_state = 96, .external_lex_state = 5}, - [2697] = {.lex_state = 96, .external_lex_state = 5}, - [2698] = {.lex_state = 96}, - [2699] = {.lex_state = 96, .external_lex_state = 4}, - [2700] = {.lex_state = 15}, + [2697] = {.lex_state = 13}, + [2698] = {.lex_state = 12}, + [2699] = {.lex_state = 96, .external_lex_state = 5}, + [2700] = {.lex_state = 96, .external_lex_state = 4}, [2701] = {.lex_state = 96, .external_lex_state = 5}, [2702] = {.lex_state = 96, .external_lex_state = 5}, - [2703] = {.lex_state = 15}, - [2704] = {.lex_state = 96, .external_lex_state = 5}, - [2705] = {.lex_state = 12}, - [2706] = {.lex_state = 13}, + [2703] = {.lex_state = 96, .external_lex_state = 5}, + [2704] = {.lex_state = 12}, + [2705] = {.lex_state = 96, .external_lex_state = 5}, + [2706] = {.lex_state = 96, .external_lex_state = 5}, [2707] = {.lex_state = 96, .external_lex_state = 5}, [2708] = {.lex_state = 12}, - [2709] = {.lex_state = 96, .external_lex_state = 4}, - [2710] = {.lex_state = 96, .external_lex_state = 4}, - [2711] = {.lex_state = 12}, - [2712] = {.lex_state = 96, .external_lex_state = 5}, - [2713] = {.lex_state = 13}, + [2709] = {.lex_state = 12}, + [2710] = {.lex_state = 96, .external_lex_state = 5}, + [2711] = {.lex_state = 96, .external_lex_state = 4}, + [2712] = {.lex_state = 96, .external_lex_state = 4}, + [2713] = {.lex_state = 96, .external_lex_state = 5}, [2714] = {.lex_state = 96, .external_lex_state = 5}, - [2715] = {.lex_state = 96, .external_lex_state = 4}, + [2715] = {.lex_state = 96, .external_lex_state = 5}, [2716] = {.lex_state = 12}, [2717] = {.lex_state = 12}, - [2718] = {.lex_state = 96, .external_lex_state = 5}, + [2718] = {.lex_state = 15}, [2719] = {.lex_state = 96, .external_lex_state = 5}, [2720] = {.lex_state = 96, .external_lex_state = 5}, - [2721] = {.lex_state = 13}, + [2721] = {.lex_state = 96, .external_lex_state = 5}, [2722] = {.lex_state = 96, .external_lex_state = 5}, - [2723] = {.lex_state = 13}, - [2724] = {.lex_state = 12}, - [2725] = {.lex_state = 96}, - [2726] = {.lex_state = 96, .external_lex_state = 5}, - [2727] = {.lex_state = 96, .external_lex_state = 5}, - [2728] = {.lex_state = 96, .external_lex_state = 5}, - [2729] = {.lex_state = 96, .external_lex_state = 4}, - [2730] = {.lex_state = 96}, + [2723] = {.lex_state = 96}, + [2724] = {.lex_state = 96, .external_lex_state = 4}, + [2725] = {.lex_state = 96, .external_lex_state = 4}, + [2726] = {.lex_state = 12}, + [2727] = {.lex_state = 96}, + [2728] = {.lex_state = 96}, + [2729] = {.lex_state = 12}, + [2730] = {.lex_state = 13}, [2731] = {.lex_state = 96, .external_lex_state = 5}, - [2732] = {.lex_state = 96, .external_lex_state = 5}, - [2733] = {.lex_state = 96, .external_lex_state = 5}, - [2734] = {.lex_state = 96}, - [2735] = {.lex_state = 96, .external_lex_state = 5}, + [2732] = {.lex_state = 13}, + [2733] = {.lex_state = 13}, + [2734] = {.lex_state = 13}, + [2735] = {.lex_state = 96}, [2736] = {.lex_state = 96, .external_lex_state = 5}, [2737] = {.lex_state = 96, .external_lex_state = 5}, [2738] = {.lex_state = 96, .external_lex_state = 5}, - [2739] = {.lex_state = 96, .external_lex_state = 5}, + [2739] = {.lex_state = 13}, [2740] = {.lex_state = 96, .external_lex_state = 5}, - [2741] = {.lex_state = 18, .external_lex_state = 6}, - [2742] = {.lex_state = 16}, - [2743] = {.lex_state = 96, .external_lex_state = 5}, - [2744] = {.lex_state = 96, .external_lex_state = 4}, - [2745] = {.lex_state = 18, .external_lex_state = 6}, + [2741] = {.lex_state = 96, .external_lex_state = 5}, + [2742] = {.lex_state = 12}, + [2743] = {.lex_state = 96, .external_lex_state = 4}, + [2744] = {.lex_state = 13}, + [2745] = {.lex_state = 96, .external_lex_state = 5}, [2746] = {.lex_state = 96}, - [2747] = {.lex_state = 16}, - [2748] = {.lex_state = 96}, - [2749] = {.lex_state = 96, .external_lex_state = 4}, - [2750] = {.lex_state = 96, .external_lex_state = 4}, - [2751] = {.lex_state = 16}, - [2752] = {.lex_state = 18, .external_lex_state = 6}, - [2753] = {.lex_state = 18, .external_lex_state = 6}, - [2754] = {.lex_state = 13}, - [2755] = {.lex_state = 18, .external_lex_state = 6}, - [2756] = {.lex_state = 18, .external_lex_state = 6}, + [2747] = {.lex_state = 12}, + [2748] = {.lex_state = 12}, + [2749] = {.lex_state = 12}, + [2750] = {.lex_state = 96, .external_lex_state = 5}, + [2751] = {.lex_state = 96, .external_lex_state = 5}, + [2752] = {.lex_state = 12}, + [2753] = {.lex_state = 96, .external_lex_state = 5}, + [2754] = {.lex_state = 16}, + [2755] = {.lex_state = 96, .external_lex_state = 4}, + [2756] = {.lex_state = 96, .external_lex_state = 4}, [2757] = {.lex_state = 96}, - [2758] = {.lex_state = 18, .external_lex_state = 6}, - [2759] = {.lex_state = 18, .external_lex_state = 6}, + [2758] = {.lex_state = 13}, + [2759] = {.lex_state = 96, .external_lex_state = 4}, [2760] = {.lex_state = 96}, - [2761] = {.lex_state = 96, .external_lex_state = 4}, - [2762] = {.lex_state = 96}, - [2763] = {.lex_state = 96}, - [2764] = {.lex_state = 96}, - [2765] = {.lex_state = 0, .external_lex_state = 4}, - [2766] = {.lex_state = 96}, - [2767] = {.lex_state = 0, .external_lex_state = 4}, - [2768] = {.lex_state = 0, .external_lex_state = 4}, + [2761] = {.lex_state = 16}, + [2762] = {.lex_state = 16}, + [2763] = {.lex_state = 18, .external_lex_state = 6}, + [2764] = {.lex_state = 18, .external_lex_state = 6}, + [2765] = {.lex_state = 18, .external_lex_state = 6}, + [2766] = {.lex_state = 18, .external_lex_state = 6}, + [2767] = {.lex_state = 18, .external_lex_state = 6}, + [2768] = {.lex_state = 96, .external_lex_state = 4}, [2769] = {.lex_state = 96}, - [2770] = {.lex_state = 96}, - [2771] = {.lex_state = 96, .external_lex_state = 4}, - [2772] = {.lex_state = 96, .external_lex_state = 4}, - [2773] = {.lex_state = 96}, - [2774] = {.lex_state = 0, .external_lex_state = 4}, - [2775] = {.lex_state = 13}, - [2776] = {.lex_state = 0, .external_lex_state = 4}, - [2777] = {.lex_state = 13}, - [2778] = {.lex_state = 96}, - [2779] = {.lex_state = 96}, + [2770] = {.lex_state = 96, .external_lex_state = 4}, + [2771] = {.lex_state = 96, .external_lex_state = 5}, + [2772] = {.lex_state = 18, .external_lex_state = 6}, + [2773] = {.lex_state = 18, .external_lex_state = 6}, + [2774] = {.lex_state = 18, .external_lex_state = 6}, + [2775] = {.lex_state = 96}, + [2776] = {.lex_state = 96}, + [2777] = {.lex_state = 96}, + [2778] = {.lex_state = 13}, + [2779] = {.lex_state = 96, .external_lex_state = 4}, [2780] = {.lex_state = 13}, - [2781] = {.lex_state = 13}, + [2781] = {.lex_state = 96}, [2782] = {.lex_state = 96}, [2783] = {.lex_state = 13}, [2784] = {.lex_state = 96}, [2785] = {.lex_state = 96}, - [2786] = {.lex_state = 96}, - [2787] = {.lex_state = 96}, - [2788] = {.lex_state = 96, .external_lex_state = 4}, + [2786] = {.lex_state = 96, .external_lex_state = 4}, + [2787] = {.lex_state = 0, .external_lex_state = 4}, + [2788] = {.lex_state = 13}, [2789] = {.lex_state = 96}, - [2790] = {.lex_state = 96, .external_lex_state = 4}, - [2791] = {.lex_state = 96, .external_lex_state = 4}, - [2792] = {.lex_state = 0, .external_lex_state = 4}, - [2793] = {.lex_state = 96, .external_lex_state = 4}, - [2794] = {.lex_state = 0, .external_lex_state = 4}, - [2795] = {.lex_state = 96, .external_lex_state = 4}, - [2796] = {.lex_state = 96, .external_lex_state = 4}, - [2797] = {.lex_state = 96, .external_lex_state = 4}, - [2798] = {.lex_state = 0, .external_lex_state = 4}, + [2790] = {.lex_state = 96}, + [2791] = {.lex_state = 96}, + [2792] = {.lex_state = 96}, + [2793] = {.lex_state = 0, .external_lex_state = 4}, + [2794] = {.lex_state = 13}, + [2795] = {.lex_state = 96}, + [2796] = {.lex_state = 96}, + [2797] = {.lex_state = 0, .external_lex_state = 4}, + [2798] = {.lex_state = 96}, [2799] = {.lex_state = 96, .external_lex_state = 4}, - [2800] = {.lex_state = 0, .external_lex_state = 4}, - [2801] = {.lex_state = 96, .external_lex_state = 4}, + [2800] = {.lex_state = 13}, + [2801] = {.lex_state = 0, .external_lex_state = 4}, [2802] = {.lex_state = 96, .external_lex_state = 4}, - [2803] = {.lex_state = 13}, + [2803] = {.lex_state = 96, .external_lex_state = 4}, [2804] = {.lex_state = 96}, - [2805] = {.lex_state = 96, .external_lex_state = 4}, - [2806] = {.lex_state = 96}, - [2807] = {.lex_state = 96}, - [2808] = {.lex_state = 96, .external_lex_state = 4}, + [2805] = {.lex_state = 0, .external_lex_state = 4}, + [2806] = {.lex_state = 0, .external_lex_state = 4}, + [2807] = {.lex_state = 96, .external_lex_state = 4}, + [2808] = {.lex_state = 96}, [2809] = {.lex_state = 96}, [2810] = {.lex_state = 96}, - [2811] = {.lex_state = 96, .external_lex_state = 4}, - [2812] = {.lex_state = 96, .external_lex_state = 4}, - [2813] = {.lex_state = 96, .external_lex_state = 4}, - [2814] = {.lex_state = 96}, - [2815] = {.lex_state = 96}, - [2816] = {.lex_state = 96}, - [2817] = {.lex_state = 96}, - [2818] = {.lex_state = 96}, - [2819] = {.lex_state = 0, .external_lex_state = 4}, + [2811] = {.lex_state = 96}, + [2812] = {.lex_state = 96}, + [2813] = {.lex_state = 96}, + [2814] = {.lex_state = 13}, + [2815] = {.lex_state = 96, .external_lex_state = 4}, + [2816] = {.lex_state = 96, .external_lex_state = 4}, + [2817] = {.lex_state = 96, .external_lex_state = 4}, + [2818] = {.lex_state = 96, .external_lex_state = 4}, + [2819] = {.lex_state = 96}, [2820] = {.lex_state = 96}, [2821] = {.lex_state = 96}, - [2822] = {.lex_state = 96}, - [2823] = {.lex_state = 96}, - [2824] = {.lex_state = 96}, - [2825] = {.lex_state = 96}, + [2822] = {.lex_state = 96, .external_lex_state = 4}, + [2823] = {.lex_state = 96, .external_lex_state = 4}, + [2824] = {.lex_state = 96, .external_lex_state = 4}, + [2825] = {.lex_state = 96, .external_lex_state = 4}, [2826] = {.lex_state = 96, .external_lex_state = 4}, [2827] = {.lex_state = 96, .external_lex_state = 4}, [2828] = {.lex_state = 96, .external_lex_state = 4}, [2829] = {.lex_state = 96, .external_lex_state = 4}, - [2830] = {.lex_state = 13}, - [2831] = {.lex_state = 96}, + [2830] = {.lex_state = 96, .external_lex_state = 4}, + [2831] = {.lex_state = 96, .external_lex_state = 4}, [2832] = {.lex_state = 96, .external_lex_state = 4}, - [2833] = {.lex_state = 13}, - [2834] = {.lex_state = 96, .external_lex_state = 4}, - [2835] = {.lex_state = 96, .external_lex_state = 4}, - [2836] = {.lex_state = 96}, + [2833] = {.lex_state = 96}, + [2834] = {.lex_state = 96}, + [2835] = {.lex_state = 0, .external_lex_state = 4}, + [2836] = {.lex_state = 13}, [2837] = {.lex_state = 96, .external_lex_state = 4}, [2838] = {.lex_state = 13}, - [2839] = {.lex_state = 96}, + [2839] = {.lex_state = 13}, [2840] = {.lex_state = 13}, - [2841] = {.lex_state = 96}, - [2842] = {.lex_state = 96, .external_lex_state = 4}, - [2843] = {.lex_state = 96}, + [2841] = {.lex_state = 13}, + [2842] = {.lex_state = 13}, + [2843] = {.lex_state = 13}, [2844] = {.lex_state = 96, .external_lex_state = 4}, - [2845] = {.lex_state = 13}, - [2846] = {.lex_state = 96, .external_lex_state = 4}, - [2847] = {.lex_state = 13}, - [2848] = {.lex_state = 96, .external_lex_state = 4}, + [2845] = {.lex_state = 96}, + [2846] = {.lex_state = 96}, + [2847] = {.lex_state = 96, .external_lex_state = 4}, + [2848] = {.lex_state = 96}, [2849] = {.lex_state = 96, .external_lex_state = 4}, [2850] = {.lex_state = 96, .external_lex_state = 4}, - [2851] = {.lex_state = 13}, - [2852] = {.lex_state = 13}, - [2853] = {.lex_state = 13}, + [2851] = {.lex_state = 96, .external_lex_state = 4}, + [2852] = {.lex_state = 96, .external_lex_state = 4}, + [2853] = {.lex_state = 96, .external_lex_state = 4}, [2854] = {.lex_state = 13}, - [2855] = {.lex_state = 96, .external_lex_state = 4}, - [2856] = {.lex_state = 13}, + [2855] = {.lex_state = 96}, + [2856] = {.lex_state = 0, .external_lex_state = 4}, [2857] = {.lex_state = 96}, - [2858] = {.lex_state = 13}, - [2859] = {.lex_state = 96}, - [2860] = {.lex_state = 96, .external_lex_state = 4}, - [2861] = {.lex_state = 96, .external_lex_state = 4}, - [2862] = {.lex_state = 96, .external_lex_state = 4}, + [2858] = {.lex_state = 96}, + [2859] = {.lex_state = 96, .external_lex_state = 4}, + [2860] = {.lex_state = 96}, + [2861] = {.lex_state = 96}, + [2862] = {.lex_state = 96}, [2863] = {.lex_state = 13}, - [2864] = {.lex_state = 96}, - [2865] = {.lex_state = 96}, - [2866] = {.lex_state = 96, .external_lex_state = 4}, + [2864] = {.lex_state = 13}, + [2865] = {.lex_state = 96, .external_lex_state = 4}, + [2866] = {.lex_state = 96}, [2867] = {.lex_state = 96}, - [2868] = {.lex_state = 96, .external_lex_state = 4}, + [2868] = {.lex_state = 0, .external_lex_state = 4}, [2869] = {.lex_state = 96}, - [2870] = {.lex_state = 96}, - [2871] = {.lex_state = 0, .external_lex_state = 4}, - [2872] = {.lex_state = 0, .external_lex_state = 4}, - [2873] = {.lex_state = 96}, - [2874] = {.lex_state = 96}, + [2870] = {.lex_state = 13}, + [2871] = {.lex_state = 96, .external_lex_state = 4}, + [2872] = {.lex_state = 96, .external_lex_state = 4}, + [2873] = {.lex_state = 96, .external_lex_state = 4}, + [2874] = {.lex_state = 96, .external_lex_state = 4}, [2875] = {.lex_state = 0, .external_lex_state = 4}, [2876] = {.lex_state = 0, .external_lex_state = 4}, - [2877] = {.lex_state = 0, .external_lex_state = 4}, - [2878] = {.lex_state = 13}, - [2879] = {.lex_state = 13}, - [2880] = {.lex_state = 96}, - [2881] = {.lex_state = 96}, - [2882] = {.lex_state = 0, .external_lex_state = 4}, - [2883] = {.lex_state = 0, .external_lex_state = 4}, - [2884] = {.lex_state = 96, .external_lex_state = 4}, - [2885] = {.lex_state = 96}, - [2886] = {.lex_state = 96}, - [2887] = {.lex_state = 18}, - [2888] = {.lex_state = 0, .external_lex_state = 4}, - [2889] = {.lex_state = 0, .external_lex_state = 4}, - [2890] = {.lex_state = 96}, + [2877] = {.lex_state = 96}, + [2878] = {.lex_state = 96}, + [2879] = {.lex_state = 96}, + [2880] = {.lex_state = 13}, + [2881] = {.lex_state = 96, .external_lex_state = 4}, + [2882] = {.lex_state = 96}, + [2883] = {.lex_state = 96}, + [2884] = {.lex_state = 96}, + [2885] = {.lex_state = 96, .external_lex_state = 4}, + [2886] = {.lex_state = 96, .external_lex_state = 4}, + [2887] = {.lex_state = 96}, + [2888] = {.lex_state = 96}, + [2889] = {.lex_state = 96}, + [2890] = {.lex_state = 96, .external_lex_state = 5}, [2891] = {.lex_state = 96}, - [2892] = {.lex_state = 96}, - [2893] = {.lex_state = 96}, - [2894] = {.lex_state = 96}, + [2892] = {.lex_state = 13}, + [2893] = {.lex_state = 0, .external_lex_state = 4}, + [2894] = {.lex_state = 13}, [2895] = {.lex_state = 0, .external_lex_state = 4}, - [2896] = {.lex_state = 96, .external_lex_state = 5}, + [2896] = {.lex_state = 0, .external_lex_state = 4}, [2897] = {.lex_state = 0, .external_lex_state = 4}, - [2898] = {.lex_state = 96, .external_lex_state = 5}, - [2899] = {.lex_state = 13}, - [2900] = {.lex_state = 96}, - [2901] = {.lex_state = 96}, + [2898] = {.lex_state = 96}, + [2899] = {.lex_state = 96}, + [2900] = {.lex_state = 13}, + [2901] = {.lex_state = 13}, [2902] = {.lex_state = 13}, [2903] = {.lex_state = 96, .external_lex_state = 5}, [2904] = {.lex_state = 0, .external_lex_state = 4}, - [2905] = {.lex_state = 13}, - [2906] = {.lex_state = 96, .external_lex_state = 5}, - [2907] = {.lex_state = 18, .external_lex_state = 6}, - [2908] = {.lex_state = 0, .external_lex_state = 4}, - [2909] = {.lex_state = 96, .external_lex_state = 5}, - [2910] = {.lex_state = 13}, + [2905] = {.lex_state = 96}, + [2906] = {.lex_state = 96}, + [2907] = {.lex_state = 13}, + [2908] = {.lex_state = 96}, + [2909] = {.lex_state = 0}, + [2910] = {.lex_state = 18, .external_lex_state = 6}, [2911] = {.lex_state = 13}, [2912] = {.lex_state = 96}, [2913] = {.lex_state = 13}, - [2914] = {.lex_state = 96, .external_lex_state = 5}, - [2915] = {.lex_state = 18, .external_lex_state = 6}, - [2916] = {.lex_state = 0, .external_lex_state = 4}, - [2917] = {.lex_state = 96}, - [2918] = {.lex_state = 13}, - [2919] = {.lex_state = 18}, - [2920] = {.lex_state = 0, .external_lex_state = 4}, - [2921] = {.lex_state = 0, .external_lex_state = 4}, - [2922] = {.lex_state = 96, .external_lex_state = 5}, + [2914] = {.lex_state = 96, .external_lex_state = 4}, + [2915] = {.lex_state = 13}, + [2916] = {.lex_state = 96}, + [2917] = {.lex_state = 13}, + [2918] = {.lex_state = 96, .external_lex_state = 5}, + [2919] = {.lex_state = 96}, + [2920] = {.lex_state = 18, .external_lex_state = 6}, + [2921] = {.lex_state = 13}, + [2922] = {.lex_state = 96}, [2923] = {.lex_state = 96, .external_lex_state = 5}, - [2924] = {.lex_state = 96}, + [2924] = {.lex_state = 13}, [2925] = {.lex_state = 96, .external_lex_state = 5}, - [2926] = {.lex_state = 13}, - [2927] = {.lex_state = 96, .external_lex_state = 5}, - [2928] = {.lex_state = 13}, - [2929] = {.lex_state = 96}, - [2930] = {.lex_state = 96}, - [2931] = {.lex_state = 0, .external_lex_state = 4}, - [2932] = {.lex_state = 96}, + [2926] = {.lex_state = 18, .external_lex_state = 6}, + [2927] = {.lex_state = 0, .external_lex_state = 4}, + [2928] = {.lex_state = 0, .external_lex_state = 4}, + [2929] = {.lex_state = 18, .external_lex_state = 6}, + [2930] = {.lex_state = 96, .external_lex_state = 5}, + [2931] = {.lex_state = 18}, + [2932] = {.lex_state = 18}, [2933] = {.lex_state = 13}, - [2934] = {.lex_state = 0, .external_lex_state = 4}, - [2935] = {.lex_state = 96, .external_lex_state = 5}, - [2936] = {.lex_state = 96, .external_lex_state = 5}, - [2937] = {.lex_state = 18, .external_lex_state = 6}, - [2938] = {.lex_state = 18}, - [2939] = {.lex_state = 18}, - [2940] = {.lex_state = 13}, - [2941] = {.lex_state = 18}, - [2942] = {.lex_state = 13}, - [2943] = {.lex_state = 0, .external_lex_state = 4}, - [2944] = {.lex_state = 13}, - [2945] = {.lex_state = 96}, - [2946] = {.lex_state = 13}, - [2947] = {.lex_state = 96}, - [2948] = {.lex_state = 13}, - [2949] = {.lex_state = 96, .external_lex_state = 5}, + [2934] = {.lex_state = 96}, + [2935] = {.lex_state = 18}, + [2936] = {.lex_state = 18}, + [2937] = {.lex_state = 96}, + [2938] = {.lex_state = 0, .external_lex_state = 4}, + [2939] = {.lex_state = 96, .external_lex_state = 5}, + [2940] = {.lex_state = 18}, + [2941] = {.lex_state = 13}, + [2942] = {.lex_state = 96}, + [2943] = {.lex_state = 13}, + [2944] = {.lex_state = 96}, + [2945] = {.lex_state = 13}, + [2946] = {.lex_state = 0, .external_lex_state = 4}, + [2947] = {.lex_state = 13}, + [2948] = {.lex_state = 96, .external_lex_state = 5}, + [2949] = {.lex_state = 96}, [2950] = {.lex_state = 96, .external_lex_state = 5}, [2951] = {.lex_state = 96, .external_lex_state = 5}, - [2952] = {.lex_state = 0, .external_lex_state = 4}, - [2953] = {.lex_state = 13}, - [2954] = {.lex_state = 96, .external_lex_state = 5}, + [2952] = {.lex_state = 96}, + [2953] = {.lex_state = 96}, + [2954] = {.lex_state = 13}, [2955] = {.lex_state = 13}, [2956] = {.lex_state = 96}, - [2957] = {.lex_state = 96, .external_lex_state = 4}, - [2958] = {.lex_state = 96, .external_lex_state = 4}, - [2959] = {.lex_state = 96, .external_lex_state = 5}, - [2960] = {.lex_state = 96}, - [2961] = {.lex_state = 96}, - [2962] = {.lex_state = 13}, - [2963] = {.lex_state = 13}, - [2964] = {.lex_state = 18}, - [2965] = {.lex_state = 18}, - [2966] = {.lex_state = 96, .external_lex_state = 5}, - [2967] = {.lex_state = 96, .external_lex_state = 5}, - [2968] = {.lex_state = 13}, - [2969] = {.lex_state = 13}, - [2970] = {.lex_state = 96, .external_lex_state = 5}, - [2971] = {.lex_state = 96}, + [2957] = {.lex_state = 0, .external_lex_state = 4}, + [2958] = {.lex_state = 0, .external_lex_state = 4}, + [2959] = {.lex_state = 96}, + [2960] = {.lex_state = 13}, + [2961] = {.lex_state = 96, .external_lex_state = 5}, + [2962] = {.lex_state = 96}, + [2963] = {.lex_state = 96}, + [2964] = {.lex_state = 96, .external_lex_state = 4}, + [2965] = {.lex_state = 0, .external_lex_state = 4}, + [2966] = {.lex_state = 13}, + [2967] = {.lex_state = 96}, + [2968] = {.lex_state = 96, .external_lex_state = 5}, + [2969] = {.lex_state = 96}, + [2970] = {.lex_state = 13}, + [2971] = {.lex_state = 13}, [2972] = {.lex_state = 96, .external_lex_state = 5}, [2973] = {.lex_state = 13}, [2974] = {.lex_state = 13}, [2975] = {.lex_state = 96}, - [2976] = {.lex_state = 13}, + [2976] = {.lex_state = 96, .external_lex_state = 5}, [2977] = {.lex_state = 0, .external_lex_state = 4}, - [2978] = {.lex_state = 13}, - [2979] = {.lex_state = 0, .external_lex_state = 4}, - [2980] = {.lex_state = 96}, - [2981] = {.lex_state = 13}, + [2978] = {.lex_state = 96}, + [2979] = {.lex_state = 96, .external_lex_state = 5}, + [2980] = {.lex_state = 0, .external_lex_state = 4}, + [2981] = {.lex_state = 96, .external_lex_state = 5}, [2982] = {.lex_state = 13}, - [2983] = {.lex_state = 13}, - [2984] = {.lex_state = 96}, + [2983] = {.lex_state = 18}, + [2984] = {.lex_state = 96, .external_lex_state = 5}, [2985] = {.lex_state = 96}, - [2986] = {.lex_state = 96}, - [2987] = {.lex_state = 96}, + [2986] = {.lex_state = 0, .external_lex_state = 4}, + [2987] = {.lex_state = 0, .external_lex_state = 4}, [2988] = {.lex_state = 96}, - [2989] = {.lex_state = 96}, + [2989] = {.lex_state = 13}, [2990] = {.lex_state = 96}, - [2991] = {.lex_state = 96}, - [2992] = {.lex_state = 96}, - [2993] = {.lex_state = 13}, - [2994] = {.lex_state = 18}, - [2995] = {.lex_state = 18}, - [2996] = {.lex_state = 13}, - [2997] = {.lex_state = 96, .external_lex_state = 4}, - [2998] = {.lex_state = 13}, + [2991] = {.lex_state = 0, .external_lex_state = 4}, + [2992] = {.lex_state = 0, .external_lex_state = 4}, + [2993] = {.lex_state = 96, .external_lex_state = 5}, + [2994] = {.lex_state = 96, .external_lex_state = 5}, + [2995] = {.lex_state = 96}, + [2996] = {.lex_state = 18}, + [2997] = {.lex_state = 96, .external_lex_state = 5}, + [2998] = {.lex_state = 96, .external_lex_state = 5}, [2999] = {.lex_state = 13}, [3000] = {.lex_state = 96}, - [3001] = {.lex_state = 13}, - [3002] = {.lex_state = 13}, - [3003] = {.lex_state = 0, .external_lex_state = 4}, + [3001] = {.lex_state = 96}, + [3002] = {.lex_state = 96}, + [3003] = {.lex_state = 13}, [3004] = {.lex_state = 96}, - [3005] = {.lex_state = 0, .external_lex_state = 4}, - [3006] = {.lex_state = 96, .external_lex_state = 5}, - [3007] = {.lex_state = 18, .external_lex_state = 6}, - [3008] = {.lex_state = 13}, + [3005] = {.lex_state = 96}, + [3006] = {.lex_state = 13}, + [3007] = {.lex_state = 0, .external_lex_state = 4}, + [3008] = {.lex_state = 96}, [3009] = {.lex_state = 96, .external_lex_state = 5}, - [3010] = {.lex_state = 13}, - [3011] = {.lex_state = 96, .external_lex_state = 5}, - [3012] = {.lex_state = 96}, - [3013] = {.lex_state = 18, .external_lex_state = 6}, - [3014] = {.lex_state = 96, .external_lex_state = 5}, - [3015] = {.lex_state = 13}, - [3016] = {.lex_state = 96}, - [3017] = {.lex_state = 96}, - [3018] = {.lex_state = 96}, - [3019] = {.lex_state = 13}, - [3020] = {.lex_state = 96, .external_lex_state = 5}, + [3010] = {.lex_state = 96}, + [3011] = {.lex_state = 18}, + [3012] = {.lex_state = 18}, + [3013] = {.lex_state = 13}, + [3014] = {.lex_state = 96}, + [3015] = {.lex_state = 0, .external_lex_state = 4}, + [3016] = {.lex_state = 13}, + [3017] = {.lex_state = 96, .external_lex_state = 5}, + [3018] = {.lex_state = 13}, + [3019] = {.lex_state = 0, .external_lex_state = 4}, + [3020] = {.lex_state = 0, .external_lex_state = 4}, [3021] = {.lex_state = 0, .external_lex_state = 4}, - [3022] = {.lex_state = 0, .external_lex_state = 4}, - [3023] = {.lex_state = 96}, - [3024] = {.lex_state = 0}, - [3025] = {.lex_state = 96, .external_lex_state = 5}, - [3026] = {.lex_state = 0}, - [3027] = {.lex_state = 0, .external_lex_state = 4}, - [3028] = {.lex_state = 96, .external_lex_state = 4}, - [3029] = {.lex_state = 0, .external_lex_state = 4}, - [3030] = {.lex_state = 0, .external_lex_state = 4}, - [3031] = {.lex_state = 0, .external_lex_state = 4}, - [3032] = {.lex_state = 0, .external_lex_state = 4}, - [3033] = {.lex_state = 0, .external_lex_state = 4}, + [3022] = {.lex_state = 18, .external_lex_state = 6}, + [3023] = {.lex_state = 0, .external_lex_state = 4}, + [3024] = {.lex_state = 13}, + [3025] = {.lex_state = 13}, + [3026] = {.lex_state = 0, .external_lex_state = 4}, + [3027] = {.lex_state = 96, .external_lex_state = 5}, + [3028] = {.lex_state = 13}, + [3029] = {.lex_state = 13}, + [3030] = {.lex_state = 13}, + [3031] = {.lex_state = 13}, + [3032] = {.lex_state = 96}, + [3033] = {.lex_state = 96}, [3034] = {.lex_state = 13}, - [3035] = {.lex_state = 0, .external_lex_state = 4}, - [3036] = {.lex_state = 0, .external_lex_state = 4}, - [3037] = {.lex_state = 96}, - [3038] = {.lex_state = 18, .external_lex_state = 6}, - [3039] = {.lex_state = 96}, - [3040] = {.lex_state = 0, .external_lex_state = 4}, - [3041] = {.lex_state = 96}, + [3035] = {.lex_state = 96}, + [3036] = {.lex_state = 96, .external_lex_state = 5}, + [3037] = {.lex_state = 96, .external_lex_state = 4}, + [3038] = {.lex_state = 96, .external_lex_state = 4}, + [3039] = {.lex_state = 96, .external_lex_state = 5}, + [3040] = {.lex_state = 96, .external_lex_state = 5}, + [3041] = {.lex_state = 0}, [3042] = {.lex_state = 0, .external_lex_state = 4}, - [3043] = {.lex_state = 0, .external_lex_state = 4}, - [3044] = {.lex_state = 0, .external_lex_state = 4}, - [3045] = {.lex_state = 0, .external_lex_state = 4}, - [3046] = {.lex_state = 0, .external_lex_state = 4}, + [3043] = {.lex_state = 96, .external_lex_state = 4}, + [3044] = {.lex_state = 96, .external_lex_state = 4}, + [3045] = {.lex_state = 96, .external_lex_state = 4}, + [3046] = {.lex_state = 13}, [3047] = {.lex_state = 0, .external_lex_state = 4}, - [3048] = {.lex_state = 0}, - [3049] = {.lex_state = 0}, - [3050] = {.lex_state = 96}, - [3051] = {.lex_state = 0}, - [3052] = {.lex_state = 0, .external_lex_state = 4}, - [3053] = {.lex_state = 0, .external_lex_state = 4}, - [3054] = {.lex_state = 13}, - [3055] = {.lex_state = 0, .external_lex_state = 4}, - [3056] = {.lex_state = 0, .external_lex_state = 4}, - [3057] = {.lex_state = 0, .external_lex_state = 4}, + [3048] = {.lex_state = 0, .external_lex_state = 4}, + [3049] = {.lex_state = 13}, + [3050] = {.lex_state = 0, .external_lex_state = 4}, + [3051] = {.lex_state = 13}, + [3052] = {.lex_state = 96, .external_lex_state = 5}, + [3053] = {.lex_state = 96, .external_lex_state = 4}, + [3054] = {.lex_state = 96, .external_lex_state = 4}, + [3055] = {.lex_state = 13}, + [3056] = {.lex_state = 96}, + [3057] = {.lex_state = 13}, [3058] = {.lex_state = 13}, - [3059] = {.lex_state = 0, .external_lex_state = 4}, - [3060] = {.lex_state = 18, .external_lex_state = 6}, + [3059] = {.lex_state = 96, .external_lex_state = 5}, + [3060] = {.lex_state = 96, .external_lex_state = 5}, [3061] = {.lex_state = 0, .external_lex_state = 4}, - [3062] = {.lex_state = 18, .external_lex_state = 6}, + [3062] = {.lex_state = 96, .external_lex_state = 4}, [3063] = {.lex_state = 0, .external_lex_state = 4}, - [3064] = {.lex_state = 0, .external_lex_state = 4}, - [3065] = {.lex_state = 96, .external_lex_state = 5}, + [3064] = {.lex_state = 96}, + [3065] = {.lex_state = 13}, [3066] = {.lex_state = 0, .external_lex_state = 4}, [3067] = {.lex_state = 0, .external_lex_state = 4}, [3068] = {.lex_state = 96}, - [3069] = {.lex_state = 0, .external_lex_state = 4}, - [3070] = {.lex_state = 0, .external_lex_state = 4}, + [3069] = {.lex_state = 96, .external_lex_state = 5}, + [3070] = {.lex_state = 13}, [3071] = {.lex_state = 0, .external_lex_state = 4}, - [3072] = {.lex_state = 0}, - [3073] = {.lex_state = 0, .external_lex_state = 4}, - [3074] = {.lex_state = 13}, - [3075] = {.lex_state = 13}, - [3076] = {.lex_state = 13}, + [3072] = {.lex_state = 13}, + [3073] = {.lex_state = 13}, + [3074] = {.lex_state = 0, .external_lex_state = 4}, + [3075] = {.lex_state = 0, .external_lex_state = 4}, + [3076] = {.lex_state = 0, .external_lex_state = 4}, [3077] = {.lex_state = 0, .external_lex_state = 4}, - [3078] = {.lex_state = 13}, - [3079] = {.lex_state = 0, .external_lex_state = 4}, - [3080] = {.lex_state = 0, .external_lex_state = 4}, - [3081] = {.lex_state = 96, .external_lex_state = 5}, - [3082] = {.lex_state = 0, .external_lex_state = 4}, - [3083] = {.lex_state = 18, .external_lex_state = 6}, + [3078] = {.lex_state = 0}, + [3079] = {.lex_state = 0}, + [3080] = {.lex_state = 13}, + [3081] = {.lex_state = 0, .external_lex_state = 4}, + [3082] = {.lex_state = 4}, + [3083] = {.lex_state = 13}, [3084] = {.lex_state = 0, .external_lex_state = 4}, - [3085] = {.lex_state = 0, .external_lex_state = 4}, - [3086] = {.lex_state = 96, .external_lex_state = 5}, + [3085] = {.lex_state = 13}, + [3086] = {.lex_state = 13}, [3087] = {.lex_state = 0, .external_lex_state = 4}, - [3088] = {.lex_state = 96}, + [3088] = {.lex_state = 0, .external_lex_state = 4}, [3089] = {.lex_state = 0, .external_lex_state = 4}, - [3090] = {.lex_state = 96, .external_lex_state = 4}, - [3091] = {.lex_state = 4}, - [3092] = {.lex_state = 18, .external_lex_state = 6}, + [3090] = {.lex_state = 0, .external_lex_state = 4}, + [3091] = {.lex_state = 0}, + [3092] = {.lex_state = 13}, [3093] = {.lex_state = 96}, - [3094] = {.lex_state = 0, .external_lex_state = 4}, + [3094] = {.lex_state = 0}, [3095] = {.lex_state = 0, .external_lex_state = 4}, - [3096] = {.lex_state = 0, .external_lex_state = 4}, - [3097] = {.lex_state = 0, .external_lex_state = 4}, + [3096] = {.lex_state = 13}, + [3097] = {.lex_state = 13}, [3098] = {.lex_state = 0, .external_lex_state = 4}, - [3099] = {.lex_state = 13}, - [3100] = {.lex_state = 13}, - [3101] = {.lex_state = 96, .external_lex_state = 5}, - [3102] = {.lex_state = 96, .external_lex_state = 4}, - [3103] = {.lex_state = 13}, - [3104] = {.lex_state = 13}, + [3099] = {.lex_state = 0, .external_lex_state = 4}, + [3100] = {.lex_state = 0, .external_lex_state = 4}, + [3101] = {.lex_state = 13}, + [3102] = {.lex_state = 96}, + [3103] = {.lex_state = 0, .external_lex_state = 4}, + [3104] = {.lex_state = 96}, [3105] = {.lex_state = 0, .external_lex_state = 4}, - [3106] = {.lex_state = 13}, - [3107] = {.lex_state = 0, .external_lex_state = 4}, - [3108] = {.lex_state = 0, .external_lex_state = 4}, - [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 0, .external_lex_state = 4}, - [3111] = {.lex_state = 13}, - [3112] = {.lex_state = 0, .external_lex_state = 4}, - [3113] = {.lex_state = 13}, + [3106] = {.lex_state = 96}, + [3107] = {.lex_state = 96}, + [3108] = {.lex_state = 96, .external_lex_state = 5}, + [3109] = {.lex_state = 0, .external_lex_state = 4}, + [3110] = {.lex_state = 13}, + [3111] = {.lex_state = 96}, + [3112] = {.lex_state = 96, .external_lex_state = 4}, + [3113] = {.lex_state = 18, .external_lex_state = 6}, [3114] = {.lex_state = 0, .external_lex_state = 4}, [3115] = {.lex_state = 13}, - [3116] = {.lex_state = 0, .external_lex_state = 4}, - [3117] = {.lex_state = 0, .external_lex_state = 4}, - [3118] = {.lex_state = 0, .external_lex_state = 4}, - [3119] = {.lex_state = 0, .external_lex_state = 4}, + [3116] = {.lex_state = 96, .external_lex_state = 5}, + [3117] = {.lex_state = 96}, + [3118] = {.lex_state = 96}, + [3119] = {.lex_state = 13}, [3120] = {.lex_state = 96}, [3121] = {.lex_state = 96}, - [3122] = {.lex_state = 0, .external_lex_state = 4}, - [3123] = {.lex_state = 0, .external_lex_state = 4}, - [3124] = {.lex_state = 0, .external_lex_state = 4}, - [3125] = {.lex_state = 96}, - [3126] = {.lex_state = 13}, - [3127] = {.lex_state = 13}, + [3122] = {.lex_state = 96}, + [3123] = {.lex_state = 0}, + [3124] = {.lex_state = 96}, + [3125] = {.lex_state = 13}, + [3126] = {.lex_state = 0, .external_lex_state = 4}, + [3127] = {.lex_state = 0, .external_lex_state = 4}, [3128] = {.lex_state = 0, .external_lex_state = 4}, [3129] = {.lex_state = 0, .external_lex_state = 4}, [3130] = {.lex_state = 0, .external_lex_state = 4}, [3131] = {.lex_state = 13}, - [3132] = {.lex_state = 0, .external_lex_state = 4}, - [3133] = {.lex_state = 0, .external_lex_state = 4}, - [3134] = {.lex_state = 13}, - [3135] = {.lex_state = 18, .external_lex_state = 6}, - [3136] = {.lex_state = 4}, + [3132] = {.lex_state = 96, .external_lex_state = 5}, + [3133] = {.lex_state = 13}, + [3134] = {.lex_state = 0}, + [3135] = {.lex_state = 96}, + [3136] = {.lex_state = 0, .external_lex_state = 4}, [3137] = {.lex_state = 96}, [3138] = {.lex_state = 0, .external_lex_state = 4}, - [3139] = {.lex_state = 96}, + [3139] = {.lex_state = 0, .external_lex_state = 4}, [3140] = {.lex_state = 0, .external_lex_state = 4}, - [3141] = {.lex_state = 0, .external_lex_state = 4}, - [3142] = {.lex_state = 96}, - [3143] = {.lex_state = 96}, - [3144] = {.lex_state = 96}, + [3141] = {.lex_state = 4}, + [3142] = {.lex_state = 13}, + [3143] = {.lex_state = 13}, + [3144] = {.lex_state = 13}, [3145] = {.lex_state = 0, .external_lex_state = 4}, - [3146] = {.lex_state = 96, .external_lex_state = 5}, + [3146] = {.lex_state = 0, .external_lex_state = 4}, [3147] = {.lex_state = 0, .external_lex_state = 4}, - [3148] = {.lex_state = 13}, - [3149] = {.lex_state = 0, .external_lex_state = 4}, - [3150] = {.lex_state = 96, .external_lex_state = 4}, + [3148] = {.lex_state = 96}, + [3149] = {.lex_state = 13}, + [3150] = {.lex_state = 0}, [3151] = {.lex_state = 0, .external_lex_state = 4}, [3152] = {.lex_state = 0, .external_lex_state = 4}, - [3153] = {.lex_state = 18, .external_lex_state = 6}, - [3154] = {.lex_state = 0, .external_lex_state = 4}, + [3153] = {.lex_state = 0, .external_lex_state = 4}, + [3154] = {.lex_state = 18, .external_lex_state = 6}, [3155] = {.lex_state = 13}, - [3156] = {.lex_state = 13}, + [3156] = {.lex_state = 96, .external_lex_state = 5}, [3157] = {.lex_state = 13}, [3158] = {.lex_state = 0, .external_lex_state = 4}, [3159] = {.lex_state = 13}, - [3160] = {.lex_state = 13}, - [3161] = {.lex_state = 13}, + [3160] = {.lex_state = 0, .external_lex_state = 4}, + [3161] = {.lex_state = 0, .external_lex_state = 4}, [3162] = {.lex_state = 0, .external_lex_state = 4}, [3163] = {.lex_state = 13}, - [3164] = {.lex_state = 0, .external_lex_state = 4}, - [3165] = {.lex_state = 0, .external_lex_state = 4}, - [3166] = {.lex_state = 0, .external_lex_state = 4}, + [3164] = {.lex_state = 96}, + [3165] = {.lex_state = 96}, + [3166] = {.lex_state = 96}, [3167] = {.lex_state = 0, .external_lex_state = 4}, - [3168] = {.lex_state = 0, .external_lex_state = 4}, - [3169] = {.lex_state = 0}, - [3170] = {.lex_state = 0, .external_lex_state = 4}, - [3171] = {.lex_state = 0, .external_lex_state = 4}, - [3172] = {.lex_state = 0}, + [3168] = {.lex_state = 0}, + [3169] = {.lex_state = 0, .external_lex_state = 4}, + [3170] = {.lex_state = 13}, + [3171] = {.lex_state = 18, .external_lex_state = 6}, + [3172] = {.lex_state = 96, .external_lex_state = 4}, [3173] = {.lex_state = 0, .external_lex_state = 4}, [3174] = {.lex_state = 13}, [3175] = {.lex_state = 0, .external_lex_state = 4}, - [3176] = {.lex_state = 13}, - [3177] = {.lex_state = 0}, + [3176] = {.lex_state = 0, .external_lex_state = 4}, + [3177] = {.lex_state = 13}, [3178] = {.lex_state = 0, .external_lex_state = 4}, [3179] = {.lex_state = 0, .external_lex_state = 4}, - [3180] = {.lex_state = 0, .external_lex_state = 4}, - [3181] = {.lex_state = 18, .external_lex_state = 6}, - [3182] = {.lex_state = 0, .external_lex_state = 4}, - [3183] = {.lex_state = 0, .external_lex_state = 4}, - [3184] = {.lex_state = 13}, - [3185] = {.lex_state = 0, .external_lex_state = 4}, - [3186] = {.lex_state = 13}, + [3180] = {.lex_state = 13}, + [3181] = {.lex_state = 0, .external_lex_state = 4}, + [3182] = {.lex_state = 0}, + [3183] = {.lex_state = 13}, + [3184] = {.lex_state = 0, .external_lex_state = 4}, + [3185] = {.lex_state = 13}, + [3186] = {.lex_state = 0, .external_lex_state = 4}, [3187] = {.lex_state = 0, .external_lex_state = 4}, [3188] = {.lex_state = 0, .external_lex_state = 4}, - [3189] = {.lex_state = 0, .external_lex_state = 4}, + [3189] = {.lex_state = 13}, [3190] = {.lex_state = 0, .external_lex_state = 4}, - [3191] = {.lex_state = 0, .external_lex_state = 4}, - [3192] = {.lex_state = 96}, + [3191] = {.lex_state = 13}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, [3193] = {.lex_state = 0, .external_lex_state = 4}, [3194] = {.lex_state = 0, .external_lex_state = 4}, - [3195] = {.lex_state = 0}, - [3196] = {.lex_state = 13}, - [3197] = {.lex_state = 96}, - [3198] = {.lex_state = 96}, - [3199] = {.lex_state = 13}, - [3200] = {.lex_state = 18, .external_lex_state = 6}, - [3201] = {.lex_state = 96}, - [3202] = {.lex_state = 0, .external_lex_state = 4}, + [3195] = {.lex_state = 0, .external_lex_state = 4}, + [3196] = {.lex_state = 0, .external_lex_state = 4}, + [3197] = {.lex_state = 0, .external_lex_state = 4}, + [3198] = {.lex_state = 96, .external_lex_state = 5}, + [3199] = {.lex_state = 0, .external_lex_state = 4}, + [3200] = {.lex_state = 0, .external_lex_state = 4}, + [3201] = {.lex_state = 13}, + [3202] = {.lex_state = 96}, [3203] = {.lex_state = 0, .external_lex_state = 4}, [3204] = {.lex_state = 0, .external_lex_state = 4}, [3205] = {.lex_state = 0, .external_lex_state = 4}, - [3206] = {.lex_state = 13}, - [3207] = {.lex_state = 96, .external_lex_state = 4}, - [3208] = {.lex_state = 13}, - [3209] = {.lex_state = 0, .external_lex_state = 4}, + [3206] = {.lex_state = 0, .external_lex_state = 4}, + [3207] = {.lex_state = 13}, + [3208] = {.lex_state = 0, .external_lex_state = 4}, + [3209] = {.lex_state = 96}, [3210] = {.lex_state = 0, .external_lex_state = 4}, - [3211] = {.lex_state = 0}, - [3212] = {.lex_state = 13}, - [3213] = {.lex_state = 96}, - [3214] = {.lex_state = 96}, + [3211] = {.lex_state = 0, .external_lex_state = 4}, + [3212] = {.lex_state = 0, .external_lex_state = 4}, + [3213] = {.lex_state = 0, .external_lex_state = 4}, + [3214] = {.lex_state = 0, .external_lex_state = 4}, [3215] = {.lex_state = 0, .external_lex_state = 4}, - [3216] = {.lex_state = 0, .external_lex_state = 4}, + [3216] = {.lex_state = 13}, [3217] = {.lex_state = 0, .external_lex_state = 4}, - [3218] = {.lex_state = 0}, + [3218] = {.lex_state = 0, .external_lex_state = 4}, [3219] = {.lex_state = 0, .external_lex_state = 4}, - [3220] = {.lex_state = 13}, - [3221] = {.lex_state = 13}, - [3222] = {.lex_state = 13}, + [3220] = {.lex_state = 0, .external_lex_state = 4}, + [3221] = {.lex_state = 0, .external_lex_state = 4}, + [3222] = {.lex_state = 0, .external_lex_state = 4}, [3223] = {.lex_state = 0, .external_lex_state = 4}, [3224] = {.lex_state = 0, .external_lex_state = 4}, - [3225] = {.lex_state = 96, .external_lex_state = 5}, - [3226] = {.lex_state = 0, .external_lex_state = 4}, - [3227] = {.lex_state = 0, .external_lex_state = 4}, - [3228] = {.lex_state = 0, .external_lex_state = 4}, + [3225] = {.lex_state = 0, .external_lex_state = 4}, + [3226] = {.lex_state = 13}, + [3227] = {.lex_state = 18, .external_lex_state = 6}, + [3228] = {.lex_state = 13}, [3229] = {.lex_state = 0, .external_lex_state = 4}, [3230] = {.lex_state = 18, .external_lex_state = 6}, [3231] = {.lex_state = 13}, - [3232] = {.lex_state = 13}, - [3233] = {.lex_state = 0, .external_lex_state = 4}, - [3234] = {.lex_state = 96, .external_lex_state = 5}, - [3235] = {.lex_state = 96, .external_lex_state = 4}, - [3236] = {.lex_state = 0, .external_lex_state = 4}, - [3237] = {.lex_state = 0, .external_lex_state = 4}, - [3238] = {.lex_state = 0, .external_lex_state = 4}, - [3239] = {.lex_state = 0, .external_lex_state = 4}, + [3232] = {.lex_state = 0}, + [3233] = {.lex_state = 18, .external_lex_state = 6}, + [3234] = {.lex_state = 96}, + [3235] = {.lex_state = 0, .external_lex_state = 4}, + [3236] = {.lex_state = 13}, + [3237] = {.lex_state = 13}, + [3238] = {.lex_state = 96, .external_lex_state = 5}, + [3239] = {.lex_state = 96}, [3240] = {.lex_state = 0, .external_lex_state = 4}, - [3241] = {.lex_state = 13}, + [3241] = {.lex_state = 0, .external_lex_state = 4}, [3242] = {.lex_state = 0, .external_lex_state = 4}, [3243] = {.lex_state = 0, .external_lex_state = 4}, - [3244] = {.lex_state = 0, .external_lex_state = 4}, - [3245] = {.lex_state = 13}, - [3246] = {.lex_state = 13}, - [3247] = {.lex_state = 0, .external_lex_state = 4}, + [3244] = {.lex_state = 96}, + [3245] = {.lex_state = 0, .external_lex_state = 4}, + [3246] = {.lex_state = 0}, + [3247] = {.lex_state = 18, .external_lex_state = 6}, [3248] = {.lex_state = 0, .external_lex_state = 4}, - [3249] = {.lex_state = 13}, + [3249] = {.lex_state = 0, .external_lex_state = 4}, [3250] = {.lex_state = 0, .external_lex_state = 4}, - [3251] = {.lex_state = 0, .external_lex_state = 4}, - [3252] = {.lex_state = 96, .external_lex_state = 5}, - [3253] = {.lex_state = 13}, + [3251] = {.lex_state = 13}, + [3252] = {.lex_state = 0, .external_lex_state = 4}, + [3253] = {.lex_state = 0, .external_lex_state = 4}, [3254] = {.lex_state = 0, .external_lex_state = 4}, - [3255] = {.lex_state = 0, .external_lex_state = 4}, - [3256] = {.lex_state = 18, .external_lex_state = 6}, - [3257] = {.lex_state = 0}, - [3258] = {.lex_state = 13}, + [3255] = {.lex_state = 18, .external_lex_state = 6}, + [3256] = {.lex_state = 0, .external_lex_state = 4}, + [3257] = {.lex_state = 96}, + [3258] = {.lex_state = 0, .external_lex_state = 4}, [3259] = {.lex_state = 0, .external_lex_state = 4}, [3260] = {.lex_state = 0, .external_lex_state = 4}, [3261] = {.lex_state = 0, .external_lex_state = 4}, - [3262] = {.lex_state = 0}, + [3262] = {.lex_state = 18, .external_lex_state = 6}, [3263] = {.lex_state = 0, .external_lex_state = 4}, - [3264] = {.lex_state = 96}, - [3265] = {.lex_state = 13}, - [3266] = {.lex_state = 96, .external_lex_state = 5}, - [3267] = {.lex_state = 96, .external_lex_state = 5}, - [3268] = {.lex_state = 96, .external_lex_state = 5}, - [3269] = {.lex_state = 13}, - [3270] = {.lex_state = 96}, - [3271] = {.lex_state = 96, .external_lex_state = 4}, - [3272] = {.lex_state = 13}, + [3264] = {.lex_state = 0, .external_lex_state = 4}, + [3265] = {.lex_state = 0, .external_lex_state = 4}, + [3266] = {.lex_state = 0, .external_lex_state = 4}, + [3267] = {.lex_state = 0, .external_lex_state = 4}, + [3268] = {.lex_state = 0, .external_lex_state = 4}, + [3269] = {.lex_state = 0, .external_lex_state = 4}, + [3270] = {.lex_state = 0, .external_lex_state = 4}, + [3271] = {.lex_state = 96, .external_lex_state = 5}, + [3272] = {.lex_state = 0, .external_lex_state = 4}, [3273] = {.lex_state = 0, .external_lex_state = 4}, - [3274] = {.lex_state = 0, .external_lex_state = 4}, - [3275] = {.lex_state = 96}, - [3276] = {.lex_state = 96}, - [3277] = {.lex_state = 0, .external_lex_state = 4}, - [3278] = {.lex_state = 0, .external_lex_state = 4}, - [3279] = {.lex_state = 13}, - [3280] = {.lex_state = 13}, + [3274] = {.lex_state = 13}, + [3275] = {.lex_state = 0, .external_lex_state = 4}, + [3276] = {.lex_state = 0, .external_lex_state = 4}, + [3277] = {.lex_state = 0}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 0, .external_lex_state = 4}, + [3280] = {.lex_state = 0, .external_lex_state = 4}, [3281] = {.lex_state = 0, .external_lex_state = 4}, - [3282] = {.lex_state = 13}, - [3283] = {.lex_state = 96, .external_lex_state = 5}, - [3284] = {.lex_state = 13}, + [3282] = {.lex_state = 96}, + [3283] = {.lex_state = 18, .external_lex_state = 6}, + [3284] = {.lex_state = 0, .external_lex_state = 4}, [3285] = {.lex_state = 0, .external_lex_state = 4}, - [3286] = {.lex_state = 13}, - [3287] = {.lex_state = 96}, - [3288] = {.lex_state = 13}, + [3286] = {.lex_state = 0, .external_lex_state = 4}, + [3287] = {.lex_state = 0, .external_lex_state = 4}, + [3288] = {.lex_state = 0, .external_lex_state = 4}, [3289] = {.lex_state = 13}, - [3290] = {.lex_state = 96}, + [3290] = {.lex_state = 13}, [3291] = {.lex_state = 0, .external_lex_state = 4}, - [3292] = {.lex_state = 96, .external_lex_state = 4}, - [3293] = {.lex_state = 0, .external_lex_state = 4}, - [3294] = {.lex_state = 0, .external_lex_state = 4}, - [3295] = {.lex_state = 96}, - [3296] = {.lex_state = 96}, - [3297] = {.lex_state = 96, .external_lex_state = 5}, + [3292] = {.lex_state = 96, .external_lex_state = 5}, + [3293] = {.lex_state = 13}, + [3294] = {.lex_state = 13}, + [3295] = {.lex_state = 13}, + [3296] = {.lex_state = 0, .external_lex_state = 4}, + [3297] = {.lex_state = 0, .external_lex_state = 4}, [3298] = {.lex_state = 96, .external_lex_state = 5}, - [3299] = {.lex_state = 96}, - [3300] = {.lex_state = 96}, - [3301] = {.lex_state = 17}, - [3302] = {.lex_state = 96}, - [3303] = {.lex_state = 96, .external_lex_state = 4}, - [3304] = {.lex_state = 0}, - [3305] = {.lex_state = 13}, - [3306] = {.lex_state = 1}, + [3299] = {.lex_state = 0, .external_lex_state = 4}, + [3300] = {.lex_state = 0, .external_lex_state = 4}, + [3301] = {.lex_state = 96}, + [3302] = {.lex_state = 0, .external_lex_state = 4}, + [3303] = {.lex_state = 0, .external_lex_state = 4}, + [3304] = {.lex_state = 96, .external_lex_state = 5}, + [3305] = {.lex_state = 0, .external_lex_state = 4}, + [3306] = {.lex_state = 0, .external_lex_state = 4}, [3307] = {.lex_state = 13}, - [3308] = {.lex_state = 96, .external_lex_state = 4}, - [3309] = {.lex_state = 20}, + [3308] = {.lex_state = 0, .external_lex_state = 4}, + [3309] = {.lex_state = 0, .external_lex_state = 4}, [3310] = {.lex_state = 96}, - [3311] = {.lex_state = 96}, - [3312] = {.lex_state = 0}, - [3313] = {.lex_state = 96}, - [3314] = {.lex_state = 17}, - [3315] = {.lex_state = 0}, - [3316] = {.lex_state = 0, .external_lex_state = 4}, - [3317] = {.lex_state = 0, .external_lex_state = 4}, - [3318] = {.lex_state = 18, .external_lex_state = 6}, + [3311] = {.lex_state = 18, .external_lex_state = 6}, + [3312] = {.lex_state = 0, .external_lex_state = 4}, + [3313] = {.lex_state = 13}, + [3314] = {.lex_state = 96}, + [3315] = {.lex_state = 0, .external_lex_state = 4}, + [3316] = {.lex_state = 13}, + [3317] = {.lex_state = 13}, + [3318] = {.lex_state = 0}, [3319] = {.lex_state = 0}, - [3320] = {.lex_state = 0}, - [3321] = {.lex_state = 20}, - [3322] = {.lex_state = 17}, + [3320] = {.lex_state = 96}, + [3321] = {.lex_state = 96}, + [3322] = {.lex_state = 0}, [3323] = {.lex_state = 96}, - [3324] = {.lex_state = 96}, - [3325] = {.lex_state = 1}, + [3324] = {.lex_state = 96, .external_lex_state = 4}, + [3325] = {.lex_state = 13}, [3326] = {.lex_state = 96}, - [3327] = {.lex_state = 96}, + [3327] = {.lex_state = 13}, [3328] = {.lex_state = 96}, - [3329] = {.lex_state = 0}, - [3330] = {.lex_state = 96}, - [3331] = {.lex_state = 96}, - [3332] = {.lex_state = 96}, - [3333] = {.lex_state = 96, .external_lex_state = 4}, - [3334] = {.lex_state = 96}, + [3329] = {.lex_state = 17}, + [3330] = {.lex_state = 13}, + [3331] = {.lex_state = 0, .external_lex_state = 5}, + [3332] = {.lex_state = 13}, + [3333] = {.lex_state = 20}, + [3334] = {.lex_state = 13}, [3335] = {.lex_state = 96}, - [3336] = {.lex_state = 20}, - [3337] = {.lex_state = 17}, - [3338] = {.lex_state = 20}, - [3339] = {.lex_state = 20}, - [3340] = {.lex_state = 17}, - [3341] = {.lex_state = 13}, - [3342] = {.lex_state = 20}, - [3343] = {.lex_state = 96}, - [3344] = {.lex_state = 17}, - [3345] = {.lex_state = 13}, - [3346] = {.lex_state = 17}, - [3347] = {.lex_state = 96}, - [3348] = {.lex_state = 96}, - [3349] = {.lex_state = 20}, + [3336] = {.lex_state = 13}, + [3337] = {.lex_state = 96}, + [3338] = {.lex_state = 96, .external_lex_state = 4}, + [3339] = {.lex_state = 0, .external_lex_state = 4}, + [3340] = {.lex_state = 13}, + [3341] = {.lex_state = 0, .external_lex_state = 4}, + [3342] = {.lex_state = 0, .external_lex_state = 4}, + [3343] = {.lex_state = 20}, + [3344] = {.lex_state = 0}, + [3345] = {.lex_state = 96}, + [3346] = {.lex_state = 13}, + [3347] = {.lex_state = 17}, + [3348] = {.lex_state = 20}, + [3349] = {.lex_state = 17}, [3350] = {.lex_state = 96}, - [3351] = {.lex_state = 17}, - [3352] = {.lex_state = 96}, + [3351] = {.lex_state = 1}, + [3352] = {.lex_state = 0}, [3353] = {.lex_state = 96}, [3354] = {.lex_state = 13}, - [3355] = {.lex_state = 96}, - [3356] = {.lex_state = 96, .external_lex_state = 4}, - [3357] = {.lex_state = 13}, - [3358] = {.lex_state = 96}, - [3359] = {.lex_state = 0, .external_lex_state = 4}, - [3360] = {.lex_state = 13}, - [3361] = {.lex_state = 18, .external_lex_state = 6}, - [3362] = {.lex_state = 96}, - [3363] = {.lex_state = 0}, + [3355] = {.lex_state = 20}, + [3356] = {.lex_state = 17}, + [3357] = {.lex_state = 96}, + [3358] = {.lex_state = 18, .external_lex_state = 6}, + [3359] = {.lex_state = 96}, + [3360] = {.lex_state = 96, .external_lex_state = 4}, + [3361] = {.lex_state = 20}, + [3362] = {.lex_state = 0}, + [3363] = {.lex_state = 17}, [3364] = {.lex_state = 96}, [3365] = {.lex_state = 96}, [3366] = {.lex_state = 96}, [3367] = {.lex_state = 20}, [3368] = {.lex_state = 17}, - [3369] = {.lex_state = 0}, - [3370] = {.lex_state = 0}, + [3369] = {.lex_state = 96}, + [3370] = {.lex_state = 0, .external_lex_state = 4}, [3371] = {.lex_state = 96}, [3372] = {.lex_state = 0, .external_lex_state = 4}, - [3373] = {.lex_state = 0}, + [3373] = {.lex_state = 13}, [3374] = {.lex_state = 0}, - [3375] = {.lex_state = 0, .external_lex_state = 4}, - [3376] = {.lex_state = 0}, - [3377] = {.lex_state = 20}, - [3378] = {.lex_state = 17}, - [3379] = {.lex_state = 20}, - [3380] = {.lex_state = 17}, - [3381] = {.lex_state = 96}, + [3375] = {.lex_state = 96}, + [3376] = {.lex_state = 96}, + [3377] = {.lex_state = 96}, + [3378] = {.lex_state = 0}, + [3379] = {.lex_state = 0}, + [3380] = {.lex_state = 0}, + [3381] = {.lex_state = 13}, [3382] = {.lex_state = 13}, - [3383] = {.lex_state = 1}, - [3384] = {.lex_state = 96}, + [3383] = {.lex_state = 96}, + [3384] = {.lex_state = 17}, [3385] = {.lex_state = 20}, - [3386] = {.lex_state = 13}, - [3387] = {.lex_state = 1}, - [3388] = {.lex_state = 17}, - [3389] = {.lex_state = 0}, - [3390] = {.lex_state = 96}, - [3391] = {.lex_state = 96}, + [3386] = {.lex_state = 20}, + [3387] = {.lex_state = 17}, + [3388] = {.lex_state = 13}, + [3389] = {.lex_state = 96}, + [3390] = {.lex_state = 0, .external_lex_state = 4}, + [3391] = {.lex_state = 0}, [3392] = {.lex_state = 96}, - [3393] = {.lex_state = 96}, - [3394] = {.lex_state = 20}, - [3395] = {.lex_state = 0, .external_lex_state = 5}, - [3396] = {.lex_state = 13}, - [3397] = {.lex_state = 13}, + [3393] = {.lex_state = 0, .external_lex_state = 4}, + [3394] = {.lex_state = 17}, + [3395] = {.lex_state = 96}, + [3396] = {.lex_state = 20}, + [3397] = {.lex_state = 96}, [3398] = {.lex_state = 96}, [3399] = {.lex_state = 13}, - [3400] = {.lex_state = 20}, - [3401] = {.lex_state = 96}, - [3402] = {.lex_state = 96}, - [3403] = {.lex_state = 96}, - [3404] = {.lex_state = 0, .external_lex_state = 4}, - [3405] = {.lex_state = 0}, - [3406] = {.lex_state = 17}, - [3407] = {.lex_state = 0, .external_lex_state = 4}, - [3408] = {.lex_state = 0, .external_lex_state = 4}, - [3409] = {.lex_state = 96}, + [3400] = {.lex_state = 1}, + [3401] = {.lex_state = 17}, + [3402] = {.lex_state = 20}, + [3403] = {.lex_state = 13}, + [3404] = {.lex_state = 96}, + [3405] = {.lex_state = 96}, + [3406] = {.lex_state = 20}, + [3407] = {.lex_state = 17}, + [3408] = {.lex_state = 96}, + [3409] = {.lex_state = 18, .external_lex_state = 6}, [3410] = {.lex_state = 96}, [3411] = {.lex_state = 96}, - [3412] = {.lex_state = 96}, - [3413] = {.lex_state = 13}, - [3414] = {.lex_state = 13}, + [3412] = {.lex_state = 0}, + [3413] = {.lex_state = 96}, + [3414] = {.lex_state = 96, .external_lex_state = 4}, [3415] = {.lex_state = 96}, - [3416] = {.lex_state = 0}, + [3416] = {.lex_state = 20}, [3417] = {.lex_state = 17}, - [3418] = {.lex_state = 20}, - [3419] = {.lex_state = 0, .external_lex_state = 4}, - [3420] = {.lex_state = 13}, - [3421] = {.lex_state = 13}, + [3418] = {.lex_state = 0}, + [3419] = {.lex_state = 96}, + [3420] = {.lex_state = 96}, + [3421] = {.lex_state = 20}, [3422] = {.lex_state = 17}, - [3423] = {.lex_state = 20}, - [3424] = {.lex_state = 0}, + [3423] = {.lex_state = 96}, + [3424] = {.lex_state = 1}, [3425] = {.lex_state = 96}, - [3426] = {.lex_state = 0}, - [3427] = {.lex_state = 0, .external_lex_state = 4}, + [3426] = {.lex_state = 96}, + [3427] = {.lex_state = 96}, [3428] = {.lex_state = 0}, - [3429] = {.lex_state = 96}, + [3429] = {.lex_state = 1}, [3430] = {.lex_state = 96}, - [3431] = {.lex_state = 0, .external_lex_state = 4}, - [3432] = {.lex_state = 96}, - [3433] = {.lex_state = 96, .external_lex_state = 4}, - [3434] = {.lex_state = 96, .external_lex_state = 4}, - [3435] = {.lex_state = 0, .external_lex_state = 4}, - [3436] = {.lex_state = 96}, - [3437] = {.lex_state = 96}, + [3431] = {.lex_state = 96}, + [3432] = {.lex_state = 0}, + [3433] = {.lex_state = 0, .external_lex_state = 4}, + [3434] = {.lex_state = 20}, + [3435] = {.lex_state = 20}, + [3436] = {.lex_state = 17}, + [3437] = {.lex_state = 0, .external_lex_state = 4}, [3438] = {.lex_state = 96}, - [3439] = {.lex_state = 0, .external_lex_state = 4}, + [3439] = {.lex_state = 17}, [3440] = {.lex_state = 0}, [3441] = {.lex_state = 0}, [3442] = {.lex_state = 96}, - [3443] = {.lex_state = 0}, + [3443] = {.lex_state = 0, .external_lex_state = 4}, [3444] = {.lex_state = 0}, [3445] = {.lex_state = 0}, [3446] = {.lex_state = 0}, - [3447] = {.lex_state = 0}, - [3448] = {.lex_state = 1}, - [3449] = {.lex_state = 96}, - [3450] = {.lex_state = 0}, - [3451] = {.lex_state = 96, .external_lex_state = 4}, - [3452] = {.lex_state = 0}, - [3453] = {.lex_state = 0, .external_lex_state = 4}, - [3454] = {.lex_state = 0}, - [3455] = {.lex_state = 0}, - [3456] = {.lex_state = 96}, + [3447] = {.lex_state = 96}, + [3448] = {.lex_state = 0}, + [3449] = {.lex_state = 0, .external_lex_state = 4}, + [3450] = {.lex_state = 0, .external_lex_state = 4}, + [3451] = {.lex_state = 96}, + [3452] = {.lex_state = 0, .external_lex_state = 4}, + [3453] = {.lex_state = 0}, + [3454] = {.lex_state = 96}, + [3455] = {.lex_state = 0, .external_lex_state = 4}, + [3456] = {.lex_state = 0}, [3457] = {.lex_state = 96}, - [3458] = {.lex_state = 0}, - [3459] = {.lex_state = 0}, - [3460] = {.lex_state = 96}, - [3461] = {.lex_state = 96}, + [3458] = {.lex_state = 96, .external_lex_state = 4}, + [3459] = {.lex_state = 0, .external_lex_state = 4}, + [3460] = {.lex_state = 0, .external_lex_state = 4}, + [3461] = {.lex_state = 0, .external_lex_state = 4}, [3462] = {.lex_state = 96}, - [3463] = {.lex_state = 0}, + [3463] = {.lex_state = 0, .external_lex_state = 4}, [3464] = {.lex_state = 0}, [3465] = {.lex_state = 0}, [3466] = {.lex_state = 0, .external_lex_state = 4}, - [3467] = {.lex_state = 96}, - [3468] = {.lex_state = 0}, - [3469] = {.lex_state = 0, .external_lex_state = 4}, - [3470] = {.lex_state = 0, .external_lex_state = 4}, - [3471] = {.lex_state = 0}, + [3467] = {.lex_state = 96, .external_lex_state = 4}, + [3468] = {.lex_state = 0, .external_lex_state = 4}, + [3469] = {.lex_state = 96}, + [3470] = {.lex_state = 96}, + [3471] = {.lex_state = 96}, [3472] = {.lex_state = 0}, - [3473] = {.lex_state = 0}, - [3474] = {.lex_state = 0, .external_lex_state = 4}, + [3473] = {.lex_state = 96}, + [3474] = {.lex_state = 0}, [3475] = {.lex_state = 0}, - [3476] = {.lex_state = 0, .external_lex_state = 4}, - [3477] = {.lex_state = 0, .external_lex_state = 4}, + [3476] = {.lex_state = 96, .external_lex_state = 4}, + [3477] = {.lex_state = 0}, [3478] = {.lex_state = 0}, - [3479] = {.lex_state = 0}, - [3480] = {.lex_state = 13}, - [3481] = {.lex_state = 0}, - [3482] = {.lex_state = 0}, - [3483] = {.lex_state = 0}, - [3484] = {.lex_state = 96}, - [3485] = {.lex_state = 4}, - [3486] = {.lex_state = 96}, - [3487] = {.lex_state = 0}, - [3488] = {.lex_state = 96}, - [3489] = {.lex_state = 0}, + [3479] = {.lex_state = 0, .external_lex_state = 4}, + [3480] = {.lex_state = 96}, + [3481] = {.lex_state = 0, .external_lex_state = 4}, + [3482] = {.lex_state = 0, .external_lex_state = 4}, + [3483] = {.lex_state = 0, .external_lex_state = 4}, + [3484] = {.lex_state = 0, .external_lex_state = 4}, + [3485] = {.lex_state = 0}, + [3486] = {.lex_state = 0, .external_lex_state = 4}, + [3487] = {.lex_state = 0, .external_lex_state = 4}, + [3488] = {.lex_state = 0, .external_lex_state = 4}, + [3489] = {.lex_state = 96}, [3490] = {.lex_state = 0}, - [3491] = {.lex_state = 0}, - [3492] = {.lex_state = 96, .external_lex_state = 4}, - [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 0}, - [3495] = {.lex_state = 96}, - [3496] = {.lex_state = 96}, + [3491] = {.lex_state = 18, .external_lex_state = 6}, + [3492] = {.lex_state = 96}, + [3493] = {.lex_state = 96}, + [3494] = {.lex_state = 96}, + [3495] = {.lex_state = 0}, + [3496] = {.lex_state = 0, .external_lex_state = 4}, [3497] = {.lex_state = 0}, [3498] = {.lex_state = 96}, - [3499] = {.lex_state = 96}, - [3500] = {.lex_state = 0}, - [3501] = {.lex_state = 96}, - [3502] = {.lex_state = 0}, + [3499] = {.lex_state = 0}, + [3500] = {.lex_state = 96}, + [3501] = {.lex_state = 0}, + [3502] = {.lex_state = 0, .external_lex_state = 4}, [3503] = {.lex_state = 96}, - [3504] = {.lex_state = 96}, + [3504] = {.lex_state = 0}, [3505] = {.lex_state = 96}, - [3506] = {.lex_state = 0}, + [3506] = {.lex_state = 96}, [3507] = {.lex_state = 0}, - [3508] = {.lex_state = 96}, - [3509] = {.lex_state = 0}, - [3510] = {.lex_state = 0, .external_lex_state = 4}, + [3508] = {.lex_state = 0}, + [3509] = {.lex_state = 96}, + [3510] = {.lex_state = 96}, [3511] = {.lex_state = 96}, [3512] = {.lex_state = 0}, - [3513] = {.lex_state = 0, .external_lex_state = 4}, - [3514] = {.lex_state = 0, .external_lex_state = 4}, + [3513] = {.lex_state = 0}, + [3514] = {.lex_state = 96}, [3515] = {.lex_state = 0, .external_lex_state = 4}, [3516] = {.lex_state = 0, .external_lex_state = 4}, - [3517] = {.lex_state = 0}, + [3517] = {.lex_state = 0, .external_lex_state = 4}, [3518] = {.lex_state = 0}, [3519] = {.lex_state = 0}, [3520] = {.lex_state = 96}, - [3521] = {.lex_state = 96}, - [3522] = {.lex_state = 96}, + [3521] = {.lex_state = 0}, + [3522] = {.lex_state = 0, .external_lex_state = 4}, [3523] = {.lex_state = 0}, - [3524] = {.lex_state = 0}, - [3525] = {.lex_state = 0}, + [3524] = {.lex_state = 96}, + [3525] = {.lex_state = 0, .external_lex_state = 4}, [3526] = {.lex_state = 96}, - [3527] = {.lex_state = 0}, + [3527] = {.lex_state = 96}, [3528] = {.lex_state = 96}, - [3529] = {.lex_state = 0, .external_lex_state = 4}, - [3530] = {.lex_state = 0, .external_lex_state = 4}, + [3529] = {.lex_state = 0}, + [3530] = {.lex_state = 96}, [3531] = {.lex_state = 0}, [3532] = {.lex_state = 0}, [3533] = {.lex_state = 0}, [3534] = {.lex_state = 0}, [3535] = {.lex_state = 0}, - [3536] = {.lex_state = 0, .external_lex_state = 4}, - [3537] = {.lex_state = 0, .external_lex_state = 4}, - [3538] = {.lex_state = 96}, - [3539] = {.lex_state = 0, .external_lex_state = 4}, - [3540] = {.lex_state = 0, .external_lex_state = 4}, - [3541] = {.lex_state = 96}, - [3542] = {.lex_state = 96}, - [3543] = {.lex_state = 0, .external_lex_state = 4}, - [3544] = {.lex_state = 0, .external_lex_state = 4}, - [3545] = {.lex_state = 0, .external_lex_state = 4}, - [3546] = {.lex_state = 0, .external_lex_state = 4}, - [3547] = {.lex_state = 0, .external_lex_state = 4}, - [3548] = {.lex_state = 4}, - [3549] = {.lex_state = 0, .external_lex_state = 4}, - [3550] = {.lex_state = 96}, + [3536] = {.lex_state = 0}, + [3537] = {.lex_state = 0}, + [3538] = {.lex_state = 0}, + [3539] = {.lex_state = 0}, + [3540] = {.lex_state = 4}, + [3541] = {.lex_state = 0, .external_lex_state = 4}, + [3542] = {.lex_state = 0}, + [3543] = {.lex_state = 0}, + [3544] = {.lex_state = 1}, + [3545] = {.lex_state = 96}, + [3546] = {.lex_state = 0}, + [3547] = {.lex_state = 0}, + [3548] = {.lex_state = 0}, + [3549] = {.lex_state = 0}, + [3550] = {.lex_state = 0}, [3551] = {.lex_state = 96}, - [3552] = {.lex_state = 96}, - [3553] = {.lex_state = 0, .external_lex_state = 4}, - [3554] = {.lex_state = 0, .external_lex_state = 4}, - [3555] = {.lex_state = 0, .external_lex_state = 4}, - [3556] = {.lex_state = 0}, - [3557] = {.lex_state = 0, .external_lex_state = 4}, - [3558] = {.lex_state = 96}, - [3559] = {.lex_state = 96}, - [3560] = {.lex_state = 0, .external_lex_state = 4}, + [3552] = {.lex_state = 0}, + [3553] = {.lex_state = 96, .external_lex_state = 4}, + [3554] = {.lex_state = 96}, + [3555] = {.lex_state = 96}, + [3556] = {.lex_state = 96}, + [3557] = {.lex_state = 96}, + [3558] = {.lex_state = 96, .external_lex_state = 4}, + [3559] = {.lex_state = 0}, + [3560] = {.lex_state = 0}, [3561] = {.lex_state = 0}, - [3562] = {.lex_state = 0}, + [3562] = {.lex_state = 96}, [3563] = {.lex_state = 96}, - [3564] = {.lex_state = 0, .external_lex_state = 4}, + [3564] = {.lex_state = 0}, [3565] = {.lex_state = 96}, - [3566] = {.lex_state = 0, .external_lex_state = 4}, + [3566] = {.lex_state = 0}, [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 0, .external_lex_state = 4}, - [3569] = {.lex_state = 0, .external_lex_state = 4}, - [3570] = {.lex_state = 0, .external_lex_state = 4}, - [3571] = {.lex_state = 0, .external_lex_state = 4}, - [3572] = {.lex_state = 0, .external_lex_state = 4}, - [3573] = {.lex_state = 0, .external_lex_state = 4}, - [3574] = {.lex_state = 0, .external_lex_state = 4}, - [3575] = {.lex_state = 0, .external_lex_state = 4}, - [3576] = {.lex_state = 0, .external_lex_state = 4}, - [3577] = {.lex_state = 0, .external_lex_state = 4}, + [3568] = {.lex_state = 0}, + [3569] = {.lex_state = 0}, + [3570] = {.lex_state = 0}, + [3571] = {.lex_state = 0}, + [3572] = {.lex_state = 4}, + [3573] = {.lex_state = 0}, + [3574] = {.lex_state = 0}, + [3575] = {.lex_state = 0}, + [3576] = {.lex_state = 96}, + [3577] = {.lex_state = 0}, [3578] = {.lex_state = 0, .external_lex_state = 4}, - [3579] = {.lex_state = 0, .external_lex_state = 4}, - [3580] = {.lex_state = 0, .external_lex_state = 4}, + [3579] = {.lex_state = 96}, + [3580] = {.lex_state = 0}, [3581] = {.lex_state = 0}, [3582] = {.lex_state = 0}, [3583] = {.lex_state = 0}, - [3584] = {.lex_state = 0}, + [3584] = {.lex_state = 96}, [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 0, .external_lex_state = 4}, - [3587] = {.lex_state = 0, .external_lex_state = 4}, - [3588] = {.lex_state = 18, .external_lex_state = 6}, - [3589] = {.lex_state = 0}, - [3590] = {.lex_state = 0}, - [3591] = {.lex_state = 0, .external_lex_state = 4}, + [3586] = {.lex_state = 0}, + [3587] = {.lex_state = 0}, + [3588] = {.lex_state = 96}, + [3589] = {.lex_state = 0, .external_lex_state = 4}, + [3590] = {.lex_state = 96}, + [3591] = {.lex_state = 96}, [3592] = {.lex_state = 0}, - [3593] = {.lex_state = 0}, - [3594] = {.lex_state = 0}, + [3593] = {.lex_state = 0, .external_lex_state = 4}, + [3594] = {.lex_state = 0, .external_lex_state = 4}, [3595] = {.lex_state = 0, .external_lex_state = 4}, - [3596] = {.lex_state = 0}, - [3597] = {.lex_state = 0}, + [3596] = {.lex_state = 0, .external_lex_state = 4}, + [3597] = {.lex_state = 96}, [3598] = {.lex_state = 96}, - [3599] = {.lex_state = 96}, + [3599] = {.lex_state = 0, .external_lex_state = 4}, [3600] = {.lex_state = 96}, - [3601] = {.lex_state = 96, .external_lex_state = 4}, - [3602] = {.lex_state = 0}, - [3603] = {.lex_state = 0}, - [3604] = {.lex_state = 0}, - [3605] = {.lex_state = 96}, - [3606] = {.lex_state = 0}, - [3607] = {.lex_state = 96}, - [3608] = {.lex_state = 96}, + [3601] = {.lex_state = 96}, + [3602] = {.lex_state = 0, .external_lex_state = 4}, + [3603] = {.lex_state = 0, .external_lex_state = 4}, + [3604] = {.lex_state = 0, .external_lex_state = 4}, + [3605] = {.lex_state = 0, .external_lex_state = 4}, + [3606] = {.lex_state = 0, .external_lex_state = 4}, + [3607] = {.lex_state = 0}, + [3608] = {.lex_state = 0}, [3609] = {.lex_state = 0}, [3610] = {.lex_state = 0}, - [3611] = {.lex_state = 96, .external_lex_state = 4}, - [3612] = {.lex_state = 0}, + [3611] = {.lex_state = 0, .external_lex_state = 4}, + [3612] = {.lex_state = 0, .external_lex_state = 4}, [3613] = {.lex_state = 0}, - [3614] = {.lex_state = 0}, - [3615] = {.lex_state = 0}, - [3616] = {.lex_state = 0}, - [3617] = {.lex_state = 96}, - [3618] = {.lex_state = 96}, - [3619] = {.lex_state = 0}, + [3614] = {.lex_state = 0, .external_lex_state = 4}, + [3615] = {.lex_state = 0, .external_lex_state = 4}, + [3616] = {.lex_state = 96}, + [3617] = {.lex_state = 0, .external_lex_state = 4}, + [3618] = {.lex_state = 0, .external_lex_state = 4}, + [3619] = {.lex_state = 0, .external_lex_state = 4}, [3620] = {.lex_state = 0}, [3621] = {.lex_state = 0, .external_lex_state = 4}, - [3622] = {.lex_state = 96}, + [3622] = {.lex_state = 0}, [3623] = {.lex_state = 0}, - [3624] = {.lex_state = 0}, + [3624] = {.lex_state = 0, .external_lex_state = 4}, [3625] = {.lex_state = 96}, - [3626] = {.lex_state = 96}, - [3627] = {.lex_state = 4}, - [3628] = {.lex_state = 96}, - [3629] = {.lex_state = 96}, - [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 96}, + [3626] = {.lex_state = 0, .external_lex_state = 4}, + [3627] = {.lex_state = 96, .external_lex_state = 4}, + [3628] = {.lex_state = 0}, + [3629] = {.lex_state = 0}, + [3630] = {.lex_state = 96}, + [3631] = {.lex_state = 0}, [3632] = {.lex_state = 96}, [3633] = {.lex_state = 96}, - [3634] = {.lex_state = 96}, - [3635] = {.lex_state = 0}, - [3636] = {.lex_state = 0}, + [3634] = {.lex_state = 0}, + [3635] = {.lex_state = 96}, + [3636] = {.lex_state = 96}, [3637] = {.lex_state = 96}, - [3638] = {.lex_state = 96}, - [3639] = {.lex_state = 96}, + [3638] = {.lex_state = 0, .external_lex_state = 4}, + [3639] = {.lex_state = 0, .external_lex_state = 4}, [3640] = {.lex_state = 96}, - [3641] = {.lex_state = 0}, - [3642] = {.lex_state = 0}, - [3643] = {.lex_state = 13}, + [3641] = {.lex_state = 96}, + [3642] = {.lex_state = 96}, + [3643] = {.lex_state = 96}, [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 0}, - [3646] = {.lex_state = 0}, + [3645] = {.lex_state = 13}, + [3646] = {.lex_state = 96}, [3647] = {.lex_state = 0}, - [3648] = {.lex_state = 96}, - [3649] = {.lex_state = 0}, - [3650] = {.lex_state = 96}, + [3648] = {.lex_state = 0}, + [3649] = {.lex_state = 0, .external_lex_state = 4}, + [3650] = {.lex_state = 13}, [3651] = {.lex_state = 0}, - [3652] = {.lex_state = 0}, + [3652] = {.lex_state = 0, .external_lex_state = 4}, [3653] = {.lex_state = 96}, - [3654] = {.lex_state = 0, .external_lex_state = 4}, - [3655] = {.lex_state = 0, .external_lex_state = 4}, + [3654] = {.lex_state = 0}, + [3655] = {.lex_state = 0}, [3656] = {.lex_state = 0}, - [3657] = {.lex_state = 96}, + [3657] = {.lex_state = 0, .external_lex_state = 4}, [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 96}, + [3659] = {.lex_state = 0}, [3660] = {.lex_state = 96}, - [3661] = {.lex_state = 96}, + [3661] = {.lex_state = 0}, [3662] = {.lex_state = 96}, - [3663] = {.lex_state = 96}, - [3664] = {.lex_state = 96}, + [3663] = {.lex_state = 0}, + [3664] = {.lex_state = 0}, [3665] = {.lex_state = 0}, - [3666] = {.lex_state = 0, .external_lex_state = 4}, - [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 96}, - [3669] = {.lex_state = 96}, - [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 0}, + [3666] = {.lex_state = 0}, + [3667] = {.lex_state = 96}, + [3668] = {.lex_state = 0}, + [3669] = {.lex_state = 4}, + [3670] = {.lex_state = 96}, + [3671] = {.lex_state = 0, .external_lex_state = 4}, [3672] = {.lex_state = 96}, [3673] = {.lex_state = 0}, [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 0}, + [3675] = {.lex_state = 96}, [3676] = {.lex_state = 96}, - [3677] = {.lex_state = 0}, + [3677] = {.lex_state = 96}, [3678] = {.lex_state = 96}, - [3679] = {.lex_state = 96}, + [3679] = {.lex_state = 0}, [3680] = {.lex_state = 96}, - [3681] = {.lex_state = 96}, + [3681] = {.lex_state = 0}, [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 96}, - [3684] = {.lex_state = 96}, - [3685] = {.lex_state = 96}, - [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 96}, + [3683] = {.lex_state = 0}, + [3684] = {.lex_state = 0}, + [3685] = {.lex_state = 0}, + [3686] = {.lex_state = 96}, + [3687] = {.lex_state = 0}, [3688] = {.lex_state = 96}, - [3689] = {.lex_state = 96}, - [3690] = {.lex_state = 0}, - [3691] = {.lex_state = 96}, - [3692] = {.lex_state = 0}, + [3689] = {.lex_state = 0}, + [3690] = {.lex_state = 0, .external_lex_state = 4}, + [3691] = {.lex_state = 0}, + [3692] = {.lex_state = 96}, [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 96}, + [3694] = {.lex_state = 96}, + [3695] = {.lex_state = 0}, [3696] = {.lex_state = 0}, - [3697] = {.lex_state = 96}, - [3698] = {.lex_state = 0, .external_lex_state = 4}, - [3699] = {.lex_state = 96}, - [3700] = {.lex_state = 96}, - [3701] = {.lex_state = 0, .external_lex_state = 4}, + [3697] = {.lex_state = 0, .external_lex_state = 4}, + [3698] = {.lex_state = 96}, + [3699] = {.lex_state = 0}, + [3700] = {.lex_state = 0}, + [3701] = {.lex_state = 0}, [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 96}, + [3703] = {.lex_state = 1}, [3704] = {.lex_state = 0}, [3705] = {.lex_state = 96}, - [3706] = {.lex_state = 96}, + [3706] = {.lex_state = 0}, [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 0}, + [3708] = {.lex_state = 96}, [3709] = {.lex_state = 96}, [3710] = {.lex_state = 0}, [3711] = {.lex_state = 0}, [3712] = {.lex_state = 0}, [3713] = {.lex_state = 96}, - [3714] = {.lex_state = 96}, + [3714] = {.lex_state = 0}, [3715] = {.lex_state = 96}, [3716] = {.lex_state = 0}, - [3717] = {.lex_state = 96}, - [3718] = {.lex_state = 0, .external_lex_state = 4}, - [3719] = {.lex_state = 96}, + [3717] = {.lex_state = 0}, + [3718] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, [3720] = {.lex_state = 0, .external_lex_state = 4}, [3721] = {.lex_state = 0, .external_lex_state = 4}, - [3722] = {.lex_state = 96}, + [3722] = {.lex_state = 0}, [3723] = {.lex_state = 0}, [3724] = {.lex_state = 0}, [3725] = {.lex_state = 0}, - [3726] = {.lex_state = 96}, - [3727] = {.lex_state = 0}, - [3728] = {.lex_state = 0}, - [3729] = {.lex_state = 96}, - [3730] = {.lex_state = 96}, - [3731] = {.lex_state = 0, .external_lex_state = 4}, - [3732] = {.lex_state = 0}, + [3726] = {.lex_state = 0}, + [3727] = {.lex_state = 96}, + [3728] = {.lex_state = 0, .external_lex_state = 4}, + [3729] = {.lex_state = 0, .external_lex_state = 4}, + [3730] = {.lex_state = 0, .external_lex_state = 4}, + [3731] = {.lex_state = 0}, + [3732] = {.lex_state = 96}, [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, + [3734] = {.lex_state = 96}, + [3735] = {.lex_state = 0, .external_lex_state = 4}, + [3736] = {.lex_state = 96}, [3737] = {.lex_state = 96}, [3738] = {.lex_state = 96}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 96}, + [3739] = {.lex_state = 96}, + [3740] = {.lex_state = 0}, [3741] = {.lex_state = 96}, - [3742] = {.lex_state = 0, .external_lex_state = 4}, - [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 0, .external_lex_state = 4}, - [3745] = {.lex_state = 96}, - [3746] = {.lex_state = 0, .external_lex_state = 4}, + [3742] = {.lex_state = 96}, + [3743] = {.lex_state = 0, .external_lex_state = 4}, + [3744] = {.lex_state = 0}, + [3745] = {.lex_state = 0, .external_lex_state = 4}, + [3746] = {.lex_state = 0}, [3747] = {.lex_state = 96}, - [3748] = {.lex_state = 96}, + [3748] = {.lex_state = 0, .external_lex_state = 4}, [3749] = {.lex_state = 96}, - [3750] = {.lex_state = 96}, - [3751] = {.lex_state = 0}, + [3750] = {.lex_state = 0}, + [3751] = {.lex_state = 96}, [3752] = {.lex_state = 0, .external_lex_state = 4}, [3753] = {.lex_state = 96}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 96}, - [3756] = {.lex_state = 96}, + [3754] = {.lex_state = 96}, + [3755] = {.lex_state = 0, .external_lex_state = 4}, + [3756] = {.lex_state = 0}, [3757] = {.lex_state = 96}, [3758] = {.lex_state = 96}, [3759] = {.lex_state = 96}, - [3760] = {.lex_state = 0, .external_lex_state = 4}, + [3760] = {.lex_state = 96}, [3761] = {.lex_state = 96}, [3762] = {.lex_state = 96}, [3763] = {.lex_state = 96}, - [3764] = {.lex_state = 96}, + [3764] = {.lex_state = 0}, [3765] = {.lex_state = 96}, [3766] = {.lex_state = 96}, - [3767] = {.lex_state = 96}, - [3768] = {.lex_state = 96}, - [3769] = {.lex_state = 96}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 0}, + [3769] = {.lex_state = 0}, [3770] = {.lex_state = 96}, [3771] = {.lex_state = 0}, [3772] = {.lex_state = 96}, [3773] = {.lex_state = 96}, [3774] = {.lex_state = 0}, - [3775] = {.lex_state = 0}, - [3776] = {.lex_state = 0}, - [3777] = {.lex_state = 96}, - [3778] = {.lex_state = 0}, - [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 96}, - [3781] = {.lex_state = 0}, + [3775] = {.lex_state = 96}, + [3776] = {.lex_state = 96}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 0, .external_lex_state = 4}, + [3779] = {.lex_state = 0, .external_lex_state = 4}, + [3780] = {.lex_state = 0, .external_lex_state = 4}, + [3781] = {.lex_state = 0, .external_lex_state = 4}, [3782] = {.lex_state = 0}, - [3783] = {.lex_state = 0}, + [3783] = {.lex_state = 96}, [3784] = {.lex_state = 96}, [3785] = {.lex_state = 0}, [3786] = {.lex_state = 96}, [3787] = {.lex_state = 0}, [3788] = {.lex_state = 96}, [3789] = {.lex_state = 96}, - [3790] = {.lex_state = 0}, + [3790] = {.lex_state = 96}, [3791] = {.lex_state = 96}, - [3792] = {.lex_state = 0, .external_lex_state = 4}, + [3792] = {.lex_state = 0}, [3793] = {.lex_state = 96}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 96}, + [3794] = {.lex_state = 96}, + [3795] = {.lex_state = 0}, [3796] = {.lex_state = 96}, [3797] = {.lex_state = 96}, - [3798] = {.lex_state = 0, .external_lex_state = 4}, + [3798] = {.lex_state = 96}, [3799] = {.lex_state = 96}, - [3800] = {.lex_state = 0}, + [3800] = {.lex_state = 96}, [3801] = {.lex_state = 96}, [3802] = {.lex_state = 96}, - [3803] = {.lex_state = 0}, - [3804] = {.lex_state = 96}, - [3805] = {.lex_state = 0, .external_lex_state = 4}, + [3803] = {.lex_state = 0, .external_lex_state = 4}, + [3804] = {.lex_state = 0, .external_lex_state = 4}, + [3805] = {.lex_state = 0}, [3806] = {.lex_state = 96}, [3807] = {.lex_state = 96}, - [3808] = {.lex_state = 96}, - [3809] = {.lex_state = 0, .external_lex_state = 4}, + [3808] = {.lex_state = 0}, + [3809] = {.lex_state = 96}, [3810] = {.lex_state = 96}, [3811] = {.lex_state = 96}, [3812] = {.lex_state = 96}, [3813] = {.lex_state = 96}, [3814] = {.lex_state = 96}, - [3815] = {.lex_state = 0}, - [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 0}, + [3815] = {.lex_state = 96}, + [3816] = {.lex_state = 96}, + [3817] = {.lex_state = 96}, [3818] = {.lex_state = 96}, [3819] = {.lex_state = 0}, - [3820] = {.lex_state = 96}, - [3821] = {.lex_state = 0}, + [3820] = {.lex_state = 0, .external_lex_state = 4}, + [3821] = {.lex_state = 96}, [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 96}, + [3823] = {.lex_state = 0}, [3824] = {.lex_state = 96}, - [3825] = {.lex_state = 0}, - [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 96}, - [3828] = {.lex_state = 96}, + [3825] = {.lex_state = 96}, + [3826] = {.lex_state = 96}, + [3827] = {.lex_state = 0}, + [3828] = {.lex_state = 0}, [3829] = {.lex_state = 96}, [3830] = {.lex_state = 0}, - [3831] = {.lex_state = 96}, - [3832] = {.lex_state = 0}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 96}, [3833] = {.lex_state = 96}, - [3834] = {.lex_state = 96}, + [3834] = {.lex_state = 0}, [3835] = {.lex_state = 96}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 0}, + [3836] = {.lex_state = 96}, + [3837] = {.lex_state = 0, .external_lex_state = 4}, [3838] = {.lex_state = 0}, - [3839] = {.lex_state = 96}, - [3840] = {.lex_state = 96}, - [3841] = {.lex_state = 0}, + [3839] = {.lex_state = 0}, + [3840] = {.lex_state = 0, .external_lex_state = 4}, + [3841] = {.lex_state = 96}, [3842] = {.lex_state = 96}, [3843] = {.lex_state = 96}, - [3844] = {.lex_state = 96}, - [3845] = {.lex_state = 0}, - [3846] = {.lex_state = 96}, + [3844] = {.lex_state = 0, .external_lex_state = 4}, + [3845] = {.lex_state = 96}, + [3846] = {.lex_state = 0, .external_lex_state = 4}, [3847] = {.lex_state = 0}, [3848] = {.lex_state = 96}, [3849] = {.lex_state = 0}, - [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 0, .external_lex_state = 4}, + [3850] = {.lex_state = 96}, + [3851] = {.lex_state = 96}, [3852] = {.lex_state = 0}, - [3853] = {.lex_state = 0, .external_lex_state = 4}, + [3853] = {.lex_state = 96}, [3854] = {.lex_state = 96}, - [3855] = {.lex_state = 96}, - [3856] = {.lex_state = 96}, - [3857] = {.lex_state = 96}, - [3858] = {.lex_state = 96}, + [3855] = {.lex_state = 0}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 0, .external_lex_state = 4}, + [3858] = {.lex_state = 0}, [3859] = {.lex_state = 96}, - [3860] = {.lex_state = 0}, - [3861] = {.lex_state = 0}, + [3860] = {.lex_state = 96}, + [3861] = {.lex_state = 96}, [3862] = {.lex_state = 96}, [3863] = {.lex_state = 96}, [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 96}, - [3867] = {.lex_state = 96}, + [3865] = {.lex_state = 96}, + [3866] = {.lex_state = 0}, + [3867] = {.lex_state = 0}, [3868] = {.lex_state = 96}, - [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 96}, + [3869] = {.lex_state = 96}, + [3870] = {.lex_state = 0}, [3871] = {.lex_state = 96}, [3872] = {.lex_state = 96}, - [3873] = {.lex_state = 96}, + [3873] = {.lex_state = 0}, [3874] = {.lex_state = 96}, - [3875] = {.lex_state = 96}, - [3876] = {.lex_state = 0}, - [3877] = {.lex_state = 0, .external_lex_state = 4}, - [3878] = {.lex_state = 0, .external_lex_state = 4}, - [3879] = {.lex_state = 0, .external_lex_state = 4}, + [3875] = {.lex_state = 0}, + [3876] = {.lex_state = 96}, + [3877] = {.lex_state = 96}, + [3878] = {.lex_state = 0}, + [3879] = {.lex_state = 96}, [3880] = {.lex_state = 96}, - [3881] = {.lex_state = 96}, + [3881] = {.lex_state = 0}, [3882] = {.lex_state = 96}, [3883] = {.lex_state = 96}, [3884] = {.lex_state = 0}, - [3885] = {.lex_state = 0}, - [3886] = {.lex_state = 0}, - [3887] = {.lex_state = 0, .external_lex_state = 4}, - [3888] = {.lex_state = 0, .external_lex_state = 4}, + [3885] = {.lex_state = 96}, + [3886] = {.lex_state = 96}, + [3887] = {.lex_state = 96}, + [3888] = {.lex_state = 96}, [3889] = {.lex_state = 96}, - [3890] = {.lex_state = 0}, + [3890] = {.lex_state = 96}, [3891] = {.lex_state = 96}, [3892] = {.lex_state = 96}, [3893] = {.lex_state = 96}, - [3894] = {.lex_state = 0}, + [3894] = {.lex_state = 96}, [3895] = {.lex_state = 96}, - [3896] = {.lex_state = 96}, + [3896] = {.lex_state = 0}, [3897] = {.lex_state = 96}, - [3898] = {.lex_state = 96}, + [3898] = {.lex_state = 0}, [3899] = {.lex_state = 96}, [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 0}, + [3901] = {.lex_state = 96}, [3902] = {.lex_state = 96}, - [3903] = {.lex_state = 0}, + [3903] = {.lex_state = 96}, [3904] = {.lex_state = 96}, - [3905] = {.lex_state = 0, .external_lex_state = 4}, + [3905] = {.lex_state = 96}, [3906] = {.lex_state = 96}, - [3907] = {.lex_state = 0, .external_lex_state = 4}, - [3908] = {.lex_state = 96}, + [3907] = {.lex_state = 96}, + [3908] = {.lex_state = 0}, [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 1}, - [3911] = {.lex_state = 0, .external_lex_state = 4}, - [3912] = {.lex_state = 0}, + [3910] = {.lex_state = 96}, + [3911] = {.lex_state = 96}, + [3912] = {.lex_state = 96}, [3913] = {.lex_state = 96}, [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 96}, - [3916] = {.lex_state = 0}, - [3917] = {.lex_state = 96}, - [3918] = {.lex_state = 96}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 0}, - [3922] = {.lex_state = 0}, + [3915] = {.lex_state = 0}, + [3916] = {.lex_state = 96}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 0}, + [3919] = {.lex_state = 96}, + [3920] = {.lex_state = 96}, + [3921] = {.lex_state = 96}, + [3922] = {.lex_state = 96}, [3923] = {.lex_state = 96}, [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 0}, - [3926] = {.lex_state = 0}, + [3925] = {.lex_state = 96}, + [3926] = {.lex_state = 96}, [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 0}, - [3930] = {.lex_state = 0}, - [3931] = {.lex_state = 0}, + [3928] = {.lex_state = 96}, + [3929] = {.lex_state = 96}, + [3930] = {.lex_state = 0, .external_lex_state = 4}, + [3931] = {.lex_state = 96}, [3932] = {.lex_state = 96}, - [3933] = {.lex_state = 2}, + [3933] = {.lex_state = 0}, [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 96}, - [3936] = {.lex_state = 0}, - [3937] = {.lex_state = 96}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 96}, - [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 96}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 96}, + [3937] = {.lex_state = 0, .external_lex_state = 4}, + [3938] = {.lex_state = 96}, + [3939] = {.lex_state = 0}, + [3940] = {.lex_state = 0, .external_lex_state = 4}, + [3941] = {.lex_state = 0}, [3942] = {.lex_state = 0}, [3943] = {.lex_state = 0}, [3944] = {.lex_state = 0}, [3945] = {.lex_state = 96}, - [3946] = {.lex_state = 96}, + [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 0}, + [3948] = {.lex_state = 96}, [3949] = {.lex_state = 0}, - [3950] = {.lex_state = 96}, + [3950] = {.lex_state = 0}, [3951] = {.lex_state = 0}, [3952] = {.lex_state = 0}, [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 0}, + [3954] = {.lex_state = 96}, [3955] = {.lex_state = 0}, [3956] = {.lex_state = 0}, [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 96}, - [3959] = {.lex_state = 96}, - [3960] = {.lex_state = 96}, - [3961] = {.lex_state = 96}, - [3962] = {.lex_state = 96}, - [3963] = {.lex_state = 96}, + [3958] = {.lex_state = 0}, + [3959] = {.lex_state = 2}, + [3960] = {.lex_state = 0}, + [3961] = {.lex_state = 0}, + [3962] = {.lex_state = 0}, + [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 0}, + [3965] = {.lex_state = 96}, [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, + [3967] = {.lex_state = 13}, [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 2}, + [3969] = {.lex_state = 96}, [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 0}, + [3971] = {.lex_state = 96}, + [3972] = {.lex_state = 96}, [3973] = {.lex_state = 0}, [3974] = {.lex_state = 0}, [3975] = {.lex_state = 0}, @@ -15220,21 +15259,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3984] = {.lex_state = 0}, [3985] = {.lex_state = 0}, [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 2}, - [3988] = {.lex_state = 0}, + [3987] = {.lex_state = 96}, + [3988] = {.lex_state = 96}, [3989] = {.lex_state = 0}, [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, + [3991] = {.lex_state = 96}, [3992] = {.lex_state = 0}, [3993] = {.lex_state = 0}, [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 0}, + [3995] = {.lex_state = 96}, [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 96}, - [3998] = {.lex_state = 0}, + [3997] = {.lex_state = 0}, + [3998] = {.lex_state = 96}, [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 13}, - [4001] = {.lex_state = 96}, + [4000] = {.lex_state = 0}, + [4001] = {.lex_state = 0}, [4002] = {.lex_state = 0}, [4003] = {.lex_state = 0}, [4004] = {.lex_state = 0}, @@ -15243,23 +15282,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4007] = {.lex_state = 0}, [4008] = {.lex_state = 0}, [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 96}, - [4011] = {.lex_state = 96}, + [4010] = {.lex_state = 0}, + [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 96}, - [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 96}, + [4014] = {.lex_state = 2}, + [4015] = {.lex_state = 96}, + [4016] = {.lex_state = 0}, [4017] = {.lex_state = 0}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 96}, - [4021] = {.lex_state = 96}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, [4022] = {.lex_state = 0}, [4023] = {.lex_state = 0}, [4024] = {.lex_state = 0}, [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 96}, + [4026] = {.lex_state = 2}, [4027] = {.lex_state = 0}, [4028] = {.lex_state = 0}, [4029] = {.lex_state = 96}, @@ -15269,106 +15308,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4033] = {.lex_state = 0}, [4034] = {.lex_state = 0}, [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 96}, + [4036] = {.lex_state = 0}, [4037] = {.lex_state = 96}, - [4038] = {.lex_state = 0}, + [4038] = {.lex_state = 96}, [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, + [4040] = {.lex_state = 96}, [4041] = {.lex_state = 0}, [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 96}, + [4043] = {.lex_state = 0}, [4044] = {.lex_state = 96}, - [4045] = {.lex_state = 96}, - [4046] = {.lex_state = 96}, + [4045] = {.lex_state = 13}, + [4046] = {.lex_state = 0}, [4047] = {.lex_state = 96}, [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, + [4049] = {.lex_state = 96}, [4050] = {.lex_state = 0}, [4051] = {.lex_state = 0}, [4052] = {.lex_state = 0}, [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 0}, + [4054] = {.lex_state = 96}, + [4055] = {.lex_state = 96}, [4056] = {.lex_state = 0}, [4057] = {.lex_state = 0}, [4058] = {.lex_state = 0}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 96}, + [4059] = {.lex_state = 96}, + [4060] = {.lex_state = 0}, [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 96}, + [4064] = {.lex_state = 0}, [4065] = {.lex_state = 0}, [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, + [4067] = {.lex_state = 96}, [4068] = {.lex_state = 0}, [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 96}, - [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 0}, + [4070] = {.lex_state = 96}, + [4071] = {.lex_state = 0}, + [4072] = {.lex_state = 96}, + [4073] = {.lex_state = 96}, + [4074] = {.lex_state = 96}, [4075] = {.lex_state = 96}, [4076] = {.lex_state = 96}, [4077] = {.lex_state = 0}, [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 96}, + [4079] = {.lex_state = 0}, [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 96}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0}, + [4081] = {.lex_state = 0}, + [4082] = {.lex_state = 96}, + [4083] = {.lex_state = 96}, [4084] = {.lex_state = 0}, [4085] = {.lex_state = 96}, [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 0}, + [4087] = {.lex_state = 96}, [4088] = {.lex_state = 0}, [4089] = {.lex_state = 0}, - [4090] = {.lex_state = 2}, + [4090] = {.lex_state = 0}, [4091] = {.lex_state = 0}, - [4092] = {.lex_state = 0}, + [4092] = {.lex_state = 96}, [4093] = {.lex_state = 96}, [4094] = {.lex_state = 0}, [4095] = {.lex_state = 0}, [4096] = {.lex_state = 0}, [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 96}, - [4100] = {.lex_state = 0}, + [4099] = {.lex_state = 0}, + [4100] = {.lex_state = 96}, [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 96}, + [4102] = {.lex_state = 0}, [4103] = {.lex_state = 0}, [4104] = {.lex_state = 0}, [4105] = {.lex_state = 0}, [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 96}, - [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 96}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 96}, + [4107] = {.lex_state = 96}, + [4108] = {.lex_state = 0}, + [4109] = {.lex_state = 96}, + [4110] = {.lex_state = 0}, + [4111] = {.lex_state = 13}, + [4112] = {.lex_state = 96}, + [4113] = {.lex_state = 0}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 96}, + [4117] = {.lex_state = 0}, [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 96}, - [4120] = {.lex_state = 96}, + [4119] = {.lex_state = 0}, + [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 13}, + [4123] = {.lex_state = 96}, + [4124] = {.lex_state = 96}, + [4125] = {.lex_state = 0}, [4126] = {.lex_state = 96}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 13}, - [4130] = {.lex_state = 96}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 0}, [4131] = {.lex_state = 0}, [4132] = {.lex_state = 0}, [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 96}, + [4134] = {.lex_state = 13}, + [4135] = {.lex_state = 0}, [4136] = {.lex_state = 96}, [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, @@ -15378,20 +15417,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 0}, + [4145] = {.lex_state = 96}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 13}, + [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, [4151] = {.lex_state = 0}, [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 0}, + [4153] = {.lex_state = 13}, [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 96}, - [4157] = {.lex_state = 0}, - [4158] = {.lex_state = 0}, + [4155] = {.lex_state = 96}, + [4156] = {.lex_state = 0}, + [4157] = {.lex_state = 96}, + [4158] = {.lex_state = 96}, [4159] = {.lex_state = 96}, [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, @@ -15399,16 +15438,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4163] = {.lex_state = 0}, [4164] = {.lex_state = 0}, [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 96}, - [4167] = {.lex_state = 0}, + [4166] = {.lex_state = 0}, + [4167] = {.lex_state = 96}, [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 0}, + [4169] = {.lex_state = 96}, [4170] = {.lex_state = 0}, [4171] = {.lex_state = 0}, [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 96}, - [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 96}, + [4175] = {.lex_state = 96}, [4176] = {.lex_state = 96}, [4177] = {.lex_state = 0}, [4178] = {.lex_state = 0}, @@ -15417,40 +15456,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4181] = {.lex_state = 0}, [4182] = {.lex_state = 96}, [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 0}, + [4184] = {.lex_state = 96}, [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, + [4187] = {.lex_state = 96}, [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, [4190] = {.lex_state = 96}, - [4191] = {.lex_state = 13}, + [4191] = {.lex_state = 0}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 96}, + [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 96}, + [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 96}, + [4199] = {.lex_state = 0}, [4200] = {.lex_state = 0}, [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, - [4203] = {.lex_state = 96}, + [4203] = {.lex_state = 0}, [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 96}, + [4205] = {.lex_state = 0}, [4206] = {.lex_state = 0}, [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 96}, - [4209] = {.lex_state = 96}, - [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 0}, + [4208] = {.lex_state = 0}, + [4209] = {.lex_state = 0}, + [4210] = {.lex_state = 96}, + [4211] = {.lex_state = 96}, + [4212] = {.lex_state = 96}, [4213] = {.lex_state = 0}, [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 96}, + [4216] = {.lex_state = 96}, + [4217] = {.lex_state = 0}, [4218] = {.lex_state = 0}, [4219] = {.lex_state = 0}, [4220] = {.lex_state = 0}, @@ -15458,32 +15497,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4222] = {.lex_state = 96}, [4223] = {.lex_state = 0}, [4224] = {.lex_state = 96}, - [4225] = {.lex_state = 96}, - [4226] = {.lex_state = 96}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 96}, - [4229] = {.lex_state = 96}, + [4228] = {.lex_state = 0}, + [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, [4231] = {.lex_state = 96}, [4232] = {.lex_state = 0}, [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 96}, + [4234] = {.lex_state = 0}, [4235] = {.lex_state = 0}, - [4236] = {.lex_state = 96}, - [4237] = {.lex_state = 96}, + [4236] = {.lex_state = 0}, + [4237] = {.lex_state = 0}, [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 2}, + [4239] = {.lex_state = 0}, [4240] = {.lex_state = 0}, [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 0}, + [4243] = {.lex_state = 96}, + [4244] = {.lex_state = 96}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, + [4246] = {.lex_state = 96}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 0}, + [4249] = {.lex_state = 96}, [4250] = {.lex_state = 0}, + [4251] = {.lex_state = 96}, + [4252] = {.lex_state = 0}, + [4253] = {.lex_state = 0}, + [4254] = {.lex_state = 96}, + [4255] = {.lex_state = 96}, + [4256] = {.lex_state = 2}, + [4257] = {.lex_state = 96}, + [4258] = {.lex_state = 96}, + [4259] = {.lex_state = 0}, + [4260] = {.lex_state = 96}, + [4261] = {.lex_state = 0}, + [4262] = {.lex_state = 96}, + [4263] = {.lex_state = 96}, + [4264] = {.lex_state = 96}, + [4265] = {.lex_state = 96}, + [4266] = {.lex_state = 96}, + [4267] = {.lex_state = 0}, + [4268] = {.lex_state = 2}, + [4269] = {.lex_state = 96}, + [4270] = {.lex_state = 96}, + [4271] = {.lex_state = 96}, + [4272] = {.lex_state = 96}, + [4273] = {.lex_state = 96}, + [4274] = {.lex_state = 96}, + [4275] = {.lex_state = 96}, + [4276] = {.lex_state = 96}, + [4277] = {.lex_state = 96}, + [4278] = {.lex_state = 0}, + [4279] = {.lex_state = 0}, }; enum { @@ -15580,9 +15648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LTtemplate_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), @@ -15615,8 +15681,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_EQ_EQ_EQ] = ACTIONS(1), @@ -15687,85 +15755,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4221), - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_program] = STATE(4241), + [sym_export_statement] = STATE(19), + [sym_declaration] = STATE(19), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_for_in_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_with_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_debugger_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_empty_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3033), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -15797,14 +15865,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -15842,76 +15910,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [2] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3037), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3239), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -15932,50 +16000,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(152), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -16019,79 +16087,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [3] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3037), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3239), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -16112,50 +16180,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(152), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -16199,99 +16267,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [4] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4183), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4183), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4183), - [sym_spread_element] = STATE(3483), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1842), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3483), - [sym_pair] = STATE(3483), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2858), - [sym_computed_property_name] = STATE(2858), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_accessibility_modifier] = STATE(2247), - [sym_override_modifier] = STATE(2269), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2971), - [aux_sym_object_repeat1] = STATE(3490), - [aux_sym_object_pattern_repeat1] = STATE(3497), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4200), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4200), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4200), + [sym_spread_element] = STATE(3656), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1919), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2840), + [sym_computed_property_name] = STATE(2840), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_accessibility_modifier] = STATE(2257), + [sym_override_modifier] = STATE(2282), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3033), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), [sym_identifier] = ACTIONS(218), [anon_sym_export] = ACTIONS(220), [anon_sym_STAR] = ACTIONS(222), @@ -16324,15 +16392,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), + [anon_sym_class] = ACTIONS(67), [anon_sym_async] = ACTIONS(234), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -16371,96 +16439,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [5] = { - [sym_export_statement] = STATE(30), - [sym_declaration] = STATE(30), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_for_in_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_debugger_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_empty_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4183), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4183), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4183), - [sym_spread_element] = STATE(3471), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1842), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2858), - [sym_computed_property_name] = STATE(2858), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_accessibility_modifier] = STATE(2247), - [sym_override_modifier] = STATE(2269), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(2971), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4200), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4200), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4200), + [sym_spread_element] = STATE(3656), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1919), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2840), + [sym_computed_property_name] = STATE(2840), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_accessibility_modifier] = STATE(2257), + [sym_override_modifier] = STATE(2282), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3033), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), [sym_identifier] = ACTIONS(258), [anon_sym_export] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(222), @@ -16468,7 +16536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(264), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(266), + [anon_sym_RBRACE] = ACTIONS(230), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16493,15 +16561,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(268), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(266), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -16520,124 +16588,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(270), - [anon_sym_readonly] = ACTIONS(272), - [anon_sym_get] = ACTIONS(274), - [anon_sym_set] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_public] = ACTIONS(278), - [anon_sym_private] = ACTIONS(278), - [anon_sym_protected] = ACTIONS(278), - [anon_sym_override] = ACTIONS(280), - [anon_sym_module] = ACTIONS(282), - [anon_sym_any] = ACTIONS(284), - [anon_sym_number] = ACTIONS(284), - [anon_sym_boolean] = ACTIONS(284), - [anon_sym_string] = ACTIONS(284), - [anon_sym_symbol] = ACTIONS(284), + [anon_sym_static] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(270), + [anon_sym_get] = ACTIONS(272), + [anon_sym_set] = ACTIONS(272), + [anon_sym_declare] = ACTIONS(274), + [anon_sym_public] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_protected] = ACTIONS(276), + [anon_sym_override] = ACTIONS(278), + [anon_sym_module] = ACTIONS(280), + [anon_sym_any] = ACTIONS(282), + [anon_sym_number] = ACTIONS(282), + [anon_sym_boolean] = ACTIONS(282), + [anon_sym_string] = ACTIONS(282), + [anon_sym_symbol] = ACTIONS(282), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [6] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4183), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4183), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4183), - [sym_spread_element] = STATE(3483), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1842), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3483), - [sym_pair] = STATE(3483), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2858), - [sym_computed_property_name] = STATE(2858), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_accessibility_modifier] = STATE(2247), - [sym_override_modifier] = STATE(2269), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2971), - [aux_sym_object_repeat1] = STATE(3490), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(218), - [anon_sym_export] = ACTIONS(220), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_for_in_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_debugger_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4200), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4200), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4200), + [sym_spread_element] = STATE(3647), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1919), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3647), + [sym_pair] = STATE(3647), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2840), + [sym_computed_property_name] = STATE(2840), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_accessibility_modifier] = STATE(2257), + [sym_override_modifier] = STATE(2282), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3033), + [aux_sym_object_repeat1] = STATE(3547), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_type] = ACTIONS(224), - [anon_sym_namespace] = ACTIONS(226), + [anon_sym_type] = ACTIONS(288), + [anon_sym_namespace] = ACTIONS(290), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(292), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16662,15 +16730,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(234), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(294), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -16689,21 +16757,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(242), - [anon_sym_readonly] = ACTIONS(244), - [anon_sym_get] = ACTIONS(246), - [anon_sym_set] = ACTIONS(246), - [anon_sym_declare] = ACTIONS(248), - [anon_sym_public] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_override] = ACTIONS(252), - [anon_sym_module] = ACTIONS(254), - [anon_sym_any] = ACTIONS(256), - [anon_sym_number] = ACTIONS(256), - [anon_sym_boolean] = ACTIONS(256), - [anon_sym_string] = ACTIONS(256), - [anon_sym_symbol] = ACTIONS(256), + [anon_sym_static] = ACTIONS(296), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_get] = ACTIONS(300), + [anon_sym_set] = ACTIONS(300), + [anon_sym_declare] = ACTIONS(302), + [anon_sym_public] = ACTIONS(304), + [anon_sym_private] = ACTIONS(304), + [anon_sym_protected] = ACTIONS(304), + [anon_sym_override] = ACTIONS(306), + [anon_sym_module] = ACTIONS(308), + [anon_sym_any] = ACTIONS(310), + [anon_sym_number] = ACTIONS(310), + [anon_sym_boolean] = ACTIONS(310), + [anon_sym_string] = ACTIONS(310), + [anon_sym_symbol] = ACTIONS(310), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), @@ -16711,11 +16779,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [7] = { [sym_export_statement] = STATE(16), [sym_declaration] = STATE(16), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(16), [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(16), [sym_if_statement] = STATE(16), [sym_switch_statement] = STATE(16), @@ -16732,81 +16800,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(16), [sym_empty_statement] = STATE(16), [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4183), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4183), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4183), - [sym_spread_element] = STATE(3483), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1842), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3483), - [sym_pair] = STATE(3483), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2858), - [sym_computed_property_name] = STATE(2858), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_accessibility_modifier] = STATE(2247), - [sym_override_modifier] = STATE(2269), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4200), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4200), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4200), + [sym_spread_element] = STATE(3647), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1919), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3647), + [sym_pair] = STATE(3647), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2840), + [sym_computed_property_name] = STATE(2840), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_accessibility_modifier] = STATE(2257), + [sym_override_modifier] = STATE(2282), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2971), - [aux_sym_object_repeat1] = STATE(3490), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(218), - [anon_sym_export] = ACTIONS(220), + [aux_sym_export_statement_repeat1] = STATE(3033), + [aux_sym_object_repeat1] = STATE(3547), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_type] = ACTIONS(224), - [anon_sym_namespace] = ACTIONS(226), + [anon_sym_type] = ACTIONS(288), + [anon_sym_namespace] = ACTIONS(290), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16831,15 +16899,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(234), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(294), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -16858,124 +16926,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(242), - [anon_sym_readonly] = ACTIONS(244), - [anon_sym_get] = ACTIONS(246), - [anon_sym_set] = ACTIONS(246), - [anon_sym_declare] = ACTIONS(248), - [anon_sym_public] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_override] = ACTIONS(252), - [anon_sym_module] = ACTIONS(254), - [anon_sym_any] = ACTIONS(256), - [anon_sym_number] = ACTIONS(256), - [anon_sym_boolean] = ACTIONS(256), - [anon_sym_string] = ACTIONS(256), - [anon_sym_symbol] = ACTIONS(256), + [anon_sym_static] = ACTIONS(296), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_get] = ACTIONS(300), + [anon_sym_set] = ACTIONS(300), + [anon_sym_declare] = ACTIONS(302), + [anon_sym_public] = ACTIONS(304), + [anon_sym_private] = ACTIONS(304), + [anon_sym_protected] = ACTIONS(304), + [anon_sym_override] = ACTIONS(306), + [anon_sym_module] = ACTIONS(308), + [anon_sym_any] = ACTIONS(310), + [anon_sym_number] = ACTIONS(310), + [anon_sym_boolean] = ACTIONS(310), + [anon_sym_string] = ACTIONS(310), + [anon_sym_symbol] = ACTIONS(310), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [8] = { - [sym_export_statement] = STATE(30), - [sym_declaration] = STATE(30), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_for_in_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_debugger_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_empty_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4183), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4183), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4183), - [sym_spread_element] = STATE(3471), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1842), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2858), - [sym_computed_property_name] = STATE(2858), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_accessibility_modifier] = STATE(2247), - [sym_override_modifier] = STATE(2269), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(2971), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(290), - [anon_sym_export] = ACTIONS(292), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_for_in_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_debugger_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4200), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4200), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4200), + [sym_spread_element] = STATE(3647), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1919), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3647), + [sym_pair] = STATE(3647), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2840), + [sym_computed_property_name] = STATE(2840), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_accessibility_modifier] = STATE(2257), + [sym_override_modifier] = STATE(2282), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3033), + [aux_sym_object_repeat1] = STATE(3547), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_type] = ACTIONS(294), - [anon_sym_namespace] = ACTIONS(296), + [anon_sym_type] = ACTIONS(288), + [anon_sym_namespace] = ACTIONS(290), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(266), + [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17000,15 +17068,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(298), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(294), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17027,21 +17095,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(302), - [anon_sym_get] = ACTIONS(304), - [anon_sym_set] = ACTIONS(304), - [anon_sym_declare] = ACTIONS(306), - [anon_sym_public] = ACTIONS(308), - [anon_sym_private] = ACTIONS(308), - [anon_sym_protected] = ACTIONS(308), - [anon_sym_override] = ACTIONS(310), - [anon_sym_module] = ACTIONS(312), - [anon_sym_any] = ACTIONS(314), - [anon_sym_number] = ACTIONS(314), - [anon_sym_boolean] = ACTIONS(314), - [anon_sym_string] = ACTIONS(314), - [anon_sym_symbol] = ACTIONS(314), + [anon_sym_static] = ACTIONS(296), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_get] = ACTIONS(300), + [anon_sym_set] = ACTIONS(300), + [anon_sym_declare] = ACTIONS(302), + [anon_sym_public] = ACTIONS(304), + [anon_sym_private] = ACTIONS(304), + [anon_sym_protected] = ACTIONS(304), + [anon_sym_override] = ACTIONS(306), + [anon_sym_module] = ACTIONS(308), + [anon_sym_any] = ACTIONS(310), + [anon_sym_number] = ACTIONS(310), + [anon_sym_boolean] = ACTIONS(310), + [anon_sym_string] = ACTIONS(310), + [anon_sym_symbol] = ACTIONS(310), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), @@ -17049,11 +17117,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [9] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -17070,61 +17138,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [ts_builtin_sym_end] = ACTIONS(316), [sym_identifier] = ACTIONS(318), [anon_sym_export] = ACTIONS(321), @@ -17158,14 +17226,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(398), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(416), - [anon_sym_function] = ACTIONS(419), - [anon_sym_new] = ACTIONS(422), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(410), + [anon_sym_function] = ACTIONS(413), + [anon_sym_new] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(335), [anon_sym_DASH] = ACTIONS(335), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(422), [anon_sym_TILDE] = ACTIONS(350), [anon_sym_void] = ACTIONS(335), [anon_sym_delete] = ACTIONS(335), @@ -17205,11 +17273,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [10] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -17226,61 +17294,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(470), @@ -17313,14 +17381,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17360,11 +17428,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_export_statement] = STATE(10), [sym_declaration] = STATE(10), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(10), [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(10), [sym_if_statement] = STATE(10), [sym_switch_statement] = STATE(10), @@ -17381,61 +17449,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(10), [sym_empty_statement] = STATE(10), [sym_labeled_statement] = STATE(10), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(474), @@ -17468,14 +17536,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17513,84 +17581,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [12] = { - [sym_export_statement] = STATE(13), - [sym_declaration] = STATE(13), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_for_in_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_try_statement] = STATE(13), - [sym_with_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_debugger_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_throw_statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(478), @@ -17623,14 +17691,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17668,84 +17736,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [13] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_for_in_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_with_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_debugger_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(482), @@ -17778,14 +17846,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17823,90 +17891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [14] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), - [ts_builtin_sym_end] = ACTIONS(486), + [sym_export_statement] = STATE(16), + [sym_declaration] = STATE(16), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_for_in_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_with_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_debugger_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17931,14 +17999,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -17976,84 +18044,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [15] = { - [sym_export_statement] = STATE(30), - [sym_declaration] = STATE(30), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_for_in_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_debugger_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_empty_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -18084,14 +18152,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18131,11 +18199,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [16] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -18152,61 +18220,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -18237,14 +18305,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18284,11 +18352,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [17] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -18305,61 +18373,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [ts_builtin_sym_end] = ACTIONS(492), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), @@ -18390,14 +18458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18435,90 +18503,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [18] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2971), - [ts_builtin_sym_end] = ACTIONS(492), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -18543,14 +18611,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18588,90 +18656,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [19] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3033), + [ts_builtin_sym_end] = ACTIONS(496), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -18696,14 +18764,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18741,90 +18809,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [20] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_for_in_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_debugger_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -18849,14 +18917,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -18894,90 +18962,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [21] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -19002,14 +19070,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19049,11 +19117,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -19070,214 +19138,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [23] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19308,14 +19223,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19352,85 +19267,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [24] = { - [sym_export_statement] = STATE(26), - [sym_declaration] = STATE(26), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_for_in_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_debugger_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_empty_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(2971), + [23] = { + [sym_export_statement] = STATE(22), + [sym_declaration] = STATE(22), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19461,14 +19376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19505,85 +19420,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [25] = { - [sym_export_statement] = STATE(29), - [sym_declaration] = STATE(29), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_for_in_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_debugger_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(2971), + [24] = { + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19614,14 +19529,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19658,14 +19573,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [26] = { + [25] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -19682,61 +19597,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19767,14 +19682,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19811,85 +19726,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [27] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2971), + [26] = { + [sym_export_statement] = STATE(29), + [sym_declaration] = STATE(29), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_for_in_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_debugger_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_empty_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19920,14 +19835,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -19964,85 +19879,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [28] = { - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_for_in_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_with_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_debugger_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(2971), + [27] = { + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_for_in_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym_with_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_debugger_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_throw_statement] = STATE(24), + [sym_empty_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20073,14 +19988,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20117,91 +20032,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [29] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [28] = { + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3033), + [ts_builtin_sym_end] = ACTIONS(496), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -20226,14 +20141,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20270,14 +20185,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [30] = { + [29] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1898), + [sym_import] = STATE(1953), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -20294,67 +20209,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2971), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -20379,14 +20294,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20423,240 +20338,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [31] = { - [sym_export_statement] = STATE(641), - [sym_declaration] = STATE(641), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(641), - [sym_expression_statement] = STATE(641), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(641), - [sym_if_statement] = STATE(641), - [sym_switch_statement] = STATE(641), - [sym_for_statement] = STATE(641), - [sym_for_in_statement] = STATE(641), - [sym_while_statement] = STATE(641), - [sym_do_statement] = STATE(641), - [sym_try_statement] = STATE(641), - [sym_with_statement] = STATE(641), - [sym_break_statement] = STATE(641), - [sym_continue_statement] = STATE(641), - [sym_debugger_statement] = STATE(641), - [sym_return_statement] = STATE(641), - [sym_throw_statement] = STATE(641), - [sym_empty_statement] = STATE(641), - [sym_labeled_statement] = STATE(641), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_type] = ACTIONS(522), - [anon_sym_namespace] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(532), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(534), - [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_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(536), - [anon_sym_async] = ACTIONS(538), - [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(542), - [anon_sym_readonly] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), - [anon_sym_declare] = ACTIONS(544), - [anon_sym_public] = ACTIONS(542), - [anon_sym_private] = ACTIONS(542), - [anon_sym_protected] = ACTIONS(542), - [anon_sym_override] = ACTIONS(542), - [anon_sym_module] = ACTIONS(546), - [anon_sym_any] = ACTIONS(542), - [anon_sym_number] = ACTIONS(542), - [anon_sym_boolean] = ACTIONS(542), - [anon_sym_string] = ACTIONS(542), - [anon_sym_symbol] = ACTIONS(542), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [32] = { - [sym_export_statement] = STATE(763), - [sym_declaration] = STATE(763), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(763), - [sym_expression_statement] = STATE(763), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(763), - [sym_if_statement] = STATE(763), - [sym_switch_statement] = STATE(763), - [sym_for_statement] = STATE(763), - [sym_for_in_statement] = STATE(763), - [sym_while_statement] = STATE(763), - [sym_do_statement] = STATE(763), - [sym_try_statement] = STATE(763), - [sym_with_statement] = STATE(763), - [sym_break_statement] = STATE(763), - [sym_continue_statement] = STATE(763), - [sym_debugger_statement] = STATE(763), - [sym_return_statement] = STATE(763), - [sym_throw_statement] = STATE(763), - [sym_empty_statement] = STATE(763), - [sym_labeled_statement] = STATE(763), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [30] = { + [sym_export_statement] = STATE(25), + [sym_declaration] = STATE(25), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(516), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -20681,14 +20447,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20725,104 +20491,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [33] = { - [sym_export_statement] = STATE(634), - [sym_declaration] = STATE(634), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(634), - [sym_expression_statement] = STATE(634), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_switch_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_for_in_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_do_statement] = STATE(634), - [sym_try_statement] = STATE(634), - [sym_with_statement] = STATE(634), - [sym_break_statement] = STATE(634), - [sym_continue_statement] = STATE(634), - [sym_debugger_statement] = STATE(634), - [sym_return_statement] = STATE(634), - [sym_throw_statement] = STATE(634), - [sym_empty_statement] = STATE(634), - [sym_labeled_statement] = STATE(634), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_type] = ACTIONS(522), - [anon_sym_namespace] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(526), + [31] = { + [sym_export_statement] = STATE(641), + [sym_declaration] = STATE(641), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_switch_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym_for_in_statement] = STATE(641), + [sym_while_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_try_statement] = STATE(641), + [sym_with_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_debugger_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_throw_statement] = STATE(641), + [sym_empty_statement] = STATE(641), + [sym_labeled_statement] = STATE(641), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(528), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(530), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(532), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(534), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -20832,14 +20598,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(536), - [anon_sym_async] = ACTIONS(538), - [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -20857,103 +20623,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(542), - [anon_sym_readonly] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), - [anon_sym_declare] = ACTIONS(544), - [anon_sym_public] = ACTIONS(542), - [anon_sym_private] = ACTIONS(542), - [anon_sym_protected] = ACTIONS(542), - [anon_sym_override] = ACTIONS(542), - [anon_sym_module] = ACTIONS(546), - [anon_sym_any] = ACTIONS(542), - [anon_sym_number] = ACTIONS(542), - [anon_sym_boolean] = ACTIONS(542), - [anon_sym_string] = ACTIONS(542), - [anon_sym_symbol] = ACTIONS(542), + [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_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [34] = { - [sym_export_statement] = STATE(679), - [sym_declaration] = STATE(680), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(681), - [sym_expression_statement] = STATE(683), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(684), - [sym_if_statement] = STATE(685), - [sym_switch_statement] = STATE(686), - [sym_for_statement] = STATE(689), - [sym_for_in_statement] = STATE(691), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(694), - [sym_try_statement] = STATE(695), - [sym_with_statement] = STATE(696), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(698), - [sym_debugger_statement] = STATE(699), - [sym_return_statement] = STATE(620), - [sym_throw_statement] = STATE(701), - [sym_empty_statement] = STATE(731), - [sym_labeled_statement] = STATE(736), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [32] = { + [sym_export_statement] = STATE(750), + [sym_declaration] = STATE(691), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(695), + [sym_expression_statement] = STATE(696), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(707), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(713), + [sym_for_statement] = STATE(714), + [sym_for_in_statement] = STATE(716), + [sym_while_statement] = STATE(726), + [sym_do_statement] = STATE(728), + [sym_try_statement] = STATE(731), + [sym_with_statement] = STATE(732), + [sym_break_statement] = STATE(739), + [sym_continue_statement] = STATE(744), + [sym_debugger_statement] = STATE(745), + [sym_return_statement] = STATE(718), + [sym_throw_statement] = STATE(751), + [sym_empty_statement] = STATE(752), + [sym_labeled_statement] = STATE(758), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20983,14 +20749,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21027,84 +20793,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [35] = { - [sym_export_statement] = STATE(604), - [sym_declaration] = STATE(604), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(604), - [sym_expression_statement] = STATE(604), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(604), - [sym_if_statement] = STATE(604), - [sym_switch_statement] = STATE(604), - [sym_for_statement] = STATE(604), - [sym_for_in_statement] = STATE(604), - [sym_while_statement] = STATE(604), - [sym_do_statement] = STATE(604), - [sym_try_statement] = STATE(604), - [sym_with_statement] = STATE(604), - [sym_break_statement] = STATE(604), - [sym_continue_statement] = STATE(604), - [sym_debugger_statement] = STATE(604), - [sym_return_statement] = STATE(604), - [sym_throw_statement] = STATE(604), - [sym_empty_statement] = STATE(604), - [sym_labeled_statement] = STATE(604), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [33] = { + [sym_export_statement] = STATE(660), + [sym_declaration] = STATE(660), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_for_in_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_try_statement] = STATE(660), + [sym_with_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_debugger_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_throw_statement] = STATE(660), + [sym_empty_statement] = STATE(660), + [sym_labeled_statement] = STATE(660), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21134,14 +20900,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21178,84 +20944,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [36] = { - [sym_export_statement] = STATE(642), - [sym_declaration] = STATE(642), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(642), - [sym_if_statement] = STATE(642), - [sym_switch_statement] = STATE(642), - [sym_for_statement] = STATE(642), - [sym_for_in_statement] = STATE(642), - [sym_while_statement] = STATE(642), - [sym_do_statement] = STATE(642), - [sym_try_statement] = STATE(642), - [sym_with_statement] = STATE(642), - [sym_break_statement] = STATE(642), - [sym_continue_statement] = STATE(642), - [sym_debugger_statement] = STATE(642), - [sym_return_statement] = STATE(642), - [sym_throw_statement] = STATE(642), - [sym_empty_statement] = STATE(642), - [sym_labeled_statement] = STATE(642), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [34] = { + [sym_export_statement] = STATE(689), + [sym_declaration] = STATE(688), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(686), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(685), + [sym_if_statement] = STATE(684), + [sym_switch_statement] = STATE(683), + [sym_for_statement] = STATE(682), + [sym_for_in_statement] = STATE(681), + [sym_while_statement] = STATE(680), + [sym_do_statement] = STATE(678), + [sym_try_statement] = STATE(675), + [sym_with_statement] = STATE(674), + [sym_break_statement] = STATE(672), + [sym_continue_statement] = STATE(671), + [sym_debugger_statement] = STATE(670), + [sym_return_statement] = STATE(668), + [sym_throw_statement] = STATE(667), + [sym_empty_statement] = STATE(666), + [sym_labeled_statement] = STATE(665), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -21285,14 +21051,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21329,84 +21095,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [37] = { - [sym_export_statement] = STATE(641), - [sym_declaration] = STATE(641), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(641), - [sym_expression_statement] = STATE(641), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(641), - [sym_if_statement] = STATE(641), - [sym_switch_statement] = STATE(641), - [sym_for_statement] = STATE(641), - [sym_for_in_statement] = STATE(641), - [sym_while_statement] = STATE(641), - [sym_do_statement] = STATE(641), - [sym_try_statement] = STATE(641), - [sym_with_statement] = STATE(641), - [sym_break_statement] = STATE(641), - [sym_continue_statement] = STATE(641), - [sym_debugger_statement] = STATE(641), - [sym_return_statement] = STATE(641), - [sym_throw_statement] = STATE(641), - [sym_empty_statement] = STATE(641), - [sym_labeled_statement] = STATE(641), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [35] = { + [sym_export_statement] = STATE(660), + [sym_declaration] = STATE(660), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_for_in_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_try_statement] = STATE(660), + [sym_with_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_debugger_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_throw_statement] = STATE(660), + [sym_empty_statement] = STATE(660), + [sym_labeled_statement] = STATE(660), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_type] = ACTIONS(522), + [anon_sym_namespace] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(528), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(534), + [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_class] = ACTIONS(536), + [anon_sym_async] = ACTIONS(538), + [anon_sym_function] = ACTIONS(540), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(542), + [anon_sym_readonly] = ACTIONS(542), + [anon_sym_get] = ACTIONS(542), + [anon_sym_set] = ACTIONS(542), + [anon_sym_declare] = ACTIONS(544), + [anon_sym_public] = ACTIONS(542), + [anon_sym_private] = ACTIONS(542), + [anon_sym_protected] = ACTIONS(542), + [anon_sym_override] = ACTIONS(542), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(542), + [anon_sym_number] = ACTIONS(542), + [anon_sym_boolean] = ACTIONS(542), + [anon_sym_string] = ACTIONS(542), + [anon_sym_symbol] = ACTIONS(542), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, + [36] = { + [sym_export_statement] = STATE(702), + [sym_declaration] = STATE(702), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(702), + [sym_expression_statement] = STATE(702), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(702), + [sym_if_statement] = STATE(702), + [sym_switch_statement] = STATE(702), + [sym_for_statement] = STATE(702), + [sym_for_in_statement] = STATE(702), + [sym_while_statement] = STATE(702), + [sym_do_statement] = STATE(702), + [sym_try_statement] = STATE(702), + [sym_with_statement] = STATE(702), + [sym_break_statement] = STATE(702), + [sym_continue_statement] = STATE(702), + [sym_debugger_statement] = STATE(702), + [sym_return_statement] = STATE(702), + [sym_throw_statement] = STATE(702), + [sym_empty_statement] = STATE(702), + [sym_labeled_statement] = STATE(702), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21436,14 +21353,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21480,84 +21397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [38] = { - [sym_export_statement] = STATE(716), - [sym_declaration] = STATE(716), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_switch_statement] = STATE(716), - [sym_for_statement] = STATE(716), - [sym_for_in_statement] = STATE(716), - [sym_while_statement] = STATE(716), - [sym_do_statement] = STATE(716), - [sym_try_statement] = STATE(716), - [sym_with_statement] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_throw_statement] = STATE(716), - [sym_empty_statement] = STATE(716), - [sym_labeled_statement] = STATE(716), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [37] = { + [sym_export_statement] = STATE(766), + [sym_declaration] = STATE(766), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_for_in_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_with_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_debugger_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_empty_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21587,14 +21504,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21631,84 +21548,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, + [38] = { + [sym_export_statement] = STATE(715), + [sym_declaration] = STATE(715), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_for_in_statement] = STATE(715), + [sym_while_statement] = STATE(715), + [sym_do_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_with_statement] = STATE(715), + [sym_break_statement] = STATE(715), + [sym_continue_statement] = STATE(715), + [sym_debugger_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_throw_statement] = STATE(715), + [sym_empty_statement] = STATE(715), + [sym_labeled_statement] = STATE(715), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_type] = ACTIONS(522), + [anon_sym_namespace] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(528), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(534), + [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_class] = ACTIONS(536), + [anon_sym_async] = ACTIONS(538), + [anon_sym_function] = ACTIONS(540), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(542), + [anon_sym_readonly] = ACTIONS(542), + [anon_sym_get] = ACTIONS(542), + [anon_sym_set] = ACTIONS(542), + [anon_sym_declare] = ACTIONS(544), + [anon_sym_public] = ACTIONS(542), + [anon_sym_private] = ACTIONS(542), + [anon_sym_protected] = ACTIONS(542), + [anon_sym_override] = ACTIONS(542), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(542), + [anon_sym_number] = ACTIONS(542), + [anon_sym_boolean] = ACTIONS(542), + [anon_sym_string] = ACTIONS(542), + [anon_sym_symbol] = ACTIONS(542), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, [39] = { - [sym_export_statement] = STATE(755), - [sym_declaration] = STATE(755), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(755), - [sym_expression_statement] = STATE(755), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(755), - [sym_if_statement] = STATE(755), - [sym_switch_statement] = STATE(755), - [sym_for_statement] = STATE(755), - [sym_for_in_statement] = STATE(755), - [sym_while_statement] = STATE(755), - [sym_do_statement] = STATE(755), - [sym_try_statement] = STATE(755), - [sym_with_statement] = STATE(755), - [sym_break_statement] = STATE(755), - [sym_continue_statement] = STATE(755), - [sym_debugger_statement] = STATE(755), - [sym_return_statement] = STATE(755), - [sym_throw_statement] = STATE(755), - [sym_empty_statement] = STATE(755), - [sym_labeled_statement] = STATE(755), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(715), + [sym_declaration] = STATE(715), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_for_in_statement] = STATE(715), + [sym_while_statement] = STATE(715), + [sym_do_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_with_statement] = STATE(715), + [sym_break_statement] = STATE(715), + [sym_continue_statement] = STATE(715), + [sym_debugger_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_throw_statement] = STATE(715), + [sym_empty_statement] = STATE(715), + [sym_labeled_statement] = STATE(715), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21738,14 +21806,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21783,103 +21851,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [40] = { - [sym_export_statement] = STATE(634), - [sym_declaration] = STATE(634), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(634), - [sym_expression_statement] = STATE(634), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_switch_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_for_in_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_do_statement] = STATE(634), - [sym_try_statement] = STATE(634), - [sym_with_statement] = STATE(634), - [sym_break_statement] = STATE(634), - [sym_continue_statement] = STATE(634), - [sym_debugger_statement] = STATE(634), - [sym_return_statement] = STATE(634), - [sym_throw_statement] = STATE(634), - [sym_empty_statement] = STATE(634), - [sym_labeled_statement] = STATE(634), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_export_statement] = STATE(641), + [sym_declaration] = STATE(641), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_switch_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym_for_in_statement] = STATE(641), + [sym_while_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_try_statement] = STATE(641), + [sym_with_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_debugger_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_throw_statement] = STATE(641), + [sym_empty_statement] = STATE(641), + [sym_labeled_statement] = STATE(641), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_type] = ACTIONS(522), + [anon_sym_namespace] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(526), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(528), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(530), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(532), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(534), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -21889,14 +21957,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(536), + [anon_sym_async] = ACTIONS(538), + [anon_sym_function] = ACTIONS(540), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -21914,103 +21982,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [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_static] = ACTIONS(542), + [anon_sym_readonly] = ACTIONS(542), + [anon_sym_get] = ACTIONS(542), + [anon_sym_set] = ACTIONS(542), + [anon_sym_declare] = ACTIONS(544), + [anon_sym_public] = ACTIONS(542), + [anon_sym_private] = ACTIONS(542), + [anon_sym_protected] = ACTIONS(542), + [anon_sym_override] = ACTIONS(542), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(542), + [anon_sym_number] = ACTIONS(542), + [anon_sym_boolean] = ACTIONS(542), + [anon_sym_string] = ACTIONS(542), + [anon_sym_symbol] = ACTIONS(542), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [41] = { - [sym_export_statement] = STATE(4156), - [sym_declaration] = STATE(4156), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(4156), - [sym_expression_statement] = STATE(4156), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(4156), - [sym_if_statement] = STATE(4156), - [sym_switch_statement] = STATE(4156), - [sym_for_statement] = STATE(4156), - [sym_for_in_statement] = STATE(4156), - [sym_while_statement] = STATE(4156), - [sym_do_statement] = STATE(4156), - [sym_try_statement] = STATE(4156), - [sym_with_statement] = STATE(4156), - [sym_break_statement] = STATE(4156), - [sym_continue_statement] = STATE(4156), - [sym_debugger_statement] = STATE(4156), - [sym_return_statement] = STATE(4156), - [sym_throw_statement] = STATE(4156), - [sym_empty_statement] = STATE(4156), - [sym_labeled_statement] = STATE(4156), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [sym_export_statement] = STATE(702), + [sym_declaration] = STATE(702), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(702), + [sym_expression_statement] = STATE(702), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(702), + [sym_if_statement] = STATE(702), + [sym_switch_statement] = STATE(702), + [sym_for_statement] = STATE(702), + [sym_for_in_statement] = STATE(702), + [sym_while_statement] = STATE(702), + [sym_do_statement] = STATE(702), + [sym_try_statement] = STATE(702), + [sym_with_statement] = STATE(702), + [sym_break_statement] = STATE(702), + [sym_continue_statement] = STATE(702), + [sym_debugger_statement] = STATE(702), + [sym_return_statement] = STATE(702), + [sym_throw_statement] = STATE(702), + [sym_empty_statement] = STATE(702), + [sym_labeled_statement] = STATE(702), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -22040,14 +22108,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22085,83 +22153,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [42] = { - [sym_export_statement] = STATE(3639), - [sym_declaration] = STATE(3639), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(3639), - [sym_expression_statement] = STATE(3639), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(3639), - [sym_if_statement] = STATE(3639), - [sym_switch_statement] = STATE(3639), - [sym_for_statement] = STATE(3639), - [sym_for_in_statement] = STATE(3639), - [sym_while_statement] = STATE(3639), - [sym_do_statement] = STATE(3639), - [sym_try_statement] = STATE(3639), - [sym_with_statement] = STATE(3639), - [sym_break_statement] = STATE(3639), - [sym_continue_statement] = STATE(3639), - [sym_debugger_statement] = STATE(3639), - [sym_return_statement] = STATE(3639), - [sym_throw_statement] = STATE(3639), - [sym_empty_statement] = STATE(3639), - [sym_labeled_statement] = STATE(3639), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [sym_export_statement] = STATE(4159), + [sym_declaration] = STATE(4159), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(4159), + [sym_expression_statement] = STATE(4159), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(4159), + [sym_if_statement] = STATE(4159), + [sym_switch_statement] = STATE(4159), + [sym_for_statement] = STATE(4159), + [sym_for_in_statement] = STATE(4159), + [sym_while_statement] = STATE(4159), + [sym_do_statement] = STATE(4159), + [sym_try_statement] = STATE(4159), + [sym_with_statement] = STATE(4159), + [sym_break_statement] = STATE(4159), + [sym_continue_statement] = STATE(4159), + [sym_debugger_statement] = STATE(4159), + [sym_return_statement] = STATE(4159), + [sym_throw_statement] = STATE(4159), + [sym_empty_statement] = STATE(4159), + [sym_labeled_statement] = STATE(4159), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -22191,14 +22259,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22236,234 +22304,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [43] = { - [sym_export_statement] = STATE(679), - [sym_declaration] = STATE(680), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(681), - [sym_expression_statement] = STATE(683), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(684), - [sym_if_statement] = STATE(685), - [sym_switch_statement] = STATE(686), - [sym_for_statement] = STATE(689), - [sym_for_in_statement] = STATE(691), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(694), - [sym_try_statement] = STATE(695), - [sym_with_statement] = STATE(696), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(698), - [sym_debugger_statement] = STATE(699), - [sym_return_statement] = STATE(620), - [sym_throw_statement] = STATE(701), - [sym_empty_statement] = STATE(731), - [sym_labeled_statement] = STATE(736), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_type] = ACTIONS(522), - [anon_sym_namespace] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(532), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(534), - [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_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(536), - [anon_sym_async] = ACTIONS(538), - [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(542), - [anon_sym_readonly] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), - [anon_sym_declare] = ACTIONS(544), - [anon_sym_public] = ACTIONS(542), - [anon_sym_private] = ACTIONS(542), - [anon_sym_protected] = ACTIONS(542), - [anon_sym_override] = ACTIONS(542), - [anon_sym_module] = ACTIONS(546), - [anon_sym_any] = ACTIONS(542), - [anon_sym_number] = ACTIONS(542), - [anon_sym_boolean] = ACTIONS(542), - [anon_sym_string] = ACTIONS(542), - [anon_sym_symbol] = ACTIONS(542), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - }, - [44] = { - [sym_export_statement] = STATE(642), - [sym_declaration] = STATE(642), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(642), - [sym_if_statement] = STATE(642), - [sym_switch_statement] = STATE(642), - [sym_for_statement] = STATE(642), - [sym_for_in_statement] = STATE(642), - [sym_while_statement] = STATE(642), - [sym_do_statement] = STATE(642), - [sym_try_statement] = STATE(642), - [sym_with_statement] = STATE(642), - [sym_break_statement] = STATE(642), - [sym_continue_statement] = STATE(642), - [sym_debugger_statement] = STATE(642), - [sym_return_statement] = STATE(642), - [sym_throw_statement] = STATE(642), - [sym_empty_statement] = STATE(642), - [sym_labeled_statement] = STATE(642), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(762), + [sym_declaration] = STATE(762), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(762), + [sym_expression_statement] = STATE(762), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(762), + [sym_if_statement] = STATE(762), + [sym_switch_statement] = STATE(762), + [sym_for_statement] = STATE(762), + [sym_for_in_statement] = STATE(762), + [sym_while_statement] = STATE(762), + [sym_do_statement] = STATE(762), + [sym_try_statement] = STATE(762), + [sym_with_statement] = STATE(762), + [sym_break_statement] = STATE(762), + [sym_continue_statement] = STATE(762), + [sym_debugger_statement] = STATE(762), + [sym_return_statement] = STATE(762), + [sym_throw_statement] = STATE(762), + [sym_empty_statement] = STATE(762), + [sym_labeled_statement] = STATE(762), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -22493,14 +22410,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22537,84 +22454,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, - [45] = { - [sym_export_statement] = STATE(763), - [sym_declaration] = STATE(763), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(763), - [sym_expression_statement] = STATE(763), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(763), - [sym_if_statement] = STATE(763), - [sym_switch_statement] = STATE(763), - [sym_for_statement] = STATE(763), - [sym_for_in_statement] = STATE(763), - [sym_while_statement] = STATE(763), - [sym_do_statement] = STATE(763), - [sym_try_statement] = STATE(763), - [sym_with_statement] = STATE(763), - [sym_break_statement] = STATE(763), - [sym_continue_statement] = STATE(763), - [sym_debugger_statement] = STATE(763), - [sym_return_statement] = STATE(763), - [sym_throw_statement] = STATE(763), - [sym_empty_statement] = STATE(763), - [sym_labeled_statement] = STATE(763), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [44] = { + [sym_export_statement] = STATE(3616), + [sym_declaration] = STATE(3616), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(3616), + [sym_expression_statement] = STATE(3616), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(3616), + [sym_if_statement] = STATE(3616), + [sym_switch_statement] = STATE(3616), + [sym_for_statement] = STATE(3616), + [sym_for_in_statement] = STATE(3616), + [sym_while_statement] = STATE(3616), + [sym_do_statement] = STATE(3616), + [sym_try_statement] = STATE(3616), + [sym_with_statement] = STATE(3616), + [sym_break_statement] = STATE(3616), + [sym_continue_statement] = STATE(3616), + [sym_debugger_statement] = STATE(3616), + [sym_return_statement] = STATE(3616), + [sym_throw_statement] = STATE(3616), + [sym_empty_statement] = STATE(3616), + [sym_labeled_statement] = STATE(3616), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -22644,14 +22561,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22688,84 +22605,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, + [45] = { + [sym_export_statement] = STATE(689), + [sym_declaration] = STATE(688), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(687), + [sym_expression_statement] = STATE(686), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(685), + [sym_if_statement] = STATE(684), + [sym_switch_statement] = STATE(683), + [sym_for_statement] = STATE(682), + [sym_for_in_statement] = STATE(681), + [sym_while_statement] = STATE(680), + [sym_do_statement] = STATE(678), + [sym_try_statement] = STATE(675), + [sym_with_statement] = STATE(674), + [sym_break_statement] = STATE(672), + [sym_continue_statement] = STATE(671), + [sym_debugger_statement] = STATE(670), + [sym_return_statement] = STATE(668), + [sym_throw_statement] = STATE(667), + [sym_empty_statement] = STATE(666), + [sym_labeled_statement] = STATE(665), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [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_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + }, [46] = { - [sym_export_statement] = STATE(755), - [sym_declaration] = STATE(755), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(755), - [sym_expression_statement] = STATE(755), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(755), - [sym_if_statement] = STATE(755), - [sym_switch_statement] = STATE(755), - [sym_for_statement] = STATE(755), - [sym_for_in_statement] = STATE(755), - [sym_while_statement] = STATE(755), - [sym_do_statement] = STATE(755), - [sym_try_statement] = STATE(755), - [sym_with_statement] = STATE(755), - [sym_break_statement] = STATE(755), - [sym_continue_statement] = STATE(755), - [sym_debugger_statement] = STATE(755), - [sym_return_statement] = STATE(755), - [sym_throw_statement] = STATE(755), - [sym_empty_statement] = STATE(755), - [sym_labeled_statement] = STATE(755), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [sym_export_statement] = STATE(766), + [sym_declaration] = STATE(766), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_for_in_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_with_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_debugger_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_empty_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -22795,14 +22863,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22840,83 +22908,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [47] = { - [sym_export_statement] = STATE(716), - [sym_declaration] = STATE(716), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_switch_statement] = STATE(716), - [sym_for_statement] = STATE(716), + [sym_export_statement] = STATE(750), + [sym_declaration] = STATE(691), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(695), + [sym_expression_statement] = STATE(696), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(707), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(713), + [sym_for_statement] = STATE(714), [sym_for_in_statement] = STATE(716), - [sym_while_statement] = STATE(716), - [sym_do_statement] = STATE(716), - [sym_try_statement] = STATE(716), - [sym_with_statement] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_throw_statement] = STATE(716), - [sym_empty_statement] = STATE(716), - [sym_labeled_statement] = STATE(716), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [sym_while_statement] = STATE(726), + [sym_do_statement] = STATE(728), + [sym_try_statement] = STATE(731), + [sym_with_statement] = STATE(732), + [sym_break_statement] = STATE(739), + [sym_continue_statement] = STATE(744), + [sym_debugger_statement] = STATE(745), + [sym_return_statement] = STATE(718), + [sym_throw_statement] = STATE(751), + [sym_empty_statement] = STATE(752), + [sym_labeled_statement] = STATE(758), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -22946,14 +23014,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -22991,83 +23059,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [48] = { - [sym_export_statement] = STATE(730), - [sym_declaration] = STATE(729), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(725), - [sym_expression_statement] = STATE(723), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(722), - [sym_if_statement] = STATE(721), - [sym_switch_statement] = STATE(719), - [sym_for_statement] = STATE(718), - [sym_for_in_statement] = STATE(717), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(714), - [sym_try_statement] = STATE(713), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(710), - [sym_continue_statement] = STATE(709), - [sym_debugger_statement] = STATE(708), - [sym_return_statement] = STATE(706), - [sym_throw_statement] = STATE(705), - [sym_empty_statement] = STATE(704), - [sym_labeled_statement] = STATE(703), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2971), + [sym_export_statement] = STATE(605), + [sym_declaration] = STATE(605), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(605), + [sym_if_statement] = STATE(605), + [sym_switch_statement] = STATE(605), + [sym_for_statement] = STATE(605), + [sym_for_in_statement] = STATE(605), + [sym_while_statement] = STATE(605), + [sym_do_statement] = STATE(605), + [sym_try_statement] = STATE(605), + [sym_with_statement] = STATE(605), + [sym_break_statement] = STATE(605), + [sym_continue_statement] = STATE(605), + [sym_debugger_statement] = STATE(605), + [sym_return_statement] = STATE(605), + [sym_throw_statement] = STATE(605), + [sym_empty_statement] = STATE(605), + [sym_labeled_statement] = STATE(605), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3033), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -23097,14 +23165,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = 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(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23142,83 +23210,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [49] = { - [sym_export_statement] = STATE(730), - [sym_declaration] = STATE(729), - [sym_import] = STATE(1898), - [sym_import_statement] = STATE(725), - [sym_expression_statement] = STATE(723), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_statement_block] = STATE(722), - [sym_if_statement] = STATE(721), - [sym_switch_statement] = STATE(719), - [sym_for_statement] = STATE(718), - [sym_for_in_statement] = STATE(717), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(714), - [sym_try_statement] = STATE(713), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(710), - [sym_continue_statement] = STATE(709), - [sym_debugger_statement] = STATE(708), - [sym_return_statement] = STATE(706), - [sym_throw_statement] = STATE(705), - [sym_empty_statement] = STATE(704), - [sym_labeled_statement] = STATE(703), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(2917), + [sym_export_statement] = STATE(762), + [sym_declaration] = STATE(762), + [sym_import] = STATE(1953), + [sym_import_statement] = STATE(762), + [sym_expression_statement] = STATE(762), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_statement_block] = STATE(762), + [sym_if_statement] = STATE(762), + [sym_switch_statement] = STATE(762), + [sym_for_statement] = STATE(762), + [sym_for_in_statement] = STATE(762), + [sym_while_statement] = STATE(762), + [sym_do_statement] = STATE(762), + [sym_try_statement] = STATE(762), + [sym_with_statement] = STATE(762), + [sym_break_statement] = STATE(762), + [sym_continue_statement] = STATE(762), + [sym_debugger_statement] = STATE(762), + [sym_return_statement] = STATE(762), + [sym_throw_statement] = STATE(762), + [sym_empty_statement] = STATE(762), + [sym_labeled_statement] = STATE(762), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(2934), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_type] = ACTIONS(522), @@ -23248,14 +23316,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -23293,441 +23361,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), }, [50] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3296), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(548), - [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(550), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(136), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = 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(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(176), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(568), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), - [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(572), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [51] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3532), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3533), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(596), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(183), - [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [52] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(570), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -23736,98 +23508,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [53] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [51] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3102), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [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(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(608), [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(214), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -23838,14 +23608,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -23856,20 +23628,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(624), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -23882,100 +23654,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [54] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3041), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [52] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3093), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [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(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(608), [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(214), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -23986,14 +23756,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -24004,20 +23776,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(634), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(630), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -24030,248 +23802,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [55] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(636), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(183), - [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [56] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3299), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [53] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3106), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [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(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(608), [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(214), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -24282,14 +23904,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -24300,20 +23924,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(638), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(632), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -24326,148 +23950,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [57] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [54] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(640), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(634), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -24476,146 +24100,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [58] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [55] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(642), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(636), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -24624,98 +24248,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [59] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3295), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [56] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3124), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [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(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(608), [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(214), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -24726,14 +24348,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -24744,20 +24368,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(644), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(638), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -24770,148 +24394,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [60] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [57] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3501), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(640), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -24920,146 +24544,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [61] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3590), - [sym_optional_tuple_parameter] = STATE(3590), - [sym_optional_type] = STATE(3590), - [sym_rest_type] = STATE(3590), - [sym__tuple_type_member] = STATE(3590), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_typeof] = ACTIONS(586), + [58] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(650), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(642), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -25068,98 +24692,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [62] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3037), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [59] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3577), + [sym_optional_tuple_parameter] = STATE(3577), + [sym_optional_type] = STATE(3577), + [sym_rest_type] = STATE(3577), + [sym__tuple_type_member] = STATE(3577), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_typeof] = ACTIONS(560), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(183), + [sym_number] = ACTIONS(185), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(191), + [sym_false] = ACTIONS(191), + [sym_null] = ACTIONS(191), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + }, + [60] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3118), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [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(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(608), [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(214), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25170,14 +24940,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -25188,20 +24960,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(648), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25214,100 +24986,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [63] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3037), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [61] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3068), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(214), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25318,14 +25088,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -25336,20 +25108,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(650), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25362,148 +25134,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [64] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [62] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(654), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(652), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -25512,146 +25284,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [65] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [63] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3501), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(656), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(654), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -25660,98 +25432,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [66] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3142), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [64] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3239), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(136), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(611), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(558), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(142), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -25762,14 +25532,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(167), @@ -25780,20 +25552,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(658), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [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(572), + [anon_sym_QMARK] = ACTIONS(628), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -25806,148 +25578,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [67] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3532), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(3169), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3533), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(574), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_typeof] = ACTIONS(586), + [65] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(183), + [sym_number] = ACTIONS(185), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(191), + [sym_false] = ACTIONS(191), + [sym_null] = ACTIONS(191), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + }, + [66] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(3277), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(548), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), [anon_sym_RBRACK] = ACTIONS(660), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(183), [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(191), [sym_false] = ACTIONS(191), [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(622), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(624), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(628), - [anon_sym_number] = ACTIONS(628), - [anon_sym_boolean] = ACTIONS(628), - [anon_sym_string] = ACTIONS(628), - [anon_sym_symbol] = ACTIONS(628), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -25956,115 +25876,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, + [67] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3239), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), + [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(606), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(136), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(164), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(176), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(619), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(626), + [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(628), + [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_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, [68] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1363), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3994), - [sym_string] = STATE(1853), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3409), - [sym_constructor_type] = STATE(3409), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3409), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3409), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3409), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(3966), + [sym_string] = STATE(1830), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3357), + [sym_constructor_type] = STATE(3357), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3357), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3357), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3357), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(664), [anon_sym_typeof] = ACTIONS(666), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(670), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), [anon_sym_PLUS] = ACTIONS(672), [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), @@ -26077,17 +26145,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(680), [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), [anon_sym_readonly] = ACTIONS(684), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), [anon_sym_public] = ACTIONS(686), [anon_sym_private] = ACTIONS(686), [anon_sym_protected] = ACTIONS(686), [anon_sym_override] = ACTIONS(688), - [anon_sym_module] = ACTIONS(576), + [anon_sym_module] = ACTIONS(550), [anon_sym_any] = ACTIONS(690), [anon_sym_number] = ACTIONS(690), [anon_sym_boolean] = ACTIONS(690), @@ -26102,114 +26170,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [69] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1363), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3994), - [sym_string] = STATE(1853), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3313), - [sym_constructor_type] = STATE(3313), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3313), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3313), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3313), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1412), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4163), + [sym_string] = STATE(1830), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3404), + [sym_constructor_type] = STATE(3404), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3404), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3404), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3404), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(664), [anon_sym_typeof] = ACTIONS(666), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(670), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), [anon_sym_PLUS] = ACTIONS(672), [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), @@ -26222,17 +26290,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(680), [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), [anon_sym_readonly] = ACTIONS(684), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), [anon_sym_public] = ACTIONS(686), [anon_sym_private] = ACTIONS(686), [anon_sym_protected] = ACTIONS(686), [anon_sym_override] = ACTIONS(688), - [anon_sym_module] = ACTIONS(576), + [anon_sym_module] = ACTIONS(550), [anon_sym_any] = ACTIONS(690), [anon_sym_number] = ACTIONS(690), [anon_sym_boolean] = ACTIONS(690), @@ -26247,114 +26315,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [70] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1495), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4160), - [sym_string] = STATE(1853), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3409), - [sym_constructor_type] = STATE(3409), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3409), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3409), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3409), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(3966), + [sym_string] = STATE(1830), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3404), + [sym_constructor_type] = STATE(3404), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3404), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3404), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3404), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(664), [anon_sym_typeof] = ACTIONS(666), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(670), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), [anon_sym_PLUS] = ACTIONS(672), [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), @@ -26367,17 +26435,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(680), [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), [anon_sym_readonly] = ACTIONS(684), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(576), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(550), [anon_sym_public] = ACTIONS(686), [anon_sym_private] = ACTIONS(686), [anon_sym_protected] = ACTIONS(686), [anon_sym_override] = ACTIONS(688), - [anon_sym_module] = ACTIONS(576), + [anon_sym_module] = ACTIONS(550), [anon_sym_any] = ACTIONS(690), [anon_sym_number] = ACTIONS(690), [anon_sym_boolean] = ACTIONS(690), @@ -26392,85 +26460,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [71] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3313), - [sym_constructor_type] = STATE(3313), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3313), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3313), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3313), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3405), + [sym_constructor_type] = STATE(3405), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3405), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3405), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3405), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), @@ -26483,17 +26551,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(169), [anon_sym_delete] = ACTIONS(171), @@ -26515,7 +26583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(698), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(700), [anon_sym_private] = ACTIONS(700), @@ -26536,85 +26604,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [72] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3390), - [sym_constructor_type] = STATE(3390), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3390), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3390), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3390), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3404), + [sym_constructor_type] = STATE(3404), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3404), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3404), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3404), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), @@ -26627,17 +26695,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(169), [anon_sym_delete] = ACTIONS(171), @@ -26659,7 +26727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(698), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(700), [anon_sym_private] = ACTIONS(700), @@ -26680,85 +26748,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [73] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3335), - [sym_constructor_type] = STATE(3335), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3335), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3335), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3335), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3364), + [sym_constructor_type] = STATE(3364), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3364), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3364), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3364), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), @@ -26771,17 +26839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(169), [anon_sym_delete] = ACTIONS(171), @@ -26803,7 +26871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(698), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(700), [anon_sym_private] = ACTIONS(700), @@ -26824,85 +26892,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [74] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3409), - [sym_constructor_type] = STATE(3409), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3409), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3409), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3409), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3415), + [sym_constructor_type] = STATE(3415), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3415), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3415), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3415), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), @@ -26915,17 +26983,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(169), [anon_sym_delete] = ACTIONS(171), @@ -26947,7 +27015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(698), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(700), [anon_sym_private] = ACTIONS(700), @@ -26968,85 +27036,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [75] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym__type] = STATE(3401), - [sym_constructor_type] = STATE(3401), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3401), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3401), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3401), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym__type] = STATE(3357), + [sym_constructor_type] = STATE(3357), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3357), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3357), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3357), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), @@ -27059,17 +27127,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(169), [anon_sym_delete] = ACTIONS(171), @@ -27091,7 +27159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(698), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(700), [anon_sym_private] = ACTIONS(700), @@ -27112,107 +27180,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [76] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3864), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(3964), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1617), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3211), - [sym_pattern] = STATE(3455), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2633), - [sym_constructor_type] = STATE(2633), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2633), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3690), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2633), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2633), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3684), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4018), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1797), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3123), + [sym_pattern] = STATE(3655), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2656), + [sym_constructor_type] = STATE(2656), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2656), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3722), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2656), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2656), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(704), - [anon_sym_export] = ACTIONS(576), + [anon_sym_export] = ACTIONS(550), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(708), [anon_sym_typeof] = ACTIONS(710), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(714), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), [anon_sym_PLUS] = ACTIONS(722), [anon_sym_DASH] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), [anon_sym_void] = ACTIONS(724), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -27225,17 +27293,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(732), [sym_undefined] = ACTIONS(734), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), [anon_sym_readonly] = ACTIONS(736), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), [anon_sym_any] = ACTIONS(740), [anon_sym_number] = ACTIONS(740), [anon_sym_boolean] = ACTIONS(740), @@ -27250,104 +27318,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, [77] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3938), - [sym_string] = STATE(1853), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3432), - [sym_constructor_type] = STATE(3432), - [sym__primary_type] = STATE(3198), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3343), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3432), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3432), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1621), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4161), + [sym_string] = STATE(1830), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3451), + [sym_constructor_type] = STATE(3451), + [sym__primary_type] = STATE(3314), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3320), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3451), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3451), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(752), [anon_sym_export] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(758), [anon_sym_typeof] = ACTIONS(666), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(760), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), [anon_sym_PLUS] = ACTIONS(672), [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), @@ -27364,7 +27432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(768), [anon_sym_get] = ACTIONS(754), [anon_sym_set] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(754), [anon_sym_public] = ACTIONS(754), [anon_sym_private] = ACTIONS(754), @@ -27385,77 +27453,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [78] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1908), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(416), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1937), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(412), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(772), [anon_sym_export] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(774), [anon_sym_namespace] = ACTIONS(776), [anon_sym_LBRACE] = ACTIONS(778), @@ -27467,16 +27535,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(788), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(782), [anon_sym_void] = ACTIONS(798), [anon_sym_delete] = ACTIONS(800), @@ -27498,7 +27566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(816), [anon_sym_get] = ACTIONS(774), [anon_sym_set] = ACTIONS(774), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(774), [anon_sym_public] = ACTIONS(774), [anon_sym_private] = ACTIONS(774), @@ -27519,131 +27587,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [79] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2841), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2841), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1165), - [sym_subscript_expression] = STATE(1165), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2841), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(2049), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1165), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3197), - [sym_constructor_type] = STATE(3197), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3197), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3197), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3197), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(3091), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(3091), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1121), + [sym_subscript_expression] = STATE(1121), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(3091), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1898), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1121), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3282), + [sym_constructor_type] = STATE(3282), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3282), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3282), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3282), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(820), [anon_sym_export] = ACTIONS(822), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(822), [anon_sym_namespace] = ACTIONS(824), [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_typeof] = ACTIONS(828), + [anon_sym_typeof] = ACTIONS(560), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(568), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(832), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(169), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(836), - [sym_number] = ACTIONS(838), - [sym_this] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(183), + [sym_number] = ACTIONS(185), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(842), - [sym_false] = ACTIONS(842), - [sym_null] = ACTIONS(842), - [sym_undefined] = ACTIONS(844), + [sym_true] = ACTIONS(191), + [sym_false] = ACTIONS(191), + [sym_null] = ACTIONS(191), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(822), - [anon_sym_readonly] = ACTIONS(846), + [anon_sym_readonly] = ACTIONS(832), [anon_sym_get] = ACTIONS(822), [anon_sym_set] = ACTIONS(822), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(822), [anon_sym_public] = ACTIONS(822), [anon_sym_private] = ACTIONS(822), [anon_sym_protected] = ACTIONS(822), [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(822), - [anon_sym_any] = ACTIONS(848), - [anon_sym_number] = ACTIONS(848), - [anon_sym_boolean] = ACTIONS(848), - [anon_sym_string] = ACTIONS(848), - [anon_sym_symbol] = ACTIONS(848), + [anon_sym_any] = ACTIONS(834), + [anon_sym_number] = ACTIONS(834), + [anon_sym_boolean] = ACTIONS(834), + [anon_sym_string] = ACTIONS(834), + [anon_sym_symbol] = ACTIONS(834), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -27653,131 +27721,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [80] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1408), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1730), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(488), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(850), - [anon_sym_export] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(856), - [anon_sym_typeof] = ACTIONS(858), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(870), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1937), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_typeof] = ACTIONS(842), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(788), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(884), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(892), - [sym_number] = ACTIONS(894), - [sym_this] = ACTIONS(896), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_undefined] = ACTIONS(900), + [anon_sym_BQUOTE] = ACTIONS(806), + [sym_number] = ACTIONS(808), + [sym_this] = ACTIONS(810), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(812), + [sym_false] = ACTIONS(812), + [sym_null] = ACTIONS(812), + [sym_undefined] = ACTIONS(848), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(852), + [anon_sym_number] = ACTIONS(852), + [anon_sym_boolean] = ACTIONS(852), + [anon_sym_string] = ACTIONS(852), + [anon_sym_symbol] = ACTIONS(852), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -27787,131 +27855,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [81] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1386), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1730), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(474), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(906), - [anon_sym_export] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(856), - [anon_sym_typeof] = ACTIONS(912), - [anon_sym_import] = ACTIONS(860), + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1475), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1604), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(350), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(854), + [anon_sym_export] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_typeof] = ACTIONS(862), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(866), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(868), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(918), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(920), + [anon_sym_void] = ACTIONS(880), [anon_sym_delete] = ACTIONS(19), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(892), - [sym_number] = ACTIONS(894), - [sym_this] = ACTIONS(896), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(884), + [sym_this] = ACTIONS(886), [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_undefined] = ACTIONS(922), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(890), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(924), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(926), - [anon_sym_number] = ACTIONS(926), - [anon_sym_boolean] = ACTIONS(926), - [anon_sym_string] = ACTIONS(926), - [anon_sym_symbol] = ACTIONS(926), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -27921,131 +27989,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [82] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1318), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1432), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_typeof] = ACTIONS(932), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(934), + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1628), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1985), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(477), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(896), + [anon_sym_export] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(920), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(938), - [sym_number] = ACTIONS(940), - [sym_this] = ACTIONS(942), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_undefined] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(928), + [sym_number] = ACTIONS(930), + [sym_this] = ACTIONS(932), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_null] = ACTIONS(934), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(768), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(938), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(940), + [anon_sym_number] = ACTIONS(940), + [anon_sym_boolean] = ACTIONS(940), + [anon_sym_string] = ACTIONS(940), + [anon_sym_symbol] = ACTIONS(940), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -28055,131 +28123,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [83] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1432), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1531), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1472), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), [sym_type_arguments] = STATE(358), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(950), - [anon_sym_export] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_typeof] = ACTIONS(956), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(942), + [anon_sym_export] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_typeof] = ACTIONS(950), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(958), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(938), - [sym_number] = ACTIONS(940), - [sym_this] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(976), + [sym_number] = ACTIONS(978), + [sym_this] = ACTIONS(980), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_undefined] = ACTIONS(980), + [sym_true] = ACTIONS(982), + [sym_false] = ACTIONS(982), + [sym_null] = ACTIONS(982), + [sym_undefined] = ACTIONS(984), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(982), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(984), - [anon_sym_number] = ACTIONS(984), - [anon_sym_boolean] = ACTIONS(984), - [anon_sym_string] = ACTIONS(984), - [anon_sym_symbol] = ACTIONS(984), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -28189,131 +28257,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [84] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1502), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3177), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3177), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1113), - [sym_subscript_expression] = STATE(1113), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3177), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1933), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1113), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3197), - [sym_constructor_type] = STATE(3197), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3197), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3197), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3197), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(986), - [anon_sym_export] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(988), - [anon_sym_namespace] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1498), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1604), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(469), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(990), + [anon_sym_export] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_typeof] = ACTIONS(996), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(868), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(994), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(183), - [sym_number] = ACTIONS(185), - [sym_this] = ACTIONS(620), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(191), - [sym_false] = ACTIONS(191), - [sym_null] = ACTIONS(191), - [sym_undefined] = ACTIONS(996), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(884), + [sym_this] = ACTIONS(886), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(1020), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(988), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(988), - [anon_sym_set] = ACTIONS(988), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(988), - [anon_sym_public] = ACTIONS(988), - [anon_sym_private] = ACTIONS(988), - [anon_sym_protected] = ACTIONS(988), - [anon_sym_override] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [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_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(1022), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -28323,131 +28391,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [85] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1908), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1002), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_typeof] = ACTIONS(1008), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1246), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1472), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(370), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_typeof] = ACTIONS(1028), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(958), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(169), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(806), - [sym_number] = ACTIONS(808), - [sym_this] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(976), + [sym_number] = ACTIONS(978), + [sym_this] = ACTIONS(980), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(812), - [sym_false] = ACTIONS(812), - [sym_null] = ACTIONS(812), - [sym_undefined] = ACTIONS(1014), + [sym_true] = ACTIONS(982), + [sym_false] = ACTIONS(982), + [sym_null] = ACTIONS(982), + [sym_undefined] = ACTIONS(1032), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1018), - [anon_sym_number] = ACTIONS(1018), - [anon_sym_boolean] = ACTIONS(1018), - [anon_sym_string] = ACTIONS(1018), - [anon_sym_symbol] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(768), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(1034), + [anon_sym_number] = ACTIONS(1034), + [anon_sym_boolean] = ACTIONS(1034), + [anon_sym_string] = ACTIONS(1034), + [anon_sym_symbol] = ACTIONS(1034), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), @@ -28457,126 +28525,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [86] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1973), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(438), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1020), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_typeof] = ACTIONS(1028), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1036), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2790), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2790), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1170), + [sym_subscript_expression] = STATE(1170), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2790), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(2042), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1170), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3282), + [sym_constructor_type] = STATE(3282), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3282), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3282), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3282), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1046), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1044), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(152), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1052), [sym_number] = ACTIONS(1054), [sym_this] = ACTIONS(1056), - [sym_super] = ACTIONS(91), + [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(1058), [sym_false] = ACTIONS(1058), [sym_null] = ACTIONS(1058), [sym_undefined] = ACTIONS(1060), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1038), [anon_sym_readonly] = ACTIONS(1062), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_override] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), [anon_sym_any] = ACTIONS(1064), [anon_sym_number] = ACTIONS(1064), [anon_sym_boolean] = ACTIONS(1064), @@ -28591,77 +28659,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [87] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_nested_identifier] = STATE(4134), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1908), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3051), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_type_arguments] = STATE(459), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3790), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_nested_identifier] = STATE(4122), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1937), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3246), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1066), [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1072), @@ -28673,16 +28741,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(788), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), [anon_sym_PLUS] = ACTIONS(1086), [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1088), [anon_sym_delete] = ACTIONS(1090), @@ -28704,7 +28772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1098), [anon_sym_get] = ACTIONS(1068), [anon_sym_set] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_declare] = ACTIONS(1068), [anon_sym_public] = ACTIONS(1068), [anon_sym_private] = ACTIONS(1068), @@ -28725,49 +28793,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [88] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), [sym_expression] = STATE(1267), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_STAR] = ACTIONS(1104), @@ -28777,25 +28845,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1108), [anon_sym_COMMA] = ACTIONS(1110), [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(588), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_await] = ACTIONS(590), + [anon_sym_await] = ACTIONS(564), [anon_sym_in] = ACTIONS(1106), [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_RBRACK] = ACTIONS(1110), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_QMARK_DOT] = ACTIONS(1110), [anon_sym_new] = ACTIONS(1116), [anon_sym_AMP_AMP] = ACTIONS(1110), @@ -28806,10 +28872,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1106), [anon_sym_CARET] = ACTIONS(1110), [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -28818,16 +28886,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1110), [anon_sym_QMARK_QMARK] = ACTIONS(1110), [anon_sym_instanceof] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -28854,75 +28922,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1110), }, [89] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1431), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), + [anon_sym_export] = ACTIONS(992), [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_type] = ACTIONS(852), + [anon_sym_type] = ACTIONS(992), [anon_sym_as] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(854), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(886), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(1014), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), + [anon_sym_await] = ACTIONS(1000), [anon_sym_in] = ACTIONS(1106), [anon_sym_of] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_yield] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(872), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), [anon_sym_QMARK_DOT] = ACTIONS(1110), [anon_sym_new] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(1110), @@ -28933,10 +28999,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1106), [anon_sym_CARET] = ACTIONS(1110), [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -28945,11 +29013,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1110), [anon_sym_QMARK_QMARK] = ACTIONS(1110), [anon_sym_instanceof] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -28962,80 +29030,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), [anon_sym_satisfies] = ACTIONS(1106), [sym__automatic_semicolon] = ACTIONS(1110), [sym__ternary_qmark] = ACTIONS(1110), }, [90] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1418), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1414), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), + [anon_sym_export] = ACTIONS(856), [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(908), + [anon_sym_type] = ACTIONS(856), [anon_sym_as] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_COMMA] = ACTIONS(1110), [anon_sym_RBRACE] = ACTIONS(1110), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -29044,15 +29112,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), [anon_sym_QMARK_DOT] = ACTIONS(1110), - [anon_sym_new] = ACTIONS(77), + [anon_sym_new] = ACTIONS(73), [anon_sym_AMP_AMP] = ACTIONS(1110), [anon_sym_PIPE_PIPE] = ACTIONS(1110), [anon_sym_GT_GT] = ACTIONS(1106), @@ -29063,8 +29129,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1106), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -29090,221 +29158,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), [anon_sym_satisfies] = ACTIONS(1106), [sym__automatic_semicolon] = ACTIONS(1110), [sym__ternary_qmark] = ACTIONS(1110), }, [91] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1580), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), + [anon_sym_export] = ACTIONS(898), [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_type] = ACTIONS(952), - [anon_sym_as] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_in] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_QMARK_DOT] = ACTIONS(1110), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1110), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_GT_GT_GT] = ACTIONS(1110), - [anon_sym_LT_LT] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_CARET] = ACTIONS(1110), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(1110), - [anon_sym_STAR_STAR] = ACTIONS(1110), - [anon_sym_LT_EQ] = ACTIONS(1110), - [anon_sym_EQ_EQ] = ACTIONS(1106), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), - [anon_sym_BANG_EQ] = ACTIONS(1106), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1110), - [anon_sym_GT_EQ] = ACTIONS(1110), - [anon_sym_QMARK_QMARK] = ACTIONS(1110), - [anon_sym_instanceof] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - [anon_sym_satisfies] = ACTIONS(1106), - [anon_sym_implements] = ACTIONS(1106), - [sym__ternary_qmark] = ACTIONS(1110), - }, - [92] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1610), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1022), + [anon_sym_type] = ACTIONS(898), [anon_sym_as] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1024), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(922), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), + [anon_sym_await] = ACTIONS(908), [anon_sym_in] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), [anon_sym_QMARK_DOT] = ACTIONS(1110), - [anon_sym_new] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1140), [anon_sym_AMP_AMP] = ACTIONS(1110), [anon_sym_PIPE_PIPE] = ACTIONS(1110), [anon_sym_GT_GT] = ACTIONS(1106), @@ -29313,10 +29253,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1106), [anon_sym_CARET] = ACTIONS(1110), [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -29325,11 +29267,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1110), [anon_sym_QMARK_QMARK] = ACTIONS(1110), [anon_sym_instanceof] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -29340,74 +29282,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), [anon_sym_satisfies] = ACTIONS(1106), [sym__automatic_semicolon] = ACTIONS(1110), [sym__ternary_qmark] = ACTIONS(1110), }, - [93] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [92] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1660), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1146), [anon_sym_type] = ACTIONS(1068), [anon_sym_as] = ACTIONS(1106), [anon_sym_namespace] = ACTIONS(1070), @@ -29423,15 +29365,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_RBRACK] = ACTIONS(1110), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_QMARK_DOT] = ACTIONS(1110), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_new] = ACTIONS(1148), [anon_sym_AMP_AMP] = ACTIONS(1110), [anon_sym_PIPE_PIPE] = ACTIONS(1110), [anon_sym_GT_GT] = ACTIONS(1106), @@ -29442,8 +29382,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1106), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -29461,13 +29403,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -29487,50 +29429,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(1106), [sym__ternary_qmark] = ACTIONS(1110), }, + [93] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1526), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(944), + [anon_sym_as] = ACTIONS(1106), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_in] = ACTIONS(1106), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_QMARK_DOT] = ACTIONS(1110), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_GT_GT_GT] = ACTIONS(1110), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1110), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_QMARK_QMARK] = ACTIONS(1110), + [anon_sym_instanceof] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_satisfies] = ACTIONS(1106), + [anon_sym_implements] = ACTIONS(1106), + [sym__ternary_qmark] = ACTIONS(1110), + }, [94] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1927), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1160), [anon_sym_export] = ACTIONS(774), [anon_sym_STAR] = ACTIONS(1162), @@ -29548,13 +29616,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(790), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), [anon_sym_QMARK_DOT] = ACTIONS(1110), [anon_sym_new] = ACTIONS(1168), [anon_sym_AMP_AMP] = ACTIONS(1110), @@ -29567,8 +29633,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1106), [anon_sym_PLUS] = ACTIONS(800), [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -29586,7 +29654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -29613,55 +29681,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1110), }, [95] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(2010), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1993), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(838), [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1004), + [anon_sym_type] = ACTIONS(838), [anon_sym_as] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1006), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -29672,15 +29740,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), [anon_sym_QMARK_DOT] = ACTIONS(1110), - [anon_sym_new] = ACTIONS(561), + [anon_sym_new] = ACTIONS(614), [anon_sym_AMP_AMP] = ACTIONS(1110), [anon_sym_PIPE_PIPE] = ACTIONS(1110), [anon_sym_GT_GT] = ACTIONS(1106), @@ -29691,8 +29757,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1106), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1110), [anon_sym_STAR_STAR] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(77), [anon_sym_LT_EQ] = ACTIONS(1110), [anon_sym_EQ_EQ] = ACTIONS(1106), [anon_sym_EQ_EQ_EQ] = ACTIONS(1110), @@ -29710,7 +29778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -29718,111 +29786,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), [anon_sym_satisfies] = ACTIONS(1106), [sym__ternary_qmark] = ACTIONS(1110), }, [96] = { - [sym_declaration] = STATE(3066), - [sym_import] = STATE(1898), - [sym_variable_declaration] = STATE(3095), - [sym_lexical_declaration] = STATE(3095), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1714), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(3095), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(3095), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(3095), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_function_signature] = STATE(3095), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(3095), - [sym_abstract_class_declaration] = STATE(3095), - [sym_module] = STATE(3095), - [sym_internal_module] = STATE(1860), - [sym_import_alias] = STATE(3095), - [sym_interface_declaration] = STATE(3095), - [sym_enum_declaration] = STATE(3095), - [sym_type_alias_declaration] = STATE(3095), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), + [sym_declaration] = STATE(693), + [sym_import] = STATE(1953), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1721), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(3120), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1024), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1182), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1182), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_function] = ACTIONS(1192), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -29833,114 +29901,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1194), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1196), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - [anon_sym_abstract] = ACTIONS(1198), - [anon_sym_interface] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(1188), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), }, [97] = { - [sym_declaration] = STATE(625), - [sym_import] = STATE(1898), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3290), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_namespace] = ACTIONS(1024), + [sym_declaration] = STATE(693), + [sym_import] = STATE(1953), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1721), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3064), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1206), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1182), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_class] = ACTIONS(536), - [anon_sym_async] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1190), [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -29951,114 +30019,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1212), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(1188), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [98] = { - [sym_declaration] = STATE(625), - [sym_import] = STATE(1898), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3275), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_namespace] = ACTIONS(1214), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1953), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(1820), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3064), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1206), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1182), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(536), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(540), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30069,114 +30137,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1212), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(1188), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [99] = { - [sym_declaration] = STATE(633), - [sym_import] = STATE(1898), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1733), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(1846), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3290), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_namespace] = ACTIONS(1024), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1953), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(657), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(657), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(657), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(657), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(153), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3120), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1206), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1182), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(536), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_function] = ACTIONS(540), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30187,114 +30255,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1212), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(1188), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), }, [100] = { - [sym_declaration] = STATE(633), - [sym_import] = STATE(1898), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1733), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(669), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(669), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(669), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_function_signature] = STATE(669), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(160), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3275), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_namespace] = ACTIONS(1214), + [sym_declaration] = STATE(3308), + [sym_import] = STATE(1953), + [sym_variable_declaration] = STATE(3223), + [sym_lexical_declaration] = STATE(3223), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(3223), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(3223), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(3223), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(3223), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(3223), + [sym_abstract_class_declaration] = STATE(3223), + [sym_module] = STATE(3223), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(3223), + [sym_interface_declaration] = STATE(3223), + [sym_enum_declaration] = STATE(3223), + [sym_type_alias_declaration] = STATE(3223), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3310), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(1192), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(1202), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30305,114 +30373,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1212), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(1212), + [anon_sym_interface] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1216), }, [101] = { - [sym_declaration] = STATE(3123), - [sym_import] = STATE(1898), - [sym_variable_declaration] = STATE(3095), - [sym_lexical_declaration] = STATE(3095), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1695), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_class_declaration] = STATE(3095), - [sym_function] = STATE(1898), - [sym_function_declaration] = STATE(3095), - [sym_generator_function] = STATE(1898), - [sym_generator_function_declaration] = STATE(3095), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_function_signature] = STATE(3095), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_ambient_declaration] = STATE(3095), - [sym_abstract_class_declaration] = STATE(3095), - [sym_module] = STATE(3095), - [sym_internal_module] = STATE(1860), - [sym_import_alias] = STATE(3095), - [sym_interface_declaration] = STATE(3095), - [sym_enum_declaration] = STATE(3095), - [sym_type_alias_declaration] = STATE(3095), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3120), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1024), + [sym_declaration] = STATE(3197), + [sym_import] = STATE(1953), + [sym_variable_declaration] = STATE(3223), + [sym_lexical_declaration] = STATE(3223), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1792), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_class_declaration] = STATE(3223), + [sym_function] = STATE(1953), + [sym_function_declaration] = STATE(3223), + [sym_generator_function] = STATE(1953), + [sym_generator_function_declaration] = STATE(3223), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(3223), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_ambient_declaration] = STATE(3223), + [sym_abstract_class_declaration] = STATE(3223), + [sym_module] = STATE(3223), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(3223), + [sym_interface_declaration] = STATE(3223), + [sym_enum_declaration] = STATE(3223), + [sym_type_alias_declaration] = STATE(3223), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3310), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(1192), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1182), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_function] = ACTIONS(1192), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(1202), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -30423,115 +30491,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1194), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1196), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - [anon_sym_abstract] = ACTIONS(1198), - [anon_sym_interface] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(1212), + [anon_sym_interface] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1216), }, [102] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1220), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), + [anon_sym_COLON] = ACTIONS(150), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1230), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -30558,94 +30626,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [103] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(150), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -30672,95 +30740,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [104] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1254), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(150), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1256), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -30787,95 +30855,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [105] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(1220), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(1258), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(1261), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), + [anon_sym_RBRACK] = ACTIONS(1258), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -30902,94 +30970,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [106] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(214), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31016,93 +31084,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [107] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31129,92 +31196,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [108] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2589), + [sym_constructor_type] = STATE(2589), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2589), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2589), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2589), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + [sym__ternary_qmark] = ACTIONS(150), + }, + [109] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31241,93 +31423,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [109] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [110] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1303), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1269), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(1305), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31355,93 +31536,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [110] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [111] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), + [anon_sym_COLON] = ACTIONS(150), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1230), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31468,150 +31649,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), - }, - [111] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2579), - [sym_constructor_type] = STATE(2579), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2579), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2579), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2579), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1309), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [112] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1311), @@ -31623,50 +31691,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1261), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31693,37 +31761,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [113] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1313), @@ -31735,50 +31803,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(118), [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31805,37 +31873,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [114] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1311), @@ -31846,50 +31914,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(158), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -31916,94 +31984,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [115] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1495), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4160), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1412), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4163), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(1319), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -32011,108 +32079,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), [anon_sym_readonly] = ACTIONS(1323), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), [anon_sym_public] = ACTIONS(686), [anon_sym_private] = ACTIONS(686), [anon_sym_protected] = ACTIONS(686), [anon_sym_override] = ACTIONS(688), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [116] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1363), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3994), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(3966), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(1319), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -32120,97 +32188,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), [anon_sym_readonly] = ACTIONS(1323), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), [anon_sym_public] = ACTIONS(686), [anon_sym_private] = ACTIONS(686), [anon_sym_protected] = ACTIONS(686), [anon_sym_override] = ACTIONS(688), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [117] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_export] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_with] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_debugger] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_LTtemplate_GT] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), + [anon_sym_function] = ACTIONS(1327), + [anon_sym_QMARK_DOT] = ACTIONS(1333), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_GT_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_QMARK_QMARK] = ACTIONS(1333), + [anon_sym_instanceof] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1325), + [sym_number] = ACTIONS(1325), + [sym_this] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [sym_undefined] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_readonly] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1327), + [anon_sym_set] = ACTIONS(1327), + [anon_sym_declare] = ACTIONS(1327), + [anon_sym_public] = ACTIONS(1327), + [anon_sym_private] = ACTIONS(1327), + [anon_sym_protected] = ACTIONS(1327), + [anon_sym_override] = ACTIONS(1327), + [anon_sym_module] = ACTIONS(1327), + [anon_sym_any] = ACTIONS(1327), + [anon_sym_number] = ACTIONS(1327), + [anon_sym_boolean] = ACTIONS(1327), + [anon_sym_string] = ACTIONS(1327), + [anon_sym_symbol] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(1327), + [anon_sym_satisfies] = ACTIONS(1329), + [anon_sym_interface] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [sym__automatic_semicolon] = ACTIONS(1335), + [sym__ternary_qmark] = ACTIONS(1333), + }, + [118] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1337), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32220,16 +32396,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -32244,81 +32420,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [118] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3556), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3556), - [sym_optional_parameter] = STATE(3556), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [119] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1345), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32328,16 +32504,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -32352,81 +32528,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [119] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [120] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32436,16 +32612,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -32460,81 +32636,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [120] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3523), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3523), - [sym_optional_parameter] = STATE(3523), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [121] = { + [sym_statement_block] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_instanceof] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_satisfies] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [sym__automatic_semicolon] = ACTIONS(1349), + [sym__ternary_qmark] = ACTIONS(1349), + }, + [122] = { + [sym_statement_block] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_instanceof] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_satisfies] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [sym__automatic_semicolon] = ACTIONS(1349), + [sym__ternary_qmark] = ACTIONS(1349), + }, + [123] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3440), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3440), + [sym_optional_parameter] = STATE(3440), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(1359), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32544,16 +32936,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -32568,81 +32960,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [121] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [124] = { + [sym_statement_block] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_instanceof] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_satisfies] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [sym__automatic_semicolon] = ACTIONS(1349), + [sym__ternary_qmark] = ACTIONS(1349), + }, + [125] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1361), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32652,16 +33152,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -32676,189 +33176,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_export] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_EQ] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1343), - [anon_sym_namespace] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym_import] = ACTIONS(1341), - [anon_sym_var] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_await] = ACTIONS(1341), - [anon_sym_in] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_try] = ACTIONS(1341), - [anon_sym_with] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_debugger] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_throw] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_yield] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_LTtemplate_GT] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_DOT] = ACTIONS(1343), - [anon_sym_class] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_function] = ACTIONS(1341), - [anon_sym_QMARK_DOT] = ACTIONS(1347), - [anon_sym_new] = ACTIONS(1341), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_GT_GT_GT] = ACTIONS(1347), - [anon_sym_LT_LT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_STAR_STAR] = ACTIONS(1347), - [anon_sym_LT_EQ] = ACTIONS(1347), - [anon_sym_EQ_EQ] = ACTIONS(1343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1347), - [anon_sym_GT_EQ] = ACTIONS(1347), - [anon_sym_QMARK_QMARK] = ACTIONS(1347), - [anon_sym_instanceof] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_void] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1339), - [sym_number] = ACTIONS(1339), - [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_undefined] = ACTIONS(1341), - [anon_sym_AT] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_readonly] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1341), - [anon_sym_set] = ACTIONS(1341), - [anon_sym_declare] = ACTIONS(1341), - [anon_sym_public] = ACTIONS(1341), - [anon_sym_private] = ACTIONS(1341), - [anon_sym_protected] = ACTIONS(1341), - [anon_sym_override] = ACTIONS(1341), - [anon_sym_module] = ACTIONS(1341), - [anon_sym_any] = ACTIONS(1341), - [anon_sym_number] = ACTIONS(1341), - [anon_sym_boolean] = ACTIONS(1341), - [anon_sym_string] = ACTIONS(1341), - [anon_sym_symbol] = ACTIONS(1341), - [anon_sym_abstract] = ACTIONS(1341), - [anon_sym_satisfies] = ACTIONS(1343), - [anon_sym_interface] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [sym__automatic_semicolon] = ACTIONS(1349), - [sym__ternary_qmark] = ACTIONS(1347), - }, - [123] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [126] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_RPAREN] = ACTIONS(1363), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32868,16 +33260,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -32892,81 +33284,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [124] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3506), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3506), - [sym_optional_parameter] = STATE(3506), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [127] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(668), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -32976,16 +33368,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -33000,297 +33392,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [125] = { - [sym_statement_block] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_export] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(1357), - [anon_sym_var] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(1357), - [anon_sym_in] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1357), - [anon_sym_with] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_debugger] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_throw] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_LTtemplate_GT] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_class] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(1357), - [anon_sym_QMARK_DOT] = ACTIONS(1355), - [anon_sym_new] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1355), - [anon_sym_PIPE_PIPE] = ACTIONS(1355), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_GT_GT_GT] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1355), - [anon_sym_STAR_STAR] = ACTIONS(1355), - [anon_sym_LT_EQ] = ACTIONS(1355), - [anon_sym_EQ_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1355), - [anon_sym_GT_EQ] = ACTIONS(1355), - [anon_sym_QMARK_QMARK] = ACTIONS(1355), - [anon_sym_instanceof] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_delete] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1355), - [sym_number] = ACTIONS(1355), - [sym_this] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_undefined] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_readonly] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1357), - [anon_sym_set] = ACTIONS(1357), - [anon_sym_declare] = ACTIONS(1357), - [anon_sym_public] = ACTIONS(1357), - [anon_sym_private] = ACTIONS(1357), - [anon_sym_protected] = ACTIONS(1357), - [anon_sym_override] = ACTIONS(1357), - [anon_sym_module] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_number] = ACTIONS(1357), - [anon_sym_boolean] = ACTIONS(1357), - [anon_sym_string] = ACTIONS(1357), - [anon_sym_symbol] = ACTIONS(1357), - [anon_sym_abstract] = ACTIONS(1357), - [anon_sym_satisfies] = ACTIONS(1357), - [anon_sym_interface] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [sym__automatic_semicolon] = ACTIONS(1355), - [sym__ternary_qmark] = ACTIONS(1355), - }, - [126] = { - [sym_statement_block] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_export] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(1357), - [anon_sym_var] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(1357), - [anon_sym_in] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1357), - [anon_sym_with] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_debugger] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_throw] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_LTtemplate_GT] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1361), - [anon_sym_class] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(1357), - [anon_sym_QMARK_DOT] = ACTIONS(1355), - [anon_sym_new] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1355), - [anon_sym_PIPE_PIPE] = ACTIONS(1355), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_GT_GT_GT] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1355), - [anon_sym_STAR_STAR] = ACTIONS(1355), - [anon_sym_LT_EQ] = ACTIONS(1355), - [anon_sym_EQ_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1355), - [anon_sym_GT_EQ] = ACTIONS(1355), - [anon_sym_QMARK_QMARK] = ACTIONS(1355), - [anon_sym_instanceof] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_delete] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1355), - [sym_number] = ACTIONS(1355), - [sym_this] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_undefined] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_readonly] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1357), - [anon_sym_set] = ACTIONS(1357), - [anon_sym_declare] = ACTIONS(1357), - [anon_sym_public] = ACTIONS(1357), - [anon_sym_private] = ACTIONS(1357), - [anon_sym_protected] = ACTIONS(1357), - [anon_sym_override] = ACTIONS(1357), - [anon_sym_module] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_number] = ACTIONS(1357), - [anon_sym_boolean] = ACTIONS(1357), - [anon_sym_string] = ACTIONS(1357), - [anon_sym_symbol] = ACTIONS(1357), - [anon_sym_abstract] = ACTIONS(1357), - [anon_sym_satisfies] = ACTIONS(1357), - [anon_sym_interface] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [sym__automatic_semicolon] = ACTIONS(1355), - [sym__ternary_qmark] = ACTIONS(1355), - }, - [127] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [128] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1365), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -33300,16 +33476,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -33324,81 +33500,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [128] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), + [129] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3453), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3453), + [sym_optional_parameter] = STATE(3453), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1367), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -33408,16 +33584,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1341), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1343), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -33432,1053 +33608,625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(1371), - [anon_sym_namespace] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_typeof] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_with] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_debugger] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_throw] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LTtemplate_GT] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1369), - [anon_sym_async] = ACTIONS(1369), - [anon_sym_function] = ACTIONS(1369), - [anon_sym_QMARK_DOT] = ACTIONS(1373), - [anon_sym_new] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_PIPE_PIPE] = ACTIONS(1373), - [anon_sym_GT_GT] = ACTIONS(1371), - [anon_sym_GT_GT_GT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_PERCENT] = ACTIONS(1373), - [anon_sym_STAR_STAR] = ACTIONS(1373), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1373), - [anon_sym_BANG_EQ] = ACTIONS(1371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_QMARK_QMARK] = ACTIONS(1373), - [anon_sym_instanceof] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_delete] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_number] = ACTIONS(1367), - [sym_this] = ACTIONS(1369), - [sym_super] = ACTIONS(1369), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [sym_null] = ACTIONS(1369), - [sym_undefined] = ACTIONS(1369), - [anon_sym_AT] = ACTIONS(1367), - [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_abstract] = ACTIONS(1369), - [anon_sym_satisfies] = ACTIONS(1371), - [anon_sym_interface] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [sym__automatic_semicolon] = ACTIONS(1375), - [sym__ternary_qmark] = ACTIONS(1373), - }, [130] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(614), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3501), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_RBRACK] = ACTIONS(1371), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - [anon_sym_extends] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [131] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1383), - [anon_sym_export] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_namespace] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_let] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_debugger] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_throw] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(1383), - [anon_sym_QMARK_DOT] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_GT_GT_GT] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PERCENT] = ACTIONS(1387), - [anon_sym_STAR_STAR] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1387), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_QMARK_QMARK] = ACTIONS(1387), - [anon_sym_instanceof] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_number] = ACTIONS(1381), - [sym_this] = ACTIONS(1383), - [sym_super] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [sym_null] = ACTIONS(1383), - [sym_undefined] = ACTIONS(1383), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(1383), - [anon_sym_set] = ACTIONS(1383), - [anon_sym_declare] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_private] = ACTIONS(1383), - [anon_sym_protected] = ACTIONS(1383), - [anon_sym_override] = ACTIONS(1383), - [anon_sym_module] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_number] = ACTIONS(1383), - [anon_sym_boolean] = ACTIONS(1383), - [anon_sym_string] = ACTIONS(1383), - [anon_sym_symbol] = ACTIONS(1383), - [anon_sym_abstract] = ACTIONS(1383), - [anon_sym_satisfies] = ACTIONS(1385), - [anon_sym_interface] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [sym__automatic_semicolon] = ACTIONS(1389), - [sym__ternary_qmark] = ACTIONS(1387), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1375), + [anon_sym_as] = ACTIONS(1377), + [anon_sym_namespace] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_with] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_debugger] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_LTtemplate_GT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1377), + [anon_sym_DOT] = ACTIONS(1377), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_QMARK_DOT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_STAR_STAR] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_instanceof] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_number] = ACTIONS(1373), + [sym_this] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_true] = ACTIONS(1375), + [sym_false] = ACTIONS(1375), + [sym_null] = ACTIONS(1375), + [sym_undefined] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1375), + [anon_sym_set] = ACTIONS(1375), + [anon_sym_declare] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_protected] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_number] = ACTIONS(1375), + [anon_sym_boolean] = ACTIONS(1375), + [anon_sym_string] = ACTIONS(1375), + [anon_sym_symbol] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_satisfies] = ACTIONS(1377), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [sym__automatic_semicolon] = ACTIONS(1381), + [sym__ternary_qmark] = ACTIONS(1379), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_export] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_namespace] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(1385), + [anon_sym_import] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_else] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_await] = ACTIONS(1385), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_try] = ACTIONS(1385), + [anon_sym_with] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_debugger] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_yield] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LTtemplate_GT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_class] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(1385), + [anon_sym_QMARK_DOT] = ACTIONS(1389), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_PIPE_PIPE] = ACTIONS(1389), + [anon_sym_GT_GT] = ACTIONS(1387), + [anon_sym_GT_GT_GT] = ACTIONS(1389), + [anon_sym_LT_LT] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_QMARK_QMARK] = ACTIONS(1389), + [anon_sym_instanceof] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_delete] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_number] = ACTIONS(1383), + [sym_this] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [sym_null] = ACTIONS(1385), + [sym_undefined] = ACTIONS(1385), + [anon_sym_AT] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_readonly] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(1385), + [anon_sym_set] = ACTIONS(1385), + [anon_sym_declare] = ACTIONS(1385), + [anon_sym_public] = ACTIONS(1385), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_protected] = ACTIONS(1385), + [anon_sym_override] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_number] = ACTIONS(1385), + [anon_sym_boolean] = ACTIONS(1385), + [anon_sym_string] = ACTIONS(1385), + [anon_sym_symbol] = ACTIONS(1385), + [anon_sym_abstract] = ACTIONS(1385), + [anon_sym_satisfies] = ACTIONS(1387), + [anon_sym_interface] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [sym__automatic_semicolon] = ACTIONS(1391), + [sym__ternary_qmark] = ACTIONS(1389), + }, + [133] = { + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_type] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), [anon_sym_as] = ACTIONS(1395), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_typeof] = ACTIONS(1393), - [anon_sym_import] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_await] = ACTIONS(1393), + [anon_sym_namespace] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_typeof] = ACTIONS(1395), + [anon_sym_import] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1395), [anon_sym_in] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_debugger] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_throw] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LTtemplate_GT] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_with] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_debugger] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_LTtemplate_GT] = ACTIONS(1393), [anon_sym_GT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1393), [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_class] = ACTIONS(1393), - [anon_sym_async] = ACTIONS(1393), - [anon_sym_function] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_function] = ACTIONS(1395), + [anon_sym_QMARK_DOT] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_GT_GT] = ACTIONS(1395), + [anon_sym_GT_GT_GT] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_QMARK_QMARK] = ACTIONS(1393), + [anon_sym_instanceof] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_delete] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_number] = ACTIONS(1393), + [sym_this] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_true] = ACTIONS(1395), + [sym_false] = ACTIONS(1395), + [sym_null] = ACTIONS(1395), + [sym_undefined] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1395), + [anon_sym_satisfies] = ACTIONS(1395), + [anon_sym_interface] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [sym__automatic_semicolon] = ACTIONS(1393), + [sym__ternary_qmark] = ACTIONS(1393), + }, + [134] = { + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), [anon_sym_QMARK_DOT] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1399), [anon_sym_AMP_AMP] = ACTIONS(1397), [anon_sym_PIPE_PIPE] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1399), [anon_sym_GT_GT_GT] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1399), [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), [anon_sym_PERCENT] = ACTIONS(1397), [anon_sym_STAR_STAR] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1399), [anon_sym_EQ_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1399), [anon_sym_BANG_EQ_EQ] = ACTIONS(1397), [anon_sym_GT_EQ] = ACTIONS(1397), [anon_sym_QMARK_QMARK] = ACTIONS(1397), - [anon_sym_instanceof] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_delete] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_number] = ACTIONS(1391), - [sym_this] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_true] = ACTIONS(1393), - [sym_false] = ACTIONS(1393), - [sym_null] = ACTIONS(1393), - [sym_undefined] = ACTIONS(1393), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_readonly] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(1393), - [anon_sym_set] = ACTIONS(1393), - [anon_sym_declare] = ACTIONS(1393), - [anon_sym_public] = ACTIONS(1393), - [anon_sym_private] = ACTIONS(1393), - [anon_sym_protected] = ACTIONS(1393), - [anon_sym_override] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_number] = ACTIONS(1393), - [anon_sym_boolean] = ACTIONS(1393), - [anon_sym_string] = ACTIONS(1393), - [anon_sym_symbol] = ACTIONS(1393), - [anon_sym_abstract] = ACTIONS(1393), - [anon_sym_satisfies] = ACTIONS(1395), - [anon_sym_interface] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [sym__automatic_semicolon] = ACTIONS(1399), + [anon_sym_instanceof] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_satisfies] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + [sym__automatic_semicolon] = ACTIONS(1397), [sym__ternary_qmark] = ACTIONS(1397), }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(1401), - [sym_identifier] = ACTIONS(1403), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_type] = ACTIONS(1403), - [anon_sym_as] = ACTIONS(1403), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_typeof] = ACTIONS(1403), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_else] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_await] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_with] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_debugger] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_throw] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_case] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LTtemplate_GT] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_class] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(1403), - [anon_sym_QMARK_DOT] = ACTIONS(1401), - [anon_sym_new] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_PIPE_PIPE] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_GT_GT_GT] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_QMARK_QMARK] = ACTIONS(1401), - [anon_sym_instanceof] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_delete] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_number] = ACTIONS(1401), - [sym_this] = ACTIONS(1403), - [sym_super] = ACTIONS(1403), - [sym_true] = ACTIONS(1403), - [sym_false] = ACTIONS(1403), - [sym_null] = ACTIONS(1403), - [sym_undefined] = ACTIONS(1403), - [anon_sym_AT] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_readonly] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1403), - [anon_sym_set] = ACTIONS(1403), - [anon_sym_declare] = ACTIONS(1403), - [anon_sym_public] = ACTIONS(1403), - [anon_sym_private] = ACTIONS(1403), - [anon_sym_protected] = ACTIONS(1403), - [anon_sym_override] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [anon_sym_abstract] = ACTIONS(1403), - [anon_sym_satisfies] = ACTIONS(1403), - [anon_sym_interface] = ACTIONS(1403), - [anon_sym_enum] = ACTIONS(1403), - [sym__automatic_semicolon] = ACTIONS(1401), - [sym__ternary_qmark] = ACTIONS(1401), - }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(1405), - [sym_identifier] = ACTIONS(1407), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1409), - [anon_sym_namespace] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_typeof] = ACTIONS(1407), - [anon_sym_import] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_await] = ACTIONS(1407), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1407), - [anon_sym_with] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_debugger] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_throw] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LTtemplate_GT] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_class] = ACTIONS(1407), - [anon_sym_async] = ACTIONS(1407), - [anon_sym_function] = ACTIONS(1407), - [anon_sym_QMARK_DOT] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_GT_GT] = ACTIONS(1409), - [anon_sym_GT_GT_GT] = ACTIONS(1411), - [anon_sym_LT_LT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PERCENT] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_QMARK_QMARK] = ACTIONS(1411), - [anon_sym_instanceof] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_delete] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_number] = ACTIONS(1405), - [sym_this] = ACTIONS(1407), - [sym_super] = ACTIONS(1407), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [sym_null] = ACTIONS(1407), - [sym_undefined] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_abstract] = ACTIONS(1407), - [anon_sym_satisfies] = ACTIONS(1409), - [anon_sym_interface] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [sym__automatic_semicolon] = ACTIONS(1413), - [sym__ternary_qmark] = ACTIONS(1411), - }, [135] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_as] = ACTIONS(1417), - [anon_sym_namespace] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1417), - [anon_sym_import] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_else] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_await] = ACTIONS(1417), - [anon_sym_in] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_with] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_debugger] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_throw] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1417), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_LTtemplate_GT] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1417), - [anon_sym_SLASH] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1417), - [anon_sym_class] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(1417), - [anon_sym_QMARK_DOT] = ACTIONS(1415), - [anon_sym_new] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1415), - [anon_sym_PIPE_PIPE] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_GT_GT_GT] = ACTIONS(1415), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PERCENT] = ACTIONS(1415), - [anon_sym_STAR_STAR] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_QMARK_QMARK] = ACTIONS(1415), - [anon_sym_instanceof] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_void] = ACTIONS(1417), - [anon_sym_delete] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1415), - [sym_number] = ACTIONS(1415), - [sym_this] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_true] = ACTIONS(1417), - [sym_false] = ACTIONS(1417), - [sym_null] = ACTIONS(1417), - [sym_undefined] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_readonly] = ACTIONS(1417), - [anon_sym_get] = ACTIONS(1417), - [anon_sym_set] = ACTIONS(1417), - [anon_sym_declare] = ACTIONS(1417), - [anon_sym_public] = ACTIONS(1417), - [anon_sym_private] = ACTIONS(1417), - [anon_sym_protected] = ACTIONS(1417), - [anon_sym_override] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_number] = ACTIONS(1417), - [anon_sym_boolean] = ACTIONS(1417), - [anon_sym_string] = ACTIONS(1417), - [anon_sym_symbol] = ACTIONS(1417), - [anon_sym_abstract] = ACTIONS(1417), - [anon_sym_satisfies] = ACTIONS(1417), - [anon_sym_interface] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [sym__automatic_semicolon] = ACTIONS(1415), - [sym__ternary_qmark] = ACTIONS(1415), - }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_export] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_namespace] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_typeof] = ACTIONS(1421), - [anon_sym_import] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_await] = ACTIONS(1421), - [anon_sym_in] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [anon_sym_with] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_debugger] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LTtemplate_GT] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_class] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(1421), - [anon_sym_QMARK_DOT] = ACTIONS(1419), - [anon_sym_new] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_GT_GT_GT] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1419), - [anon_sym_STAR_STAR] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1421), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_QMARK_QMARK] = ACTIONS(1419), - [anon_sym_instanceof] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_delete] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1419), - [sym_number] = ACTIONS(1419), - [sym_this] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_undefined] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_readonly] = ACTIONS(1421), - [anon_sym_get] = ACTIONS(1421), - [anon_sym_set] = ACTIONS(1421), - [anon_sym_declare] = ACTIONS(1421), - [anon_sym_public] = ACTIONS(1421), - [anon_sym_private] = ACTIONS(1421), - [anon_sym_protected] = ACTIONS(1421), - [anon_sym_override] = ACTIONS(1421), - [anon_sym_module] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_number] = ACTIONS(1421), - [anon_sym_boolean] = ACTIONS(1421), - [anon_sym_string] = ACTIONS(1421), - [anon_sym_symbol] = ACTIONS(1421), - [anon_sym_abstract] = ACTIONS(1421), - [anon_sym_satisfies] = ACTIONS(1421), - [anon_sym_interface] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [sym__automatic_semicolon] = ACTIONS(1419), - [sym__ternary_qmark] = ACTIONS(1419), - }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_export] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_as] = ACTIONS(1425), - [anon_sym_namespace] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_COMMA] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_typeof] = ACTIONS(1425), - [anon_sym_import] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_await] = ACTIONS(1425), - [anon_sym_in] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [anon_sym_with] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_debugger] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LTtemplate_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_class] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_function] = ACTIONS(1425), - [anon_sym_QMARK_DOT] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_PIPE_PIPE] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_GT_GT_GT] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1423), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_QMARK_QMARK] = ACTIONS(1423), - [anon_sym_instanceof] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_delete] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_number] = ACTIONS(1423), - [sym_this] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [sym_null] = ACTIONS(1425), - [sym_undefined] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_readonly] = ACTIONS(1425), - [anon_sym_get] = ACTIONS(1425), - [anon_sym_set] = ACTIONS(1425), - [anon_sym_declare] = ACTIONS(1425), - [anon_sym_public] = ACTIONS(1425), - [anon_sym_private] = ACTIONS(1425), - [anon_sym_protected] = ACTIONS(1425), - [anon_sym_override] = ACTIONS(1425), - [anon_sym_module] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_number] = ACTIONS(1425), - [anon_sym_boolean] = ACTIONS(1425), - [anon_sym_string] = ACTIONS(1425), - [anon_sym_symbol] = ACTIONS(1425), - [anon_sym_abstract] = ACTIONS(1425), - [anon_sym_satisfies] = ACTIONS(1425), - [anon_sym_interface] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [sym__automatic_semicolon] = ACTIONS(1423), - [sym__ternary_qmark] = ACTIONS(1423), - }, - [138] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1510), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3532), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3533), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1566), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3501), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1401), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -34486,213 +34234,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, - [139] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_export] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_as] = ACTIONS(1341), - [anon_sym_namespace] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym_import] = ACTIONS(1341), - [anon_sym_var] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_await] = ACTIONS(1341), - [anon_sym_in] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_try] = ACTIONS(1341), - [anon_sym_with] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_debugger] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_throw] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_yield] = ACTIONS(1341), + [136] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + [anon_sym_extends] = ACTIONS(1405), + }, + [137] = { + [ts_builtin_sym_end] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_as] = ACTIONS(1411), + [anon_sym_namespace] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_else] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_await] = ACTIONS(1409), + [anon_sym_in] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1409), + [anon_sym_with] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_debugger] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_throw] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1409), + [anon_sym_yield] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LTtemplate_GT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1411), + [anon_sym_class] = ACTIONS(1409), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(1409), + [anon_sym_QMARK_DOT] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_GT_GT_GT] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PERCENT] = ACTIONS(1413), + [anon_sym_STAR_STAR] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym_EQ_EQ] = ACTIONS(1411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1413), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_QMARK_QMARK] = ACTIONS(1413), + [anon_sym_instanceof] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_number] = ACTIONS(1407), + [sym_this] = ACTIONS(1409), + [sym_super] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [sym_null] = ACTIONS(1409), + [sym_undefined] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_readonly] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(1409), + [anon_sym_set] = ACTIONS(1409), + [anon_sym_declare] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_private] = ACTIONS(1409), + [anon_sym_protected] = ACTIONS(1409), + [anon_sym_override] = ACTIONS(1409), + [anon_sym_module] = ACTIONS(1409), + [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_abstract] = ACTIONS(1409), + [anon_sym_satisfies] = ACTIONS(1411), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [sym__automatic_semicolon] = ACTIONS(1415), + [sym__ternary_qmark] = ACTIONS(1413), + }, + [138] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym__formal_parameter] = STATE(3689), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3137), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(214), + [sym_required_parameter] = STATE(3689), + [sym_optional_parameter] = STATE(3689), + [sym__parameter_name] = STATE(2812), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(604), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_LTtemplate_GT] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_GT] = ACTIONS(1341), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_DOT] = ACTIONS(1341), - [anon_sym_class] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_function] = ACTIONS(1341), - [anon_sym_QMARK_DOT] = ACTIONS(1339), - [anon_sym_new] = ACTIONS(1341), - [anon_sym_AMP_AMP] = ACTIONS(1339), - [anon_sym_PIPE_PIPE] = ACTIONS(1339), - [anon_sym_GT_GT] = ACTIONS(1341), - [anon_sym_GT_GT_GT] = ACTIONS(1339), - [anon_sym_LT_LT] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_CARET] = ACTIONS(1339), - [anon_sym_PIPE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PERCENT] = ACTIONS(1339), - [anon_sym_STAR_STAR] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1339), - [anon_sym_EQ_EQ] = ACTIONS(1341), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1339), - [anon_sym_BANG_EQ] = ACTIONS(1341), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1339), - [anon_sym_GT_EQ] = ACTIONS(1339), - [anon_sym_QMARK_QMARK] = ACTIONS(1339), - [anon_sym_instanceof] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_void] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1339), - [sym_number] = ACTIONS(1339), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_undefined] = ACTIONS(1341), - [anon_sym_AT] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_readonly] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1341), - [anon_sym_set] = ACTIONS(1341), - [anon_sym_declare] = ACTIONS(1341), - [anon_sym_public] = ACTIONS(1341), - [anon_sym_private] = ACTIONS(1341), - [anon_sym_protected] = ACTIONS(1341), - [anon_sym_override] = ACTIONS(1341), - [anon_sym_module] = ACTIONS(1341), - [anon_sym_any] = ACTIONS(1341), - [anon_sym_number] = ACTIONS(1341), - [anon_sym_boolean] = ACTIONS(1341), - [anon_sym_string] = ACTIONS(1341), - [anon_sym_symbol] = ACTIONS(1341), - [anon_sym_abstract] = ACTIONS(1341), - [anon_sym_satisfies] = ACTIONS(1341), - [anon_sym_interface] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [sym__automatic_semicolon] = ACTIONS(1431), - [sym__ternary_qmark] = ACTIONS(1339), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_protected] = ACTIONS(700), + [anon_sym_override] = ACTIONS(702), + [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), + }, + [139] = { + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_namespace] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1419), + [anon_sym_import] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_await] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_with] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_debugger] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_throw] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_LTtemplate_GT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_class] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(1419), + [anon_sym_QMARK_DOT] = ACTIONS(1417), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_GT_GT_GT] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1417), + [anon_sym_STAR_STAR] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1417), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_QMARK_QMARK] = ACTIONS(1417), + [anon_sym_instanceof] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_delete] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_number] = ACTIONS(1417), + [sym_this] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [sym_null] = ACTIONS(1419), + [sym_undefined] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_readonly] = ACTIONS(1419), + [anon_sym_get] = ACTIONS(1419), + [anon_sym_set] = ACTIONS(1419), + [anon_sym_declare] = ACTIONS(1419), + [anon_sym_public] = ACTIONS(1419), + [anon_sym_private] = ACTIONS(1419), + [anon_sym_protected] = ACTIONS(1419), + [anon_sym_override] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_number] = ACTIONS(1419), + [anon_sym_boolean] = ACTIONS(1419), + [anon_sym_string] = ACTIONS(1419), + [anon_sym_symbol] = ACTIONS(1419), + [anon_sym_abstract] = ACTIONS(1419), + [anon_sym_satisfies] = ACTIONS(1419), + [anon_sym_interface] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [sym__automatic_semicolon] = ACTIONS(1417), + [sym__ternary_qmark] = ACTIONS(1417), }, [140] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1433), + [anon_sym_RBRACK] = ACTIONS(1421), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -34700,534 +34769,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_export] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym_import] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_await] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_debugger] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_throw] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), + [sym_import] = STATE(1953), + [sym_expression_statement] = STATE(199), + [sym_variable_declaration] = STATE(199), + [sym_lexical_declaration] = STATE(199), + [sym_empty_statement] = STATE(199), + [sym_parenthesized_expression] = STATE(1127), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(3489), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(3489), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1127), + [sym_subscript_expression] = STATE(1127), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(3489), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1127), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_namespace] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LTtemplate_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_class] = ACTIONS(1437), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(1437), - [anon_sym_QMARK_DOT] = ACTIONS(1435), - [anon_sym_new] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_STAR_STAR] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_QMARK_QMARK] = ACTIONS(1435), - [anon_sym_instanceof] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_delete] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_number] = ACTIONS(1435), - [sym_this] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [sym_null] = ACTIONS(1437), - [sym_undefined] = ACTIONS(1437), - [anon_sym_AT] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_declare] = ACTIONS(1437), - [anon_sym_public] = ACTIONS(1437), - [anon_sym_private] = ACTIONS(1437), - [anon_sym_protected] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1437), - [anon_sym_module] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_number] = ACTIONS(1437), - [anon_sym_boolean] = ACTIONS(1437), - [anon_sym_string] = ACTIONS(1437), - [anon_sym_symbol] = ACTIONS(1437), - [anon_sym_abstract] = ACTIONS(1437), - [anon_sym_satisfies] = ACTIONS(1437), - [anon_sym_interface] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [sym__automatic_semicolon] = ACTIONS(1435), - [sym__ternary_qmark] = ACTIONS(1435), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1439), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_readonly] = ACTIONS(1425), + [anon_sym_get] = ACTIONS(1425), + [anon_sym_set] = ACTIONS(1425), + [anon_sym_declare] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), + [anon_sym_private] = ACTIONS(1425), + [anon_sym_protected] = ACTIONS(1425), + [anon_sym_override] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_number] = ACTIONS(1425), + [anon_sym_boolean] = ACTIONS(1425), + [anon_sym_string] = ACTIONS(1425), + [anon_sym_symbol] = ACTIONS(1425), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_identifier] = ACTIONS(1441), - [anon_sym_export] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_as] = ACTIONS(1441), - [anon_sym_namespace] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_COMMA] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym_import] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_else] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_await] = ACTIONS(1441), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1441), - [anon_sym_with] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_debugger] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_throw] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_yield] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_LTtemplate_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1441), - [anon_sym_class] = ACTIONS(1441), - [anon_sym_async] = ACTIONS(1441), - [anon_sym_function] = ACTIONS(1441), - [anon_sym_QMARK_DOT] = ACTIONS(1439), - [anon_sym_new] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1439), - [anon_sym_PIPE_PIPE] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1441), - [anon_sym_GT_GT_GT] = ACTIONS(1439), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_STAR_STAR] = ACTIONS(1439), - [anon_sym_LT_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1439), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1439), - [anon_sym_QMARK_QMARK] = ACTIONS(1439), - [anon_sym_instanceof] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_delete] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_number] = ACTIONS(1439), - [sym_this] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_true] = ACTIONS(1441), - [sym_false] = ACTIONS(1441), - [sym_null] = ACTIONS(1441), - [sym_undefined] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_readonly] = ACTIONS(1441), - [anon_sym_get] = ACTIONS(1441), - [anon_sym_set] = ACTIONS(1441), - [anon_sym_declare] = ACTIONS(1441), - [anon_sym_public] = ACTIONS(1441), - [anon_sym_private] = ACTIONS(1441), - [anon_sym_protected] = ACTIONS(1441), - [anon_sym_override] = ACTIONS(1441), - [anon_sym_module] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_number] = ACTIONS(1441), - [anon_sym_boolean] = ACTIONS(1441), - [anon_sym_string] = ACTIONS(1441), - [anon_sym_symbol] = ACTIONS(1441), - [anon_sym_abstract] = ACTIONS(1441), - [anon_sym_satisfies] = ACTIONS(1441), - [anon_sym_interface] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [sym__automatic_semicolon] = ACTIONS(1439), - [sym__ternary_qmark] = ACTIONS(1439), + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(1443), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_await] = ACTIONS(1443), + [anon_sym_in] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_with] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_debugger] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_throw] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LTtemplate_GT] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_class] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_function] = ACTIONS(1443), + [anon_sym_QMARK_DOT] = ACTIONS(1441), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_GT_GT_GT] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_QMARK_QMARK] = ACTIONS(1441), + [anon_sym_instanceof] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1441), + [anon_sym_void] = ACTIONS(1443), + [anon_sym_delete] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1441), + [sym_number] = ACTIONS(1441), + [sym_this] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_true] = ACTIONS(1443), + [sym_false] = ACTIONS(1443), + [sym_null] = ACTIONS(1443), + [sym_undefined] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_readonly] = ACTIONS(1443), + [anon_sym_get] = ACTIONS(1443), + [anon_sym_set] = ACTIONS(1443), + [anon_sym_declare] = ACTIONS(1443), + [anon_sym_public] = ACTIONS(1443), + [anon_sym_private] = ACTIONS(1443), + [anon_sym_protected] = ACTIONS(1443), + [anon_sym_override] = ACTIONS(1443), + [anon_sym_module] = ACTIONS(1443), + [anon_sym_any] = ACTIONS(1443), + [anon_sym_number] = ACTIONS(1443), + [anon_sym_boolean] = ACTIONS(1443), + [anon_sym_string] = ACTIONS(1443), + [anon_sym_symbol] = ACTIONS(1443), + [anon_sym_abstract] = ACTIONS(1443), + [anon_sym_satisfies] = ACTIONS(1443), + [anon_sym_interface] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [sym__automatic_semicolon] = ACTIONS(1441), + [sym__ternary_qmark] = ACTIONS(1441), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_export] = ACTIONS(1447), [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), [anon_sym_as] = ACTIONS(1447), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_typeof] = ACTIONS(1445), - [anon_sym_import] = ACTIONS(1445), - [anon_sym_var] = ACTIONS(1445), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_else] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_await] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1447), + [anon_sym_import] = ACTIONS(1447), + [anon_sym_var] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_else] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_await] = ACTIONS(1447), [anon_sym_in] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_try] = ACTIONS(1445), - [anon_sym_with] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_debugger] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_throw] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_case] = ACTIONS(1445), - [anon_sym_yield] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_LTtemplate_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_do] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [anon_sym_with] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_debugger] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LTtemplate_GT] = ACTIONS(1445), [anon_sym_GT] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1445), [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_class] = ACTIONS(1445), - [anon_sym_async] = ACTIONS(1445), - [anon_sym_function] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_GT_GT_GT] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_QMARK_QMARK] = ACTIONS(1445), + [anon_sym_instanceof] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_void] = ACTIONS(1447), + [anon_sym_delete] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1445), + [sym_number] = ACTIONS(1445), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_true] = ACTIONS(1447), + [sym_false] = ACTIONS(1447), + [sym_null] = ACTIONS(1447), + [sym_undefined] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_readonly] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1447), + [anon_sym_set] = ACTIONS(1447), + [anon_sym_declare] = ACTIONS(1447), + [anon_sym_public] = ACTIONS(1447), + [anon_sym_private] = ACTIONS(1447), + [anon_sym_protected] = ACTIONS(1447), + [anon_sym_override] = ACTIONS(1447), + [anon_sym_module] = ACTIONS(1447), + [anon_sym_any] = ACTIONS(1447), + [anon_sym_number] = ACTIONS(1447), + [anon_sym_boolean] = ACTIONS(1447), + [anon_sym_string] = ACTIONS(1447), + [anon_sym_symbol] = ACTIONS(1447), + [anon_sym_abstract] = ACTIONS(1447), + [anon_sym_satisfies] = ACTIONS(1447), + [anon_sym_interface] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [sym__automatic_semicolon] = ACTIONS(1445), + [sym__ternary_qmark] = ACTIONS(1445), + }, + [144] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_namespace] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1451), + [anon_sym_import] = ACTIONS(1451), + [anon_sym_var] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_await] = ACTIONS(1451), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_with] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_debugger] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_throw] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_case] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LTtemplate_GT] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_class] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_function] = ACTIONS(1451), [anon_sym_QMARK_DOT] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1451), [anon_sym_AMP_AMP] = ACTIONS(1449), [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1451), [anon_sym_GT_GT_GT] = ACTIONS(1449), [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1451), [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), [anon_sym_PERCENT] = ACTIONS(1449), [anon_sym_STAR_STAR] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1451), [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1451), [anon_sym_EQ_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1451), [anon_sym_BANG_EQ_EQ] = ACTIONS(1449), [anon_sym_GT_EQ] = ACTIONS(1449), [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_delete] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_number] = ACTIONS(1443), - [sym_this] = ACTIONS(1445), - [sym_super] = ACTIONS(1445), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_undefined] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_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_abstract] = ACTIONS(1445), - [anon_sym_satisfies] = ACTIONS(1447), - [anon_sym_interface] = ACTIONS(1445), - [anon_sym_enum] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(1451), + [anon_sym_instanceof] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_void] = ACTIONS(1451), + [anon_sym_delete] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1449), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1449), + [sym_number] = ACTIONS(1449), + [sym_this] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_true] = ACTIONS(1451), + [sym_false] = ACTIONS(1451), + [sym_null] = ACTIONS(1451), + [sym_undefined] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_readonly] = ACTIONS(1451), + [anon_sym_get] = ACTIONS(1451), + [anon_sym_set] = ACTIONS(1451), + [anon_sym_declare] = ACTIONS(1451), + [anon_sym_public] = ACTIONS(1451), + [anon_sym_private] = ACTIONS(1451), + [anon_sym_protected] = ACTIONS(1451), + [anon_sym_override] = ACTIONS(1451), + [anon_sym_module] = ACTIONS(1451), + [anon_sym_any] = ACTIONS(1451), + [anon_sym_number] = ACTIONS(1451), + [anon_sym_boolean] = ACTIONS(1451), + [anon_sym_string] = ACTIONS(1451), + [anon_sym_symbol] = ACTIONS(1451), + [anon_sym_abstract] = ACTIONS(1451), + [anon_sym_satisfies] = ACTIONS(1451), + [anon_sym_interface] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [sym__automatic_semicolon] = ACTIONS(1449), [sym__ternary_qmark] = ACTIONS(1449), }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_namespace] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_typeof] = ACTIONS(1455), - [anon_sym_import] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_else] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_await] = ACTIONS(1455), - [anon_sym_in] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_with] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_debugger] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_throw] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_LTtemplate_GT] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_class] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(1455), - [anon_sym_QMARK_DOT] = ACTIONS(1459), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_GT_GT_GT] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_STAR_STAR] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_QMARK_QMARK] = ACTIONS(1459), - [anon_sym_instanceof] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_delete] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_number] = ACTIONS(1453), - [sym_this] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_null] = ACTIONS(1455), - [sym_undefined] = ACTIONS(1455), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_readonly] = ACTIONS(1455), - [anon_sym_get] = ACTIONS(1455), - [anon_sym_set] = ACTIONS(1455), - [anon_sym_declare] = ACTIONS(1455), - [anon_sym_public] = ACTIONS(1455), - [anon_sym_private] = ACTIONS(1455), - [anon_sym_protected] = ACTIONS(1455), - [anon_sym_override] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_number] = ACTIONS(1455), - [anon_sym_boolean] = ACTIONS(1455), - [anon_sym_string] = ACTIONS(1455), - [anon_sym_symbol] = ACTIONS(1455), - [anon_sym_abstract] = ACTIONS(1455), - [anon_sym_satisfies] = ACTIONS(1457), - [anon_sym_interface] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [sym__automatic_semicolon] = ACTIONS(1461), - [sym__ternary_qmark] = ACTIONS(1459), - }, [145] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1453), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -35235,33 +35304,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [146] = { + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_namespace] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1457), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_with] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_debugger] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LTtemplate_GT] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_QMARK_DOT] = ACTIONS(1461), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_GT_GT_GT] = ACTIONS(1461), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_STAR_STAR] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_QMARK_QMARK] = ACTIONS(1461), + [anon_sym_instanceof] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_delete] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_number] = ACTIONS(1455), + [sym_this] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_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_abstract] = ACTIONS(1457), + [anon_sym_satisfies] = ACTIONS(1459), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [sym__automatic_semicolon] = ACTIONS(1463), + [sym__ternary_qmark] = ACTIONS(1461), + }, + [147] = { + [sym_import] = STATE(1953), + [sym_expression_statement] = STATE(198), + [sym_variable_declaration] = STATE(198), + [sym_lexical_declaration] = STATE(198), + [sym_empty_statement] = STATE(198), + [sym_parenthesized_expression] = STATE(1127), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(3489), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(3489), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1127), + [sym_subscript_expression] = STATE(1127), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(3489), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1127), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_namespace] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1439), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_readonly] = ACTIONS(1425), + [anon_sym_get] = ACTIONS(1425), + [anon_sym_set] = ACTIONS(1425), + [anon_sym_declare] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), + [anon_sym_private] = ACTIONS(1425), + [anon_sym_protected] = ACTIONS(1425), + [anon_sym_override] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_number] = ACTIONS(1425), + [anon_sym_boolean] = ACTIONS(1425), + [anon_sym_string] = ACTIONS(1425), + [anon_sym_symbol] = ACTIONS(1425), + }, + [148] = { [ts_builtin_sym_end] = ACTIONS(1465), [sym_identifier] = ACTIONS(1467), [anon_sym_export] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1467), [anon_sym_default] = ACTIONS(1467), [anon_sym_type] = ACTIONS(1467), - [anon_sym_as] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1467), [anon_sym_namespace] = ACTIONS(1467), [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1465), [anon_sym_RBRACE] = ACTIONS(1465), [anon_sym_typeof] = ACTIONS(1467), [anon_sym_import] = ACTIONS(1467), @@ -35275,7 +35558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1467), [anon_sym_LPAREN] = ACTIONS(1465), [anon_sym_await] = ACTIONS(1467), - [anon_sym_in] = ACTIONS(1469), + [anon_sym_in] = ACTIONS(1467), [anon_sym_while] = ACTIONS(1467), [anon_sym_do] = ACTIONS(1467), [anon_sym_try] = ACTIONS(1467), @@ -35290,35 +35573,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1467), [anon_sym_LBRACK] = ACTIONS(1465), [anon_sym_LTtemplate_GT] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), [anon_sym_class] = ACTIONS(1467), [anon_sym_async] = ACTIONS(1467), [anon_sym_function] = ACTIONS(1467), - [anon_sym_QMARK_DOT] = ACTIONS(1471), + [anon_sym_QMARK_DOT] = ACTIONS(1465), [anon_sym_new] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_GT_GT_GT] = ACTIONS(1471), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_GT_GT_GT] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), [anon_sym_PLUS] = ACTIONS(1467), [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_STAR_STAR] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym_EQ_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1471), - [anon_sym_BANG_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_QMARK_QMARK] = ACTIONS(1471), - [anon_sym_instanceof] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_QMARK_QMARK] = ACTIONS(1465), + [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1465), [anon_sym_void] = ACTIONS(1467), [anon_sym_delete] = ACTIONS(1467), @@ -35352,310 +35635,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1467), [anon_sym_symbol] = ACTIONS(1467), [anon_sym_abstract] = ACTIONS(1467), - [anon_sym_satisfies] = ACTIONS(1469), + [anon_sym_satisfies] = ACTIONS(1467), [anon_sym_interface] = ACTIONS(1467), [anon_sym_enum] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1473), - [sym__ternary_qmark] = ACTIONS(1471), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_typeof] = ACTIONS(1477), - [anon_sym_import] = ACTIONS(1477), - [anon_sym_var] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_else] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_in] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_debugger] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_throw] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LTtemplate_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_class] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_function] = ACTIONS(1477), - [anon_sym_QMARK_DOT] = ACTIONS(1475), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_GT_GT_GT] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_QMARK_QMARK] = ACTIONS(1475), - [anon_sym_instanceof] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_void] = ACTIONS(1477), - [anon_sym_delete] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1475), - [sym_number] = ACTIONS(1475), - [sym_this] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [sym_null] = ACTIONS(1477), - [sym_undefined] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_readonly] = ACTIONS(1477), - [anon_sym_get] = ACTIONS(1477), - [anon_sym_set] = ACTIONS(1477), - [anon_sym_declare] = ACTIONS(1477), - [anon_sym_public] = ACTIONS(1477), - [anon_sym_private] = ACTIONS(1477), - [anon_sym_protected] = ACTIONS(1477), - [anon_sym_override] = ACTIONS(1477), - [anon_sym_module] = ACTIONS(1477), - [anon_sym_any] = ACTIONS(1477), - [anon_sym_number] = ACTIONS(1477), - [anon_sym_boolean] = ACTIONS(1477), - [anon_sym_string] = ACTIONS(1477), - [anon_sym_symbol] = ACTIONS(1477), - [anon_sym_abstract] = ACTIONS(1477), - [anon_sym_satisfies] = ACTIONS(1477), - [anon_sym_interface] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [sym__automatic_semicolon] = ACTIONS(1475), - [sym__ternary_qmark] = ACTIONS(1475), - }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(1481), - [anon_sym_var] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_in] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_with] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_debugger] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_throw] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_LTtemplate_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1481), - [anon_sym_async] = ACTIONS(1481), - [anon_sym_function] = ACTIONS(1481), - [anon_sym_QMARK_DOT] = ACTIONS(1485), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_GT_GT_GT] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PERCENT] = ACTIONS(1485), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_QMARK_QMARK] = ACTIONS(1485), - [anon_sym_instanceof] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1479), - [sym_number] = ACTIONS(1479), - [sym_this] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [sym_null] = ACTIONS(1481), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_readonly] = ACTIONS(1481), - [anon_sym_get] = ACTIONS(1481), - [anon_sym_set] = ACTIONS(1481), - [anon_sym_declare] = ACTIONS(1481), - [anon_sym_public] = ACTIONS(1481), - [anon_sym_private] = ACTIONS(1481), - [anon_sym_protected] = ACTIONS(1481), - [anon_sym_override] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1481), - [anon_sym_any] = ACTIONS(1481), - [anon_sym_number] = ACTIONS(1481), - [anon_sym_boolean] = ACTIONS(1481), - [anon_sym_string] = ACTIONS(1481), - [anon_sym_symbol] = ACTIONS(1481), - [anon_sym_abstract] = ACTIONS(1481), - [anon_sym_satisfies] = ACTIONS(1483), - [anon_sym_interface] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [sym__automatic_semicolon] = ACTIONS(1487), - [sym__ternary_qmark] = ACTIONS(1485), + [sym__automatic_semicolon] = ACTIONS(1465), + [sym__ternary_qmark] = ACTIONS(1465), }, [149] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3532), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3533), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3534), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3501), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1401), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -35663,534 +35732,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LTtemplate_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_QMARK_DOT] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_GT_GT_GT] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_STAR_STAR] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_QMARK_QMARK] = ACTIONS(1489), - [anon_sym_instanceof] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_satisfies] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [sym__automatic_semicolon] = ACTIONS(1493), - [sym__ternary_qmark] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_namespace] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_with] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_debugger] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LTtemplate_GT] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(1471), + [anon_sym_QMARK_DOT] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_GT_GT_GT] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1469), + [anon_sym_instanceof] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_delete] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1469), + [sym_number] = ACTIONS(1469), + [sym_this] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_declare] = ACTIONS(1471), + [anon_sym_public] = ACTIONS(1471), + [anon_sym_private] = ACTIONS(1471), + [anon_sym_protected] = ACTIONS(1471), + [anon_sym_override] = ACTIONS(1471), + [anon_sym_module] = ACTIONS(1471), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_satisfies] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [sym__automatic_semicolon] = ACTIONS(1473), + [sym__ternary_qmark] = ACTIONS(1469), }, [151] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LTtemplate_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_QMARK_DOT] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_GT_GT_GT] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_STAR_STAR] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_QMARK_QMARK] = ACTIONS(1489), - [anon_sym_instanceof] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_satisfies] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [sym__automatic_semicolon] = ACTIONS(1489), - [sym__ternary_qmark] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_namespace] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_with] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_debugger] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LTtemplate_GT] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(1471), + [anon_sym_QMARK_DOT] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_GT_GT_GT] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1469), + [anon_sym_instanceof] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_delete] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1469), + [sym_number] = ACTIONS(1469), + [sym_this] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_declare] = ACTIONS(1471), + [anon_sym_public] = ACTIONS(1471), + [anon_sym_private] = ACTIONS(1471), + [anon_sym_protected] = ACTIONS(1471), + [anon_sym_override] = ACTIONS(1471), + [anon_sym_module] = ACTIONS(1471), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_satisfies] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [sym__automatic_semicolon] = ACTIONS(1469), + [sym__ternary_qmark] = ACTIONS(1469), }, [152] = { - [sym_import] = STATE(1898), - [sym_expression_statement] = STATE(195), - [sym_variable_declaration] = STATE(195), - [sym_lexical_declaration] = STATE(195), - [sym_empty_statement] = STATE(195), - [sym_parenthesized_expression] = STATE(1117), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(3511), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(3511), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1117), - [sym_subscript_expression] = STATE(1117), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(3511), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1117), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_namespace] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_COMMA] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_typeof] = ACTIONS(1515), - [anon_sym_import] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_await] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_with] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_debugger] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_LTtemplate_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_class] = ACTIONS(1515), - [anon_sym_async] = ACTIONS(1515), - [anon_sym_function] = ACTIONS(1515), - [anon_sym_QMARK_DOT] = ACTIONS(1513), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1515), - [anon_sym_GT_GT_GT] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_STAR_STAR] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_QMARK_QMARK] = ACTIONS(1513), - [anon_sym_instanceof] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_delete] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_number] = ACTIONS(1513), - [sym_this] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [sym_null] = ACTIONS(1515), - [sym_undefined] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_readonly] = ACTIONS(1515), - [anon_sym_get] = ACTIONS(1515), - [anon_sym_set] = ACTIONS(1515), - [anon_sym_declare] = ACTIONS(1515), - [anon_sym_public] = ACTIONS(1515), - [anon_sym_private] = ACTIONS(1515), - [anon_sym_protected] = ACTIONS(1515), - [anon_sym_override] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_number] = ACTIONS(1515), - [anon_sym_boolean] = ACTIONS(1515), - [anon_sym_string] = ACTIONS(1515), - [anon_sym_symbol] = ACTIONS(1515), - [anon_sym_abstract] = ACTIONS(1515), - [anon_sym_satisfies] = ACTIONS(1515), - [anon_sym_interface] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [sym__automatic_semicolon] = ACTIONS(1513), - [sym__ternary_qmark] = ACTIONS(1513), - }, - [154] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3532), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3533), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1517), + [anon_sym_RBRACK] = ACTIONS(1475), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -36198,213 +36053,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, - [155] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym__formal_parameter] = STATE(3822), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3088), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_accessibility_modifier] = STATE(194), - [sym_override_modifier] = STATE(217), - [sym_required_parameter] = STATE(3822), - [sym_optional_parameter] = STATE(3822), - [sym__parameter_name] = STATE(2865), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(548), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1329), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1331), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_protected] = ACTIONS(700), - [anon_sym_override] = ACTIONS(702), - [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), + [153] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_namespace] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_typeof] = ACTIONS(1479), + [anon_sym_import] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_with] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_debugger] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_case] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_LTtemplate_GT] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_function] = ACTIONS(1479), + [anon_sym_QMARK_DOT] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_GT_GT_GT] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_QMARK_QMARK] = ACTIONS(1483), + [anon_sym_instanceof] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1477), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_delete] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1477), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1477), + [sym_number] = ACTIONS(1477), + [sym_this] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_true] = ACTIONS(1479), + [sym_false] = ACTIONS(1479), + [sym_null] = ACTIONS(1479), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [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_abstract] = ACTIONS(1479), + [anon_sym_satisfies] = ACTIONS(1481), + [anon_sym_interface] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [sym__automatic_semicolon] = ACTIONS(1483), + [sym__ternary_qmark] = ACTIONS(1483), }, - [156] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [154] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(1485), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -36412,748 +36267,1176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), + }, + [155] = { + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_typeof] = ACTIONS(1489), + [anon_sym_import] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_else] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_with] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_debugger] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_throw] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_LTtemplate_GT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_function] = ACTIONS(1489), + [anon_sym_QMARK_DOT] = ACTIONS(1493), + [anon_sym_new] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_GT_GT_GT] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_QMARK_QMARK] = ACTIONS(1493), + [anon_sym_instanceof] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_delete] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_number] = ACTIONS(1487), + [sym_this] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [sym_null] = ACTIONS(1489), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_readonly] = ACTIONS(1489), + [anon_sym_get] = ACTIONS(1489), + [anon_sym_set] = ACTIONS(1489), + [anon_sym_declare] = ACTIONS(1489), + [anon_sym_public] = ACTIONS(1489), + [anon_sym_private] = ACTIONS(1489), + [anon_sym_protected] = ACTIONS(1489), + [anon_sym_override] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [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_abstract] = ACTIONS(1489), + [anon_sym_satisfies] = ACTIONS(1491), + [anon_sym_interface] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [sym__automatic_semicolon] = ACTIONS(1495), + [sym__ternary_qmark] = ACTIONS(1493), + }, + [156] = { + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_namespace] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1499), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_var] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_switch] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_await] = ACTIONS(1499), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_with] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_debugger] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_throw] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LTtemplate_GT] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_class] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_function] = ACTIONS(1499), + [anon_sym_QMARK_DOT] = ACTIONS(1503), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_GT_GT_GT] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_STAR_STAR] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_QMARK_QMARK] = ACTIONS(1503), + [anon_sym_instanceof] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1497), + [anon_sym_void] = ACTIONS(1499), + [anon_sym_delete] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1497), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1497), + [sym_number] = ACTIONS(1497), + [sym_this] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [sym_null] = ACTIONS(1499), + [sym_undefined] = ACTIONS(1499), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_readonly] = ACTIONS(1499), + [anon_sym_get] = ACTIONS(1499), + [anon_sym_set] = ACTIONS(1499), + [anon_sym_declare] = ACTIONS(1499), + [anon_sym_public] = ACTIONS(1499), + [anon_sym_private] = ACTIONS(1499), + [anon_sym_protected] = ACTIONS(1499), + [anon_sym_override] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_any] = ACTIONS(1499), + [anon_sym_number] = ACTIONS(1499), + [anon_sym_boolean] = ACTIONS(1499), + [anon_sym_string] = ACTIONS(1499), + [anon_sym_symbol] = ACTIONS(1499), + [anon_sym_abstract] = ACTIONS(1499), + [anon_sym_satisfies] = ACTIONS(1501), + [anon_sym_interface] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [sym__automatic_semicolon] = ACTIONS(1505), + [sym__ternary_qmark] = ACTIONS(1503), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_export] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_namespace] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_with] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_debugger] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LTtemplate_GT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_function] = ACTIONS(1509), + [anon_sym_QMARK_DOT] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_GT_GT_GT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_QMARK_QMARK] = ACTIONS(1513), + [anon_sym_instanceof] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_delete] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1507), + [sym_this] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_satisfies] = ACTIONS(1511), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(1515), + [sym__ternary_qmark] = ACTIONS(1513), + }, + [158] = { + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_namespace] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_typeof] = ACTIONS(1519), + [anon_sym_import] = ACTIONS(1519), + [anon_sym_var] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_switch] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [anon_sym_with] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_debugger] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_throw] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_yield] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_LTtemplate_GT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_function] = ACTIONS(1519), + [anon_sym_QMARK_DOT] = ACTIONS(1523), + [anon_sym_new] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_GT_GT_GT] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_STAR_STAR] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1523), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_QMARK_QMARK] = ACTIONS(1523), + [anon_sym_instanceof] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1519), + [anon_sym_delete] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1517), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_true] = ACTIONS(1519), + [sym_false] = ACTIONS(1519), + [sym_null] = ACTIONS(1519), + [sym_undefined] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_readonly] = ACTIONS(1519), + [anon_sym_get] = ACTIONS(1519), + [anon_sym_set] = ACTIONS(1519), + [anon_sym_declare] = ACTIONS(1519), + [anon_sym_public] = ACTIONS(1519), + [anon_sym_private] = ACTIONS(1519), + [anon_sym_protected] = ACTIONS(1519), + [anon_sym_override] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), + [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_abstract] = ACTIONS(1519), + [anon_sym_satisfies] = ACTIONS(1521), + [anon_sym_interface] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [sym__automatic_semicolon] = ACTIONS(1525), + [sym__ternary_qmark] = ACTIONS(1523), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_COMMA] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_typeof] = ACTIONS(1523), - [anon_sym_import] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_await] = ACTIONS(1523), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [anon_sym_with] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_debugger] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_throw] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_case] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LTtemplate_GT] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1525), - [anon_sym_class] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_function] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1529), + [anon_sym_import] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_with] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_debugger] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_throw] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LTtemplate_GT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_function] = ACTIONS(1529), [anon_sym_QMARK_DOT] = ACTIONS(1527), - [anon_sym_new] = ACTIONS(1523), + [anon_sym_new] = ACTIONS(1529), [anon_sym_AMP_AMP] = ACTIONS(1527), [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1529), [anon_sym_GT_GT_GT] = ACTIONS(1527), [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1529), [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), [anon_sym_PERCENT] = ACTIONS(1527), [anon_sym_STAR_STAR] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1529), [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1529), [anon_sym_EQ_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1525), + [anon_sym_BANG_EQ] = ACTIONS(1529), [anon_sym_BANG_EQ_EQ] = ACTIONS(1527), [anon_sym_GT_EQ] = ACTIONS(1527), [anon_sym_QMARK_QMARK] = ACTIONS(1527), - [anon_sym_instanceof] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_delete] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_number] = ACTIONS(1521), - [sym_this] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_true] = ACTIONS(1523), - [sym_false] = ACTIONS(1523), - [sym_null] = ACTIONS(1523), - [sym_undefined] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_get] = ACTIONS(1523), - [anon_sym_set] = ACTIONS(1523), - [anon_sym_declare] = ACTIONS(1523), - [anon_sym_public] = ACTIONS(1523), - [anon_sym_private] = ACTIONS(1523), - [anon_sym_protected] = ACTIONS(1523), - [anon_sym_override] = ACTIONS(1523), - [anon_sym_module] = ACTIONS(1523), - [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_abstract] = ACTIONS(1523), - [anon_sym_satisfies] = ACTIONS(1525), - [anon_sym_interface] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [sym__automatic_semicolon] = ACTIONS(1529), + [anon_sym_instanceof] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_delete] = ACTIONS(1529), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_number] = ACTIONS(1527), + [sym_this] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_true] = ACTIONS(1529), + [sym_false] = ACTIONS(1529), + [sym_null] = ACTIONS(1529), + [sym_undefined] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(1529), + [anon_sym_get] = ACTIONS(1529), + [anon_sym_set] = ACTIONS(1529), + [anon_sym_declare] = ACTIONS(1529), + [anon_sym_public] = ACTIONS(1529), + [anon_sym_private] = ACTIONS(1529), + [anon_sym_protected] = ACTIONS(1529), + [anon_sym_override] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_number] = ACTIONS(1529), + [anon_sym_boolean] = ACTIONS(1529), + [anon_sym_string] = ACTIONS(1529), + [anon_sym_symbol] = ACTIONS(1529), + [anon_sym_abstract] = ACTIONS(1529), + [anon_sym_satisfies] = ACTIONS(1529), + [anon_sym_interface] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [sym__automatic_semicolon] = ACTIONS(1527), [sym__ternary_qmark] = ACTIONS(1527), }, - [158] = { - [sym_import] = STATE(1898), - [sym_expression_statement] = STATE(196), - [sym_variable_declaration] = STATE(196), - [sym_lexical_declaration] = STATE(196), - [sym_empty_statement] = STATE(196), - [sym_parenthesized_expression] = STATE(1117), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(3511), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(3511), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1117), - [sym_subscript_expression] = STATE(1117), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(3511), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1117), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_export] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym_import] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_with] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_debugger] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LTtemplate_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1533), - [anon_sym_QMARK_DOT] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_PIPE_PIPE] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1535), - [anon_sym_GT_GT_GT] = ACTIONS(1537), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_STAR_STAR] = ACTIONS(1537), - [anon_sym_LT_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1537), - [anon_sym_QMARK_QMARK] = ACTIONS(1537), - [anon_sym_instanceof] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_number] = ACTIONS(1531), - [sym_this] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_get] = ACTIONS(1533), - [anon_sym_set] = ACTIONS(1533), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1533), - [anon_sym_private] = ACTIONS(1533), - [anon_sym_protected] = ACTIONS(1533), - [anon_sym_override] = ACTIONS(1533), - [anon_sym_module] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_number] = ACTIONS(1533), - [anon_sym_boolean] = ACTIONS(1533), - [anon_sym_string] = ACTIONS(1533), - [anon_sym_symbol] = ACTIONS(1533), - [anon_sym_abstract] = ACTIONS(1533), - [anon_sym_satisfies] = ACTIONS(1535), - [anon_sym_interface] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym__automatic_semicolon] = ACTIONS(1539), - [sym__ternary_qmark] = ACTIONS(1537), - }, [160] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_with] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_debugger] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_throw] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_LTtemplate_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(1543), - [anon_sym_QMARK_DOT] = ACTIONS(1547), - [anon_sym_new] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_GT_GT_GT] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PERCENT] = ACTIONS(1547), - [anon_sym_STAR_STAR] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1547), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1547), - [anon_sym_GT_EQ] = ACTIONS(1547), - [anon_sym_QMARK_QMARK] = ACTIONS(1547), - [anon_sym_instanceof] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_delete] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_number] = ACTIONS(1541), - [sym_this] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_true] = ACTIONS(1543), - [sym_false] = ACTIONS(1543), - [sym_null] = ACTIONS(1543), - [sym_undefined] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_abstract] = ACTIONS(1543), - [anon_sym_satisfies] = ACTIONS(1545), - [anon_sym_interface] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - [sym__automatic_semicolon] = ACTIONS(1547), - [sym__ternary_qmark] = ACTIONS(1547), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_export] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1327), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_in] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_with] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_debugger] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_LTtemplate_GT] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), + [anon_sym_function] = ACTIONS(1327), + [anon_sym_QMARK_DOT] = ACTIONS(1325), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_GT_GT_GT] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_STAR_STAR] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_QMARK_QMARK] = ACTIONS(1325), + [anon_sym_instanceof] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1325), + [sym_number] = ACTIONS(1325), + [sym_this] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [sym_undefined] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_readonly] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1327), + [anon_sym_set] = ACTIONS(1327), + [anon_sym_declare] = ACTIONS(1327), + [anon_sym_public] = ACTIONS(1327), + [anon_sym_private] = ACTIONS(1327), + [anon_sym_protected] = ACTIONS(1327), + [anon_sym_override] = ACTIONS(1327), + [anon_sym_module] = ACTIONS(1327), + [anon_sym_any] = ACTIONS(1327), + [anon_sym_number] = ACTIONS(1327), + [anon_sym_boolean] = ACTIONS(1327), + [anon_sym_string] = ACTIONS(1327), + [anon_sym_symbol] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(1327), + [anon_sym_satisfies] = ACTIONS(1327), + [anon_sym_interface] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [sym__automatic_semicolon] = ACTIONS(1531), + [sym__ternary_qmark] = ACTIONS(1325), }, [161] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1549), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_export] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1535), + [anon_sym_var] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_else] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_switch] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_do] = ACTIONS(1535), + [anon_sym_try] = ACTIONS(1535), + [anon_sym_with] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_debugger] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_throw] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LTtemplate_GT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_function] = ACTIONS(1535), + [anon_sym_QMARK_DOT] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_GT_GT_GT] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_QMARK_QMARK] = ACTIONS(1539), + [anon_sym_instanceof] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1535), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1533), + [sym_number] = ACTIONS(1533), + [sym_this] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_true] = ACTIONS(1535), + [sym_false] = ACTIONS(1535), + [sym_null] = ACTIONS(1535), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_readonly] = ACTIONS(1535), + [anon_sym_get] = ACTIONS(1535), + [anon_sym_set] = ACTIONS(1535), + [anon_sym_declare] = ACTIONS(1535), + [anon_sym_public] = ACTIONS(1535), + [anon_sym_private] = ACTIONS(1535), + [anon_sym_protected] = ACTIONS(1535), + [anon_sym_override] = ACTIONS(1535), + [anon_sym_module] = ACTIONS(1535), + [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_abstract] = ACTIONS(1535), + [anon_sym_satisfies] = ACTIONS(1537), + [anon_sym_interface] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [sym__automatic_semicolon] = ACTIONS(1541), + [sym__ternary_qmark] = ACTIONS(1539), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1553), - [anon_sym_export] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_with] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_debugger] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_throw] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LTtemplate_GT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1547), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1547), + [anon_sym_GT_GT_GT] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_STAR_STAR] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_QMARK_QMARK] = ACTIONS(1549), + [anon_sym_instanceof] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_delete] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_number] = ACTIONS(1543), + [sym_this] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_undefined] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_readonly] = ACTIONS(1545), + [anon_sym_get] = ACTIONS(1545), + [anon_sym_set] = ACTIONS(1545), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_private] = ACTIONS(1545), + [anon_sym_protected] = ACTIONS(1545), + [anon_sym_override] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_number] = ACTIONS(1545), + [anon_sym_boolean] = ACTIONS(1545), + [anon_sym_string] = ACTIONS(1545), + [anon_sym_symbol] = ACTIONS(1545), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_satisfies] = ACTIONS(1547), + [anon_sym_interface] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [sym__automatic_semicolon] = ACTIONS(1551), + [sym__ternary_qmark] = ACTIONS(1549), + }, + [163] = { + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1555), [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), [anon_sym_as] = ACTIONS(1555), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_COMMA] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_typeof] = ACTIONS(1553), - [anon_sym_import] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_await] = ACTIONS(1553), + [anon_sym_namespace] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1555), + [anon_sym_var] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_with] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_debugger] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_LTtemplate_GT] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_with] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_debugger] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_throw] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LTtemplate_GT] = ACTIONS(1553), [anon_sym_GT] = ACTIONS(1555), - [anon_sym_SLASH] = ACTIONS(1553), [anon_sym_DOT] = ACTIONS(1555), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(1553), - [anon_sym_QMARK_DOT] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_PIPE_PIPE] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(1555), + [anon_sym_QMARK_DOT] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_GT_GT_GT] = ACTIONS(1557), - [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_GT_GT_GT] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1553), [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1553), [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PERCENT] = ACTIONS(1557), - [anon_sym_STAR_STAR] = ACTIONS(1557), - [anon_sym_LT_EQ] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_STAR_STAR] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1553), [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1553), [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1557), - [anon_sym_GT_EQ] = ACTIONS(1557), - [anon_sym_QMARK_QMARK] = ACTIONS(1557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_QMARK_QMARK] = ACTIONS(1553), [anon_sym_instanceof] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_number] = ACTIONS(1551), - [sym_this] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_undefined] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1553), - [anon_sym_set] = ACTIONS(1553), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1553), - [anon_sym_private] = ACTIONS(1553), - [anon_sym_protected] = ACTIONS(1553), - [anon_sym_override] = ACTIONS(1553), - [anon_sym_module] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_number] = ACTIONS(1553), - [anon_sym_boolean] = ACTIONS(1553), - [anon_sym_string] = ACTIONS(1553), - [anon_sym_symbol] = ACTIONS(1553), - [anon_sym_abstract] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1555), + [anon_sym_delete] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1553), + [sym_number] = ACTIONS(1553), + [sym_this] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_true] = ACTIONS(1555), + [sym_false] = ACTIONS(1555), + [sym_null] = ACTIONS(1555), + [sym_undefined] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_readonly] = ACTIONS(1555), + [anon_sym_get] = ACTIONS(1555), + [anon_sym_set] = ACTIONS(1555), + [anon_sym_declare] = ACTIONS(1555), + [anon_sym_public] = ACTIONS(1555), + [anon_sym_private] = ACTIONS(1555), + [anon_sym_protected] = ACTIONS(1555), + [anon_sym_override] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [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_abstract] = ACTIONS(1555), [anon_sym_satisfies] = ACTIONS(1555), - [anon_sym_interface] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [sym__automatic_semicolon] = ACTIONS(1559), - [sym__ternary_qmark] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [sym__automatic_semicolon] = ACTIONS(1553), + [sym__ternary_qmark] = ACTIONS(1553), }, - [163] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1549), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3517), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3518), - [aux_sym_array_pattern_repeat1] = STATE(3534), + [164] = { + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_typeof] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1559), + [anon_sym_var] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_else] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_switch] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1559), + [anon_sym_in] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1559), + [anon_sym_try] = ACTIONS(1559), + [anon_sym_with] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_debugger] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_throw] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1559), + [anon_sym_yield] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LTtemplate_GT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_function] = ACTIONS(1559), + [anon_sym_QMARK_DOT] = ACTIONS(1563), + [anon_sym_new] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_GT_GT_GT] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1563), + [anon_sym_BANG_EQ] = ACTIONS(1561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_QMARK_QMARK] = ACTIONS(1563), + [anon_sym_instanceof] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1559), + [anon_sym_delete] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1557), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1557), + [sym_number] = ACTIONS(1557), + [sym_this] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_true] = ACTIONS(1559), + [sym_false] = ACTIONS(1559), + [sym_null] = ACTIONS(1559), + [sym_undefined] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1557), + [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_abstract] = ACTIONS(1559), + [anon_sym_satisfies] = ACTIONS(1561), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [sym__automatic_semicolon] = ACTIONS(1565), + [sym__ternary_qmark] = ACTIONS(1563), + }, + [165] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3570), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3566), + [aux_sym_array_pattern_repeat1] = STATE(3495), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_RBRACK] = ACTIONS(1567), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -37161,315 +37444,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_identifier] = ACTIONS(1565), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_type] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1567), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_await] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_with] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_debugger] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_yield] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_LTtemplate_GT] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1567), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_async] = ACTIONS(1565), - [anon_sym_function] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_PIPE_PIPE] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(1567), - [anon_sym_GT_GT_GT] = ACTIONS(1569), - [anon_sym_LT_LT] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PERCENT] = ACTIONS(1569), - [anon_sym_STAR_STAR] = ACTIONS(1569), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_EQ_EQ] = ACTIONS(1567), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ] = ACTIONS(1567), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1569), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_QMARK_QMARK] = ACTIONS(1569), - [anon_sym_instanceof] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_undefined] = ACTIONS(1565), - [anon_sym_AT] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_readonly] = ACTIONS(1565), - [anon_sym_get] = ACTIONS(1565), - [anon_sym_set] = ACTIONS(1565), - [anon_sym_declare] = ACTIONS(1565), - [anon_sym_public] = ACTIONS(1565), - [anon_sym_private] = ACTIONS(1565), - [anon_sym_protected] = ACTIONS(1565), - [anon_sym_override] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_number] = ACTIONS(1565), - [anon_sym_boolean] = ACTIONS(1565), - [anon_sym_string] = ACTIONS(1565), - [anon_sym_symbol] = ACTIONS(1565), - [anon_sym_abstract] = ACTIONS(1565), - [anon_sym_satisfies] = ACTIONS(1567), - [anon_sym_interface] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [sym__automatic_semicolon] = ACTIONS(1571), - [sym__ternary_qmark] = ACTIONS(1569), - }, - [165] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3463), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3463), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1158), - [sym_subscript_expression] = STATE(1158), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3463), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1158), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_mapped_type_clause] = STATE(3989), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(1573), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_RBRACK] = ACTIONS(1585), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1589), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_readonly] = ACTIONS(1575), - [anon_sym_get] = ACTIONS(1575), - [anon_sym_set] = ACTIONS(1575), - [anon_sym_declare] = ACTIONS(1575), - [anon_sym_public] = ACTIONS(1575), - [anon_sym_private] = ACTIONS(1575), - [anon_sym_protected] = ACTIONS(1575), - [anon_sym_override] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_number] = ACTIONS(1575), - [anon_sym_boolean] = ACTIONS(1575), - [anon_sym_string] = ACTIONS(1575), - [anon_sym_symbol] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [166] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [ts_builtin_sym_end] = ACTIONS(1569), + [sym_identifier] = ACTIONS(1571), + [anon_sym_export] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_type] = ACTIONS(1571), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_namespace] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_typeof] = ACTIONS(1571), + [anon_sym_import] = ACTIONS(1571), + [anon_sym_var] = ACTIONS(1571), + [anon_sym_let] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_else] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1571), + [anon_sym_switch] = ACTIONS(1571), + [anon_sym_for] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_await] = ACTIONS(1571), + [anon_sym_in] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1571), + [anon_sym_do] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1571), + [anon_sym_with] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1571), + [anon_sym_debugger] = ACTIONS(1571), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_throw] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_case] = ACTIONS(1571), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LTtemplate_GT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(1573), + [anon_sym_class] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(1571), + [anon_sym_QMARK_DOT] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_PIPE_PIPE] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_GT_GT_GT] = ACTIONS(1575), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1571), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1573), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1575), + [anon_sym_GT_EQ] = ACTIONS(1575), + [anon_sym_QMARK_QMARK] = ACTIONS(1575), + [anon_sym_instanceof] = ACTIONS(1573), + [anon_sym_TILDE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1571), + [anon_sym_delete] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1569), + [sym_number] = ACTIONS(1569), + [sym_this] = ACTIONS(1571), + [sym_super] = ACTIONS(1571), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_undefined] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_readonly] = ACTIONS(1571), + [anon_sym_get] = ACTIONS(1571), + [anon_sym_set] = ACTIONS(1571), + [anon_sym_declare] = ACTIONS(1571), + [anon_sym_public] = ACTIONS(1571), + [anon_sym_private] = ACTIONS(1571), + [anon_sym_protected] = ACTIONS(1571), + [anon_sym_override] = ACTIONS(1571), + [anon_sym_module] = ACTIONS(1571), + [anon_sym_any] = ACTIONS(1571), + [anon_sym_number] = ACTIONS(1571), + [anon_sym_boolean] = ACTIONS(1571), + [anon_sym_string] = ACTIONS(1571), + [anon_sym_symbol] = ACTIONS(1571), + [anon_sym_abstract] = ACTIONS(1571), + [anon_sym_satisfies] = ACTIONS(1573), + [anon_sym_interface] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [sym__automatic_semicolon] = ACTIONS(1577), + [sym__ternary_qmark] = ACTIONS(1575), + }, + [167] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_await] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1403), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -37492,397 +37669,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(754), [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), - [anon_sym_extends] = ACTIONS(1379), - [anon_sym_PIPE_RBRACE] = ACTIONS(1377), - [sym__automatic_semicolon] = ACTIONS(1377), - }, - [167] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_assignment_pattern] = STATE(3509), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3405), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_pattern_repeat1] = STATE(3519), - [sym_identifier] = ACTIONS(548), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1591), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), - [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_extends] = ACTIONS(1405), + [anon_sym_PIPE_RBRACE] = ACTIONS(1403), + [sym__automatic_semicolon] = ACTIONS(1403), }, [168] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1576), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3825), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3444), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3491), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_typeof] = ACTIONS(614), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1972), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(3644), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(3644), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1158), + [sym_subscript_expression] = STATE(1158), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(3644), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1158), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_mapped_type_clause] = STATE(4177), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(1579), + [anon_sym_export] = ACTIONS(1581), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_namespace] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_RBRACK] = ACTIONS(1591), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1321), + [sym_undefined] = ACTIONS(1595), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_readonly] = ACTIONS(1581), + [anon_sym_get] = ACTIONS(1581), + [anon_sym_set] = ACTIONS(1581), + [anon_sym_declare] = ACTIONS(1581), + [anon_sym_public] = ACTIONS(1581), + [anon_sym_private] = ACTIONS(1581), + [anon_sym_protected] = ACTIONS(1581), + [anon_sym_override] = ACTIONS(1581), + [anon_sym_module] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_number] = ACTIONS(1581), + [anon_sym_boolean] = ACTIONS(1581), + [anon_sym_string] = ACTIONS(1581), + [anon_sym_symbol] = ACTIONS(1581), }, [169] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3463), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3463), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1158), - [sym_subscript_expression] = STATE(1158), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3463), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1158), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1090), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_RBRACK] = ACTIONS(1403), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + [anon_sym_extends] = ACTIONS(1405), }, [170] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_assignment_pattern] = STATE(3531), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3370), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_pattern_repeat1] = STATE(3534), - [sym_identifier] = ACTIONS(548), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(1587), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_RBRACK] = ACTIONS(1591), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -37892,13 +37965,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), @@ -37917,87 +37990,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [171] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1576), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3825), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3444), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3491), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1573), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3898), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3536), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3559), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1600), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -38005,104 +38078,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [172] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1576), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3825), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_spread_element] = STATE(3444), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3491), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1573), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3898), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3536), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3559), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1593), + [anon_sym_RBRACK] = ACTIONS(1604), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -38110,93 +38183,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, [173] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1967), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(3644), + [sym_assignment_pattern] = STATE(3539), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(3644), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1158), + [sym_subscript_expression] = STATE(1158), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(3644), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3412), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1158), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_pattern_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_namespace] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_RBRACK] = ACTIONS(1591), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_readonly] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1610), + [anon_sym_set] = ACTIONS(1610), + [anon_sym_declare] = ACTIONS(1610), + [anon_sym_public] = ACTIONS(1610), + [anon_sym_private] = ACTIONS(1610), + [anon_sym_protected] = ACTIONS(1610), + [anon_sym_override] = ACTIONS(1610), + [anon_sym_module] = ACTIONS(1610), + [anon_sym_any] = ACTIONS(1610), + [anon_sym_number] = ACTIONS(1610), + [anon_sym_boolean] = ACTIONS(1610), + [anon_sym_string] = ACTIONS(1610), + [anon_sym_symbol] = ACTIONS(1610), + }, + [174] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1573), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3898), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_spread_element] = STATE(3536), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3559), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_RBRACK] = ACTIONS(1597), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1321), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), + }, + [175] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_assignment_pattern] = STATE(3571), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3362), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_pattern_repeat1] = STATE(3560), + [sym_identifier] = ACTIONS(604), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(1587), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1377), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_RBRACK] = ACTIONS(1616), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -38206,102 +38490,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), - [anon_sym_extends] = ACTIONS(1379), + [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), }, - [174] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_assignment_pattern] = STATE(3825), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3491), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [176] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_assignment_pattern] = STATE(3898), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3559), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(1618), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_RBRACK] = ACTIONS(1618), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -38311,13 +38594,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), @@ -38335,292 +38618,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [175] = { - [sym_identifier] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(1614), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LTtemplate_GT] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1614), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_function] = ACTIONS(1614), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1614), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1616), - [anon_sym_void] = ACTIONS(1614), - [anon_sym_delete] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1616), - [sym_number] = ACTIONS(1616), - [sym_this] = ACTIONS(1614), - [sym_super] = ACTIONS(1614), - [sym_true] = ACTIONS(1614), - [sym_false] = ACTIONS(1614), - [sym_null] = ACTIONS(1614), - [sym_undefined] = ACTIONS(1614), - [anon_sym_AT] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_get] = ACTIONS(1614), - [anon_sym_set] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(1614), - [anon_sym_public] = ACTIONS(1614), - [anon_sym_private] = ACTIONS(1614), - [anon_sym_protected] = ACTIONS(1614), - [anon_sym_override] = ACTIONS(1614), - [anon_sym_module] = ACTIONS(1614), - [anon_sym_any] = ACTIONS(1614), - [anon_sym_number] = ACTIONS(1614), - [anon_sym_boolean] = ACTIONS(1614), - [anon_sym_string] = ACTIONS(1614), - [anon_sym_symbol] = ACTIONS(1614), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [176] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1377), + [177] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1403), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - [anon_sym_extends] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + [anon_sym_extends] = ACTIONS(1405), }, - [177] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1576), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3444), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [178] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1547), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3608), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3609), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1618), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_RBRACK] = ACTIONS(1618), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -38644,179 +38824,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [178] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - [anon_sym_extends] = ACTIONS(1379), - }, [179] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3039), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3257), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), [sym_accessibility_modifier] = STATE(197), - [sym_override_modifier] = STATE(210), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(1149), - [sym_identifier] = ACTIONS(548), + [sym_override_modifier] = STATE(219), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(1139), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -38826,16 +38903,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1624), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1628), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1626), + [anon_sym_readonly] = ACTIONS(1630), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -38851,52 +38928,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), }, [180] = { - [sym_identifier] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1614), + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3629), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3631), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [181] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1592), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3542), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3543), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [182] = { + [sym_identifier] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1636), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1636), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_namespace] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1638), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1638), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1636), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LTtemplate_GT] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1614), + [anon_sym_yield] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_LTtemplate_GT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1614), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_function] = ACTIONS(1614), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1614), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1616), + [anon_sym_class] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1636), + [anon_sym_function] = ACTIONS(1636), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1636), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1638), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -38905,204 +39186,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1616), - [anon_sym_void] = ACTIONS(1614), - [anon_sym_delete] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1616), - [sym_number] = ACTIONS(1616), - [sym_this] = ACTIONS(1614), - [sym_super] = ACTIONS(1614), - [sym_true] = ACTIONS(1614), - [sym_false] = ACTIONS(1614), - [sym_null] = ACTIONS(1614), - [sym_undefined] = ACTIONS(1614), - [anon_sym_AT] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_get] = ACTIONS(1614), - [anon_sym_set] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(1614), - [anon_sym_public] = ACTIONS(1614), - [anon_sym_private] = ACTIONS(1614), - [anon_sym_protected] = ACTIONS(1614), - [anon_sym_override] = ACTIONS(1614), - [anon_sym_module] = ACTIONS(1614), - [anon_sym_any] = ACTIONS(1614), - [anon_sym_number] = ACTIONS(1614), - [anon_sym_boolean] = ACTIONS(1614), - [anon_sym_string] = ACTIONS(1614), - [anon_sym_symbol] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1638), + [anon_sym_DASH_DASH] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1638), + [sym_number] = ACTIONS(1638), + [sym_this] = ACTIONS(1636), + [sym_super] = ACTIONS(1636), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1636), + [anon_sym_set] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_declare] = ACTIONS(1636), + [anon_sym_public] = ACTIONS(1636), + [anon_sym_private] = ACTIONS(1636), + [anon_sym_protected] = ACTIONS(1636), + [anon_sym_override] = ACTIONS(1636), + [anon_sym_module] = ACTIONS(1636), + [anon_sym_any] = ACTIONS(1636), + [anon_sym_number] = ACTIONS(1636), + [anon_sym_boolean] = ACTIONS(1636), + [anon_sym_string] = ACTIONS(1636), + [anon_sym_symbol] = ACTIONS(1636), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [181] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(1377), + [183] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1403), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - [anon_sym_extends] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_extends] = ACTIONS(1405), }, - [182] = { - [sym_identifier] = ACTIONS(1628), - [anon_sym_export] = ACTIONS(1628), + [184] = { + [sym_identifier] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1640), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(211), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(1628), - [anon_sym_import] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(1628), + [anon_sym_namespace] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(1640), + [anon_sym_import] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(1640), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LTtemplate_GT] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_LTtemplate_GT] = ACTIONS(1642), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1628), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_function] = ACTIONS(1628), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1630), + [anon_sym_class] = ACTIONS(1640), + [anon_sym_async] = ACTIONS(1640), + [anon_sym_function] = ACTIONS(1640), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -39111,101 +39392,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_delete] = ACTIONS(1628), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1630), - [sym_this] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_true] = ACTIONS(1628), - [sym_false] = ACTIONS(1628), - [sym_null] = ACTIONS(1628), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_readonly] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1628), - [anon_sym_set] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(1628), - [anon_sym_public] = ACTIONS(1628), - [anon_sym_private] = ACTIONS(1628), - [anon_sym_protected] = ACTIONS(1628), - [anon_sym_override] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_number] = ACTIONS(1628), - [anon_sym_boolean] = ACTIONS(1628), - [anon_sym_string] = ACTIONS(1628), - [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1642), + [anon_sym_void] = ACTIONS(1640), + [anon_sym_delete] = ACTIONS(1640), + [anon_sym_PLUS_PLUS] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1642), + [sym_number] = ACTIONS(1642), + [sym_this] = ACTIONS(1640), + [sym_super] = ACTIONS(1640), + [sym_true] = ACTIONS(1640), + [sym_false] = ACTIONS(1640), + [sym_null] = ACTIONS(1640), + [sym_undefined] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_readonly] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1640), + [anon_sym_set] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_declare] = ACTIONS(1640), + [anon_sym_public] = ACTIONS(1640), + [anon_sym_private] = ACTIONS(1640), + [anon_sym_protected] = ACTIONS(1640), + [anon_sym_override] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1640), + [anon_sym_number] = ACTIONS(1640), + [anon_sym_boolean] = ACTIONS(1640), + [anon_sym_string] = ACTIONS(1640), + [anon_sym_symbol] = ACTIONS(1640), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [183] = { - [sym_identifier] = ACTIONS(1628), - [anon_sym_export] = ACTIONS(1628), + [185] = { + [sym_identifier] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1636), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1628), - [anon_sym_import] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(1628), + [anon_sym_namespace] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(1636), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LTtemplate_GT] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_LTtemplate_GT] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(1628), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_class] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_function] = ACTIONS(1628), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1630), + [anon_sym_class] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1636), + [anon_sym_function] = ACTIONS(1636), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1636), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1638), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -39214,134 +39495,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_delete] = ACTIONS(1628), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1630), - [sym_this] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_true] = ACTIONS(1628), - [sym_false] = ACTIONS(1628), - [sym_null] = ACTIONS(1628), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_readonly] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1628), - [anon_sym_set] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(1628), - [anon_sym_public] = ACTIONS(1628), - [anon_sym_private] = ACTIONS(1628), - [anon_sym_protected] = ACTIONS(1628), - [anon_sym_override] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_number] = ACTIONS(1628), - [anon_sym_boolean] = ACTIONS(1628), - [anon_sym_string] = ACTIONS(1628), - [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1638), + [anon_sym_DASH_DASH] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1638), + [sym_number] = ACTIONS(1638), + [sym_this] = ACTIONS(1636), + [sym_super] = ACTIONS(1636), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1636), + [anon_sym_set] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_declare] = ACTIONS(1636), + [anon_sym_public] = ACTIONS(1636), + [anon_sym_private] = ACTIONS(1636), + [anon_sym_protected] = ACTIONS(1636), + [anon_sym_override] = ACTIONS(1636), + [anon_sym_module] = ACTIONS(1636), + [anon_sym_any] = ACTIONS(1636), + [anon_sym_number] = ACTIONS(1636), + [anon_sym_boolean] = ACTIONS(1636), + [anon_sym_string] = ACTIONS(1636), + [anon_sym_symbol] = ACTIONS(1636), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [184] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1539), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3561), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3562), + [186] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + [anon_sym_extends] = ACTIONS(1405), + }, + [187] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1573), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3536), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(1644), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -39365,86 +39751,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [185] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1519), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3647), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3642), + [188] = { + [sym_identifier] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(211), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1640), + [anon_sym_import] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_LTtemplate_GT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_class] = ACTIONS(1640), + [anon_sym_async] = ACTIONS(1640), + [anon_sym_function] = ACTIONS(1640), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(1642), + [anon_sym_void] = ACTIONS(1640), + [anon_sym_delete] = ACTIONS(1640), + [anon_sym_PLUS_PLUS] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1642), + [sym_number] = ACTIONS(1642), + [sym_this] = ACTIONS(1640), + [sym_super] = ACTIONS(1640), + [sym_true] = ACTIONS(1640), + [sym_false] = ACTIONS(1640), + [sym_null] = ACTIONS(1640), + [sym_undefined] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_readonly] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1640), + [anon_sym_set] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_declare] = ACTIONS(1640), + [anon_sym_public] = ACTIONS(1640), + [anon_sym_private] = ACTIONS(1640), + [anon_sym_protected] = ACTIONS(1640), + [anon_sym_override] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1640), + [anon_sym_number] = ACTIONS(1640), + [anon_sym_boolean] = ACTIONS(1640), + [anon_sym_string] = ACTIONS(1640), + [anon_sym_symbol] = ACTIONS(1640), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, + [189] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1556), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3607), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3623), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -39468,189 +39957,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [186] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1548), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3473), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3450), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [190] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1403), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), + [anon_sym_extends] = ACTIONS(1405), }, - [187] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1557), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3619), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3620), + [191] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1570), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3465), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3464), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -39674,86 +40163,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [188] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1511), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3446), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3447), + [192] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + [anon_sym_extends] = ACTIONS(1405), + }, + [193] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1568), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3586), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3587), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -39777,75 +40369,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [189] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [194] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1403), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(1078), [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1403), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -39855,13 +40447,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -39878,294 +40470,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1068), [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_extends] = ACTIONS(1379), - }, - [190] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - [anon_sym_extends] = ACTIONS(1379), - }, - [191] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - [anon_sym_extends] = ACTIONS(1379), + [anon_sym_extends] = ACTIONS(1405), }, - [192] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1571), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3493), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3494), + [195] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1586), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_spread_element] = STATE(3518), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [aux_sym_array_repeat1] = STATE(3519), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -40189,178 +40575,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [193] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1515), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_spread_element] = STATE(3583), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [aux_sym_array_repeat1] = STATE(3584), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_typeof] = ACTIONS(614), + [196] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_assignment_pattern] = STATE(3684), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3655), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [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), }, - [194] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3037), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_override_modifier] = STATE(214), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [197] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3121), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_override_modifier] = STATE(204), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -40370,16 +40755,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(652), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1654), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1656), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -40394,60 +40779,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [195] = { - [sym_import] = STATE(1898), - [sym_expression_statement] = STATE(223), - [sym_empty_statement] = STATE(223), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [198] = { + [sym_import] = STATE(1953), + [sym_expression_statement] = STATE(222), + [sym_empty_statement] = STATE(222), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -40455,14 +40840,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -40480,76 +40865,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [196] = { - [sym_import] = STATE(1898), - [sym_expression_statement] = STATE(219), - [sym_empty_statement] = STATE(219), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3887), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [199] = { + [sym_import] = STATE(1953), + [sym_expression_statement] = STATE(224), + [sym_empty_statement] = STATE(224), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3728), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -40557,14 +40942,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -40582,91 +40967,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [197] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3143), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_override_modifier] = STATE(200), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [200] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3239), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_override_modifier] = STATE(208), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -40676,16 +41061,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1650), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1652), + [anon_sym_readonly] = ACTIONS(1658), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -40700,85 +41085,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [198] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2869), - [sym_assignment_pattern] = STATE(3864), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2869), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2869), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3455), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1075), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [201] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2804), + [sym_assignment_pattern] = STATE(3684), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2804), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2804), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3655), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1066), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_namespace] = ACTIONS(580), + [anon_sym_export] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(554), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(572), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -40786,91 +41171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1321), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(576), - [anon_sym_readonly] = ACTIONS(576), - [anon_sym_get] = ACTIONS(576), - [anon_sym_set] = ACTIONS(576), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(576), - [anon_sym_number] = ACTIONS(576), - [anon_sym_boolean] = ACTIONS(576), - [anon_sym_string] = ACTIONS(576), - [anon_sym_symbol] = ACTIONS(576), + [anon_sym_static] = ACTIONS(550), + [anon_sym_readonly] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [anon_sym_declare] = ACTIONS(550), + [anon_sym_public] = ACTIONS(550), + [anon_sym_private] = ACTIONS(550), + [anon_sym_protected] = ACTIONS(550), + [anon_sym_override] = ACTIONS(550), + [anon_sym_module] = ACTIONS(550), + [anon_sym_any] = ACTIONS(550), + [anon_sym_number] = ACTIONS(550), + [anon_sym_boolean] = ACTIONS(550), + [anon_sym_string] = ACTIONS(550), + [anon_sym_symbol] = ACTIONS(550), }, - [199] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_assignment_pattern] = STATE(3864), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3455), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [202] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -40880,98 +41264,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(1176), [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_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [200] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3300), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [203] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [204] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3104), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -40981,16 +41466,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1654), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1664), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1656), + [anon_sym_readonly] = ACTIONS(1666), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -41005,155 +41490,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [201] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1658), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), + [205] = { + [sym_import] = STATE(1751), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [206] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [202] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1660), + [207] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1672), [anon_sym_export] = ACTIONS(774), [anon_sym_type] = ACTIONS(774), [anon_sym_namespace] = ACTIONS(776), @@ -41166,14 +41752,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1168), [anon_sym_PLUS] = ACTIONS(800), [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(782), [anon_sym_void] = ACTIONS(800), [anon_sym_delete] = ACTIONS(800), @@ -41183,7 +41769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -41207,276 +41793,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(774), [anon_sym_symbol] = ACTIONS(774), }, - [203] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [204] = { - [sym_import] = STATE(1688), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1664), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - }, - [205] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), + [208] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3093), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -41486,209 +41870,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(630), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), - }, - [206] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1535), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3888), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - [sym__automatic_semicolon] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1674), + [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), }, - [207] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1670), + [209] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1676), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -41712,185 +41995,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [208] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [210] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1168), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(3660), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(3660), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1168), + [sym_subscript_expression] = STATE(1168), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(3660), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1168), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_type] = ACTIONS(1680), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_var] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1694), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_readonly] = ACTIONS(1680), + [anon_sym_get] = ACTIONS(1680), + [anon_sym_set] = ACTIONS(1680), + [anon_sym_declare] = ACTIONS(1680), + [anon_sym_public] = ACTIONS(1680), + [anon_sym_private] = ACTIONS(1680), + [anon_sym_protected] = ACTIONS(1680), + [anon_sym_override] = ACTIONS(1680), + [anon_sym_module] = ACTIONS(1680), + [anon_sym_any] = ACTIONS(1680), + [anon_sym_number] = ACTIONS(1680), + [anon_sym_boolean] = ACTIONS(1680), + [anon_sym_string] = ACTIONS(1680), + [anon_sym_symbol] = ACTIONS(1680), }, - [209] = { - [sym_import] = STATE(2026), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2392), - [sym__type_query_subscript_expression] = STATE(2389), + [211] = { + [sym_import] = STATE(2046), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2393), + [sym__type_query_subscript_expression] = STATE(2387), [sym__type_query_call_expression] = STATE(2492), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1674), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1696), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -41914,74 +42197,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [210] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3144), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [212] = { + [sym_import] = STATE(1751), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [213] = { + [sym_import] = STATE(1751), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1700), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [214] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3239), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -41991,16 +42476,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(1676), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1678), + [anon_sym_readonly] = ACTIONS(1658), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -42015,158 +42500,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [211] = { - [sym_import] = STATE(1688), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [212] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), + [215] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -42176,14 +42560,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -42193,7 +42577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -42201,70 +42585,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [213] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1684), + [216] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1704), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -42277,14 +42661,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -42294,13 +42678,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -42318,175 +42702,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [214] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3139), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_typeof] = ACTIONS(171), + [217] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1706), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(632), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1686), - [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_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [215] = { - [sym_import] = STATE(1688), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [218] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1561), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3780), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1708), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -42504,191 +42887,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [216] = { - [sym_import] = STATE(1264), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym__type_query_member_expression] = STATE(2338), - [sym__type_query_subscript_expression] = STATE(2309), - [sym__type_query_call_expression] = STATE(2349), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + [sym__automatic_semicolon] = ACTIONS(1708), }, - [217] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2836), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_pattern] = STATE(3037), - [sym_rest_pattern] = STATE(2867), - [sym_non_null_expression] = STATE(1055), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(548), + [219] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2813), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2813), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2813), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_pattern] = STATE(3122), + [sym_rest_pattern] = STATE(2810), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(604), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(606), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(144), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(156), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -42698,16 +42981,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(652), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(1710), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(570), + [sym_undefined] = ACTIONS(626), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1712), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -42722,74 +43005,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(111), [anon_sym_symbol] = ACTIONS(111), }, - [218] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1164), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3638), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3638), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1164), - [sym_subscript_expression] = STATE(1164), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3638), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1164), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_namespace] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), + [220] = { + [sym_import] = STATE(1340), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym__type_query_member_expression] = STATE(2351), + [sym__type_query_subscript_expression] = STATE(2348), + [sym__type_query_call_expression] = STATE(2359), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1706), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -42799,107 +43082,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_readonly] = ACTIONS(1694), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_declare] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_private] = ACTIONS(1694), - [anon_sym_protected] = ACTIONS(1694), - [anon_sym_override] = ACTIONS(1694), - [anon_sym_module] = ACTIONS(1694), - [anon_sym_any] = ACTIONS(1694), - [anon_sym_number] = ACTIONS(1694), - [anon_sym_boolean] = ACTIONS(1694), - [anon_sym_string] = ACTIONS(1694), - [anon_sym_symbol] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [219] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1604), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4040), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [221] = { + [sym_namespace_export] = STATE(3742), + [sym_export_clause] = STATE(3324), + [sym_declaration] = STATE(642), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), + }, + [222] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1686), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4058), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -42923,71 +43306,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [220] = { - [sym_namespace_export] = STATE(3846), - [sym_export_clause] = STATE(3333), - [sym_declaration] = STATE(737), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_EQ] = ACTIONS(1718), - [anon_sym_as] = ACTIONS(1720), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [223] = { + [sym_namespace_export] = STATE(3742), + [sym_export_clause] = STATE(3324), + [sym_declaration] = STATE(642), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -42998,196 +43379,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [221] = { - [sym_namespace_export] = STATE(3846), - [sym_export_clause] = STATE(3333), - [sym_declaration] = STATE(737), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_EQ] = ACTIONS(1718), - [anon_sym_as] = ACTIONS(1720), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), + [224] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1622), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4160), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [222] = { - [sym_namespace_export] = STATE(3846), - [sym_export_clause] = STATE(3333), - [sym_declaration] = STATE(737), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_EQ] = ACTIONS(1718), - [anon_sym_as] = ACTIONS(1720), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [225] = { + [sym_namespace_export] = STATE(3742), + [sym_export_clause] = STATE(3324), + [sym_declaration] = STATE(642), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -43198,306 +43579,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [223] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1589), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3998), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [226] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1402), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2011), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [224] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1861), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1720), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [227] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1777), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_readonly] = ACTIONS(1779), + [anon_sym_get] = ACTIONS(1779), + [anon_sym_set] = ACTIONS(1779), + [anon_sym_declare] = ACTIONS(1779), + [anon_sym_public] = ACTIONS(1779), + [anon_sym_private] = ACTIONS(1779), + [anon_sym_protected] = ACTIONS(1779), + [anon_sym_override] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_any] = ACTIONS(1779), + [anon_sym_number] = ACTIONS(1779), + [anon_sym_boolean] = ACTIONS(1779), + [anon_sym_string] = ACTIONS(1779), + [anon_sym_symbol] = ACTIONS(1779), }, - [225] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1439), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4177), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [228] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1415), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1560), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [229] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1606), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4000), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -43521,153 +44002,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [226] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1494), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1800), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(800), + [230] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1406), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1555), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [227] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1773), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1777), + [231] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1793), [anon_sym_LBRACE] = ACTIONS(1108), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -43677,15 +44158,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -43695,7 +44176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -43703,291 +44184,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_readonly] = ACTIONS(1775), - [anon_sym_get] = ACTIONS(1775), - [anon_sym_set] = ACTIONS(1775), - [anon_sym_declare] = ACTIONS(1775), - [anon_sym_public] = ACTIONS(1775), - [anon_sym_private] = ACTIONS(1775), - [anon_sym_protected] = ACTIONS(1775), - [anon_sym_override] = ACTIONS(1775), - [anon_sym_module] = ACTIONS(1775), - [anon_sym_any] = ACTIONS(1775), - [anon_sym_number] = ACTIONS(1775), - [anon_sym_boolean] = ACTIONS(1775), - [anon_sym_string] = ACTIONS(1775), - [anon_sym_symbol] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), }, - [228] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1452), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(800), + [232] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1402), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [229] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [233] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4119), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [230] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1892), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), + [234] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1840), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1411), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -43998,194 +44479,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [231] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_readonly] = ACTIONS(1787), - [anon_sym_get] = ACTIONS(1787), - [anon_sym_set] = ACTIONS(1787), - [anon_sym_declare] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_private] = ACTIONS(1787), - [anon_sym_protected] = ACTIONS(1787), - [anon_sym_override] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_any] = ACTIONS(1787), - [anon_sym_number] = ACTIONS(1787), - [anon_sym_boolean] = ACTIONS(1787), - [anon_sym_string] = ACTIONS(1787), - [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [232] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1855), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1411), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), + [235] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1815), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1426), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -44196,95 +44578,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [233] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1855), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1721), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [236] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1904), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1516), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -44295,90 +44677,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [234] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1866), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1406), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [237] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1920), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1440), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1797), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -44396,88 +44778,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [235] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1861), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1392), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [238] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1386), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1258), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [239] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(3958), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [240] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1386), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1517), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [241] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1946), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1469), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [242] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1557), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3781), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -44495,88 +45273,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [236] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), + [243] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1920), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [244] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1815), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1466), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [245] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1840), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1463), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [246] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1972), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_mapped_type_clause] = STATE(4177), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1801), + [anon_sym_readonly] = ACTIONS(1801), + [anon_sym_get] = ACTIONS(1801), + [anon_sym_set] = ACTIONS(1801), + [anon_sym_declare] = ACTIONS(1801), + [anon_sym_public] = ACTIONS(1801), + [anon_sym_private] = ACTIONS(1801), + [anon_sym_protected] = ACTIONS(1801), + [anon_sym_override] = ACTIONS(1801), + [anon_sym_module] = ACTIONS(1801), + [anon_sym_any] = ACTIONS(1801), + [anon_sym_number] = ACTIONS(1801), + [anon_sym_boolean] = ACTIONS(1801), + [anon_sym_string] = ACTIONS(1801), + [anon_sym_symbol] = ACTIONS(1801), + }, + [247] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1108), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -44586,7 +45760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -44594,72 +45768,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), }, - [237] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1738), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [248] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_readonly] = ACTIONS(1809), + [anon_sym_get] = ACTIONS(1809), + [anon_sym_set] = ACTIONS(1809), + [anon_sym_declare] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1809), + [anon_sym_private] = ACTIONS(1809), + [anon_sym_protected] = ACTIONS(1809), + [anon_sym_override] = ACTIONS(1809), + [anon_sym_module] = ACTIONS(1809), + [anon_sym_any] = ACTIONS(1809), + [anon_sym_number] = ACTIONS(1809), + [anon_sym_boolean] = ACTIONS(1809), + [anon_sym_string] = ACTIONS(1809), + [anon_sym_symbol] = ACTIONS(1809), + }, + [249] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1840), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1682), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [250] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1815), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [251] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1787), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), @@ -44668,14 +46139,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -44685,13 +46156,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -44709,82 +46180,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [238] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1601), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4032), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [252] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1920), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [253] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1946), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1609), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [254] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1631), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4060), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -44808,56 +46477,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [239] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_mapped_type_clause] = STATE(3989), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1795), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1108), + [255] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1373), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1787), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), @@ -44866,14 +46535,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -44883,106 +46552,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), + }, + [256] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1904), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [240] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4034), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [257] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1403), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4043), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -45006,473 +46774,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [241] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1412), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(800), + [258] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1386), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [242] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(800), + [259] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1621), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4161), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [243] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1371), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(800), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [260] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1373), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1534), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [244] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [261] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1832), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1511), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [245] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1086), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1404), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1086), - [sym_subscript_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1086), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(167), + [262] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1904), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -45483,100 +47251,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1813), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(1805), - [anon_sym_get] = ACTIONS(1805), - [anon_sym_set] = ACTIONS(1805), - [anon_sym_declare] = ACTIONS(1805), - [anon_sym_public] = ACTIONS(1805), - [anon_sym_private] = ACTIONS(1805), - [anon_sym_protected] = ACTIONS(1805), - [anon_sym_override] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_any] = ACTIONS(1805), - [anon_sym_number] = ACTIONS(1805), - [anon_sym_boolean] = ACTIONS(1805), - [anon_sym_string] = ACTIONS(1805), - [anon_sym_symbol] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [246] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1603), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4038), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [263] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1832), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [264] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1605), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4052), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -45600,452 +47467,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [247] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1866), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [265] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4056), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [248] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1789), + [266] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1725), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4057), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(171), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [267] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1402), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1262), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_readonly] = ACTIONS(1787), - [anon_sym_get] = ACTIONS(1787), - [anon_sym_set] = ACTIONS(1787), - [anon_sym_declare] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_private] = ACTIONS(1787), - [anon_sym_protected] = ACTIONS(1787), - [anon_sym_override] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_any] = ACTIONS(1787), - [anon_sym_number] = ACTIONS(1787), - [anon_sym_boolean] = ACTIONS(1787), - [anon_sym_string] = ACTIONS(1787), - [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [249] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1892), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [268] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1406), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1264), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [250] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1494), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(974), + [269] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1415), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1265), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [251] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1412), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [270] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1386), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1614), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1787), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), @@ -46054,14 +48020,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -46071,13 +48037,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -46095,82 +48061,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [252] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4019), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [271] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1540), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [272] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1249), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(3374), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -46194,155 +48259,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [253] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [273] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1402), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1647), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [254] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1371), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [274] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1406), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1654), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1787), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), @@ -46351,14 +48416,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -46368,13 +48433,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -46392,187 +48457,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [255] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1494), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(2006), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(171), + [275] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1415), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1662), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [256] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3311), + [276] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1091), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1422), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1091), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1815), [anon_sym_export] = ACTIONS(1817), [anon_sym_type] = ACTIONS(1817), [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1825), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), [anon_sym_PLUS_PLUS] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1817), [anon_sym_readonly] = ACTIONS(1817), @@ -46590,181 +48655,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1817), [anon_sym_symbol] = ACTIONS(1817), }, - [257] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1977), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [277] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1577), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_sequence_expression] = STATE(3748), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [258] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3938), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [278] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1373), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1254), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -46788,567 +48853,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [259] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1808), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - }, - [260] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3048), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3736), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1789), + [279] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1972), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_mapped_type_clause] = STATE(4099), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_namespace] = ACTIONS(1833), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(171), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_readonly] = ACTIONS(1787), - [anon_sym_get] = ACTIONS(1787), - [anon_sym_set] = ACTIONS(1787), - [anon_sym_declare] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_private] = ACTIONS(1787), - [anon_sym_protected] = ACTIONS(1787), - [anon_sym_override] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_any] = ACTIONS(1787), - [anon_sym_number] = ACTIONS(1787), - [anon_sym_boolean] = ACTIONS(1787), - [anon_sym_string] = ACTIONS(1787), - [anon_sym_symbol] = ACTIONS(1787), - }, - [261] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1808), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1507), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [262] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1371), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), - }, - [263] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1979), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_get] = ACTIONS(1831), + [anon_sym_set] = ACTIONS(1831), + [anon_sym_declare] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1831), + [anon_sym_protected] = ACTIONS(1831), + [anon_sym_override] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_any] = ACTIONS(1831), + [anon_sym_number] = ACTIONS(1831), + [anon_sym_boolean] = ACTIONS(1831), + [anon_sym_string] = ACTIONS(1831), + [anon_sym_symbol] = ACTIONS(1831), }, - [264] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1086), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1404), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1086), - [sym_subscript_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1086), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_namespace] = ACTIONS(1827), + [280] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1091), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1422), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1091), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_namespace] = ACTIONS(1841), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1825), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -47364,100 +49033,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_readonly] = ACTIONS(1839), + [anon_sym_get] = ACTIONS(1839), + [anon_sym_set] = ACTIONS(1839), + [anon_sym_declare] = ACTIONS(1839), + [anon_sym_public] = ACTIONS(1839), + [anon_sym_private] = ACTIONS(1839), + [anon_sym_protected] = ACTIONS(1839), + [anon_sym_override] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_any] = ACTIONS(1839), + [anon_sym_number] = ACTIONS(1839), + [anon_sym_boolean] = ACTIONS(1839), + [anon_sym_string] = ACTIONS(1839), + [anon_sym_symbol] = ACTIONS(1839), }, - [265] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4211), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [281] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1596), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4197), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -47481,280 +49150,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [266] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1086), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1404), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1086), - [sym_subscript_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1086), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1831), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - }, - [267] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1943), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - }, - [268] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1494), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1284), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [282] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1683), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4189), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -47778,72 +49249,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [269] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1108), + [283] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1406), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2007), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1775), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -47853,7 +49324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -47861,862 +49332,763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_readonly] = ACTIONS(1817), - [anon_sym_get] = ACTIONS(1817), - [anon_sym_set] = ACTIONS(1817), - [anon_sym_declare] = ACTIONS(1817), - [anon_sym_public] = ACTIONS(1817), - [anon_sym_private] = ACTIONS(1817), - [anon_sym_protected] = ACTIONS(1817), - [anon_sym_override] = ACTIONS(1817), - [anon_sym_module] = ACTIONS(1817), - [anon_sym_any] = ACTIONS(1817), - [anon_sym_number] = ACTIONS(1817), - [anon_sym_boolean] = ACTIONS(1817), - [anon_sym_string] = ACTIONS(1817), - [anon_sym_symbol] = ACTIONS(1817), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [270] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1086), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1404), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1086), - [sym_subscript_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1086), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1831), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1126), + [284] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_namespace] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1108), [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), [anon_sym_PLUS_PLUS] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - }, - [271] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1808), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1385), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_readonly] = ACTIONS(1847), + [anon_sym_get] = ACTIONS(1847), + [anon_sym_set] = ACTIONS(1847), + [anon_sym_declare] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_any] = ACTIONS(1847), + [anon_sym_number] = ACTIONS(1847), + [anon_sym_boolean] = ACTIONS(1847), + [anon_sym_string] = ACTIONS(1847), + [anon_sym_symbol] = ACTIONS(1847), }, - [272] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), + [285] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_mapped_type_clause] = STATE(4067), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1839), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [273] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1593), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4013), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [286] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1373), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1865), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [274] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4015), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), + }, + [287] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1386), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1896), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [275] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1412), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1981), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_typeof] = ACTIONS(171), + [288] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1402), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1906), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [276] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1513), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3655), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [289] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1406), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1907), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [277] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4017), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [290] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1415), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [278] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1847), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1851), + [291] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1777), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_namespace] = ACTIONS(1781), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -48726,15 +50098,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -48744,7 +50116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -48752,98 +50124,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_readonly] = ACTIONS(1779), + [anon_sym_get] = ACTIONS(1779), + [anon_sym_set] = ACTIONS(1779), + [anon_sym_declare] = ACTIONS(1779), + [anon_sym_public] = ACTIONS(1779), + [anon_sym_private] = ACTIONS(1779), + [anon_sym_protected] = ACTIONS(1779), + [anon_sym_override] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_any] = ACTIONS(1779), + [anon_sym_number] = ACTIONS(1779), + [anon_sym_boolean] = ACTIONS(1779), + [anon_sym_string] = ACTIONS(1779), + [anon_sym_symbol] = ACTIONS(1779), }, - [279] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1452), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1306), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [292] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1715), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4233), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -48867,82 +50239,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [280] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3951), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [293] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4232), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -48966,82 +50338,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [281] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4018), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [294] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1724), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4230), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -49065,280 +50437,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [282] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1943), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1458), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [283] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1773), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_readonly] = ACTIONS(1775), - [anon_sym_get] = ACTIONS(1775), - [anon_sym_set] = ACTIONS(1775), - [anon_sym_declare] = ACTIONS(1775), - [anon_sym_public] = ACTIONS(1775), - [anon_sym_private] = ACTIONS(1775), - [anon_sym_protected] = ACTIONS(1775), - [anon_sym_override] = ACTIONS(1775), - [anon_sym_module] = ACTIONS(1775), - [anon_sym_any] = ACTIONS(1775), - [anon_sym_number] = ACTIONS(1775), - [anon_sym_boolean] = ACTIONS(1775), - [anon_sym_string] = ACTIONS(1775), - [anon_sym_symbol] = ACTIONS(1775), - }, - [284] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1314), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3329), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [295] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1730), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_sequence_expression] = STATE(4227), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -49362,171 +50536,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [285] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1847), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_DOT] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - }, - [286] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1086), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1404), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1086), - [sym_subscript_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1086), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_namespace] = ACTIONS(1807), + [296] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1091), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1422), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1091), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_namespace] = ACTIONS(1841), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1825), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -49542,397 +50617,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(1805), - [anon_sym_get] = ACTIONS(1805), - [anon_sym_set] = ACTIONS(1805), - [anon_sym_declare] = ACTIONS(1805), - [anon_sym_public] = ACTIONS(1805), - [anon_sym_private] = ACTIONS(1805), - [anon_sym_protected] = ACTIONS(1805), - [anon_sym_override] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_any] = ACTIONS(1805), - [anon_sym_number] = ACTIONS(1805), - [anon_sym_boolean] = ACTIONS(1805), - [anon_sym_string] = ACTIONS(1805), - [anon_sym_symbol] = ACTIONS(1805), - }, - [287] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3947), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [288] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1892), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1696), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_readonly] = ACTIONS(1839), + [anon_sym_get] = ACTIONS(1839), + [anon_sym_set] = ACTIONS(1839), + [anon_sym_declare] = ACTIONS(1839), + [anon_sym_public] = ACTIONS(1839), + [anon_sym_private] = ACTIONS(1839), + [anon_sym_protected] = ACTIONS(1839), + [anon_sym_override] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_any] = ACTIONS(1839), + [anon_sym_number] = ACTIONS(1839), + [anon_sym_boolean] = ACTIONS(1839), + [anon_sym_string] = ACTIONS(1839), + [anon_sym_symbol] = ACTIONS(1839), }, - [289] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1452), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1774), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(1090), + [297] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [290] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1412), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1360), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [298] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1261), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -49956,171 +50833,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [291] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1412), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1575), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(974), + [299] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_readonly] = ACTIONS(1809), + [anon_sym_get] = ACTIONS(1809), + [anon_sym_set] = ACTIONS(1809), + [anon_sym_declare] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1809), + [anon_sym_private] = ACTIONS(1809), + [anon_sym_protected] = ACTIONS(1809), + [anon_sym_override] = ACTIONS(1809), + [anon_sym_module] = ACTIONS(1809), + [anon_sym_any] = ACTIONS(1809), + [anon_sym_number] = ACTIONS(1809), + [anon_sym_boolean] = ACTIONS(1809), + [anon_sym_string] = ACTIONS(1809), + [anon_sym_symbol] = ACTIONS(1809), }, - [292] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1536), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_sequence_expression] = STATE(3654), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [300] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1832), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1434), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1797), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -50138,187 +51015,979 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [293] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4024), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), + [301] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [302] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3078), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3768), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_namespace] = ACTIONS(1811), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_readonly] = ACTIONS(1809), + [anon_sym_get] = ACTIONS(1809), + [anon_sym_set] = ACTIONS(1809), + [anon_sym_declare] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1809), + [anon_sym_private] = ACTIONS(1809), + [anon_sym_protected] = ACTIONS(1809), + [anon_sym_override] = ACTIONS(1809), + [anon_sym_module] = ACTIONS(1809), + [anon_sym_any] = ACTIONS(1809), + [anon_sym_number] = ACTIONS(1809), + [anon_sym_boolean] = ACTIONS(1809), + [anon_sym_string] = ACTIONS(1809), + [anon_sym_symbol] = ACTIONS(1809), }, - [294] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1086), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1404), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1086), - [sym_subscript_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(3172), - [sym_non_null_expression] = STATE(1086), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3787), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_namespace] = ACTIONS(1827), + [303] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1373), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2006), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [304] = { + [sym_import] = STATE(1953), + [sym_statement_block] = STATE(1946), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1488), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [305] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [306] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1091), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1422), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1091), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1815), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(1817), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_any] = ACTIONS(1817), + [anon_sym_number] = ACTIONS(1817), + [anon_sym_boolean] = ACTIONS(1817), + [anon_sym_string] = ACTIONS(1817), + [anon_sym_symbol] = ACTIONS(1817), + }, + [307] = { + [sym_import] = STATE(1429), + [sym_statement_block] = STATE(1415), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2004), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [308] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1091), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1422), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1091), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1857), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(136), [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_readonly] = ACTIONS(1855), + [anon_sym_get] = ACTIONS(1855), + [anon_sym_set] = ACTIONS(1855), + [anon_sym_declare] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_any] = ACTIONS(1855), + [anon_sym_number] = ACTIONS(1855), + [anon_sym_boolean] = ACTIONS(1855), + [anon_sym_string] = ACTIONS(1855), + [anon_sym_symbol] = ACTIONS(1855), + }, + [309] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [310] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1091), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1422), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(3278), + [sym_non_null_expression] = STATE(1091), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3847), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1825), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -50334,74 +52003,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_readonly] = ACTIONS(1855), + [anon_sym_get] = ACTIONS(1855), + [anon_sym_set] = ACTIONS(1855), + [anon_sym_declare] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_any] = ACTIONS(1855), + [anon_sym_number] = ACTIONS(1855), + [anon_sym_boolean] = ACTIONS(1855), + [anon_sym_string] = ACTIONS(1855), + [anon_sym_symbol] = ACTIONS(1855), }, - [295] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1494), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), + [311] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1214), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_namespace] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_readonly] = ACTIONS(1847), + [anon_sym_get] = ACTIONS(1847), + [anon_sym_set] = ACTIONS(1847), + [anon_sym_declare] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_any] = ACTIONS(1847), + [anon_sym_number] = ACTIONS(1847), + [anon_sym_boolean] = ACTIONS(1847), + [anon_sym_string] = ACTIONS(1847), + [anon_sym_symbol] = ACTIONS(1847), + }, + [312] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), + }, + [313] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1616), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1108), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), @@ -50410,14 +52275,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -50427,13 +52292,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -50451,171 +52316,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [296] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1586), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [297] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1855), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1382), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [314] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1424), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -50633,296 +52398,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [298] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1371), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1583), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [299] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1582), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(974), + [315] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1266), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [300] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1344), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [316] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -50946,82 +52610,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [301] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1371), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1346), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [317] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1257), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -51045,82 +52708,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [302] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1374), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1352), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [318] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -51144,72 +52806,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [303] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1943), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1417), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [319] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1506), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -51227,468 +52888,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [304] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1452), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [320] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [305] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1866), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1383), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [306] = { - [sym_import] = STATE(1898), - [sym_statement_block] = STATE(1861), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1389), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(1861), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [307] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1459), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(4112), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [321] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2019), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [308] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1452), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1990), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [322] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2018), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(167), @@ -51697,14 +53157,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -51714,7 +53174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -51722,72 +53182,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [309] = { - [sym_import] = STATE(1397), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1587), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [323] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1108), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), [anon_sym_BANG] = ACTIONS(1076), @@ -51796,14 +53255,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -51813,13 +53272,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -51837,148 +53296,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [310] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), + [324] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2017), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [311] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1956), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [325] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [326] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1536), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [327] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [328] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1160), [anon_sym_export] = ACTIONS(774), [anon_sym_type] = ACTIONS(774), @@ -51992,14 +53745,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1168), [anon_sym_PLUS] = ACTIONS(800), [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(782), [anon_sym_void] = ACTIONS(800), [anon_sym_delete] = ACTIONS(800), @@ -52009,7 +53762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -52033,169 +53786,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(774), [anon_sym_symbol] = ACTIONS(774), }, - [312] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [329] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [313] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1441), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [330] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [331] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [332] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1387), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -52213,92 +54162,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [314] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [333] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2022), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [334] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(1863), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [335] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1514), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52309,94 +54454,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [315] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1437), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [336] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [337] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52407,192 +54650,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [316] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1435), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [338] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1252), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [317] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1431), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [339] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1515), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52603,192 +54846,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [318] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1732), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [319] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [340] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52799,94 +54944,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [320] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [341] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52897,94 +55042,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [321] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [342] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1478), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -52995,89 +55140,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [322] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1370), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [343] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1273), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [344] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1413), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -53095,67 +55338,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [323] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [345] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1661), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -53168,14 +55411,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -53185,13 +55428,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -53209,149 +55452,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [324] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1543), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [346] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [347] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1863), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [325] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [348] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(1865), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [349] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -53364,14 +55803,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -53381,13 +55820,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -53405,71 +55844,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [326] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1364), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [350] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1428), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -53487,283 +55926,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [327] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1577), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [351] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1453), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [328] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1574), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [352] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1509), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [329] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [353] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1548), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -53773,7 +56212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(1855), + [sym_number] = ACTIONS(89), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), @@ -53781,97 +56220,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [330] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [354] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1432), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [355] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2008), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [356] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1239), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -53895,51 +56530,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [331] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [357] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1967), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -53952,14 +56587,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -53969,13 +56604,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -53993,443 +56628,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [332] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), + [358] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1541), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1857), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [333] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [359] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1507), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [360] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [334] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1569), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [361] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [335] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1567), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), + [362] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1370), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [363] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1999), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [364] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1550), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [336] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [365] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -54442,14 +57371,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -54459,13 +57388,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -54483,1257 +57412,1159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [337] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1565), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [366] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [338] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1564), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [367] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [339] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1563), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [368] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1924), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [340] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1562), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [369] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [341] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1556), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [370] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [342] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1554), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [371] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1498), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [372] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(1861), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [373] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [374] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1268), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [343] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1555), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), + [375] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1571), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [344] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), + [376] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - }, - [345] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1478), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [346] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [347] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1550), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [348] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1859), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [349] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [377] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1260), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -55757,247 +58588,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [350] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1542), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [351] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1534), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), + [378] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [352] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -56010,14 +58645,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -56027,13 +58662,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -56051,76 +58686,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [353] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1745), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [379] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56131,94 +58766,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [354] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [380] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1487), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56229,187 +58864,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [355] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1532), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), + [381] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1460), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [356] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1393), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [382] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1485), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -56427,288 +59062,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [357] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(1855), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [358] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1524), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [383] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1863), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [359] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [384] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1484), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56719,192 +59256,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - }, - [360] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [361] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [385] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -56915,89 +59354,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [362] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1361), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [386] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1483), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -57015,190 +59454,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [363] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [364] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [387] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1482), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -57209,388 +59550,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [365] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1560), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [388] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1905), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [366] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [367] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [368] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [389] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1481), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -57601,486 +59746,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [369] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [390] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1894), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [370] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [391] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1892), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [371] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), + [392] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1890), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [372] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1766), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [393] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [373] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [394] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -58091,197 +60236,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [374] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [395] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [375] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1359), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [396] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1867), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -58305,179 +60450,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [376] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1342), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [397] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [377] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [398] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1529), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -58485,1361 +60630,1263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [378] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), + [399] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1882), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [379] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1351), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [400] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [380] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1356), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [401] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [381] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1357), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [402] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2000), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [382] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1255), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [403] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [383] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1388), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [384] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [404] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [385] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1349), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [405] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [386] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1353), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), + }, + [406] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1863), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [387] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1329), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [407] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1480), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [408] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [388] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1327), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [409] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [389] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [390] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1318), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [410] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), }, - [391] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1444), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [411] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -59857,87 +61904,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [392] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1378), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [412] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_namespace] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_void] = ACTIONS(800), + [anon_sym_delete] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(774), + [anon_sym_readonly] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_protected] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_module] = ACTIONS(774), + [anon_sym_any] = ACTIONS(774), + [anon_sym_number] = ACTIONS(774), + [anon_sym_boolean] = ACTIONS(774), + [anon_sym_string] = ACTIONS(774), + [anon_sym_symbol] = ACTIONS(774), + }, + [413] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1435), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -59955,185 +62100,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [393] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1769), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [414] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [394] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1445), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [415] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1477), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -60151,87 +62296,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [395] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1453), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [416] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1503), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -60249,299 +62394,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [396] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [417] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1496), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [418] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1857), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1857), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [397] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1308), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [398] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -60559,250 +62606,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [399] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1857), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [400] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1502), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [419] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(3091), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(3091), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1121), + [sym_subscript_expression] = STATE(1121), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(3091), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1121), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1869), + [anon_sym_export] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [sym_undefined] = ACTIONS(1871), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(822), + [anon_sym_readonly] = ACTIONS(822), + [anon_sym_get] = ACTIONS(822), + [anon_sym_set] = ACTIONS(822), + [anon_sym_declare] = ACTIONS(822), + [anon_sym_public] = ACTIONS(822), + [anon_sym_private] = ACTIONS(822), + [anon_sym_protected] = ACTIONS(822), + [anon_sym_override] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_any] = ACTIONS(822), + [anon_sym_number] = ACTIONS(822), + [anon_sym_boolean] = ACTIONS(822), + [anon_sym_string] = ACTIONS(822), + [anon_sym_symbol] = ACTIONS(822), }, - [401] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(2011), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [420] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -60812,14 +62761,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -60829,7 +62778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -60837,185 +62786,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), - }, - [402] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1298), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [403] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1386), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [421] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1475), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), + [anon_sym_import] = ACTIONS(864), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -61033,165 +62884,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [404] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(2007), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [422] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [405] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [423] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -61204,14 +63055,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -61221,13 +63072,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -61245,54 +63096,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [406] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [424] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -61302,14 +63153,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -61319,7 +63170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1867), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -61327,92 +63178,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [407] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1405), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [425] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [426] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(2790), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(2790), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1067), + [sym_subscript_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(2790), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1067), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(136), + [anon_sym_yield] = ACTIONS(138), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(167), + [anon_sym_void] = ACTIONS(171), + [anon_sym_delete] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_readonly] = ACTIONS(1875), + [anon_sym_get] = ACTIONS(1875), + [anon_sym_set] = ACTIONS(1875), + [anon_sym_declare] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_override] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_any] = ACTIONS(1875), + [anon_sym_number] = ACTIONS(1875), + [anon_sym_boolean] = ACTIONS(1875), + [anon_sym_string] = ACTIONS(1875), + [anon_sym_symbol] = ACTIONS(1875), + }, + [427] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1495), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -61423,69 +63470,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [408] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [428] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -61498,14 +63545,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -61515,13 +63562,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -61539,179 +63586,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [409] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), + [429] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1240), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [410] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1292), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [430] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1255), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -61735,76 +63782,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [411] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1472), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [431] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1494), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -61815,69 +63862,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [412] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [432] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(1861), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [433] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -61890,14 +64035,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -61907,13 +64052,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -61931,78 +64076,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [413] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1503), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [434] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1259), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [435] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1251), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [436] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1493), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [437] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1492), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [438] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1471), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -62013,67 +64550,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), }, - [414] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [439] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -62086,14 +64623,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -62103,13 +64640,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -62127,51 +64664,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [415] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [440] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1248), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [441] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1489), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [442] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1546), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [443] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [444] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1491), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [445] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1607), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -62184,14 +65211,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -62201,13 +65228,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -62225,272 +65252,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [416] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [417] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1995), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [446] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [418] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [447] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -62501,265 +65430,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [419] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1573), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), + [448] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [420] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [421] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [449] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -62772,14 +65603,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -62789,13 +65620,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -62813,272 +65644,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [422] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(2841), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(2841), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(2841), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1070), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1869), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_readonly] = ACTIONS(1863), - [anon_sym_get] = ACTIONS(1863), - [anon_sym_set] = ACTIONS(1863), - [anon_sym_declare] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [anon_sym_override] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_any] = ACTIONS(1863), - [anon_sym_number] = ACTIONS(1863), - [anon_sym_boolean] = ACTIONS(1863), - [anon_sym_string] = ACTIONS(1863), - [anon_sym_symbol] = ACTIONS(1863), - }, - [423] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), + [450] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1714), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [424] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1608), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [451] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1474), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -63089,951 +65822,755 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [425] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [452] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [426] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [453] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1617), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [427] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1611), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [428] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), + [454] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - }, - [429] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1964), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1863), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [430] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1886), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [455] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1618), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [431] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1286), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), + [456] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1473), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [432] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1976), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [457] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1539), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [433] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [458] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1545), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1871), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [434] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [459] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1633), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -64046,14 +66583,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -64063,13 +66600,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -64087,51 +66624,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [435] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [460] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -64144,14 +66681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -64161,13 +66698,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -64185,76 +66722,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [436] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [461] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1369), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -64265,99 +66802,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [437] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1283), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [462] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1544), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [463] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1883), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -64381,76 +67016,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [438] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [464] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -64461,99 +67096,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1130), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), }, - [439] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [465] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1521), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -64561,165 +67196,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - }, - [440] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1552), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [441] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [466] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -64732,14 +67269,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -64749,13 +67286,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -64773,179 +67310,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [442] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1455), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [443] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1279), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [467] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1246), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -64969,375 +67408,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [444] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [468] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [469] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1510), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [470] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1537), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1859), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [445] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [471] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1535), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [446] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1974), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [472] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1580), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [447] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [473] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -65345,364 +67980,658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [448] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1970), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [474] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(1865), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [449] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [475] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1430), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [476] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [450] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1989), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [477] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [478] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [451] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1988), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [479] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [480] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(1973), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -65712,14 +68641,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -65729,7 +68658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -65737,87 +68666,871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [452] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [481] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1513), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [482] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1133), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4236), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4236), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4239), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1133), + [sym_subscript_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4236), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1133), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(350), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + }, + [483] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1241), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [484] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [485] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1582), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), + }, + [486] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1118), + [sym_expression] = STATE(1476), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4223), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4223), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4221), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2367), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4223), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1118), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(469), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_namespace] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1014), + [anon_sym_delete] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(992), + [anon_sym_readonly] = ACTIONS(992), + [anon_sym_get] = ACTIONS(992), + [anon_sym_set] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_override] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_any] = ACTIONS(992), + [anon_sym_number] = ACTIONS(992), + [anon_sym_boolean] = ACTIONS(992), + [anon_sym_string] = ACTIONS(992), + [anon_sym_symbol] = ACTIONS(992), + }, + [487] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [488] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1533), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [489] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -65827,13 +69540,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -65851,51 +69564,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [453] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [490] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1657), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -65908,14 +69621,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -65925,13 +69638,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -65949,272 +69662,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [454] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1987), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), - }, - [455] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1985), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), - }, - [456] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1468), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [491] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1755), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -66225,99 +69742,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [457] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1913), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [492] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1531), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -66325,165 +69842,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [458] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [493] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1245), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [459] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [494] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -66496,14 +70013,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -66513,13 +70030,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -66537,1159 +70054,865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [460] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1983), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [495] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1628), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [461] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [496] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1244), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [462] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1428), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [463] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [464] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [465] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1920), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [497] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1243), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(754), + [anon_sym_type] = ACTIONS(754), + [anon_sym_namespace] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1120), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(754), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [anon_sym_declare] = ACTIONS(754), + [anon_sym_public] = ACTIONS(754), + [anon_sym_private] = ACTIONS(754), + [anon_sym_protected] = ACTIONS(754), + [anon_sym_override] = ACTIONS(754), + [anon_sym_module] = ACTIONS(754), + [anon_sym_any] = ACTIONS(754), + [anon_sym_number] = ACTIONS(754), + [anon_sym_boolean] = ACTIONS(754), + [anon_sym_string] = ACTIONS(754), + [anon_sym_symbol] = ACTIONS(754), }, - [466] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), + [498] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1525), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1857), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [467] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [499] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [468] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [500] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1679), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [469] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [501] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1684), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(1855), + [sym_number] = ACTIONS(89), [sym_this] = ACTIONS(91), [sym_super] = ACTIONS(91), [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [470] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1961), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [502] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [471] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [503] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1242), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1871), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -67713,76 +70936,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [472] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1153), - [sym_expression] = STATE(1609), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4025), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4025), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4023), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2396), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4025), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(438), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1144), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_type] = ACTIONS(1022), - [anon_sym_namespace] = ACTIONS(1024), + [504] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1527), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), + [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(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [505] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1046), - [anon_sym_delete] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67793,94 +71114,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(1022), - [anon_sym_set] = ACTIONS(1022), - [anon_sym_declare] = ACTIONS(1022), - [anon_sym_public] = ACTIONS(1022), - [anon_sym_private] = ACTIONS(1022), - [anon_sym_protected] = ACTIONS(1022), - [anon_sym_override] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [473] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1484), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), + [506] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67891,94 +71212,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [474] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1471), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [507] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -67989,192 +71310,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [475] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1702), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1090), - [anon_sym_delete] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - }, - [476] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1509), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [508] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -68185,197 +71408,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [477] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1993), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [509] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1729), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [478] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1596), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [510] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -68399,179 +71622,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [479] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1857), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [511] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_override] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_any] = ACTIONS(1068), + [anon_sym_number] = ACTIONS(1068), + [anon_sym_boolean] = ACTIONS(1068), + [anon_sym_string] = ACTIONS(1068), + [anon_sym_symbol] = ACTIONS(1068), }, - [480] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [512] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1096), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4041), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4041), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4128), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1096), + [sym_subscript_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2394), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4041), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1096), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(370), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1102), [anon_sym_export] = ACTIONS(754), [anon_sym_type] = ACTIONS(754), [anon_sym_namespace] = ACTIONS(756), [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), + [anon_sym_await] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1873), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -68595,152 +71818,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(754), [anon_sym_symbol] = ACTIONS(754), }, - [481] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(171), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(136), - [anon_sym_yield] = ACTIONS(138), - [anon_sym_LBRACK] = ACTIONS(1166), + [513] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1690), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(167), - [anon_sym_void] = ACTIONS(171), - [anon_sym_delete] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [482] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1026), - [sym_expression] = STATE(2005), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4202), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4202), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3976), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2371), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4202), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1026), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [514] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_this] = ACTIONS(91), + [sym_super] = ACTIONS(91), + [sym_true] = ACTIONS(91), + [sym_false] = ACTIONS(91), + [sym_null] = ACTIONS(91), + [sym_undefined] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), + }, + [515] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1035), + [sym_expression] = STATE(2016), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4127), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4127), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4042), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1035), + [sym_subscript_expression] = STATE(1035), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2386), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4127), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1035), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(402), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_namespace] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(1164), [anon_sym_typeof] = ACTIONS(171), [anon_sym_import] = ACTIONS(129), @@ -68750,14 +72071,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(138), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1010), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(171), [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(167), [anon_sym_void] = ACTIONS(171), [anon_sym_delete] = ACTIONS(171), @@ -68767,7 +72088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -68775,190 +72096,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1176), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_readonly] = ACTIONS(1004), - [anon_sym_get] = ACTIONS(1004), - [anon_sym_set] = ACTIONS(1004), - [anon_sym_declare] = ACTIONS(1004), - [anon_sym_public] = ACTIONS(1004), - [anon_sym_private] = ACTIONS(1004), - [anon_sym_protected] = ACTIONS(1004), - [anon_sym_override] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [483] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1443), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), + [516] = { + [sym_import] = STATE(1953), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1615), + [sym_primary_expression] = STATE(1752), + [sym_yield_expression] = STATE(1943), + [sym_object] = STATE(1953), + [sym_object_pattern] = STATE(4053), + [sym_array] = STATE(1953), + [sym_array_pattern] = STATE(4053), + [sym_glimmer_template] = STATE(1943), + [sym_glimmer_opening_tag] = STATE(3400), + [sym_class] = STATE(1953), + [sym_function] = STATE(1953), + [sym_generator_function] = STATE(1953), + [sym_arrow_function] = STATE(1953), + [sym__call_signature] = STATE(4051), + [sym_call_expression] = STATE(1953), + [sym_new_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1943), + [sym__augmented_assignment_lhs] = STATE(2382), + [sym_augmented_assignment_expression] = STATE(1943), + [sym__destructuring_pattern] = STATE(4053), + [sym_ternary_expression] = STATE(1943), + [sym_binary_expression] = STATE(1943), + [sym_unary_expression] = STATE(1943), + [sym_update_expression] = STATE(1943), + [sym_string] = STATE(1953), + [sym_template_string] = STATE(1953), + [sym_regex] = STATE(1953), + [sym_meta_property] = STATE(1953), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1165), + [sym_type_assertion] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_satisfies_expression] = STATE(1943), + [sym_internal_module] = STATE(1943), + [sym_type_arguments] = STATE(477), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3369), + [sym_identifier] = ACTIONS(1136), + [anon_sym_export] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(900), [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(922), + [anon_sym_import] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(906), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), + [anon_sym_class] = ACTIONS(870), [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [484] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1449), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_void] = ACTIONS(922), + [anon_sym_delete] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -68969,69 +72192,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(91), [sym_false] = ACTIONS(91), [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [sym_undefined] = ACTIONS(1142), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(898), + [anon_sym_readonly] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), + [anon_sym_declare] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_any] = ACTIONS(898), + [anon_sym_number] = ACTIONS(898), + [anon_sym_boolean] = ACTIONS(898), + [anon_sym_string] = ACTIONS(898), + [anon_sym_symbol] = ACTIONS(898), }, - [485] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [517] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1972), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -69044,14 +72267,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -69061,13 +72284,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(1857), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -69085,1325 +72308,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [486] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [487] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1131), - [sym_expression] = STATE(1480), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4215), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4215), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4219), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1131), - [sym_subscript_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2373), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4215), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1131), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(474), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(908), - [anon_sym_type] = ACTIONS(908), - [anon_sym_namespace] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(908), - [anon_sym_readonly] = ACTIONS(908), - [anon_sym_get] = ACTIONS(908), - [anon_sym_set] = ACTIONS(908), - [anon_sym_declare] = ACTIONS(908), - [anon_sym_public] = ACTIONS(908), - [anon_sym_private] = ACTIONS(908), - [anon_sym_protected] = ACTIONS(908), - [anon_sym_override] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_any] = ACTIONS(908), - [anon_sym_number] = ACTIONS(908), - [anon_sym_boolean] = ACTIONS(908), - [anon_sym_string] = ACTIONS(908), - [anon_sym_symbol] = ACTIONS(908), - }, - [488] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1381), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [489] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1391), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), + [518] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [490] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1949), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), + [519] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1528), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [491] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [492] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [493] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1597), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [494] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1502), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3177), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3177), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1113), - [sym_subscript_expression] = STATE(1113), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3177), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1113), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(988), - [anon_sym_type] = ACTIONS(988), - [anon_sym_namespace] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(994), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(988), - [anon_sym_readonly] = ACTIONS(988), - [anon_sym_get] = ACTIONS(988), - [anon_sym_set] = ACTIONS(988), - [anon_sym_declare] = ACTIONS(988), - [anon_sym_public] = ACTIONS(988), - [anon_sym_private] = ACTIONS(988), - [anon_sym_protected] = ACTIONS(988), - [anon_sym_override] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_any] = ACTIONS(988), - [anon_sym_number] = ACTIONS(988), - [anon_sym_boolean] = ACTIONS(988), - [anon_sym_string] = ACTIONS(988), - [anon_sym_symbol] = ACTIONS(988), - }, - [495] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [496] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1419), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [497] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [498] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [499] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1150), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4142), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4142), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3926), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1150), - [sym_subscript_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2383), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4142), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1150), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(459), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1152), + [520] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(3952), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2390), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1144), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), @@ -70416,14 +72561,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1080), [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), + [anon_sym_class] = ACTIONS(142), [anon_sym_async] = ACTIONS(1082), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1148), [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(1076), [anon_sym_void] = ACTIONS(1090), [anon_sym_delete] = ACTIONS(1090), @@ -70433,13 +72578,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1150), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -70457,246 +72602,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [500] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1387), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [501] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1408), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [502] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1867), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), + [521] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1167), + [sym_expression] = STATE(1928), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4008), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2383), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4245), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1167), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(412), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), [sym_identifier] = ACTIONS(1160), [anon_sym_export] = ACTIONS(774), [anon_sym_type] = ACTIONS(774), @@ -70710,14 +72659,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(1166), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(790), + [anon_sym_function] = ACTIONS(146), [anon_sym_new] = ACTIONS(1168), [anon_sym_PLUS] = ACTIONS(800), [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(782), [anon_sym_void] = ACTIONS(800), [anon_sym_delete] = ACTIONS(800), @@ -70727,7 +72676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), + [sym_number] = ACTIONS(622), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -70751,1831 +72700,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(774), [anon_sym_symbol] = ACTIONS(774), }, - [503] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1423), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), + [522] = { + [sym_import] = STATE(1429), + [sym_parenthesized_expression] = STATE(1136), + [sym_expression] = STATE(1562), + [sym_primary_expression] = STATE(1270), + [sym_yield_expression] = STATE(1427), + [sym_object] = STATE(1429), + [sym_object_pattern] = STATE(4213), + [sym_array] = STATE(1429), + [sym_array_pattern] = STATE(4213), + [sym_glimmer_template] = STATE(1427), + [sym_glimmer_opening_tag] = STATE(3351), + [sym_class] = STATE(1429), + [sym_function] = STATE(1429), + [sym_generator_function] = STATE(1429), + [sym_arrow_function] = STATE(1429), + [sym__call_signature] = STATE(4168), + [sym_call_expression] = STATE(1429), + [sym_new_expression] = STATE(1427), + [sym_await_expression] = STATE(1427), + [sym_member_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1427), + [sym__augmented_assignment_lhs] = STATE(2370), + [sym_augmented_assignment_expression] = STATE(1427), + [sym__destructuring_pattern] = STATE(4213), + [sym_ternary_expression] = STATE(1427), + [sym_binary_expression] = STATE(1427), + [sym_unary_expression] = STATE(1427), + [sym_update_expression] = STATE(1427), + [sym_string] = STATE(1429), + [sym_template_string] = STATE(1429), + [sym_regex] = STATE(1429), + [sym_meta_property] = STATE(1429), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2887), + [sym_non_null_expression] = STATE(1136), + [sym_type_assertion] = STATE(1427), + [sym_as_expression] = STATE(1427), + [sym_satisfies_expression] = STATE(1427), + [sym_internal_module] = STATE(1427), + [sym_type_arguments] = STATE(358), + [sym_type_parameters] = STATE(3731), + [aux_sym_export_statement_repeat1] = STATE(3326), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_class] = ACTIONS(142), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_number] = ACTIONS(622), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [504] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1461), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [523] = { + [sym_declaration] = STATE(694), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_EQ] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [505] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1474), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [524] = { + [sym_declaration] = STATE(694), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_EQ] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [506] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [507] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1481), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [508] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1522), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [509] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1489), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [510] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1429), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [511] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [512] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [513] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1496), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [514] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1501), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [515] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1460), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [516] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1905), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [517] = { - [sym_import] = STATE(1898), - [sym_parenthesized_expression] = STATE(1122), - [sym_expression] = STATE(1436), - [sym_primary_expression] = STATE(1600), - [sym_yield_expression] = STATE(1951), - [sym_object] = STATE(1898), - [sym_object_pattern] = STATE(4194), - [sym_array] = STATE(1898), - [sym_array_pattern] = STATE(4194), - [sym_glimmer_template] = STATE(1951), - [sym_glimmer_opening_tag] = STATE(3325), - [sym_class] = STATE(1898), - [sym_function] = STATE(1898), - [sym_generator_function] = STATE(1898), - [sym_arrow_function] = STATE(1898), - [sym__call_signature] = STATE(4192), - [sym_call_expression] = STATE(1898), - [sym_new_expression] = STATE(1951), - [sym_await_expression] = STATE(1951), - [sym_member_expression] = STATE(1122), - [sym_subscript_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1951), - [sym__augmented_assignment_lhs] = STATE(2387), - [sym_augmented_assignment_expression] = STATE(1951), - [sym__destructuring_pattern] = STATE(4194), - [sym_ternary_expression] = STATE(1951), - [sym_binary_expression] = STATE(1951), - [sym_unary_expression] = STATE(1951), - [sym_update_expression] = STATE(1951), - [sym_string] = STATE(1898), - [sym_template_string] = STATE(1898), - [sym_regex] = STATE(1898), - [sym_meta_property] = STATE(1898), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1122), - [sym_type_assertion] = STATE(1951), - [sym_as_expression] = STATE(1951), - [sym_satisfies_expression] = STATE(1951), - [sym_internal_module] = STATE(1951), - [sym_type_arguments] = STATE(488), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(852), - [anon_sym_type] = ACTIONS(852), - [anon_sym_namespace] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(866), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(878), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(862), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_this] = ACTIONS(91), - [sym_super] = ACTIONS(91), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_undefined] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(852), - [anon_sym_readonly] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [anon_sym_declare] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_protected] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_module] = ACTIONS(852), - [anon_sym_any] = ACTIONS(852), - [anon_sym_number] = ACTIONS(852), - [anon_sym_boolean] = ACTIONS(852), - [anon_sym_string] = ACTIONS(852), - [anon_sym_symbol] = ACTIONS(852), - }, - [518] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1095), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(3975), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(3975), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4204), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1095), - [sym_subscript_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(3975), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1095), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_namespace] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(614), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_void] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(614), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(754), - [anon_sym_readonly] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [anon_sym_declare] = ACTIONS(754), - [anon_sym_public] = ACTIONS(754), - [anon_sym_private] = ACTIONS(754), - [anon_sym_protected] = ACTIONS(754), - [anon_sym_override] = ACTIONS(754), - [anon_sym_module] = ACTIONS(754), - [anon_sym_any] = ACTIONS(754), - [anon_sym_number] = ACTIONS(754), - [anon_sym_boolean] = ACTIONS(754), - [anon_sym_string] = ACTIONS(754), - [anon_sym_symbol] = ACTIONS(754), - }, - [519] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1138), - [sym_expression] = STATE(1528), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4185), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4185), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(4140), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1138), - [sym_subscript_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2390), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4185), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1138), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(358), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1136), - [anon_sym_export] = ACTIONS(952), - [anon_sym_type] = ACTIONS(952), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_typeof] = ACTIONS(974), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_void] = ACTIONS(974), - [anon_sym_delete] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(952), - [anon_sym_readonly] = ACTIONS(952), - [anon_sym_get] = ACTIONS(952), - [anon_sym_set] = ACTIONS(952), - [anon_sym_declare] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_protected] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_any] = ACTIONS(952), - [anon_sym_number] = ACTIONS(952), - [anon_sym_boolean] = ACTIONS(952), - [anon_sym_string] = ACTIONS(952), - [anon_sym_symbol] = ACTIONS(952), - }, - [520] = { - [sym_import] = STATE(1397), - [sym_parenthesized_expression] = STATE(1166), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1296), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1397), - [sym_object_pattern] = STATE(4216), - [sym_array] = STATE(1397), - [sym_array_pattern] = STATE(4216), - [sym_glimmer_template] = STATE(1399), - [sym_glimmer_opening_tag] = STATE(3387), - [sym_class] = STATE(1397), - [sym_function] = STATE(1397), - [sym_generator_function] = STATE(1397), - [sym_arrow_function] = STATE(1397), - [sym__call_signature] = STATE(3981), - [sym_call_expression] = STATE(1397), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1399), - [sym__augmented_assignment_lhs] = STATE(2366), - [sym_augmented_assignment_expression] = STATE(1399), - [sym__destructuring_pattern] = STATE(4216), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_string] = STATE(1397), - [sym_template_string] = STATE(1397), - [sym_regex] = STATE(1397), - [sym_meta_property] = STATE(1397), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2956), - [sym_non_null_expression] = STATE(1166), - [sym_type_assertion] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_satisfies_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_arguments] = STATE(416), - [sym_type_parameters] = STATE(3884), - [aux_sym_export_statement_repeat1] = STATE(3311), - [sym_identifier] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(774), - [anon_sym_type] = ACTIONS(774), - [anon_sym_namespace] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_class] = ACTIONS(145), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(149), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_number] = ACTIONS(566), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(774), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_protected] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_module] = ACTIONS(774), - [anon_sym_any] = ACTIONS(774), - [anon_sym_number] = ACTIONS(774), - [anon_sym_boolean] = ACTIONS(774), - [anon_sym_string] = ACTIONS(774), - [anon_sym_symbol] = ACTIONS(774), - }, - [521] = { - [sym_declaration] = STATE(678), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), + [525] = { + [sym_declaration] = STATE(694), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -72586,93 +73061,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [522] = { - [sym_declaration] = STATE(678), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [526] = { + [sym_namespace_export] = STATE(3742), + [sym_export_clause] = STATE(3324), + [sym_declaration] = STATE(642), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -72683,93 +73159,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [523] = { - [sym_declaration] = STATE(678), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [527] = { + [sym_namespace_export] = STATE(3742), + [sym_export_clause] = STATE(3324), + [sym_declaration] = STATE(642), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -72780,271 +73255,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [524] = { - [sym_namespace_export] = STATE(3846), - [sym_export_clause] = STATE(3333), - [sym_declaration] = STATE(737), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1716), + [528] = { + [sym__call_signature] = STATE(4140), + [sym_string] = STATE(3030), + [sym_formal_parameters] = STATE(2887), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [sym_type_parameters] = STATE(3731), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1901), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1903), [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1720), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(1908), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), - }, - [525] = { - [sym_namespace_export] = STATE(3846), - [sym_export_clause] = STATE(3333), - [sym_declaration] = STATE(737), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1720), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), - }, - [526] = { - [sym__call_signature] = STATE(4121), - [sym_string] = STATE(2948), - [sym_formal_parameters] = STATE(2956), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [sym_type_parameters] = STATE(3884), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1915), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73055,91 +73336,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_override] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_any] = ACTIONS(1897), - [anon_sym_number] = ACTIONS(1897), - [anon_sym_boolean] = ACTIONS(1897), - [anon_sym_string] = ACTIONS(1897), - [anon_sym_symbol] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_get] = ACTIONS(1927), + [anon_sym_set] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_protected] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_any] = ACTIONS(1903), + [anon_sym_number] = ACTIONS(1903), + [anon_sym_boolean] = ACTIONS(1903), + [anon_sym_string] = ACTIONS(1903), + [anon_sym_symbol] = ACTIONS(1903), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [527] = { - [sym__call_signature] = STATE(4121), - [sym_string] = STATE(2948), - [sym_formal_parameters] = STATE(2956), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [sym_type_parameters] = STATE(3884), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1881), + [529] = { + [sym__call_signature] = STATE(4140), + [sym_string] = STATE(3030), + [sym_formal_parameters] = STATE(2887), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [sym_type_parameters] = STATE(3731), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1901), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1908), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1915), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73150,91 +73431,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_override] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_any] = ACTIONS(1897), - [anon_sym_number] = ACTIONS(1897), - [anon_sym_boolean] = ACTIONS(1897), - [anon_sym_string] = ACTIONS(1897), - [anon_sym_symbol] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_get] = ACTIONS(1927), + [anon_sym_set] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_protected] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_any] = ACTIONS(1903), + [anon_sym_number] = ACTIONS(1903), + [anon_sym_boolean] = ACTIONS(1903), + [anon_sym_string] = ACTIONS(1903), + [anon_sym_symbol] = ACTIONS(1903), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [528] = { - [sym__call_signature] = STATE(4121), - [sym_string] = STATE(2948), - [sym_formal_parameters] = STATE(2956), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [sym_type_parameters] = STATE(3884), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1881), + [530] = { + [sym__call_signature] = STATE(4140), + [sym_string] = STATE(3030), + [sym_formal_parameters] = STATE(2887), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [sym_type_parameters] = STATE(3731), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1901), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1908), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1915), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73245,102 +73526,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_override] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_any] = ACTIONS(1897), - [anon_sym_number] = ACTIONS(1897), - [anon_sym_boolean] = ACTIONS(1897), - [anon_sym_string] = ACTIONS(1897), - [anon_sym_symbol] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_get] = ACTIONS(1927), + [anon_sym_set] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_protected] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_any] = ACTIONS(1903), + [anon_sym_number] = ACTIONS(1903), + [anon_sym_boolean] = ACTIONS(1903), + [anon_sym_string] = ACTIONS(1903), + [anon_sym_symbol] = ACTIONS(1903), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [529] = { - [sym_declaration] = STATE(678), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), + [531] = { + [sym_declaration] = STATE(694), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1885), [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73351,89 +73632,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [530] = { - [sym_declaration] = STATE(678), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), + [532] = { + [sym_declaration] = STATE(694), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1885), [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73444,75 +73725,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [531] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [sym_override_modifier] = STATE(2271), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [533] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [sym_override_modifier] = STATE(2269), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1931), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73523,88 +73804,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1933), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [532] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [sym_override_modifier] = STATE(2271), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [534] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [sym_override_modifier] = STATE(2269), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1931), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73615,88 +73896,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1933), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [533] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [sym_override_modifier] = STATE(2271), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [535] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [sym_override_modifier] = STATE(2269), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1931), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73707,87 +73988,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1933), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [534] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [536] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1931), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73798,87 +74079,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [535] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), + [537] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1929), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73889,100 +74170,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), + [anon_sym_get] = ACTIONS(1929), + [anon_sym_set] = ACTIONS(1929), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [536] = { - [sym_declaration] = STATE(678), - [sym_variable_declaration] = STATE(669), - [sym_lexical_declaration] = STATE(669), - [sym_class_declaration] = STATE(669), - [sym_function_declaration] = STATE(669), - [sym_generator_function_declaration] = STATE(669), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(669), - [sym_ambient_declaration] = STATE(669), - [sym_abstract_class_declaration] = STATE(669), - [sym_module] = STATE(669), - [sym_internal_module] = STATE(738), - [sym_import_alias] = STATE(669), - [sym_interface_declaration] = STATE(669), - [sym_enum_declaration] = STATE(669), - [sym_type_alias_declaration] = STATE(669), - [aux_sym_export_statement_repeat1] = STATE(3192), + [538] = { + [sym_declaration] = STATE(694), + [sym_variable_declaration] = STATE(657), + [sym_lexical_declaration] = STATE(657), + [sym_class_declaration] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_generator_function_declaration] = STATE(657), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(657), + [sym_ambient_declaration] = STATE(657), + [sym_abstract_class_declaration] = STATE(657), + [sym_module] = STATE(657), + [sym_internal_module] = STATE(643), + [sym_import_alias] = STATE(657), + [sym_interface_declaration] = STATE(657), + [sym_enum_declaration] = STATE(657), + [sym_type_alias_declaration] = STATE(657), + [aux_sym_export_statement_repeat1] = STATE(3056), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1885), [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1750), [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -73993,178 +74274,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), - }, - [537] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_typeof] = ACTIONS(1477), - [anon_sym_import] = ACTIONS(1477), - [anon_sym_from] = ACTIONS(1477), - [anon_sym_var] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_debugger] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_throw] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_COLON] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_RBRACK] = ACTIONS(1475), - [anon_sym_LTtemplate_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_class] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_function] = ACTIONS(1477), - [anon_sym_EQ_GT] = ACTIONS(1475), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_void] = ACTIONS(1477), - [anon_sym_delete] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1475), - [sym_number] = ACTIONS(1475), - [sym_this] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [sym_null] = ACTIONS(1477), - [sym_undefined] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_readonly] = ACTIONS(1477), - [anon_sym_get] = ACTIONS(1477), - [anon_sym_set] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1477), - [anon_sym_public] = ACTIONS(1477), - [anon_sym_private] = ACTIONS(1477), - [anon_sym_protected] = ACTIONS(1477), - [anon_sym_override] = ACTIONS(1477), - [anon_sym_module] = ACTIONS(1477), - [anon_sym_any] = ACTIONS(1477), - [anon_sym_number] = ACTIONS(1477), - [anon_sym_boolean] = ACTIONS(1477), - [anon_sym_string] = ACTIONS(1477), - [anon_sym_symbol] = ACTIONS(1477), - [anon_sym_abstract] = ACTIONS(1477), - [anon_sym_extends] = ACTIONS(1477), - [anon_sym_interface] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [538] = { - [sym_declaration] = STATE(3170), - [sym_variable_declaration] = STATE(3095), - [sym_lexical_declaration] = STATE(3095), - [sym_class_declaration] = STATE(3095), - [sym_function_declaration] = STATE(3095), - [sym_generator_function_declaration] = STATE(3095), - [sym_decorator] = STATE(1155), - [sym_function_signature] = STATE(3095), - [sym_ambient_declaration] = STATE(3095), - [sym_abstract_class_declaration] = STATE(3095), - [sym_module] = STATE(3095), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(3095), - [sym_interface_declaration] = STATE(3095), - [sym_enum_declaration] = STATE(3095), - [sym_type_alias_declaration] = STATE(3095), - [aux_sym_export_statement_repeat1] = STATE(3121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1933), - [anon_sym_EQ] = ACTIONS(1263), + [539] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1935), - [anon_sym_import] = ACTIONS(1937), - [anon_sym_var] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1943), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_class] = ACTIONS(1945), - [anon_sym_async] = ACTIONS(1947), - [anon_sym_function] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74175,74 +74352,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(1951), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_abstract] = ACTIONS(1955), - [anon_sym_satisfies] = ACTIONS(153), - [anon_sym_global] = ACTIONS(1957), - [anon_sym_interface] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1961), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [539] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [540] = { + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1929), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74253,87 +74443,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), [anon_sym_get] = ACTIONS(1929), [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [540] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), + [541] = { + [sym_declaration] = STATE(3206), + [sym_variable_declaration] = STATE(3223), + [sym_lexical_declaration] = STATE(3223), + [sym_class_declaration] = STATE(3223), + [sym_function_declaration] = STATE(3223), + [sym_generator_function_declaration] = STATE(3223), + [sym_decorator] = STATE(1163), + [sym_function_signature] = STATE(3223), + [sym_ambient_declaration] = STATE(3223), + [sym_abstract_class_declaration] = STATE(3223), + [sym_module] = STATE(3223), + [sym_internal_module] = STATE(3217), + [sym_import_alias] = STATE(3223), + [sym_interface_declaration] = STATE(3223), + [sym_enum_declaration] = STATE(3223), + [sym_type_alias_declaration] = STATE(3223), + [aux_sym_export_statement_repeat1] = STATE(3148), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1939), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1941), + [anon_sym_import] = ACTIONS(1943), + [anon_sym_var] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1949), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1951), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_function] = ACTIONS(1955), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74344,178 +74547,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_instanceof] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), - }, - [541] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1417), - [anon_sym_namespace] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1417), - [anon_sym_import] = ACTIONS(1417), - [anon_sym_from] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_await] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_with] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_debugger] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_throw] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1417), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_RBRACK] = ACTIONS(1415), - [anon_sym_LTtemplate_GT] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1417), - [anon_sym_class] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(1417), - [anon_sym_EQ_GT] = ACTIONS(1415), - [anon_sym_new] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_void] = ACTIONS(1417), - [anon_sym_delete] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1415), - [sym_number] = ACTIONS(1415), - [sym_this] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_true] = ACTIONS(1417), - [sym_false] = ACTIONS(1417), - [sym_null] = ACTIONS(1417), - [sym_undefined] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_readonly] = ACTIONS(1417), - [anon_sym_get] = ACTIONS(1417), - [anon_sym_set] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1417), - [anon_sym_public] = ACTIONS(1417), - [anon_sym_private] = ACTIONS(1417), - [anon_sym_protected] = ACTIONS(1417), - [anon_sym_override] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_number] = ACTIONS(1417), - [anon_sym_boolean] = ACTIONS(1417), - [anon_sym_string] = ACTIONS(1417), - [anon_sym_symbol] = ACTIONS(1417), - [anon_sym_abstract] = ACTIONS(1417), - [anon_sym_extends] = ACTIONS(1417), - [anon_sym_interface] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1959), + [anon_sym_abstract] = ACTIONS(1961), + [anon_sym_satisfies] = ACTIONS(150), + [anon_sym_global] = ACTIONS(1963), + [anon_sym_interface] = ACTIONS(1965), + [anon_sym_enum] = ACTIONS(1967), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [542] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1931), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74526,87 +74625,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [543] = { - [sym_string] = STATE(2948), - [sym__property_name] = STATE(2948), - [sym_computed_property_name] = STATE(2948), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), + [sym_string] = STATE(3030), + [sym__property_name] = STATE(3030), + [sym_computed_property_name] = STATE(3030), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1929), + [anon_sym_export] = ACTIONS(1929), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1929), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -74617,534 +74716,716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), + [anon_sym_get] = ACTIONS(1929), + [anon_sym_set] = ACTIONS(1929), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_private] = ACTIONS(1929), + [anon_sym_protected] = ACTIONS(1929), + [anon_sym_override] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1929), + [anon_sym_number] = ACTIONS(1929), + [anon_sym_boolean] = ACTIONS(1929), + [anon_sym_string] = ACTIONS(1929), + [anon_sym_symbol] = ACTIONS(1929), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [544] = { - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_default] = ACTIONS(1965), - [anon_sym_type] = ACTIONS(1965), - [anon_sym_EQ] = ACTIONS(1965), - [anon_sym_namespace] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_typeof] = ACTIONS(1965), - [anon_sym_import] = ACTIONS(1965), - [anon_sym_var] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_switch] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_with] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_debugger] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_throw] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1963), - [anon_sym_case] = ACTIONS(1965), - [anon_sym_yield] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(1963), - [anon_sym_LTtemplate_GT] = ACTIONS(1963), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_class] = ACTIONS(1965), - [anon_sym_async] = ACTIONS(1965), - [anon_sym_function] = ACTIONS(1965), - [anon_sym_EQ_GT] = ACTIONS(1963), - [anon_sym_new] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_TILDE] = ACTIONS(1963), - [anon_sym_void] = ACTIONS(1965), - [anon_sym_delete] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1963), - [anon_sym_SQUOTE] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1963), - [sym_number] = ACTIONS(1963), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(1965), - [sym_true] = ACTIONS(1965), - [sym_false] = ACTIONS(1965), - [sym_null] = ACTIONS(1965), - [sym_undefined] = ACTIONS(1965), - [anon_sym_AT] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1965), - [anon_sym_readonly] = ACTIONS(1965), - [anon_sym_get] = ACTIONS(1965), - [anon_sym_set] = ACTIONS(1965), - [anon_sym_QMARK] = ACTIONS(1963), - [anon_sym_declare] = ACTIONS(1965), - [anon_sym_public] = ACTIONS(1965), - [anon_sym_private] = ACTIONS(1965), - [anon_sym_protected] = ACTIONS(1965), - [anon_sym_override] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_any] = ACTIONS(1965), - [anon_sym_number] = ACTIONS(1965), - [anon_sym_boolean] = ACTIONS(1965), - [anon_sym_string] = ACTIONS(1965), - [anon_sym_symbol] = ACTIONS(1965), - [anon_sym_abstract] = ACTIONS(1965), - [anon_sym_extends] = ACTIONS(1965), - [anon_sym_interface] = ACTIONS(1965), - [anon_sym_enum] = ACTIONS(1965), + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_namespace] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1419), + [anon_sym_import] = ACTIONS(1419), + [anon_sym_from] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_await] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_with] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_debugger] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_throw] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_COLON] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACK] = ACTIONS(1417), + [anon_sym_LTtemplate_GT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_class] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(1419), + [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_delete] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_number] = ACTIONS(1417), + [sym_this] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [sym_null] = ACTIONS(1419), + [sym_undefined] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_readonly] = ACTIONS(1419), + [anon_sym_get] = ACTIONS(1419), + [anon_sym_set] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_declare] = ACTIONS(1419), + [anon_sym_public] = ACTIONS(1419), + [anon_sym_private] = ACTIONS(1419), + [anon_sym_protected] = ACTIONS(1419), + [anon_sym_override] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_number] = ACTIONS(1419), + [anon_sym_boolean] = ACTIONS(1419), + [anon_sym_string] = ACTIONS(1419), + [anon_sym_symbol] = ACTIONS(1419), + [anon_sym_abstract] = ACTIONS(1419), + [anon_sym_extends] = ACTIONS(1419), + [anon_sym_interface] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), }, [545] = { - [ts_builtin_sym_end] = ACTIONS(1967), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_default] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(1969), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_typeof] = ACTIONS(1969), - [anon_sym_import] = ACTIONS(1969), - [anon_sym_var] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_switch] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_await] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_with] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_debugger] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_throw] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(1967), - [anon_sym_case] = ACTIONS(1969), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_RBRACK] = ACTIONS(1967), - [anon_sym_LTtemplate_GT] = ACTIONS(1967), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1967), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_class] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_function] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1967), - [anon_sym_void] = ACTIONS(1969), - [anon_sym_delete] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1967), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1967), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1967), - [sym_number] = ACTIONS(1967), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(1969), - [sym_true] = ACTIONS(1969), - [sym_false] = ACTIONS(1969), - [sym_null] = ACTIONS(1969), - [sym_undefined] = ACTIONS(1969), - [anon_sym_AT] = ACTIONS(1967), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(1969), - [anon_sym_set] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(1967), - [anon_sym_declare] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_private] = ACTIONS(1969), - [anon_sym_protected] = ACTIONS(1969), - [anon_sym_override] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_any] = ACTIONS(1969), - [anon_sym_number] = ACTIONS(1969), - [anon_sym_boolean] = ACTIONS(1969), - [anon_sym_string] = ACTIONS(1969), - [anon_sym_symbol] = ACTIONS(1969), - [anon_sym_abstract] = ACTIONS(1969), - [anon_sym_extends] = ACTIONS(1969), - [anon_sym_interface] = ACTIONS(1969), - [anon_sym_enum] = ACTIONS(1969), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1529), + [anon_sym_import] = ACTIONS(1529), + [anon_sym_from] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_with] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_debugger] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_throw] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_LTtemplate_GT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_function] = ACTIONS(1529), + [anon_sym_EQ_GT] = ACTIONS(1527), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_delete] = ACTIONS(1529), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_number] = ACTIONS(1527), + [sym_this] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_true] = ACTIONS(1529), + [sym_false] = ACTIONS(1529), + [sym_null] = ACTIONS(1529), + [sym_undefined] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(1529), + [anon_sym_get] = ACTIONS(1529), + [anon_sym_set] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1529), + [anon_sym_public] = ACTIONS(1529), + [anon_sym_private] = ACTIONS(1529), + [anon_sym_protected] = ACTIONS(1529), + [anon_sym_override] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_number] = ACTIONS(1529), + [anon_sym_boolean] = ACTIONS(1529), + [anon_sym_string] = ACTIONS(1529), + [anon_sym_symbol] = ACTIONS(1529), + [anon_sym_abstract] = ACTIONS(1529), + [anon_sym_extends] = ACTIONS(1529), + [anon_sym_interface] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), }, [546] = { - [ts_builtin_sym_end] = ACTIONS(1971), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_default] = ACTIONS(1973), - [anon_sym_type] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(1973), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_typeof] = ACTIONS(1973), - [anon_sym_import] = ACTIONS(1973), - [anon_sym_var] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_else] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_switch] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_await] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_with] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_debugger] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_case] = ACTIONS(1973), - [anon_sym_yield] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_LTtemplate_GT] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1973), - [anon_sym_class] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_function] = ACTIONS(1973), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_void] = ACTIONS(1973), - [anon_sym_delete] = ACTIONS(1973), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1971), - [sym_number] = ACTIONS(1971), - [sym_this] = ACTIONS(1973), - [sym_super] = ACTIONS(1973), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_undefined] = ACTIONS(1973), - [anon_sym_AT] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1971), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_abstract] = ACTIONS(1973), - [anon_sym_extends] = ACTIONS(1973), - [anon_sym_interface] = ACTIONS(1973), - [anon_sym_enum] = ACTIONS(1973), + [ts_builtin_sym_end] = ACTIONS(1969), + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_default] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_namespace] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_typeof] = ACTIONS(1971), + [anon_sym_import] = ACTIONS(1971), + [anon_sym_var] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_switch] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1969), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_with] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_debugger] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_throw] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_COLON] = ACTIONS(1969), + [anon_sym_case] = ACTIONS(1971), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_LTtemplate_GT] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1969), + [anon_sym_class] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_function] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_void] = ACTIONS(1971), + [anon_sym_delete] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1969), + [sym_number] = ACTIONS(1969), + [sym_this] = ACTIONS(1971), + [sym_super] = ACTIONS(1971), + [sym_true] = ACTIONS(1971), + [sym_false] = ACTIONS(1971), + [sym_null] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_get] = ACTIONS(1971), + [anon_sym_set] = ACTIONS(1971), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_declare] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_private] = ACTIONS(1971), + [anon_sym_protected] = ACTIONS(1971), + [anon_sym_override] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_any] = ACTIONS(1971), + [anon_sym_number] = ACTIONS(1971), + [anon_sym_boolean] = ACTIONS(1971), + [anon_sym_string] = ACTIONS(1971), + [anon_sym_symbol] = ACTIONS(1971), + [anon_sym_abstract] = ACTIONS(1971), + [anon_sym_extends] = ACTIONS(1971), + [anon_sym_interface] = ACTIONS(1971), + [anon_sym_enum] = ACTIONS(1971), }, [547] = { - [ts_builtin_sym_end] = ACTIONS(1975), - [sym_identifier] = ACTIONS(1977), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_default] = ACTIONS(1977), - [anon_sym_type] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_namespace] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_typeof] = ACTIONS(1977), - [anon_sym_import] = ACTIONS(1977), - [anon_sym_var] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_switch] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_await] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_with] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_debugger] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_throw] = ACTIONS(1977), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_COLON] = ACTIONS(1975), - [anon_sym_case] = ACTIONS(1977), - [anon_sym_yield] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(1975), - [anon_sym_LTtemplate_GT] = ACTIONS(1975), - [anon_sym_LT] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1977), - [anon_sym_class] = ACTIONS(1977), - [anon_sym_async] = ACTIONS(1977), - [anon_sym_function] = ACTIONS(1977), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1975), - [anon_sym_void] = ACTIONS(1977), - [anon_sym_delete] = ACTIONS(1977), - [anon_sym_PLUS_PLUS] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1975), - [sym_this] = ACTIONS(1977), - [sym_super] = ACTIONS(1977), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_AT] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1977), - [anon_sym_get] = ACTIONS(1977), - [anon_sym_set] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_declare] = ACTIONS(1977), - [anon_sym_public] = ACTIONS(1977), - [anon_sym_private] = ACTIONS(1977), - [anon_sym_protected] = ACTIONS(1977), - [anon_sym_override] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_any] = ACTIONS(1977), - [anon_sym_number] = ACTIONS(1977), - [anon_sym_boolean] = ACTIONS(1977), - [anon_sym_string] = ACTIONS(1977), - [anon_sym_symbol] = ACTIONS(1977), - [anon_sym_abstract] = ACTIONS(1977), - [anon_sym_extends] = ACTIONS(1977), - [anon_sym_interface] = ACTIONS(1977), - [anon_sym_enum] = ACTIONS(1977), + [ts_builtin_sym_end] = ACTIONS(1973), + [sym_identifier] = ACTIONS(1975), + [anon_sym_export] = ACTIONS(1975), + [anon_sym_default] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_namespace] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_typeof] = ACTIONS(1975), + [anon_sym_import] = ACTIONS(1975), + [anon_sym_var] = ACTIONS(1975), + [anon_sym_let] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_switch] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_do] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1975), + [anon_sym_with] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_debugger] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_throw] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_COLON] = ACTIONS(1973), + [anon_sym_case] = ACTIONS(1975), + [anon_sym_yield] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_RBRACK] = ACTIONS(1973), + [anon_sym_LTtemplate_GT] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_class] = ACTIONS(1975), + [anon_sym_async] = ACTIONS(1975), + [anon_sym_function] = ACTIONS(1975), + [anon_sym_EQ_GT] = ACTIONS(1973), + [anon_sym_new] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1975), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1973), + [sym_number] = ACTIONS(1973), + [sym_this] = ACTIONS(1975), + [sym_super] = ACTIONS(1975), + [sym_true] = ACTIONS(1975), + [sym_false] = ACTIONS(1975), + [sym_null] = ACTIONS(1975), + [sym_undefined] = ACTIONS(1975), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1975), + [anon_sym_readonly] = ACTIONS(1975), + [anon_sym_get] = ACTIONS(1975), + [anon_sym_set] = ACTIONS(1975), + [anon_sym_QMARK] = ACTIONS(1973), + [anon_sym_declare] = ACTIONS(1975), + [anon_sym_public] = ACTIONS(1975), + [anon_sym_private] = ACTIONS(1975), + [anon_sym_protected] = ACTIONS(1975), + [anon_sym_override] = ACTIONS(1975), + [anon_sym_module] = ACTIONS(1975), + [anon_sym_any] = ACTIONS(1975), + [anon_sym_number] = ACTIONS(1975), + [anon_sym_boolean] = ACTIONS(1975), + [anon_sym_string] = ACTIONS(1975), + [anon_sym_symbol] = ACTIONS(1975), + [anon_sym_abstract] = ACTIONS(1975), + [anon_sym_extends] = ACTIONS(1975), + [anon_sym_interface] = ACTIONS(1975), + [anon_sym_enum] = ACTIONS(1975), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(1979), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_default] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_namespace] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_COMMA] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_typeof] = ACTIONS(1981), - [anon_sym_import] = ACTIONS(1981), - [anon_sym_var] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_await] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_debugger] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_throw] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_case] = ACTIONS(1981), - [anon_sym_yield] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_RBRACK] = ACTIONS(1979), - [anon_sym_LTtemplate_GT] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_class] = ACTIONS(1981), - [anon_sym_async] = ACTIONS(1981), - [anon_sym_function] = ACTIONS(1981), - [anon_sym_EQ_GT] = ACTIONS(1979), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_void] = ACTIONS(1981), - [anon_sym_delete] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1979), - [sym_number] = ACTIONS(1979), - [sym_this] = ACTIONS(1981), - [sym_super] = ACTIONS(1981), - [sym_true] = ACTIONS(1981), - [sym_false] = ACTIONS(1981), - [sym_null] = ACTIONS(1981), - [sym_undefined] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_get] = ACTIONS(1981), - [anon_sym_set] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1979), - [anon_sym_declare] = ACTIONS(1981), - [anon_sym_public] = ACTIONS(1981), - [anon_sym_private] = ACTIONS(1981), - [anon_sym_protected] = ACTIONS(1981), - [anon_sym_override] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_any] = ACTIONS(1981), - [anon_sym_number] = ACTIONS(1981), - [anon_sym_boolean] = ACTIONS(1981), - [anon_sym_string] = ACTIONS(1981), - [anon_sym_symbol] = ACTIONS(1981), - [anon_sym_abstract] = ACTIONS(1981), - [anon_sym_extends] = ACTIONS(1981), - [anon_sym_interface] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), + [ts_builtin_sym_end] = ACTIONS(1977), + [sym_identifier] = ACTIONS(1979), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(1979), + [anon_sym_namespace] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(1979), + [anon_sym_import] = ACTIONS(1979), + [anon_sym_var] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_switch] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_do] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [anon_sym_with] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_debugger] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_throw] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_COLON] = ACTIONS(1977), + [anon_sym_case] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_LTtemplate_GT] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1977), + [anon_sym_class] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_function] = ACTIONS(1979), + [anon_sym_EQ_GT] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_void] = ACTIONS(1979), + [anon_sym_delete] = ACTIONS(1979), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_super] = ACTIONS(1979), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1979), + [anon_sym_get] = ACTIONS(1979), + [anon_sym_set] = ACTIONS(1979), + [anon_sym_QMARK] = ACTIONS(1977), + [anon_sym_declare] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1979), + [anon_sym_private] = ACTIONS(1979), + [anon_sym_protected] = ACTIONS(1979), + [anon_sym_override] = ACTIONS(1979), + [anon_sym_module] = ACTIONS(1979), + [anon_sym_any] = ACTIONS(1979), + [anon_sym_number] = ACTIONS(1979), + [anon_sym_boolean] = ACTIONS(1979), + [anon_sym_string] = ACTIONS(1979), + [anon_sym_symbol] = ACTIONS(1979), + [anon_sym_abstract] = ACTIONS(1979), + [anon_sym_extends] = ACTIONS(1979), + [anon_sym_interface] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1979), }, [549] = { - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_identifier] = ACTIONS(1983), + [anon_sym_export] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_namespace] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_COMMA] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_typeof] = ACTIONS(1983), + [anon_sym_import] = ACTIONS(1983), + [anon_sym_var] = ACTIONS(1983), + [anon_sym_let] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_RPAREN] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_do] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_debugger] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_throw] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_COLON] = ACTIONS(1981), + [anon_sym_case] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_LTtemplate_GT] = ACTIONS(1981), + [anon_sym_GT] = ACTIONS(1981), + [anon_sym_class] = ACTIONS(1983), + [anon_sym_async] = ACTIONS(1983), + [anon_sym_function] = ACTIONS(1983), + [anon_sym_EQ_GT] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_SLASH] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_void] = ACTIONS(1983), + [anon_sym_delete] = ACTIONS(1983), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1981), + [sym_number] = ACTIONS(1981), + [sym_this] = ACTIONS(1983), + [sym_super] = ACTIONS(1983), + [sym_true] = ACTIONS(1983), + [sym_false] = ACTIONS(1983), + [sym_null] = ACTIONS(1983), + [sym_undefined] = ACTIONS(1983), + [anon_sym_AT] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_get] = ACTIONS(1983), + [anon_sym_set] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1981), + [anon_sym_declare] = ACTIONS(1983), + [anon_sym_public] = ACTIONS(1983), + [anon_sym_private] = ACTIONS(1983), + [anon_sym_protected] = ACTIONS(1983), + [anon_sym_override] = ACTIONS(1983), + [anon_sym_module] = ACTIONS(1983), + [anon_sym_any] = ACTIONS(1983), + [anon_sym_number] = ACTIONS(1983), + [anon_sym_boolean] = ACTIONS(1983), + [anon_sym_string] = ACTIONS(1983), + [anon_sym_symbol] = ACTIONS(1983), + [anon_sym_abstract] = ACTIONS(1983), + [anon_sym_extends] = ACTIONS(1983), + [anon_sym_interface] = ACTIONS(1983), + [anon_sym_enum] = ACTIONS(1983), + }, + [550] = { + [ts_builtin_sym_end] = ACTIONS(1985), + [sym_identifier] = ACTIONS(1987), + [anon_sym_export] = ACTIONS(1987), + [anon_sym_default] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym_namespace] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_import] = ACTIONS(1987), + [anon_sym_var] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_do] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_with] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_debugger] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_throw] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_COLON] = ACTIONS(1985), + [anon_sym_case] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_RBRACK] = ACTIONS(1985), + [anon_sym_LTtemplate_GT] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1985), + [anon_sym_class] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1987), + [anon_sym_function] = ACTIONS(1987), + [anon_sym_EQ_GT] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1985), + [anon_sym_void] = ACTIONS(1987), + [anon_sym_delete] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1985), + [anon_sym_SQUOTE] = ACTIONS(1985), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1985), + [sym_number] = ACTIONS(1985), + [sym_this] = ACTIONS(1987), + [sym_super] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_null] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1987), + [anon_sym_readonly] = ACTIONS(1987), + [anon_sym_get] = ACTIONS(1987), + [anon_sym_set] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_declare] = ACTIONS(1987), + [anon_sym_public] = ACTIONS(1987), + [anon_sym_private] = ACTIONS(1987), + [anon_sym_protected] = ACTIONS(1987), + [anon_sym_override] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_any] = ACTIONS(1987), + [anon_sym_number] = ACTIONS(1987), + [anon_sym_boolean] = ACTIONS(1987), + [anon_sym_string] = ACTIONS(1987), + [anon_sym_symbol] = ACTIONS(1987), + [anon_sym_abstract] = ACTIONS(1987), + [anon_sym_extends] = ACTIONS(1987), + [anon_sym_interface] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + }, + [551] = { + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1614), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1636), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75155,84 +75436,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1616), - [sym_private_property_identifier] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_get] = ACTIONS(1614), - [anon_sym_set] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1614), - [anon_sym_public] = ACTIONS(1614), - [anon_sym_private] = ACTIONS(1614), - [anon_sym_protected] = ACTIONS(1614), - [anon_sym_override] = ACTIONS(1614), - [anon_sym_module] = ACTIONS(1614), - [anon_sym_any] = ACTIONS(1614), - [anon_sym_number] = ACTIONS(1614), - [anon_sym_boolean] = ACTIONS(1614), - [anon_sym_string] = ACTIONS(1614), - [anon_sym_symbol] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1638), + [sym_private_property_identifier] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1636), + [anon_sym_set] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1636), + [anon_sym_public] = ACTIONS(1636), + [anon_sym_private] = ACTIONS(1636), + [anon_sym_protected] = ACTIONS(1636), + [anon_sym_override] = ACTIONS(1636), + [anon_sym_module] = ACTIONS(1636), + [anon_sym_any] = ACTIONS(1636), + [anon_sym_number] = ACTIONS(1636), + [anon_sym_boolean] = ACTIONS(1636), + [anon_sym_string] = ACTIONS(1636), + [anon_sym_symbol] = ACTIONS(1636), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [550] = { - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1881), + [552] = { + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1614), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1642), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1640), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75243,84 +75524,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1616), - [sym_private_property_identifier] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_get] = ACTIONS(1614), - [anon_sym_set] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1614), - [anon_sym_public] = ACTIONS(1614), - [anon_sym_private] = ACTIONS(1614), - [anon_sym_protected] = ACTIONS(1614), - [anon_sym_override] = ACTIONS(1614), - [anon_sym_module] = ACTIONS(1614), - [anon_sym_any] = ACTIONS(1614), - [anon_sym_number] = ACTIONS(1614), - [anon_sym_boolean] = ACTIONS(1614), - [anon_sym_string] = ACTIONS(1614), - [anon_sym_symbol] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_readonly] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1640), + [anon_sym_set] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1640), + [anon_sym_public] = ACTIONS(1640), + [anon_sym_private] = ACTIONS(1640), + [anon_sym_protected] = ACTIONS(1640), + [anon_sym_override] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1640), + [anon_sym_number] = ACTIONS(1640), + [anon_sym_boolean] = ACTIONS(1640), + [anon_sym_string] = ACTIONS(1640), + [anon_sym_symbol] = ACTIONS(1640), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [551] = { - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1628), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(1881), + [553] = { + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1628), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1636), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75331,84 +75612,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1630), - [sym_private_property_identifier] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_readonly] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1628), - [anon_sym_set] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1628), - [anon_sym_public] = ACTIONS(1628), - [anon_sym_private] = ACTIONS(1628), - [anon_sym_protected] = ACTIONS(1628), - [anon_sym_override] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_number] = ACTIONS(1628), - [anon_sym_boolean] = ACTIONS(1628), - [anon_sym_string] = ACTIONS(1628), - [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1638), + [sym_private_property_identifier] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1636), + [anon_sym_set] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1636), + [anon_sym_public] = ACTIONS(1636), + [anon_sym_private] = ACTIONS(1636), + [anon_sym_protected] = ACTIONS(1636), + [anon_sym_override] = ACTIONS(1636), + [anon_sym_module] = ACTIONS(1636), + [anon_sym_any] = ACTIONS(1636), + [anon_sym_number] = ACTIONS(1636), + [anon_sym_boolean] = ACTIONS(1636), + [anon_sym_string] = ACTIONS(1636), + [anon_sym_symbol] = ACTIONS(1636), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [552] = { - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1628), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(1881), + [554] = { + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1628), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1642), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1640), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75419,84 +75700,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1630), - [sym_private_property_identifier] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_readonly] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1628), - [anon_sym_set] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1628), - [anon_sym_public] = ACTIONS(1628), - [anon_sym_private] = ACTIONS(1628), - [anon_sym_protected] = ACTIONS(1628), - [anon_sym_override] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_number] = ACTIONS(1628), - [anon_sym_boolean] = ACTIONS(1628), - [anon_sym_string] = ACTIONS(1628), - [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_readonly] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1640), + [anon_sym_set] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1640), + [anon_sym_public] = ACTIONS(1640), + [anon_sym_private] = ACTIONS(1640), + [anon_sym_protected] = ACTIONS(1640), + [anon_sym_override] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1640), + [anon_sym_number] = ACTIONS(1640), + [anon_sym_boolean] = ACTIONS(1640), + [anon_sym_string] = ACTIONS(1640), + [anon_sym_symbol] = ACTIONS(1640), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [553] = { - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1881), + [555] = { + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1614), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1638), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1636), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75507,84 +75788,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1616), - [sym_private_property_identifier] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_get] = ACTIONS(1614), - [anon_sym_set] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1614), - [anon_sym_public] = ACTIONS(1614), - [anon_sym_private] = ACTIONS(1614), - [anon_sym_protected] = ACTIONS(1614), - [anon_sym_override] = ACTIONS(1614), - [anon_sym_module] = ACTIONS(1614), - [anon_sym_any] = ACTIONS(1614), - [anon_sym_number] = ACTIONS(1614), - [anon_sym_boolean] = ACTIONS(1614), - [anon_sym_string] = ACTIONS(1614), - [anon_sym_symbol] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1638), + [sym_private_property_identifier] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1636), + [anon_sym_set] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1636), + [anon_sym_public] = ACTIONS(1636), + [anon_sym_private] = ACTIONS(1636), + [anon_sym_protected] = ACTIONS(1636), + [anon_sym_override] = ACTIONS(1636), + [anon_sym_module] = ACTIONS(1636), + [anon_sym_any] = ACTIONS(1636), + [anon_sym_number] = ACTIONS(1636), + [anon_sym_boolean] = ACTIONS(1636), + [anon_sym_string] = ACTIONS(1636), + [anon_sym_symbol] = ACTIONS(1636), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [554] = { - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(1628), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(1881), + [556] = { + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1628), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1642), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1640), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75595,87 +75876,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [sym_number] = ACTIONS(1630), - [sym_private_property_identifier] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_readonly] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(1628), - [anon_sym_set] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_declare] = ACTIONS(1628), - [anon_sym_public] = ACTIONS(1628), - [anon_sym_private] = ACTIONS(1628), - [anon_sym_protected] = ACTIONS(1628), - [anon_sym_override] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_number] = ACTIONS(1628), - [anon_sym_boolean] = ACTIONS(1628), - [anon_sym_string] = ACTIONS(1628), - [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_number] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_readonly] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1640), + [anon_sym_set] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1640), + [anon_sym_public] = ACTIONS(1640), + [anon_sym_private] = ACTIONS(1640), + [anon_sym_protected] = ACTIONS(1640), + [anon_sym_override] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1640), + [anon_sym_number] = ACTIONS(1640), + [anon_sym_boolean] = ACTIONS(1640), + [anon_sym_string] = ACTIONS(1640), + [anon_sym_symbol] = ACTIONS(1640), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [555] = { - [sym__call_signature] = STATE(3972), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), + [557] = { + [sym__call_signature] = STATE(4033), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1985), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(214), - [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(1990), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1996), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75686,168 +75967,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_readonly] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_protected] = ACTIONS(1985), - [anon_sym_override] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_any] = ACTIONS(1985), - [anon_sym_number] = ACTIONS(1985), - [anon_sym_boolean] = ACTIONS(1985), - [anon_sym_string] = ACTIONS(1985), - [anon_sym_symbol] = ACTIONS(1985), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [556] = { - [sym__call_signature] = STATE(3972), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(118), [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_readonly] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1995), - [anon_sym_declare] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_protected] = ACTIONS(1985), - [anon_sym_override] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_any] = ACTIONS(1985), - [anon_sym_number] = ACTIONS(1985), - [anon_sym_boolean] = ACTIONS(1985), - [anon_sym_string] = ACTIONS(1985), - [anon_sym_symbol] = ACTIONS(1985), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [557] = { - [sym__call_signature] = STATE(4132), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1999), + [558] = { + [sym__call_signature] = STATE(4114), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2003), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(2003), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1999), + [anon_sym_namespace] = ACTIONS(2003), [anon_sym_COMMA] = ACTIONS(124), [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1990), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -75858,167 +76053,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_readonly] = ACTIONS(1999), - [anon_sym_get] = ACTIONS(1999), - [anon_sym_set] = ACTIONS(1999), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(1999), - [anon_sym_public] = ACTIONS(1999), - [anon_sym_private] = ACTIONS(1999), - [anon_sym_protected] = ACTIONS(1999), - [anon_sym_override] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_any] = ACTIONS(1999), - [anon_sym_number] = ACTIONS(1999), - [anon_sym_boolean] = ACTIONS(1999), - [anon_sym_string] = ACTIONS(1999), - [anon_sym_symbol] = ACTIONS(1999), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [558] = { - [sym__call_signature] = STATE(4132), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1999), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(153), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(118), [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_readonly] = ACTIONS(1999), - [anon_sym_get] = ACTIONS(1999), - [anon_sym_set] = ACTIONS(1999), - [anon_sym_declare] = ACTIONS(1999), - [anon_sym_public] = ACTIONS(1999), - [anon_sym_private] = ACTIONS(1999), - [anon_sym_protected] = ACTIONS(1999), - [anon_sym_override] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_any] = ACTIONS(1999), - [anon_sym_number] = ACTIONS(1999), - [anon_sym_boolean] = ACTIONS(1999), - [anon_sym_string] = ACTIONS(1999), - [anon_sym_symbol] = ACTIONS(1999), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2003), + [anon_sym_readonly] = ACTIONS(2003), + [anon_sym_get] = ACTIONS(2003), + [anon_sym_set] = ACTIONS(2003), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_declare] = ACTIONS(2003), + [anon_sym_public] = ACTIONS(2003), + [anon_sym_private] = ACTIONS(2003), + [anon_sym_protected] = ACTIONS(2003), + [anon_sym_override] = ACTIONS(2003), + [anon_sym_module] = ACTIONS(2003), + [anon_sym_any] = ACTIONS(2003), + [anon_sym_number] = ACTIONS(2003), + [anon_sym_boolean] = ACTIONS(2003), + [anon_sym_string] = ACTIONS(2003), + [anon_sym_symbol] = ACTIONS(2003), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [559] = { - [sym__call_signature] = STATE(4132), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1999), + [sym__call_signature] = STATE(4033), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1261), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(1261), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76029,79 +76139,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_readonly] = ACTIONS(1999), - [anon_sym_get] = ACTIONS(1999), - [anon_sym_set] = ACTIONS(1999), - [anon_sym_declare] = ACTIONS(1999), - [anon_sym_public] = ACTIONS(1999), - [anon_sym_private] = ACTIONS(1999), - [anon_sym_protected] = ACTIONS(1999), - [anon_sym_override] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_any] = ACTIONS(1999), - [anon_sym_number] = ACTIONS(1999), - [anon_sym_boolean] = ACTIONS(1999), - [anon_sym_string] = ACTIONS(1999), - [anon_sym_symbol] = ACTIONS(1999), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(2005), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [560] = { - [sym__call_signature] = STATE(4121), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), + [sym__call_signature] = STATE(4114), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2003), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_async] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76112,20 +76225,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_static] = ACTIONS(2003), [anon_sym_readonly] = ACTIONS(2003), [anon_sym_get] = ACTIONS(2003), @@ -76142,134 +76257,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2003), [anon_sym_symbol] = ACTIONS(2003), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [561] = { - [sym__call_signature] = STATE(4201), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2009), - [anon_sym_EQ_GT] = ACTIONS(1256), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_readonly] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_declare] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_protected] = ACTIONS(2007), - [anon_sym_override] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_any] = ACTIONS(2007), - [anon_sym_number] = ACTIONS(2007), - [anon_sym_boolean] = ACTIONS(2007), - [anon_sym_string] = ACTIONS(2007), - [anon_sym_symbol] = ACTIONS(2007), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), - }, - [562] = { - [sym__call_signature] = STATE(4121), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), + [sym__call_signature] = STATE(4114), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2003), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1220), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(150), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_async] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2009), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76280,20 +76310,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_static] = ACTIONS(2003), [anon_sym_readonly] = ACTIONS(2003), [anon_sym_get] = ACTIONS(2003), @@ -76310,50 +76342,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2003), [anon_sym_symbol] = ACTIONS(2003), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [563] = { - [sym__call_signature] = STATE(4121), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(2003), + [562] = { + [sym__call_signature] = STATE(4140), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2009), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2009), [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_namespace] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(2011), + [anon_sym_of] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_function] = ACTIONS(2016), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76364,80 +76393,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_readonly] = ACTIONS(2003), - [anon_sym_get] = ACTIONS(2003), - [anon_sym_set] = ACTIONS(2003), - [anon_sym_declare] = ACTIONS(2003), - [anon_sym_public] = ACTIONS(2003), - [anon_sym_private] = ACTIONS(2003), - [anon_sym_protected] = ACTIONS(2003), - [anon_sym_override] = ACTIONS(2003), - [anon_sym_module] = ACTIONS(2003), - [anon_sym_any] = ACTIONS(2003), - [anon_sym_number] = ACTIONS(2003), - [anon_sym_boolean] = ACTIONS(2003), - [anon_sym_string] = ACTIONS(2003), - [anon_sym_symbol] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_readonly] = ACTIONS(2009), + [anon_sym_get] = ACTIONS(2009), + [anon_sym_set] = ACTIONS(2009), + [anon_sym_declare] = ACTIONS(2009), + [anon_sym_public] = ACTIONS(2009), + [anon_sym_private] = ACTIONS(2009), + [anon_sym_protected] = ACTIONS(2009), + [anon_sym_override] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_any] = ACTIONS(2009), + [anon_sym_number] = ACTIONS(2009), + [anon_sym_boolean] = ACTIONS(2009), + [anon_sym_string] = ACTIONS(2009), + [anon_sym_symbol] = ACTIONS(2009), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [564] = { - [sym__call_signature] = STATE(4201), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2007), + [563] = { + [sym__call_signature] = STATE(4140), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2009), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_namespace] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2009), - [anon_sym_EQ_GT] = ACTIONS(1256), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_function] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76448,80 +76477,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_readonly] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_declare] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_protected] = ACTIONS(2007), - [anon_sym_override] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_any] = ACTIONS(2007), - [anon_sym_number] = ACTIONS(2007), - [anon_sym_boolean] = ACTIONS(2007), - [anon_sym_string] = ACTIONS(2007), - [anon_sym_symbol] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_readonly] = ACTIONS(2009), + [anon_sym_get] = ACTIONS(2009), + [anon_sym_set] = ACTIONS(2009), + [anon_sym_declare] = ACTIONS(2009), + [anon_sym_public] = ACTIONS(2009), + [anon_sym_private] = ACTIONS(2009), + [anon_sym_protected] = ACTIONS(2009), + [anon_sym_override] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_any] = ACTIONS(2009), + [anon_sym_number] = ACTIONS(2009), + [anon_sym_boolean] = ACTIONS(2009), + [anon_sym_string] = ACTIONS(2009), + [anon_sym_symbol] = ACTIONS(2009), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [565] = { - [sym__call_signature] = STATE(4121), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), + [564] = { + [sym__call_signature] = STATE(4114), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2003), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1220), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(2013), - [anon_sym_of] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(1258), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_async] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2009), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76532,20 +76562,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_static] = ACTIONS(2003), [anon_sym_readonly] = ACTIONS(2003), [anon_sym_get] = ACTIONS(2003), @@ -76562,51 +76594,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2003), [anon_sym_symbol] = ACTIONS(2003), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [566] = { - [sym__call_signature] = STATE(4132), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1999), + [565] = { + [sym__call_signature] = STATE(4229), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2018), + [anon_sym_export] = ACTIONS(2020), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(1254), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_namespace] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_function] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(1256), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_readonly] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(2020), + [anon_sym_set] = ACTIONS(2020), + [anon_sym_declare] = ACTIONS(2020), + [anon_sym_public] = ACTIONS(2020), + [anon_sym_private] = ACTIONS(2020), + [anon_sym_protected] = ACTIONS(2020), + [anon_sym_override] = ACTIONS(2020), + [anon_sym_module] = ACTIONS(2020), + [anon_sym_any] = ACTIONS(2020), + [anon_sym_number] = ACTIONS(2020), + [anon_sym_boolean] = ACTIONS(2020), + [anon_sym_string] = ACTIONS(2020), + [anon_sym_symbol] = ACTIONS(2020), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), + }, + [566] = { + [sym__call_signature] = STATE(4140), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2009), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_function] = ACTIONS(1915), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76617,79 +76729,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_readonly] = ACTIONS(1999), - [anon_sym_get] = ACTIONS(1999), - [anon_sym_set] = ACTIONS(1999), - [anon_sym_declare] = ACTIONS(1999), - [anon_sym_public] = ACTIONS(1999), - [anon_sym_private] = ACTIONS(1999), - [anon_sym_protected] = ACTIONS(1999), - [anon_sym_override] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_any] = ACTIONS(1999), - [anon_sym_number] = ACTIONS(1999), - [anon_sym_boolean] = ACTIONS(1999), - [anon_sym_string] = ACTIONS(1999), - [anon_sym_symbol] = ACTIONS(1999), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_readonly] = ACTIONS(2009), + [anon_sym_get] = ACTIONS(2009), + [anon_sym_set] = ACTIONS(2009), + [anon_sym_declare] = ACTIONS(2009), + [anon_sym_public] = ACTIONS(2009), + [anon_sym_private] = ACTIONS(2009), + [anon_sym_protected] = ACTIONS(2009), + [anon_sym_override] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_any] = ACTIONS(2009), + [anon_sym_number] = ACTIONS(2009), + [anon_sym_boolean] = ACTIONS(2009), + [anon_sym_string] = ACTIONS(2009), + [anon_sym_symbol] = ACTIONS(2009), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [567] = { - [sym__call_signature] = STATE(4121), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(2003), + [sym__call_signature] = STATE(4140), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2009), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_namespace] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_function] = ACTIONS(2022), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76700,162 +76813,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_readonly] = ACTIONS(2003), - [anon_sym_get] = ACTIONS(2003), - [anon_sym_set] = ACTIONS(2003), - [anon_sym_declare] = ACTIONS(2003), - [anon_sym_public] = ACTIONS(2003), - [anon_sym_private] = ACTIONS(2003), - [anon_sym_protected] = ACTIONS(2003), - [anon_sym_override] = ACTIONS(2003), - [anon_sym_module] = ACTIONS(2003), - [anon_sym_any] = ACTIONS(2003), - [anon_sym_number] = ACTIONS(2003), - [anon_sym_boolean] = ACTIONS(2003), - [anon_sym_string] = ACTIONS(2003), - [anon_sym_symbol] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_readonly] = ACTIONS(2009), + [anon_sym_get] = ACTIONS(2009), + [anon_sym_set] = ACTIONS(2009), + [anon_sym_declare] = ACTIONS(2009), + [anon_sym_public] = ACTIONS(2009), + [anon_sym_private] = ACTIONS(2009), + [anon_sym_protected] = ACTIONS(2009), + [anon_sym_override] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_any] = ACTIONS(2009), + [anon_sym_number] = ACTIONS(2009), + [anon_sym_boolean] = ACTIONS(2009), + [anon_sym_string] = ACTIONS(2009), + [anon_sym_symbol] = ACTIONS(2009), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, [568] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_export] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_namespace] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym_import] = ACTIONS(1341), - [anon_sym_var] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_await] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_try] = ACTIONS(1341), - [anon_sym_with] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_debugger] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_throw] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_catch] = ACTIONS(1341), - [anon_sym_finally] = ACTIONS(1341), - [anon_sym_yield] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_LTtemplate_GT] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_class] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_function] = ACTIONS(1341), - [anon_sym_new] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_void] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1339), - [sym_number] = ACTIONS(1339), - [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_undefined] = ACTIONS(1341), - [anon_sym_AT] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_readonly] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1341), - [anon_sym_set] = ACTIONS(1341), - [anon_sym_declare] = ACTIONS(1341), - [anon_sym_public] = ACTIONS(1341), - [anon_sym_private] = ACTIONS(1341), - [anon_sym_protected] = ACTIONS(1341), - [anon_sym_override] = ACTIONS(1341), - [anon_sym_module] = ACTIONS(1341), - [anon_sym_any] = ACTIONS(1341), - [anon_sym_number] = ACTIONS(1341), - [anon_sym_boolean] = ACTIONS(1341), - [anon_sym_string] = ACTIONS(1341), - [anon_sym_symbol] = ACTIONS(1341), - [anon_sym_abstract] = ACTIONS(1341), - [anon_sym_interface] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [sym__automatic_semicolon] = ACTIONS(1349), - }, - [569] = { - [sym__call_signature] = STATE(4145), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2018), - [anon_sym_export] = ACTIONS(2020), + [sym__call_signature] = STATE(4140), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2009), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_namespace] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1269), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_function] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76866,43 +76897,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_readonly] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(2020), - [anon_sym_set] = ACTIONS(2020), - [anon_sym_declare] = ACTIONS(2020), - [anon_sym_public] = ACTIONS(2020), - [anon_sym_private] = ACTIONS(2020), - [anon_sym_protected] = ACTIONS(2020), - [anon_sym_override] = ACTIONS(2020), - [anon_sym_module] = ACTIONS(2020), - [anon_sym_any] = ACTIONS(2020), - [anon_sym_number] = ACTIONS(2020), - [anon_sym_boolean] = ACTIONS(2020), - [anon_sym_string] = ACTIONS(2020), - [anon_sym_symbol] = ACTIONS(2020), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_readonly] = ACTIONS(2009), + [anon_sym_get] = ACTIONS(2009), + [anon_sym_set] = ACTIONS(2009), + [anon_sym_declare] = ACTIONS(2009), + [anon_sym_public] = ACTIONS(2009), + [anon_sym_private] = ACTIONS(2009), + [anon_sym_protected] = ACTIONS(2009), + [anon_sym_override] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_any] = ACTIONS(2009), + [anon_sym_number] = ACTIONS(2009), + [anon_sym_boolean] = ACTIONS(2009), + [anon_sym_string] = ACTIONS(2009), + [anon_sym_symbol] = ACTIONS(2009), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [570] = { - [sym__call_signature] = STATE(4145), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), + [569] = { + [sym__call_signature] = STATE(4229), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), [sym_identifier] = ACTIONS(2018), [anon_sym_export] = ACTIONS(2020), [anon_sym_STAR] = ACTIONS(118), @@ -76910,35 +76943,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_async] = ACTIONS(2020), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1269), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_function] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(1256), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -76949,20 +76981,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(150), [anon_sym_static] = ACTIONS(2020), [anon_sym_readonly] = ACTIONS(2020), [anon_sym_get] = ACTIONS(2020), @@ -76979,133 +77013,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2020), [anon_sym_symbol] = ACTIONS(2020), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [571] = { - [sym_catch_clause] = STATE(595), - [sym_finally_clause] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2022), + [570] = { + [sym__call_signature] = STATE(3957), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), [sym_identifier] = ACTIONS(2024), - [anon_sym_export] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_namespace] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_typeof] = ACTIONS(2024), - [anon_sym_import] = ACTIONS(2024), - [anon_sym_var] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_switch] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_await] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_do] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [anon_sym_with] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_debugger] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_case] = ACTIONS(2024), - [anon_sym_catch] = ACTIONS(2026), - [anon_sym_finally] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LTtemplate_GT] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_class] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_new] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_void] = ACTIONS(2024), - [anon_sym_delete] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2022), - [sym_number] = ACTIONS(2022), - [sym_this] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_true] = ACTIONS(2024), - [sym_false] = ACTIONS(2024), - [sym_null] = ACTIONS(2024), - [sym_undefined] = ACTIONS(2024), - [anon_sym_AT] = ACTIONS(2022), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_readonly] = ACTIONS(2024), - [anon_sym_get] = ACTIONS(2024), - [anon_sym_set] = ACTIONS(2024), - [anon_sym_declare] = ACTIONS(2024), - [anon_sym_public] = ACTIONS(2024), - [anon_sym_private] = ACTIONS(2024), - [anon_sym_protected] = ACTIONS(2024), - [anon_sym_override] = ACTIONS(2024), - [anon_sym_module] = ACTIONS(2024), - [anon_sym_any] = ACTIONS(2024), - [anon_sym_number] = ACTIONS(2024), - [anon_sym_boolean] = ACTIONS(2024), - [anon_sym_string] = ACTIONS(2024), - [anon_sym_symbol] = ACTIONS(2024), - [anon_sym_abstract] = ACTIONS(2024), - [anon_sym_interface] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - }, - [572] = { - [sym__call_signature] = STATE(3931), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(2028), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2026), [anon_sym_COMMA] = ACTIONS(214), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1990), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77116,160 +77065,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), + }, + [571] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_export] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_with] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_debugger] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_catch] = ACTIONS(1327), + [anon_sym_finally] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_LTtemplate_GT] = ACTIONS(1325), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), + [anon_sym_function] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1325), + [sym_number] = ACTIONS(1325), + [sym_this] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [sym_undefined] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_readonly] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1327), + [anon_sym_set] = ACTIONS(1327), + [anon_sym_declare] = ACTIONS(1327), + [anon_sym_public] = ACTIONS(1327), + [anon_sym_private] = ACTIONS(1327), + [anon_sym_protected] = ACTIONS(1327), + [anon_sym_override] = ACTIONS(1327), + [anon_sym_module] = ACTIONS(1327), + [anon_sym_any] = ACTIONS(1327), + [anon_sym_number] = ACTIONS(1327), + [anon_sym_boolean] = ACTIONS(1327), + [anon_sym_string] = ACTIONS(1327), + [anon_sym_symbol] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(1327), + [anon_sym_interface] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [sym__automatic_semicolon] = ACTIONS(1335), + }, + [572] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_namespace] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_with] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_debugger] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_catch] = ACTIONS(1471), + [anon_sym_finally] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LTtemplate_GT] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_delete] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1469), + [sym_number] = ACTIONS(1469), + [sym_this] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_declare] = ACTIONS(1471), + [anon_sym_public] = ACTIONS(1471), + [anon_sym_private] = ACTIONS(1471), + [anon_sym_protected] = ACTIONS(1471), + [anon_sym_override] = ACTIONS(1471), + [anon_sym_module] = ACTIONS(1471), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [sym__automatic_semicolon] = ACTIONS(2033), }, [573] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_catch] = ACTIONS(1491), - [anon_sym_finally] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LTtemplate_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [sym__automatic_semicolon] = ACTIONS(2039), + [sym_catch_clause] = STATE(598), + [sym_finally_clause] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_export] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_namespace] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_typeof] = ACTIONS(2037), + [anon_sym_import] = ACTIONS(2037), + [anon_sym_var] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_switch] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_await] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_do] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [anon_sym_with] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_debugger] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_case] = ACTIONS(2037), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LTtemplate_GT] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_function] = ACTIONS(2037), + [anon_sym_new] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_SLASH] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2035), + [anon_sym_void] = ACTIONS(2037), + [anon_sym_delete] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(2035), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2035), + [sym_number] = ACTIONS(2035), + [sym_this] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_null] = ACTIONS(2037), + [sym_undefined] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_readonly] = ACTIONS(2037), + [anon_sym_get] = ACTIONS(2037), + [anon_sym_set] = ACTIONS(2037), + [anon_sym_declare] = ACTIONS(2037), + [anon_sym_public] = ACTIONS(2037), + [anon_sym_private] = ACTIONS(2037), + [anon_sym_protected] = ACTIONS(2037), + [anon_sym_override] = ACTIONS(2037), + [anon_sym_module] = ACTIONS(2037), + [anon_sym_any] = ACTIONS(2037), + [anon_sym_number] = ACTIONS(2037), + [anon_sym_boolean] = ACTIONS(2037), + [anon_sym_string] = ACTIONS(2037), + [anon_sym_symbol] = ACTIONS(2037), + [anon_sym_abstract] = ACTIONS(2037), + [anon_sym_interface] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), }, [574] = { - [sym__call_signature] = STATE(4042), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [sym__call_signature] = STATE(4173), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(2045), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_function] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1305), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77280,78 +77396,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_readonly] = ACTIONS(2045), + [anon_sym_get] = ACTIONS(2045), + [anon_sym_set] = ACTIONS(2045), + [anon_sym_declare] = ACTIONS(2045), + [anon_sym_public] = ACTIONS(2045), + [anon_sym_private] = ACTIONS(2045), + [anon_sym_protected] = ACTIONS(2045), + [anon_sym_override] = ACTIONS(2045), + [anon_sym_module] = ACTIONS(2045), + [anon_sym_any] = ACTIONS(2045), + [anon_sym_number] = ACTIONS(2045), + [anon_sym_boolean] = ACTIONS(2045), + [anon_sym_string] = ACTIONS(2045), + [anon_sym_symbol] = ACTIONS(2045), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), }, [575] = { - [sym__call_signature] = STATE(4042), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [sym__call_signature] = STATE(4173), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(2045), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_EQ] = ACTIONS(1303), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(150), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1305), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77362,243 +77479,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_readonly] = ACTIONS(2045), + [anon_sym_get] = ACTIONS(2045), + [anon_sym_set] = ACTIONS(2045), + [anon_sym_declare] = ACTIONS(2045), + [anon_sym_public] = ACTIONS(2045), + [anon_sym_private] = ACTIONS(2045), + [anon_sym_protected] = ACTIONS(2045), + [anon_sym_override] = ACTIONS(2045), + [anon_sym_module] = ACTIONS(2045), + [anon_sym_any] = ACTIONS(2045), + [anon_sym_number] = ACTIONS(2045), + [anon_sym_boolean] = ACTIONS(2045), + [anon_sym_string] = ACTIONS(2045), + [anon_sym_symbol] = ACTIONS(2045), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), }, [576] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_export] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym_import] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_await] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_debugger] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_throw] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LTtemplate_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_class] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(1437), - [anon_sym_new] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_delete] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_number] = ACTIONS(1435), - [sym_this] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [sym_null] = ACTIONS(1437), - [sym_undefined] = ACTIONS(1437), - [anon_sym_AT] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_declare] = ACTIONS(1437), - [anon_sym_public] = ACTIONS(1437), - [anon_sym_private] = ACTIONS(1437), - [anon_sym_protected] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1437), - [anon_sym_module] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_number] = ACTIONS(1437), - [anon_sym_boolean] = ACTIONS(1437), - [anon_sym_string] = ACTIONS(1437), - [anon_sym_symbol] = ACTIONS(1437), - [anon_sym_abstract] = ACTIONS(1437), - [anon_sym_interface] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_PIPE_RBRACE] = ACTIONS(1435), - [sym__automatic_semicolon] = ACTIONS(1435), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_export] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1447), + [anon_sym_import] = ACTIONS(1447), + [anon_sym_var] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_await] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_do] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [anon_sym_with] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_debugger] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1447), + [anon_sym_catch] = ACTIONS(1447), + [anon_sym_finally] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LTtemplate_GT] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_void] = ACTIONS(1447), + [anon_sym_delete] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1445), + [sym_number] = ACTIONS(1445), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_true] = ACTIONS(1447), + [sym_false] = ACTIONS(1447), + [sym_null] = ACTIONS(1447), + [sym_undefined] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_readonly] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1447), + [anon_sym_set] = ACTIONS(1447), + [anon_sym_declare] = ACTIONS(1447), + [anon_sym_public] = ACTIONS(1447), + [anon_sym_private] = ACTIONS(1447), + [anon_sym_protected] = ACTIONS(1447), + [anon_sym_override] = ACTIONS(1447), + [anon_sym_module] = ACTIONS(1447), + [anon_sym_any] = ACTIONS(1447), + [anon_sym_number] = ACTIONS(1447), + [anon_sym_boolean] = ACTIONS(1447), + [anon_sym_string] = ACTIONS(1447), + [anon_sym_symbol] = ACTIONS(1447), + [anon_sym_abstract] = ACTIONS(1447), + [anon_sym_interface] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), }, [577] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_export] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_namespace] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym_import] = ACTIONS(1341), - [anon_sym_var] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_await] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_try] = ACTIONS(1341), - [anon_sym_with] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_debugger] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_throw] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_yield] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_LTtemplate_GT] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_class] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_function] = ACTIONS(1341), - [anon_sym_new] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_void] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1339), - [sym_number] = ACTIONS(1339), - [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_undefined] = ACTIONS(1341), - [anon_sym_AT] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_readonly] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1341), - [anon_sym_set] = ACTIONS(1341), - [anon_sym_declare] = ACTIONS(1341), - [anon_sym_public] = ACTIONS(1341), - [anon_sym_private] = ACTIONS(1341), - [anon_sym_protected] = ACTIONS(1341), - [anon_sym_override] = ACTIONS(1341), - [anon_sym_module] = ACTIONS(1341), - [anon_sym_any] = ACTIONS(1341), - [anon_sym_number] = ACTIONS(1341), - [anon_sym_boolean] = ACTIONS(1341), - [anon_sym_string] = ACTIONS(1341), - [anon_sym_symbol] = ACTIONS(1341), - [anon_sym_abstract] = ACTIONS(1341), - [anon_sym_interface] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_PIPE_RBRACE] = ACTIONS(1339), - [sym__automatic_semicolon] = ACTIONS(2047), - }, - [578] = { - [sym__call_signature] = STATE(3931), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [sym__call_signature] = STATE(4066), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2049), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2049), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_function] = ACTIONS(1915), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77609,241 +77643,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_readonly] = ACTIONS(2049), + [anon_sym_get] = ACTIONS(2049), + [anon_sym_set] = ACTIONS(2049), + [anon_sym_declare] = ACTIONS(2049), + [anon_sym_public] = ACTIONS(2049), + [anon_sym_private] = ACTIONS(2049), + [anon_sym_protected] = ACTIONS(2049), + [anon_sym_override] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_any] = ACTIONS(2049), + [anon_sym_number] = ACTIONS(2049), + [anon_sym_boolean] = ACTIONS(2049), + [anon_sym_string] = ACTIONS(2049), + [anon_sym_symbol] = ACTIONS(2049), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LTtemplate_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_PIPE_RBRACE] = ACTIONS(1489), - [sym__automatic_semicolon] = ACTIONS(2049), - }, - [580] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LTtemplate_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_PIPE_RBRACE] = ACTIONS(1489), - [sym__automatic_semicolon] = ACTIONS(1489), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [581] = { - [sym__call_signature] = STATE(4042), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [578] = { + [sym__call_signature] = STATE(3957), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2024), + [anon_sym_export] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(2028), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(214), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_function] = ACTIONS(2011), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77854,78 +77726,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [582] = { - [sym__call_signature] = STATE(4042), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [579] = { + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_namespace] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_typeof] = ACTIONS(1467), + [anon_sym_import] = ACTIONS(1467), + [anon_sym_var] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_with] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_debugger] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_throw] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_LTtemplate_GT] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_function] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1467), + [anon_sym_delete] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1465), + [sym_number] = ACTIONS(1465), + [sym_this] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_true] = ACTIONS(1467), + [sym_false] = ACTIONS(1467), + [sym_null] = ACTIONS(1467), + [sym_undefined] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_readonly] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1467), + [anon_sym_set] = ACTIONS(1467), + [anon_sym_declare] = ACTIONS(1467), + [anon_sym_public] = ACTIONS(1467), + [anon_sym_private] = ACTIONS(1467), + [anon_sym_protected] = ACTIONS(1467), + [anon_sym_override] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_any] = ACTIONS(1467), + [anon_sym_number] = ACTIONS(1467), + [anon_sym_boolean] = ACTIONS(1467), + [anon_sym_string] = ACTIONS(1467), + [anon_sym_symbol] = ACTIONS(1467), + [anon_sym_abstract] = ACTIONS(1467), + [anon_sym_interface] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_PIPE_RBRACE] = ACTIONS(1465), + [sym__automatic_semicolon] = ACTIONS(1465), + }, + [580] = { + [sym__call_signature] = STATE(4066), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2049), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2049), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_function] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_function] = ACTIONS(2022), [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -77936,79 +77889,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_readonly] = ACTIONS(2049), + [anon_sym_get] = ACTIONS(2049), + [anon_sym_set] = ACTIONS(2049), + [anon_sym_declare] = ACTIONS(2049), + [anon_sym_public] = ACTIONS(2049), + [anon_sym_private] = ACTIONS(2049), + [anon_sym_protected] = ACTIONS(2049), + [anon_sym_override] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_any] = ACTIONS(2049), + [anon_sym_number] = ACTIONS(2049), + [anon_sym_boolean] = ACTIONS(2049), + [anon_sym_string] = ACTIONS(2049), + [anon_sym_symbol] = ACTIONS(2049), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [583] = { - [sym__call_signature] = STATE(3931), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [581] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_namespace] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_with] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_debugger] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_catch] = ACTIONS(1471), + [anon_sym_finally] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LTtemplate_GT] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_delete] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1469), + [sym_number] = ACTIONS(1469), + [sym_this] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_declare] = ACTIONS(1471), + [anon_sym_public] = ACTIONS(1471), + [anon_sym_private] = ACTIONS(1471), + [anon_sym_protected] = ACTIONS(1471), + [anon_sym_override] = ACTIONS(1471), + [anon_sym_module] = ACTIONS(1471), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + }, + [582] = { + [sym__call_signature] = STATE(4066), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2049), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2049), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_function] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78019,78 +78053,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_readonly] = ACTIONS(2049), + [anon_sym_get] = ACTIONS(2049), + [anon_sym_set] = ACTIONS(2049), + [anon_sym_declare] = ACTIONS(2049), + [anon_sym_public] = ACTIONS(2049), + [anon_sym_private] = ACTIONS(2049), + [anon_sym_protected] = ACTIONS(2049), + [anon_sym_override] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_any] = ACTIONS(2049), + [anon_sym_number] = ACTIONS(2049), + [anon_sym_boolean] = ACTIONS(2049), + [anon_sym_string] = ACTIONS(2049), + [anon_sym_symbol] = ACTIONS(2049), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [584] = { - [sym__call_signature] = STATE(3931), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [583] = { + [sym__call_signature] = STATE(4066), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2049), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2049), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_function] = ACTIONS(2051), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78101,78 +78135,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_readonly] = ACTIONS(2049), + [anon_sym_get] = ACTIONS(2049), + [anon_sym_set] = ACTIONS(2049), + [anon_sym_declare] = ACTIONS(2049), + [anon_sym_public] = ACTIONS(2049), + [anon_sym_private] = ACTIONS(2049), + [anon_sym_protected] = ACTIONS(2049), + [anon_sym_override] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_any] = ACTIONS(2049), + [anon_sym_number] = ACTIONS(2049), + [anon_sym_boolean] = ACTIONS(2049), + [anon_sym_string] = ACTIONS(2049), + [anon_sym_symbol] = ACTIONS(2049), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), + }, + [584] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_namespace] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_with] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_debugger] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LTtemplate_GT] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_delete] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1469), + [sym_number] = ACTIONS(1469), + [sym_this] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_declare] = ACTIONS(1471), + [anon_sym_public] = ACTIONS(1471), + [anon_sym_private] = ACTIONS(1471), + [anon_sym_protected] = ACTIONS(1471), + [anon_sym_override] = ACTIONS(1471), + [anon_sym_module] = ACTIONS(1471), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_PIPE_RBRACE] = ACTIONS(1469), + [sym__automatic_semicolon] = ACTIONS(2053), }, [585] = { - [sym__call_signature] = STATE(3931), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_namespace] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_with] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_debugger] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LTtemplate_GT] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_delete] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1469), + [sym_number] = ACTIONS(1469), + [sym_this] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_declare] = ACTIONS(1471), + [anon_sym_public] = ACTIONS(1471), + [anon_sym_private] = ACTIONS(1471), + [anon_sym_protected] = ACTIONS(1471), + [anon_sym_override] = ACTIONS(1471), + [anon_sym_module] = ACTIONS(1471), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_interface] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_PIPE_RBRACE] = ACTIONS(1469), + [sym__automatic_semicolon] = ACTIONS(1469), + }, + [586] = { + [sym__call_signature] = STATE(3957), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2024), + [anon_sym_export] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_namespace] = ACTIONS(2026), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78183,242 +78382,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [586] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_export] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_namespace] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_COMMA] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_typeof] = ACTIONS(1425), - [anon_sym_import] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_await] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [anon_sym_with] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_debugger] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LTtemplate_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1425), - [anon_sym_class] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_function] = ACTIONS(1425), - [anon_sym_new] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_delete] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_number] = ACTIONS(1423), - [sym_this] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [sym_null] = ACTIONS(1425), - [sym_undefined] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_readonly] = ACTIONS(1425), - [anon_sym_get] = ACTIONS(1425), - [anon_sym_set] = ACTIONS(1425), - [anon_sym_declare] = ACTIONS(1425), - [anon_sym_public] = ACTIONS(1425), - [anon_sym_private] = ACTIONS(1425), - [anon_sym_protected] = ACTIONS(1425), - [anon_sym_override] = ACTIONS(1425), - [anon_sym_module] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_number] = ACTIONS(1425), - [anon_sym_boolean] = ACTIONS(1425), - [anon_sym_string] = ACTIONS(1425), - [anon_sym_symbol] = ACTIONS(1425), - [anon_sym_abstract] = ACTIONS(1425), - [anon_sym_interface] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_PIPE_RBRACE] = ACTIONS(1423), - [sym__automatic_semicolon] = ACTIONS(1423), + [sym__ternary_qmark] = ACTIONS(150), }, [587] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_identifier] = ACTIONS(1441), - [anon_sym_export] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_namespace] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_COMMA] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym_import] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_await] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1441), - [anon_sym_with] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_debugger] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_throw] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_yield] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_LTtemplate_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_class] = ACTIONS(1441), - [anon_sym_async] = ACTIONS(1441), - [anon_sym_function] = ACTIONS(1441), - [anon_sym_new] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_delete] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_number] = ACTIONS(1439), - [sym_this] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_true] = ACTIONS(1441), - [sym_false] = ACTIONS(1441), - [sym_null] = ACTIONS(1441), - [sym_undefined] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_readonly] = ACTIONS(1441), - [anon_sym_get] = ACTIONS(1441), - [anon_sym_set] = ACTIONS(1441), - [anon_sym_declare] = ACTIONS(1441), - [anon_sym_public] = ACTIONS(1441), - [anon_sym_private] = ACTIONS(1441), - [anon_sym_protected] = ACTIONS(1441), - [anon_sym_override] = ACTIONS(1441), - [anon_sym_module] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_number] = ACTIONS(1441), - [anon_sym_boolean] = ACTIONS(1441), - [anon_sym_string] = ACTIONS(1441), - [anon_sym_symbol] = ACTIONS(1441), - [anon_sym_abstract] = ACTIONS(1441), - [anon_sym_interface] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_PIPE_RBRACE] = ACTIONS(1439), - [sym__automatic_semicolon] = ACTIONS(1439), - }, - [588] = { - [sym__call_signature] = STATE(3931), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(2032), + [sym__call_signature] = STATE(3957), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2024), + [anon_sym_export] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2026), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78429,77 +78464,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2032), - [anon_sym_declare] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_protected] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_module] = ACTIONS(2032), - [anon_sym_any] = ACTIONS(2032), - [anon_sym_number] = ACTIONS(2032), - [anon_sym_boolean] = ACTIONS(2032), - [anon_sym_string] = ACTIONS(2032), - [anon_sym_symbol] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), + }, + [588] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_export] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_with] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_debugger] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_LTtemplate_GT] = ACTIONS(1325), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), + [anon_sym_function] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1325), + [sym_number] = ACTIONS(1325), + [sym_this] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [sym_undefined] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_readonly] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1327), + [anon_sym_set] = ACTIONS(1327), + [anon_sym_declare] = ACTIONS(1327), + [anon_sym_public] = ACTIONS(1327), + [anon_sym_private] = ACTIONS(1327), + [anon_sym_protected] = ACTIONS(1327), + [anon_sym_override] = ACTIONS(1327), + [anon_sym_module] = ACTIONS(1327), + [anon_sym_any] = ACTIONS(1327), + [anon_sym_number] = ACTIONS(1327), + [anon_sym_boolean] = ACTIONS(1327), + [anon_sym_string] = ACTIONS(1327), + [anon_sym_symbol] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(1327), + [anon_sym_interface] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_PIPE_RBRACE] = ACTIONS(1325), + [sym__automatic_semicolon] = ACTIONS(2057), }, [589] = { - [sym__call_signature] = STATE(4042), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [sym__call_signature] = STATE(3957), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2024), + [anon_sym_export] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2026), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_function] = ACTIONS(2009), - [anon_sym_EQ_GT] = ACTIONS(1265), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78510,242 +78628,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [590] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_export] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym_import] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_await] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_debugger] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_throw] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_catch] = ACTIONS(1437), - [anon_sym_finally] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LTtemplate_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_class] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(1437), - [anon_sym_new] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_delete] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_number] = ACTIONS(1435), - [sym_this] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [sym_null] = ACTIONS(1437), - [sym_undefined] = ACTIONS(1437), - [anon_sym_AT] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_declare] = ACTIONS(1437), - [anon_sym_public] = ACTIONS(1437), - [anon_sym_private] = ACTIONS(1437), - [anon_sym_protected] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1437), - [anon_sym_module] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_number] = ACTIONS(1437), - [anon_sym_boolean] = ACTIONS(1437), - [anon_sym_string] = ACTIONS(1437), - [anon_sym_symbol] = ACTIONS(1437), - [anon_sym_abstract] = ACTIONS(1437), - [anon_sym_interface] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - }, - [591] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_debugger] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_catch] = ACTIONS(1491), - [anon_sym_finally] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LTtemplate_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_function] = ACTIONS(1491), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_delete] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_number] = ACTIONS(1489), - [sym_this] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1491), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), - [anon_sym_declare] = ACTIONS(1491), - [anon_sym_public] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_number] = ACTIONS(1491), - [anon_sym_boolean] = ACTIONS(1491), - [anon_sym_string] = ACTIONS(1491), - [anon_sym_symbol] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_interface] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - }, - [592] = { - [sym__call_signature] = STATE(3972), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), + [sym__call_signature] = STATE(4066), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2049), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(2049), [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1985), + [anon_sym_namespace] = ACTIONS(2049), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(2013), - [anon_sym_of] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_function] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78756,77 +78709,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_readonly] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_declare] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_protected] = ACTIONS(1985), - [anon_sym_override] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_any] = ACTIONS(1985), - [anon_sym_number] = ACTIONS(1985), - [anon_sym_boolean] = ACTIONS(1985), - [anon_sym_string] = ACTIONS(1985), - [anon_sym_symbol] = ACTIONS(1985), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_readonly] = ACTIONS(2049), + [anon_sym_get] = ACTIONS(2049), + [anon_sym_set] = ACTIONS(2049), + [anon_sym_declare] = ACTIONS(2049), + [anon_sym_public] = ACTIONS(2049), + [anon_sym_private] = ACTIONS(2049), + [anon_sym_protected] = ACTIONS(2049), + [anon_sym_override] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_any] = ACTIONS(2049), + [anon_sym_number] = ACTIONS(2049), + [anon_sym_boolean] = ACTIONS(2049), + [anon_sym_string] = ACTIONS(2049), + [anon_sym_symbol] = ACTIONS(2049), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), + }, + [591] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(1443), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_await] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_with] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_debugger] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_throw] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LTtemplate_GT] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_function] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1441), + [anon_sym_void] = ACTIONS(1443), + [anon_sym_delete] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1441), + [sym_number] = ACTIONS(1441), + [sym_this] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_true] = ACTIONS(1443), + [sym_false] = ACTIONS(1443), + [sym_null] = ACTIONS(1443), + [sym_undefined] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_readonly] = ACTIONS(1443), + [anon_sym_get] = ACTIONS(1443), + [anon_sym_set] = ACTIONS(1443), + [anon_sym_declare] = ACTIONS(1443), + [anon_sym_public] = ACTIONS(1443), + [anon_sym_private] = ACTIONS(1443), + [anon_sym_protected] = ACTIONS(1443), + [anon_sym_override] = ACTIONS(1443), + [anon_sym_module] = ACTIONS(1443), + [anon_sym_any] = ACTIONS(1443), + [anon_sym_number] = ACTIONS(1443), + [anon_sym_boolean] = ACTIONS(1443), + [anon_sym_string] = ACTIONS(1443), + [anon_sym_symbol] = ACTIONS(1443), + [anon_sym_abstract] = ACTIONS(1443), + [anon_sym_interface] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_PIPE_RBRACE] = ACTIONS(1441), + [sym__automatic_semicolon] = ACTIONS(1441), + }, + [592] = { + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_export] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1447), + [anon_sym_import] = ACTIONS(1447), + [anon_sym_var] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_await] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_do] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [anon_sym_with] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_debugger] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LTtemplate_GT] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_void] = ACTIONS(1447), + [anon_sym_delete] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1445), + [sym_number] = ACTIONS(1445), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_true] = ACTIONS(1447), + [sym_false] = ACTIONS(1447), + [sym_null] = ACTIONS(1447), + [sym_undefined] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_readonly] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1447), + [anon_sym_set] = ACTIONS(1447), + [anon_sym_declare] = ACTIONS(1447), + [anon_sym_public] = ACTIONS(1447), + [anon_sym_private] = ACTIONS(1447), + [anon_sym_protected] = ACTIONS(1447), + [anon_sym_override] = ACTIONS(1447), + [anon_sym_module] = ACTIONS(1447), + [anon_sym_any] = ACTIONS(1447), + [anon_sym_number] = ACTIONS(1447), + [anon_sym_boolean] = ACTIONS(1447), + [anon_sym_string] = ACTIONS(1447), + [anon_sym_symbol] = ACTIONS(1447), + [anon_sym_abstract] = ACTIONS(1447), + [anon_sym_interface] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_PIPE_RBRACE] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(1445), }, [593] = { - [sym__call_signature] = STATE(3985), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2053), - [anon_sym_export] = ACTIONS(2055), + [sym__call_signature] = STATE(3957), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2024), + [anon_sym_export] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2055), + [anon_sym_namespace] = ACTIONS(2026), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -78837,239 +78956,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [594] = { - [sym_statement_block] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_export] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(1357), - [anon_sym_var] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1357), - [anon_sym_with] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_debugger] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_throw] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_LTtemplate_GT] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_class] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(1357), - [anon_sym_new] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_delete] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1355), - [sym_number] = ACTIONS(1355), - [sym_this] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_undefined] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_readonly] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1357), - [anon_sym_set] = ACTIONS(1357), - [anon_sym_declare] = ACTIONS(1357), - [anon_sym_public] = ACTIONS(1357), - [anon_sym_private] = ACTIONS(1357), - [anon_sym_protected] = ACTIONS(1357), - [anon_sym_override] = ACTIONS(1357), - [anon_sym_module] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_number] = ACTIONS(1357), - [anon_sym_boolean] = ACTIONS(1357), - [anon_sym_string] = ACTIONS(1357), - [anon_sym_symbol] = ACTIONS(1357), - [anon_sym_abstract] = ACTIONS(1357), - [anon_sym_interface] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - }, - [595] = { - [sym_finally_clause] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2063), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_namespace] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(2063), - [anon_sym_import] = ACTIONS(2063), - [anon_sym_var] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_BANG] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_switch] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_with] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_debugger] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_throw] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_case] = ACTIONS(2063), - [anon_sym_finally] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2063), - [anon_sym_SLASH] = ACTIONS(2063), - [anon_sym_class] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_function] = ACTIONS(2063), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_void] = ACTIONS(2063), - [anon_sym_delete] = ACTIONS(2063), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2061), - [sym_number] = ACTIONS(2061), - [sym_this] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_true] = ACTIONS(2063), - [sym_false] = ACTIONS(2063), - [sym_null] = ACTIONS(2063), - [sym_undefined] = ACTIONS(2063), - [anon_sym_AT] = ACTIONS(2061), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_readonly] = ACTIONS(2063), - [anon_sym_get] = ACTIONS(2063), - [anon_sym_set] = ACTIONS(2063), - [anon_sym_declare] = ACTIONS(2063), - [anon_sym_public] = ACTIONS(2063), - [anon_sym_private] = ACTIONS(2063), - [anon_sym_protected] = ACTIONS(2063), - [anon_sym_override] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_any] = ACTIONS(2063), - [anon_sym_number] = ACTIONS(2063), - [anon_sym_boolean] = ACTIONS(2063), - [anon_sym_string] = ACTIONS(2063), - [anon_sym_symbol] = ACTIONS(2063), - [anon_sym_abstract] = ACTIONS(2063), - [anon_sym_interface] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - }, - [596] = { - [sym__call_signature] = STATE(3972), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), + [sym__call_signature] = STATE(4033), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1985), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(2011), + [anon_sym_of] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1996), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79080,77 +79037,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_readonly] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_declare] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_protected] = ACTIONS(1985), - [anon_sym_override] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_any] = ACTIONS(1985), - [anon_sym_number] = ACTIONS(1985), - [anon_sym_boolean] = ACTIONS(1985), - [anon_sym_string] = ACTIONS(1985), - [anon_sym_symbol] = ACTIONS(1985), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [597] = { - [sym__call_signature] = STATE(3985), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(2053), - [anon_sym_export] = ACTIONS(2055), + [595] = { + [sym__call_signature] = STATE(4012), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2061), [anon_sym_EQ] = ACTIONS(1313), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2055), + [anon_sym_namespace] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(1996), [anon_sym_EQ_GT] = ACTIONS(1315), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -79161,520 +79118,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1481), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(1481), - [anon_sym_var] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_with] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_debugger] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_throw] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_LTtemplate_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_class] = ACTIONS(1481), - [anon_sym_async] = ACTIONS(1481), - [anon_sym_function] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1479), - [sym_number] = ACTIONS(1479), - [sym_this] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [sym_null] = ACTIONS(1481), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_readonly] = ACTIONS(1481), - [anon_sym_get] = ACTIONS(1481), - [anon_sym_set] = ACTIONS(1481), - [anon_sym_declare] = ACTIONS(1481), - [anon_sym_public] = ACTIONS(1481), - [anon_sym_private] = ACTIONS(1481), - [anon_sym_protected] = ACTIONS(1481), - [anon_sym_override] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1481), - [anon_sym_any] = ACTIONS(1481), - [anon_sym_number] = ACTIONS(1481), - [anon_sym_boolean] = ACTIONS(1481), - [anon_sym_string] = ACTIONS(1481), - [anon_sym_symbol] = ACTIONS(1481), - [anon_sym_abstract] = ACTIONS(1481), - [anon_sym_interface] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [sym__automatic_semicolon] = ACTIONS(1487), - }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(2065), - [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(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_with] = 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(2065), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LTtemplate_GT] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2065), - [sym_number] = ACTIONS(2065), - [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(2065), - [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_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1383), - [anon_sym_export] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_namespace] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_let] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_debugger] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_throw] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_LTtemplate_GT] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_number] = ACTIONS(1381), - [sym_this] = ACTIONS(1383), - [sym_super] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [sym_null] = ACTIONS(1383), - [sym_undefined] = ACTIONS(1383), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(1383), - [anon_sym_set] = ACTIONS(1383), - [anon_sym_declare] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_private] = ACTIONS(1383), - [anon_sym_protected] = ACTIONS(1383), - [anon_sym_override] = ACTIONS(1383), - [anon_sym_module] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_number] = ACTIONS(1383), - [anon_sym_boolean] = ACTIONS(1383), - [anon_sym_string] = ACTIONS(1383), - [anon_sym_symbol] = ACTIONS(1383), - [anon_sym_abstract] = ACTIONS(1383), - [anon_sym_interface] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [sym__automatic_semicolon] = ACTIONS(1389), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_export] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_namespace] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_typeof] = ACTIONS(1523), - [anon_sym_import] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_else] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_await] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [anon_sym_with] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_debugger] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_throw] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_case] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LTtemplate_GT] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_class] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_function] = ACTIONS(1523), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_delete] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_number] = ACTIONS(1521), - [sym_this] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_true] = ACTIONS(1523), - [sym_false] = ACTIONS(1523), - [sym_null] = ACTIONS(1523), - [sym_undefined] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_get] = ACTIONS(1523), - [anon_sym_set] = ACTIONS(1523), - [anon_sym_declare] = ACTIONS(1523), - [anon_sym_public] = ACTIONS(1523), - [anon_sym_private] = ACTIONS(1523), - [anon_sym_protected] = ACTIONS(1523), - [anon_sym_override] = ACTIONS(1523), - [anon_sym_module] = ACTIONS(1523), - [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_abstract] = ACTIONS(1523), - [anon_sym_interface] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [sym__automatic_semicolon] = ACTIONS(1529), + [sym__ternary_qmark] = ACTIONS(150), }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1553), - [anon_sym_export] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_typeof] = ACTIONS(1553), - [anon_sym_import] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_await] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_with] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_debugger] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_LTtemplate_GT] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_number] = ACTIONS(1551), - [sym_this] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_undefined] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1553), - [anon_sym_set] = ACTIONS(1553), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1553), - [anon_sym_private] = ACTIONS(1553), - [anon_sym_protected] = ACTIONS(1553), - [anon_sym_override] = ACTIONS(1553), - [anon_sym_module] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_number] = ACTIONS(1553), - [anon_sym_boolean] = ACTIONS(1553), - [anon_sym_string] = ACTIONS(1553), - [anon_sym_symbol] = ACTIONS(1553), - [anon_sym_abstract] = ACTIONS(1553), - [anon_sym_interface] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [sym__automatic_semicolon] = ACTIONS(1559), + [596] = { + [sym_statement_block] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_type] = ACTIONS(1393), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_typeof] = ACTIONS(1393), - [anon_sym_import] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_await] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_debugger] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_throw] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LTtemplate_GT] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_class] = ACTIONS(1393), - [anon_sym_async] = ACTIONS(1393), - [anon_sym_function] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_delete] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_number] = ACTIONS(1391), - [sym_this] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_true] = ACTIONS(1393), - [sym_false] = ACTIONS(1393), - [sym_null] = ACTIONS(1393), - [sym_undefined] = ACTIONS(1393), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_readonly] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(1393), - [anon_sym_set] = ACTIONS(1393), - [anon_sym_declare] = ACTIONS(1393), - [anon_sym_public] = ACTIONS(1393), - [anon_sym_private] = ACTIONS(1393), - [anon_sym_protected] = ACTIONS(1393), - [anon_sym_override] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_number] = ACTIONS(1393), - [anon_sym_boolean] = ACTIONS(1393), - [anon_sym_string] = ACTIONS(1393), - [anon_sym_symbol] = ACTIONS(1393), - [anon_sym_abstract] = ACTIONS(1393), - [anon_sym_interface] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [sym__automatic_semicolon] = ACTIONS(1399), + [597] = { + [sym_statement_block] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), }, - [604] = { - [sym_else_clause] = STATE(748), + [598] = { + [sym_finally_clause] = STATE(648), [ts_builtin_sym_end] = ACTIONS(2069), [sym_identifier] = ACTIONS(2071), [anon_sym_export] = ACTIONS(2071), @@ -79689,7 +79330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2071), [anon_sym_const] = ACTIONS(2071), [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_else] = ACTIONS(2073), + [anon_sym_else] = ACTIONS(2071), [anon_sym_if] = ACTIONS(2071), [anon_sym_switch] = ACTIONS(2071), [anon_sym_for] = ACTIONS(2071), @@ -79706,17 +79347,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2071), [anon_sym_SEMI] = ACTIONS(2069), [anon_sym_case] = ACTIONS(2071), + [anon_sym_finally] = ACTIONS(2041), [anon_sym_yield] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(2069), [anon_sym_LTtemplate_GT] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(2071), [anon_sym_class] = ACTIONS(2071), [anon_sym_async] = ACTIONS(2071), [anon_sym_function] = ACTIONS(2071), [anon_sym_new] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(2071), [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_SLASH] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(2071), [anon_sym_TILDE] = ACTIONS(2069), [anon_sym_void] = ACTIONS(2071), [anon_sym_delete] = ACTIONS(2071), @@ -79753,364 +79395,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2071), [anon_sym_enum] = ACTIONS(2071), }, + [599] = { + [sym__call_signature] = STATE(4033), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, + [600] = { + [sym__call_signature] = STATE(4012), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1315), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_override] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_with] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_debugger] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LTtemplate_GT] = ACTIONS(1455), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_delete] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_number] = ACTIONS(1455), + [sym_this] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_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_abstract] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [sym__automatic_semicolon] = ACTIONS(1463), + }, + [602] = { + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_namespace] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_typeof] = ACTIONS(2075), + [anon_sym_import] = ACTIONS(2075), + [anon_sym_var] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_switch] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_debugger] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_throw] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_case] = ACTIONS(2075), + [anon_sym_finally] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_LTtemplate_GT] = ACTIONS(2073), + [anon_sym_class] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_function] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_SLASH] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_void] = ACTIONS(2075), + [anon_sym_delete] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2073), + [sym_number] = ACTIONS(2073), + [sym_this] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_null] = ACTIONS(2075), + [sym_undefined] = ACTIONS(2075), + [anon_sym_AT] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_readonly] = ACTIONS(2075), + [anon_sym_get] = ACTIONS(2075), + [anon_sym_set] = ACTIONS(2075), + [anon_sym_declare] = ACTIONS(2075), + [anon_sym_public] = ACTIONS(2075), + [anon_sym_private] = ACTIONS(2075), + [anon_sym_protected] = ACTIONS(2075), + [anon_sym_override] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_any] = ACTIONS(2075), + [anon_sym_number] = ACTIONS(2075), + [anon_sym_boolean] = ACTIONS(2075), + [anon_sym_string] = ACTIONS(2075), + [anon_sym_symbol] = ACTIONS(2075), + [anon_sym_abstract] = ACTIONS(2075), + [anon_sym_interface] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2079), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2079), + [anon_sym_import] = ACTIONS(2079), + [anon_sym_var] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_else] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_switch] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_with] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_debugger] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_throw] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_case] = ACTIONS(2079), + [anon_sym_finally] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_function] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2079), + [anon_sym_delete] = ACTIONS(2079), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_this] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_null] = ACTIONS(2079), + [sym_undefined] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_readonly] = ACTIONS(2079), + [anon_sym_get] = ACTIONS(2079), + [anon_sym_set] = ACTIONS(2079), + [anon_sym_declare] = ACTIONS(2079), + [anon_sym_public] = ACTIONS(2079), + [anon_sym_private] = ACTIONS(2079), + [anon_sym_protected] = ACTIONS(2079), + [anon_sym_override] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_any] = ACTIONS(2079), + [anon_sym_number] = ACTIONS(2079), + [anon_sym_boolean] = ACTIONS(2079), + [anon_sym_string] = ACTIONS(2079), + [anon_sym_symbol] = ACTIONS(2079), + [anon_sym_abstract] = ACTIONS(2079), + [anon_sym_interface] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_namespace] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_typeof] = ACTIONS(1519), + [anon_sym_import] = ACTIONS(1519), + [anon_sym_var] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_switch] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [anon_sym_with] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_debugger] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_throw] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_yield] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_LTtemplate_GT] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_function] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1519), + [anon_sym_delete] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1517), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_true] = ACTIONS(1519), + [sym_false] = ACTIONS(1519), + [sym_null] = ACTIONS(1519), + [sym_undefined] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_readonly] = ACTIONS(1519), + [anon_sym_get] = ACTIONS(1519), + [anon_sym_set] = ACTIONS(1519), + [anon_sym_declare] = ACTIONS(1519), + [anon_sym_public] = ACTIONS(1519), + [anon_sym_private] = ACTIONS(1519), + [anon_sym_protected] = ACTIONS(1519), + [anon_sym_override] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), + [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_abstract] = ACTIONS(1519), + [anon_sym_interface] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [sym__automatic_semicolon] = ACTIONS(1525), + }, [605] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_export] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym_import] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_with] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_debugger] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LTtemplate_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_number] = ACTIONS(1531), - [sym_this] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_get] = ACTIONS(1533), - [anon_sym_set] = ACTIONS(1533), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1533), - [anon_sym_private] = ACTIONS(1533), - [anon_sym_protected] = ACTIONS(1533), - [anon_sym_override] = ACTIONS(1533), - [anon_sym_module] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_number] = ACTIONS(1533), - [anon_sym_boolean] = ACTIONS(1533), - [anon_sym_string] = ACTIONS(1533), - [anon_sym_symbol] = ACTIONS(1533), - [anon_sym_abstract] = ACTIONS(1533), - [anon_sym_interface] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym__automatic_semicolon] = ACTIONS(1539), + [sym_else_clause] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_case] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LTtemplate_GT] = ACTIONS(2081), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2081), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2081), + [sym_number] = ACTIONS(2081), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1467), - [anon_sym_default] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_typeof] = ACTIONS(1467), - [anon_sym_import] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_let] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_else] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_await] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_try] = ACTIONS(1467), - [anon_sym_with] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_debugger] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_throw] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_LTtemplate_GT] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(1467), - [anon_sym_async] = ACTIONS(1467), - [anon_sym_function] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_delete] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_number] = ACTIONS(1465), - [sym_this] = ACTIONS(1467), - [sym_super] = ACTIONS(1467), - [sym_true] = ACTIONS(1467), - [sym_false] = ACTIONS(1467), - [sym_null] = ACTIONS(1467), - [sym_undefined] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_readonly] = ACTIONS(1467), - [anon_sym_get] = ACTIONS(1467), - [anon_sym_set] = ACTIONS(1467), - [anon_sym_declare] = ACTIONS(1467), - [anon_sym_public] = ACTIONS(1467), - [anon_sym_private] = ACTIONS(1467), - [anon_sym_protected] = ACTIONS(1467), - [anon_sym_override] = ACTIONS(1467), - [anon_sym_module] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_number] = ACTIONS(1467), - [anon_sym_boolean] = ACTIONS(1467), - [anon_sym_string] = ACTIONS(1467), - [anon_sym_symbol] = ACTIONS(1467), - [anon_sym_abstract] = ACTIONS(1467), - [anon_sym_interface] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_namespace] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_debugger] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LTtemplate_GT] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_delete] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_declare] = ACTIONS(1399), + [anon_sym_public] = ACTIONS(1399), + [anon_sym_private] = ACTIONS(1399), + [anon_sym_protected] = ACTIONS(1399), + [anon_sym_override] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_interface] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(1405), - [sym_identifier] = ACTIONS(1407), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_typeof] = ACTIONS(1407), - [anon_sym_import] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_await] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1407), - [anon_sym_with] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_debugger] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_throw] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LTtemplate_GT] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_class] = ACTIONS(1407), - [anon_sym_async] = ACTIONS(1407), - [anon_sym_function] = ACTIONS(1407), - [anon_sym_new] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_delete] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_number] = ACTIONS(1405), - [sym_this] = ACTIONS(1407), - [sym_super] = ACTIONS(1407), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [sym_null] = ACTIONS(1407), - [sym_undefined] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_abstract] = ACTIONS(1407), - [anon_sym_interface] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [sym__automatic_semicolon] = ACTIONS(1413), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_namespace] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_typeof] = ACTIONS(1489), + [anon_sym_import] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_else] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_with] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_debugger] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_throw] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_LTtemplate_GT] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_function] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_delete] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_number] = ACTIONS(1487), + [sym_this] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [sym_null] = ACTIONS(1489), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_readonly] = ACTIONS(1489), + [anon_sym_get] = ACTIONS(1489), + [anon_sym_set] = ACTIONS(1489), + [anon_sym_declare] = ACTIONS(1489), + [anon_sym_public] = ACTIONS(1489), + [anon_sym_private] = ACTIONS(1489), + [anon_sym_protected] = ACTIONS(1489), + [anon_sym_override] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [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_abstract] = ACTIONS(1489), + [anon_sym_interface] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [sym__automatic_semicolon] = ACTIONS(1495), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(2075), - [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(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_with] = 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(2075), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_finally] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_LTtemplate_GT] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2075), - [anon_sym_SQUOTE] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2075), - [sym_number] = ACTIONS(2075), - [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(2075), - [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_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_typeof] = ACTIONS(1395), + [anon_sym_import] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_with] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_debugger] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_LTtemplate_GT] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1395), + [anon_sym_class] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_function] = ACTIONS(1395), + [anon_sym_new] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_delete] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_number] = ACTIONS(1393), + [sym_this] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_true] = ACTIONS(1395), + [sym_false] = ACTIONS(1395), + [sym_null] = ACTIONS(1395), + [sym_undefined] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1395), + [anon_sym_interface] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), }, [609] = { - [sym__call_signature] = STATE(3972), - [sym_formal_parameters] = STATE(2956), - [sym_type_parameters] = STATE(3884), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1985), + [sym__call_signature] = STATE(4033), + [sym_formal_parameters] = STATE(2887), + [sym_type_parameters] = STATE(3731), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1985), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1996), [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -80121,517 +80243,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_readonly] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_declare] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_protected] = ACTIONS(1985), - [anon_sym_override] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_any] = ACTIONS(1985), - [anon_sym_number] = ACTIONS(1985), - [anon_sym_boolean] = ACTIONS(1985), - [anon_sym_string] = ACTIONS(1985), - [anon_sym_symbol] = ACTIONS(1985), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, [610] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_namespace] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_typeof] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_with] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_debugger] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_throw] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LTtemplate_GT] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1369), - [anon_sym_async] = ACTIONS(1369), - [anon_sym_function] = ACTIONS(1369), - [anon_sym_new] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_delete] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_number] = ACTIONS(1367), - [sym_this] = ACTIONS(1369), - [sym_super] = ACTIONS(1369), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [sym_null] = ACTIONS(1369), - [sym_undefined] = ACTIONS(1369), - [anon_sym_AT] = ACTIONS(1367), - [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_abstract] = ACTIONS(1369), - [anon_sym_interface] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [sym__automatic_semicolon] = ACTIONS(1375), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_with] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_debugger] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LTtemplate_GT] = ACTIONS(1507), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_function] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_delete] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1507), + [sym_this] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_interface] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(1515), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_finally] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LTtemplate_GT] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2079), - [sym_number] = ACTIONS(2079), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_with] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_debugger] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_throw] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LTtemplate_GT] = ACTIONS(1543), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(1545), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_delete] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_number] = ACTIONS(1543), + [sym_this] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_undefined] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_readonly] = ACTIONS(1545), + [anon_sym_get] = ACTIONS(1545), + [anon_sym_set] = ACTIONS(1545), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_private] = ACTIONS(1545), + [anon_sym_protected] = ACTIONS(1545), + [anon_sym_override] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_number] = ACTIONS(1545), + [anon_sym_boolean] = ACTIONS(1545), + [anon_sym_string] = ACTIONS(1545), + [anon_sym_symbol] = ACTIONS(1545), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [sym__automatic_semicolon] = ACTIONS(1551), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(2083), - [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(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_with] = 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(2083), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [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(2083), - [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_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_namespace] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1499), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_var] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_switch] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_await] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_with] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_debugger] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_throw] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LTtemplate_GT] = ACTIONS(1497), + [anon_sym_class] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_function] = ACTIONS(1499), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1497), + [anon_sym_void] = ACTIONS(1499), + [anon_sym_delete] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1497), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1497), + [sym_number] = ACTIONS(1497), + [sym_this] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [sym_null] = ACTIONS(1499), + [sym_undefined] = ACTIONS(1499), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_readonly] = ACTIONS(1499), + [anon_sym_get] = ACTIONS(1499), + [anon_sym_set] = ACTIONS(1499), + [anon_sym_declare] = ACTIONS(1499), + [anon_sym_public] = ACTIONS(1499), + [anon_sym_private] = ACTIONS(1499), + [anon_sym_protected] = ACTIONS(1499), + [anon_sym_override] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_any] = ACTIONS(1499), + [anon_sym_number] = ACTIONS(1499), + [anon_sym_boolean] = ACTIONS(1499), + [anon_sym_string] = ACTIONS(1499), + [anon_sym_symbol] = ACTIONS(1499), + [anon_sym_abstract] = ACTIONS(1499), + [anon_sym_interface] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [sym__automatic_semicolon] = ACTIONS(1505), }, [613] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_identifier] = ACTIONS(1565), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_type] = ACTIONS(1565), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_await] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_with] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_debugger] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_yield] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_LTtemplate_GT] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_async] = ACTIONS(1565), - [anon_sym_function] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_undefined] = ACTIONS(1565), - [anon_sym_AT] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_readonly] = ACTIONS(1565), - [anon_sym_get] = ACTIONS(1565), - [anon_sym_set] = ACTIONS(1565), - [anon_sym_declare] = ACTIONS(1565), - [anon_sym_public] = ACTIONS(1565), - [anon_sym_private] = ACTIONS(1565), - [anon_sym_protected] = ACTIONS(1565), - [anon_sym_override] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_number] = ACTIONS(1565), - [anon_sym_boolean] = ACTIONS(1565), - [anon_sym_string] = ACTIONS(1565), - [anon_sym_symbol] = ACTIONS(1565), - [anon_sym_abstract] = ACTIONS(1565), - [anon_sym_interface] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [sym__automatic_semicolon] = ACTIONS(1571), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_export] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_namespace] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1535), + [anon_sym_var] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_switch] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_do] = ACTIONS(1535), + [anon_sym_try] = ACTIONS(1535), + [anon_sym_with] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_debugger] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_throw] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LTtemplate_GT] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_function] = ACTIONS(1535), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1535), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1533), + [sym_number] = ACTIONS(1533), + [sym_this] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_true] = ACTIONS(1535), + [sym_false] = ACTIONS(1535), + [sym_null] = ACTIONS(1535), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_readonly] = ACTIONS(1535), + [anon_sym_get] = ACTIONS(1535), + [anon_sym_set] = ACTIONS(1535), + [anon_sym_declare] = ACTIONS(1535), + [anon_sym_public] = ACTIONS(1535), + [anon_sym_private] = ACTIONS(1535), + [anon_sym_protected] = ACTIONS(1535), + [anon_sym_override] = ACTIONS(1535), + [anon_sym_module] = ACTIONS(1535), + [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_abstract] = ACTIONS(1535), + [anon_sym_interface] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [sym__automatic_semicolon] = ACTIONS(1541), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_export] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_namespace] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_typeof] = ACTIONS(1421), - [anon_sym_import] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_await] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [anon_sym_with] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_debugger] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LTtemplate_GT] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_class] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(1421), - [anon_sym_new] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_delete] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1419), - [sym_number] = ACTIONS(1419), - [sym_this] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_undefined] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_readonly] = ACTIONS(1421), - [anon_sym_get] = ACTIONS(1421), - [anon_sym_set] = ACTIONS(1421), - [anon_sym_declare] = ACTIONS(1421), - [anon_sym_public] = ACTIONS(1421), - [anon_sym_private] = ACTIONS(1421), - [anon_sym_protected] = ACTIONS(1421), - [anon_sym_override] = ACTIONS(1421), - [anon_sym_module] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_number] = ACTIONS(1421), - [anon_sym_boolean] = ACTIONS(1421), - [anon_sym_string] = ACTIONS(1421), - [anon_sym_symbol] = ACTIONS(1421), - [anon_sym_abstract] = ACTIONS(1421), - [anon_sym_interface] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_typeof] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1559), + [anon_sym_var] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_switch] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1559), + [anon_sym_try] = ACTIONS(1559), + [anon_sym_with] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_debugger] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_throw] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1559), + [anon_sym_yield] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LTtemplate_GT] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_function] = ACTIONS(1559), + [anon_sym_new] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1559), + [anon_sym_delete] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1557), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1557), + [sym_number] = ACTIONS(1557), + [sym_this] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_true] = ACTIONS(1559), + [sym_false] = ACTIONS(1559), + [sym_null] = ACTIONS(1559), + [sym_undefined] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1557), + [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_abstract] = ACTIONS(1559), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [sym__automatic_semicolon] = ACTIONS(1565), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_default] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_typeof] = ACTIONS(1445), - [anon_sym_import] = ACTIONS(1445), - [anon_sym_var] = ACTIONS(1445), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_await] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_try] = ACTIONS(1445), - [anon_sym_with] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_debugger] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_throw] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_case] = ACTIONS(1445), - [anon_sym_yield] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_LTtemplate_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1445), - [anon_sym_class] = ACTIONS(1445), - [anon_sym_async] = ACTIONS(1445), - [anon_sym_function] = ACTIONS(1445), - [anon_sym_new] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_delete] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_number] = ACTIONS(1443), - [sym_this] = ACTIONS(1445), - [sym_super] = ACTIONS(1445), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_undefined] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_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_abstract] = ACTIONS(1445), - [anon_sym_interface] = ACTIONS(1445), - [anon_sym_enum] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(1451), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1375), + [anon_sym_namespace] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_with] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_debugger] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_LTtemplate_GT] = ACTIONS(1373), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_number] = ACTIONS(1373), + [sym_this] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_true] = ACTIONS(1375), + [sym_false] = ACTIONS(1375), + [sym_null] = ACTIONS(1375), + [sym_undefined] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1375), + [anon_sym_set] = ACTIONS(1375), + [anon_sym_declare] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_protected] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_number] = ACTIONS(1375), + [anon_sym_boolean] = ACTIONS(1375), + [anon_sym_string] = ACTIONS(1375), + [anon_sym_symbol] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [sym__automatic_semicolon] = ACTIONS(1381), }, [616] = { [ts_builtin_sym_end] = ACTIONS(2087), @@ -80653,7 +80777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2089), [anon_sym_for] = ACTIONS(2089), [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2087), [anon_sym_await] = ACTIONS(2089), [anon_sym_while] = ACTIONS(2089), [anon_sym_do] = ACTIONS(2089), @@ -80666,17 +80789,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2089), [anon_sym_SEMI] = ACTIONS(2087), [anon_sym_case] = ACTIONS(2089), + [anon_sym_finally] = ACTIONS(2089), [anon_sym_yield] = ACTIONS(2089), [anon_sym_LBRACK] = ACTIONS(2087), [anon_sym_LTtemplate_GT] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), [anon_sym_class] = ACTIONS(2089), [anon_sym_async] = ACTIONS(2089), [anon_sym_function] = ACTIONS(2089), [anon_sym_new] = 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(2087), [anon_sym_void] = ACTIONS(2089), [anon_sym_delete] = ACTIONS(2089), @@ -80714,166 +80838,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2089), }, [617] = { - [sym_statement_block] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_export] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(1357), - [anon_sym_var] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1357), - [anon_sym_with] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_debugger] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_throw] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_LTtemplate_GT] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_class] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(1357), - [anon_sym_new] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_delete] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1355), - [sym_number] = ACTIONS(1355), - [sym_this] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_undefined] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_readonly] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1357), - [anon_sym_set] = ACTIONS(1357), - [anon_sym_declare] = ACTIONS(1357), - [anon_sym_public] = ACTIONS(1357), - [anon_sym_private] = ACTIONS(1357), - [anon_sym_protected] = ACTIONS(1357), - [anon_sym_override] = ACTIONS(1357), - [anon_sym_module] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_number] = ACTIONS(1357), - [anon_sym_boolean] = ACTIONS(1357), - [anon_sym_string] = ACTIONS(1357), - [anon_sym_symbol] = ACTIONS(1357), - [anon_sym_abstract] = ACTIONS(1357), - [anon_sym_interface] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_namespace] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(1385), + [anon_sym_import] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_await] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_try] = ACTIONS(1385), + [anon_sym_with] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_debugger] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_yield] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LTtemplate_GT] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_delete] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_number] = ACTIONS(1383), + [sym_this] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [sym_null] = ACTIONS(1385), + [sym_undefined] = ACTIONS(1385), + [anon_sym_AT] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_readonly] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(1385), + [anon_sym_set] = ACTIONS(1385), + [anon_sym_declare] = ACTIONS(1385), + [anon_sym_public] = ACTIONS(1385), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_protected] = ACTIONS(1385), + [anon_sym_override] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_number] = ACTIONS(1385), + [anon_sym_boolean] = ACTIONS(1385), + [anon_sym_string] = ACTIONS(1385), + [anon_sym_symbol] = ACTIONS(1385), + [anon_sym_abstract] = ACTIONS(1385), + [anon_sym_interface] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [sym__automatic_semicolon] = ACTIONS(1391), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_namespace] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_typeof] = ACTIONS(1455), - [anon_sym_import] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_else] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_await] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_with] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_debugger] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_throw] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_LTtemplate_GT] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_class] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(1455), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_delete] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_number] = ACTIONS(1453), - [sym_this] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_null] = ACTIONS(1455), - [sym_undefined] = ACTIONS(1455), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_readonly] = ACTIONS(1455), - [anon_sym_get] = ACTIONS(1455), - [anon_sym_set] = ACTIONS(1455), - [anon_sym_declare] = ACTIONS(1455), - [anon_sym_public] = ACTIONS(1455), - [anon_sym_private] = ACTIONS(1455), - [anon_sym_protected] = ACTIONS(1455), - [anon_sym_override] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_number] = ACTIONS(1455), - [anon_sym_boolean] = ACTIONS(1455), - [anon_sym_string] = ACTIONS(1455), - [anon_sym_symbol] = ACTIONS(1455), - [anon_sym_abstract] = ACTIONS(1455), - [anon_sym_interface] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [sym__automatic_semicolon] = ACTIONS(1461), - }, - [619] = { [ts_builtin_sym_end] = ACTIONS(2091), [sym_identifier] = ACTIONS(2093), [anon_sym_export] = ACTIONS(2093), @@ -80893,6 +80937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2093), [anon_sym_for] = ACTIONS(2093), [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2091), [anon_sym_await] = ACTIONS(2093), [anon_sym_while] = ACTIONS(2093), [anon_sym_do] = ACTIONS(2093), @@ -80908,14 +80953,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2093), [anon_sym_LBRACK] = ACTIONS(2091), [anon_sym_LTtemplate_GT] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), [anon_sym_class] = ACTIONS(2093), [anon_sym_async] = ACTIONS(2093), [anon_sym_function] = ACTIONS(2093), [anon_sym_new] = ACTIONS(2093), [anon_sym_PLUS] = ACTIONS(2093), [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), [anon_sym_TILDE] = ACTIONS(2091), [anon_sym_void] = ACTIONS(2093), [anon_sym_delete] = ACTIONS(2093), @@ -80952,7 +80997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2093), [anon_sym_enum] = ACTIONS(2093), }, - [620] = { + [619] = { [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2097), [anon_sym_export] = ACTIONS(2097), @@ -80972,6 +81017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2097), [anon_sym_for] = ACTIONS(2097), [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), [anon_sym_await] = ACTIONS(2097), [anon_sym_while] = ACTIONS(2097), [anon_sym_do] = ACTIONS(2097), @@ -80987,14 +81033,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2097), [anon_sym_LBRACK] = ACTIONS(2095), [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), [anon_sym_class] = ACTIONS(2097), [anon_sym_async] = ACTIONS(2097), [anon_sym_function] = ACTIONS(2097), [anon_sym_new] = 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(2095), [anon_sym_void] = ACTIONS(2097), [anon_sym_delete] = ACTIONS(2097), @@ -81031,7 +81077,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2097), [anon_sym_enum] = ACTIONS(2097), }, + [620] = { + [ts_builtin_sym_end] = ACTIONS(1569), + [sym_identifier] = ACTIONS(1571), + [anon_sym_export] = ACTIONS(1571), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_type] = ACTIONS(1571), + [anon_sym_namespace] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_typeof] = ACTIONS(1571), + [anon_sym_import] = ACTIONS(1571), + [anon_sym_var] = ACTIONS(1571), + [anon_sym_let] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1571), + [anon_sym_switch] = ACTIONS(1571), + [anon_sym_for] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_await] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1571), + [anon_sym_do] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1571), + [anon_sym_with] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1571), + [anon_sym_debugger] = ACTIONS(1571), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_throw] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_case] = ACTIONS(1571), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LTtemplate_GT] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(1571), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1571), + [anon_sym_delete] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1569), + [sym_number] = ACTIONS(1569), + [sym_this] = ACTIONS(1571), + [sym_super] = ACTIONS(1571), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_undefined] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_readonly] = ACTIONS(1571), + [anon_sym_get] = ACTIONS(1571), + [anon_sym_set] = ACTIONS(1571), + [anon_sym_declare] = ACTIONS(1571), + [anon_sym_public] = ACTIONS(1571), + [anon_sym_private] = ACTIONS(1571), + [anon_sym_protected] = ACTIONS(1571), + [anon_sym_override] = ACTIONS(1571), + [anon_sym_module] = ACTIONS(1571), + [anon_sym_any] = ACTIONS(1571), + [anon_sym_number] = ACTIONS(1571), + [anon_sym_boolean] = ACTIONS(1571), + [anon_sym_string] = ACTIONS(1571), + [anon_sym_symbol] = ACTIONS(1571), + [anon_sym_abstract] = ACTIONS(1571), + [anon_sym_interface] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [sym__automatic_semicolon] = ACTIONS(1577), + }, [621] = { + [sym_statement_block] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_namespace] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_with] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_debugger] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LTtemplate_GT] = ACTIONS(1349), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1349), + [sym_this] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_readonly] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_declare] = ACTIONS(1351), + [anon_sym_public] = ACTIONS(1351), + [anon_sym_private] = ACTIONS(1351), + [anon_sym_protected] = ACTIONS(1351), + [anon_sym_override] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + }, + [622] = { + [ts_builtin_sym_end] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1409), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_namespace] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_await] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1409), + [anon_sym_with] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_debugger] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_throw] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1409), + [anon_sym_yield] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LTtemplate_GT] = ACTIONS(1407), + [anon_sym_class] = ACTIONS(1409), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(1409), + [anon_sym_new] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_number] = ACTIONS(1407), + [sym_this] = ACTIONS(1409), + [sym_super] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [sym_null] = ACTIONS(1409), + [sym_undefined] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_readonly] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(1409), + [anon_sym_set] = ACTIONS(1409), + [anon_sym_declare] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_private] = ACTIONS(1409), + [anon_sym_protected] = ACTIONS(1409), + [anon_sym_override] = ACTIONS(1409), + [anon_sym_module] = ACTIONS(1409), + [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_abstract] = ACTIONS(1409), + [anon_sym_interface] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [sym__automatic_semicolon] = ACTIONS(1415), + }, + [623] = { [ts_builtin_sym_end] = ACTIONS(2099), [sym_identifier] = ACTIONS(2101), [anon_sym_export] = ACTIONS(2101), @@ -81066,14 +81352,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2101), [anon_sym_LBRACK] = ACTIONS(2099), [anon_sym_LTtemplate_GT] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), [anon_sym_class] = ACTIONS(2101), [anon_sym_async] = ACTIONS(2101), [anon_sym_function] = ACTIONS(2101), [anon_sym_new] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(2101), [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), [anon_sym_TILDE] = ACTIONS(2099), [anon_sym_void] = ACTIONS(2101), [anon_sym_delete] = ACTIONS(2101), @@ -81110,7 +81396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2101), [anon_sym_enum] = ACTIONS(2101), }, - [622] = { + [624] = { [ts_builtin_sym_end] = ACTIONS(2103), [sym_identifier] = ACTIONS(2105), [anon_sym_export] = ACTIONS(2105), @@ -81145,14 +81431,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2105), [anon_sym_LBRACK] = ACTIONS(2103), [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), [anon_sym_class] = ACTIONS(2105), [anon_sym_async] = ACTIONS(2105), [anon_sym_function] = ACTIONS(2105), [anon_sym_new] = 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(2103), [anon_sym_void] = ACTIONS(2105), [anon_sym_delete] = ACTIONS(2105), @@ -81189,7 +81475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2105), [anon_sym_enum] = ACTIONS(2105), }, - [623] = { + [625] = { [ts_builtin_sym_end] = ACTIONS(2107), [sym_identifier] = ACTIONS(2109), [anon_sym_export] = ACTIONS(2109), @@ -81224,14 +81510,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2109), [anon_sym_LBRACK] = ACTIONS(2107), [anon_sym_LTtemplate_GT] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), [anon_sym_class] = ACTIONS(2109), [anon_sym_async] = ACTIONS(2109), [anon_sym_function] = ACTIONS(2109), [anon_sym_new] = 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(2107), [anon_sym_void] = ACTIONS(2109), [anon_sym_delete] = ACTIONS(2109), @@ -81268,7 +81554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2109), [anon_sym_enum] = ACTIONS(2109), }, - [624] = { + [626] = { [ts_builtin_sym_end] = ACTIONS(2111), [sym_identifier] = ACTIONS(2113), [anon_sym_export] = ACTIONS(2113), @@ -81303,14 +81589,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2113), [anon_sym_LBRACK] = ACTIONS(2111), [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_SLASH] = ACTIONS(2113), [anon_sym_class] = ACTIONS(2113), [anon_sym_async] = ACTIONS(2113), [anon_sym_function] = ACTIONS(2113), [anon_sym_new] = ACTIONS(2113), [anon_sym_PLUS] = ACTIONS(2113), [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_SLASH] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), [anon_sym_TILDE] = ACTIONS(2111), [anon_sym_void] = ACTIONS(2113), [anon_sym_delete] = ACTIONS(2113), @@ -81347,7 +81633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2113), [anon_sym_enum] = ACTIONS(2113), }, - [625] = { + [627] = { [ts_builtin_sym_end] = ACTIONS(2115), [sym_identifier] = ACTIONS(2117), [anon_sym_export] = ACTIONS(2117), @@ -81382,14 +81668,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2117), [anon_sym_LBRACK] = ACTIONS(2115), [anon_sym_LTtemplate_GT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), [anon_sym_class] = ACTIONS(2117), [anon_sym_async] = ACTIONS(2117), [anon_sym_function] = ACTIONS(2117), [anon_sym_new] = ACTIONS(2117), [anon_sym_PLUS] = ACTIONS(2117), [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), [anon_sym_TILDE] = ACTIONS(2115), [anon_sym_void] = ACTIONS(2117), [anon_sym_delete] = ACTIONS(2117), @@ -81426,7 +81712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2117), [anon_sym_enum] = ACTIONS(2117), }, - [626] = { + [628] = { [ts_builtin_sym_end] = ACTIONS(2119), [sym_identifier] = ACTIONS(2121), [anon_sym_export] = ACTIONS(2121), @@ -81461,14 +81747,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2121), [anon_sym_LBRACK] = ACTIONS(2119), [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), [anon_sym_class] = ACTIONS(2121), [anon_sym_async] = ACTIONS(2121), [anon_sym_function] = ACTIONS(2121), [anon_sym_new] = ACTIONS(2121), [anon_sym_PLUS] = ACTIONS(2121), [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_SLASH] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), [anon_sym_TILDE] = ACTIONS(2119), [anon_sym_void] = ACTIONS(2121), [anon_sym_delete] = ACTIONS(2121), @@ -81505,7 +81791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2121), [anon_sym_enum] = ACTIONS(2121), }, - [627] = { + [629] = { [ts_builtin_sym_end] = ACTIONS(2123), [sym_identifier] = ACTIONS(2125), [anon_sym_export] = ACTIONS(2125), @@ -81540,14 +81826,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2125), [anon_sym_LBRACK] = ACTIONS(2123), [anon_sym_LTtemplate_GT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), [anon_sym_class] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), [anon_sym_function] = ACTIONS(2125), [anon_sym_new] = 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(2123), [anon_sym_void] = ACTIONS(2125), [anon_sym_delete] = ACTIONS(2125), @@ -81584,86 +81870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2125), [anon_sym_enum] = ACTIONS(2125), }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(2101), - [anon_sym_import] = ACTIONS(2101), - [anon_sym_var] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_else] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_with] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_debugger] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_case] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LTtemplate_GT] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_void] = ACTIONS(2101), - [anon_sym_delete] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2099), - [sym_number] = ACTIONS(2099), - [sym_this] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_null] = ACTIONS(2101), - [sym_undefined] = ACTIONS(2101), - [anon_sym_AT] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_readonly] = ACTIONS(2101), - [anon_sym_get] = ACTIONS(2101), - [anon_sym_set] = ACTIONS(2101), - [anon_sym_declare] = ACTIONS(2101), - [anon_sym_public] = ACTIONS(2101), - [anon_sym_private] = ACTIONS(2101), - [anon_sym_protected] = ACTIONS(2101), - [anon_sym_override] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_any] = ACTIONS(2101), - [anon_sym_number] = ACTIONS(2101), - [anon_sym_boolean] = ACTIONS(2101), - [anon_sym_string] = ACTIONS(2101), - [anon_sym_symbol] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - }, - [629] = { + [630] = { [ts_builtin_sym_end] = ACTIONS(2127), [sym_identifier] = ACTIONS(2129), [anon_sym_export] = ACTIONS(2129), @@ -81698,14 +81905,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2129), [anon_sym_LBRACK] = ACTIONS(2127), [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), [anon_sym_class] = ACTIONS(2129), [anon_sym_async] = ACTIONS(2129), [anon_sym_function] = ACTIONS(2129), [anon_sym_new] = ACTIONS(2129), [anon_sym_PLUS] = ACTIONS(2129), [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), [anon_sym_TILDE] = ACTIONS(2127), [anon_sym_void] = ACTIONS(2129), [anon_sym_delete] = ACTIONS(2129), @@ -81742,7 +81949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2129), [anon_sym_enum] = ACTIONS(2129), }, - [630] = { + [631] = { [ts_builtin_sym_end] = ACTIONS(2131), [sym_identifier] = ACTIONS(2133), [anon_sym_export] = ACTIONS(2133), @@ -81777,14 +81984,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2133), [anon_sym_LBRACK] = ACTIONS(2131), [anon_sym_LTtemplate_GT] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2133), [anon_sym_class] = ACTIONS(2133), [anon_sym_async] = ACTIONS(2133), [anon_sym_function] = ACTIONS(2133), [anon_sym_new] = ACTIONS(2133), [anon_sym_PLUS] = ACTIONS(2133), [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), [anon_sym_TILDE] = ACTIONS(2131), [anon_sym_void] = ACTIONS(2133), [anon_sym_delete] = ACTIONS(2133), @@ -81821,85 +82028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2133), [anon_sym_enum] = ACTIONS(2133), }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - }, [632] = { [ts_builtin_sym_end] = ACTIONS(2135), [sym_identifier] = ACTIONS(2137), @@ -81935,14 +82063,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2137), [anon_sym_LBRACK] = ACTIONS(2135), [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), [anon_sym_class] = ACTIONS(2137), [anon_sym_async] = ACTIONS(2137), [anon_sym_function] = ACTIONS(2137), [anon_sym_new] = ACTIONS(2137), [anon_sym_PLUS] = ACTIONS(2137), [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), [anon_sym_TILDE] = ACTIONS(2135), [anon_sym_void] = ACTIONS(2137), [anon_sym_delete] = ACTIONS(2137), @@ -82014,14 +82142,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2141), [anon_sym_LBRACK] = ACTIONS(2139), [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_SLASH] = ACTIONS(2141), [anon_sym_class] = ACTIONS(2141), [anon_sym_async] = ACTIONS(2141), [anon_sym_function] = ACTIONS(2141), [anon_sym_new] = ACTIONS(2141), [anon_sym_PLUS] = ACTIONS(2141), [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_SLASH] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), [anon_sym_TILDE] = ACTIONS(2139), [anon_sym_void] = ACTIONS(2141), [anon_sym_delete] = ACTIONS(2141), @@ -82093,14 +82221,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2145), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), [anon_sym_class] = ACTIONS(2145), [anon_sym_async] = ACTIONS(2145), [anon_sym_function] = ACTIONS(2145), [anon_sym_new] = ACTIONS(2145), [anon_sym_PLUS] = ACTIONS(2145), [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), [anon_sym_TILDE] = ACTIONS(2143), [anon_sym_void] = ACTIONS(2145), [anon_sym_delete] = ACTIONS(2145), @@ -82172,14 +82300,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2149), [anon_sym_LBRACK] = ACTIONS(2147), [anon_sym_LTtemplate_GT] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), [anon_sym_class] = ACTIONS(2149), [anon_sym_async] = ACTIONS(2149), [anon_sym_function] = ACTIONS(2149), [anon_sym_new] = ACTIONS(2149), [anon_sym_PLUS] = ACTIONS(2149), [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), [anon_sym_TILDE] = ACTIONS(2147), [anon_sym_void] = ACTIONS(2149), [anon_sym_delete] = ACTIONS(2149), @@ -82251,14 +82379,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2151), [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), [anon_sym_class] = ACTIONS(2153), [anon_sym_async] = ACTIONS(2153), [anon_sym_function] = ACTIONS(2153), [anon_sym_new] = ACTIONS(2153), [anon_sym_PLUS] = ACTIONS(2153), [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_SLASH] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), [anon_sym_TILDE] = ACTIONS(2151), [anon_sym_void] = ACTIONS(2153), [anon_sym_delete] = ACTIONS(2153), @@ -82330,14 +82458,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2157), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_LTtemplate_GT] = ACTIONS(2155), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2157), [anon_sym_LT] = ACTIONS(2157), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_void] = ACTIONS(2157), + [anon_sym_delete] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2155), + [sym_number] = ACTIONS(2155), + [sym_this] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_true] = ACTIONS(2157), + [sym_false] = ACTIONS(2157), + [sym_null] = ACTIONS(2157), + [sym_undefined] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_readonly] = ACTIONS(2157), + [anon_sym_get] = ACTIONS(2157), + [anon_sym_set] = ACTIONS(2157), + [anon_sym_declare] = ACTIONS(2157), + [anon_sym_public] = ACTIONS(2157), + [anon_sym_private] = ACTIONS(2157), + [anon_sym_protected] = ACTIONS(2157), + [anon_sym_override] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_any] = ACTIONS(2157), + [anon_sym_number] = ACTIONS(2157), + [anon_sym_boolean] = ACTIONS(2157), + [anon_sym_string] = ACTIONS(2157), + [anon_sym_symbol] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + }, + [638] = { + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_typeof] = ACTIONS(2157), + [anon_sym_import] = ACTIONS(2157), + [anon_sym_var] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_debugger] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_case] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LTtemplate_GT] = ACTIONS(2155), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), [anon_sym_SLASH] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_void] = ACTIONS(2157), + [anon_sym_delete] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2155), + [sym_number] = ACTIONS(2155), + [sym_this] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_true] = ACTIONS(2157), + [sym_false] = ACTIONS(2157), + [sym_null] = ACTIONS(2157), + [sym_undefined] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_readonly] = ACTIONS(2157), + [anon_sym_get] = ACTIONS(2157), + [anon_sym_set] = ACTIONS(2157), + [anon_sym_declare] = ACTIONS(2157), + [anon_sym_public] = ACTIONS(2157), + [anon_sym_private] = ACTIONS(2157), + [anon_sym_protected] = ACTIONS(2157), + [anon_sym_override] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_any] = ACTIONS(2157), + [anon_sym_number] = ACTIONS(2157), + [anon_sym_boolean] = ACTIONS(2157), + [anon_sym_string] = ACTIONS(2157), + [anon_sym_symbol] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_namespace] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1555), + [anon_sym_var] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_with] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_debugger] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_throw] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LTtemplate_GT] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1555), + [anon_sym_delete] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1553), + [sym_number] = ACTIONS(1553), + [sym_this] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_true] = ACTIONS(1555), + [sym_false] = ACTIONS(1555), + [sym_null] = ACTIONS(1555), + [sym_undefined] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_readonly] = ACTIONS(1555), + [anon_sym_get] = ACTIONS(1555), + [anon_sym_set] = ACTIONS(1555), + [anon_sym_declare] = ACTIONS(1555), + [anon_sym_public] = ACTIONS(1555), + [anon_sym_private] = ACTIONS(1555), + [anon_sym_protected] = ACTIONS(1555), + [anon_sym_override] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [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_abstract] = ACTIONS(1555), + [anon_sym_interface] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + }, + [640] = { + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_typeof] = ACTIONS(2157), + [anon_sym_import] = ACTIONS(2157), + [anon_sym_var] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_debugger] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_case] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LTtemplate_GT] = ACTIONS(2155), [anon_sym_class] = ACTIONS(2157), [anon_sym_async] = ACTIONS(2157), [anon_sym_function] = ACTIONS(2157), [anon_sym_new] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(2157), [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), [anon_sym_TILDE] = ACTIONS(2155), [anon_sym_void] = ACTIONS(2157), [anon_sym_delete] = ACTIONS(2157), @@ -82374,165 +82739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2157), [anon_sym_enum] = ACTIONS(2157), }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2157), - [anon_sym_export] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_typeof] = ACTIONS(2157), - [anon_sym_import] = ACTIONS(2157), - [anon_sym_var] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_switch] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_with] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_debugger] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_throw] = ACTIONS(2157), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_case] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LTtemplate_GT] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_void] = ACTIONS(2157), - [anon_sym_delete] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2155), - [sym_number] = ACTIONS(2155), - [sym_this] = ACTIONS(2157), - [sym_super] = ACTIONS(2157), - [sym_true] = ACTIONS(2157), - [sym_false] = ACTIONS(2157), - [sym_null] = ACTIONS(2157), - [sym_undefined] = ACTIONS(2157), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_readonly] = ACTIONS(2157), - [anon_sym_get] = ACTIONS(2157), - [anon_sym_set] = ACTIONS(2157), - [anon_sym_declare] = ACTIONS(2157), - [anon_sym_public] = ACTIONS(2157), - [anon_sym_private] = ACTIONS(2157), - [anon_sym_protected] = ACTIONS(2157), - [anon_sym_override] = ACTIONS(2157), - [anon_sym_module] = ACTIONS(2157), - [anon_sym_any] = ACTIONS(2157), - [anon_sym_number] = ACTIONS(2157), - [anon_sym_boolean] = ACTIONS(2157), - [anon_sym_string] = ACTIONS(2157), - [anon_sym_symbol] = ACTIONS(2157), - [anon_sym_abstract] = ACTIONS(2157), - [anon_sym_interface] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - }, - [639] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_export] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_namespace] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_typeof] = ACTIONS(1425), - [anon_sym_import] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_await] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [anon_sym_with] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_debugger] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LTtemplate_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1425), - [anon_sym_class] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_function] = ACTIONS(1425), - [anon_sym_new] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_delete] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_number] = ACTIONS(1423), - [sym_this] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [sym_null] = ACTIONS(1425), - [sym_undefined] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_readonly] = ACTIONS(1425), - [anon_sym_get] = ACTIONS(1425), - [anon_sym_set] = ACTIONS(1425), - [anon_sym_declare] = ACTIONS(1425), - [anon_sym_public] = ACTIONS(1425), - [anon_sym_private] = ACTIONS(1425), - [anon_sym_protected] = ACTIONS(1425), - [anon_sym_override] = ACTIONS(1425), - [anon_sym_module] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_number] = ACTIONS(1425), - [anon_sym_boolean] = ACTIONS(1425), - [anon_sym_string] = ACTIONS(1425), - [anon_sym_symbol] = ACTIONS(1425), - [anon_sym_abstract] = ACTIONS(1425), - [anon_sym_interface] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - }, - [640] = { + [641] = { [ts_builtin_sym_end] = ACTIONS(2159), [sym_identifier] = ACTIONS(2161), [anon_sym_export] = ACTIONS(2161), @@ -82567,14 +82774,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2161), [anon_sym_LBRACK] = ACTIONS(2159), [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_SLASH] = ACTIONS(2161), [anon_sym_class] = ACTIONS(2161), [anon_sym_async] = ACTIONS(2161), [anon_sym_function] = ACTIONS(2161), [anon_sym_new] = 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(2159), [anon_sym_void] = ACTIONS(2161), [anon_sym_delete] = ACTIONS(2161), @@ -82611,7 +82818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2161), [anon_sym_enum] = ACTIONS(2161), }, - [641] = { + [642] = { [ts_builtin_sym_end] = ACTIONS(2163), [sym_identifier] = ACTIONS(2165), [anon_sym_export] = ACTIONS(2165), @@ -82646,14 +82853,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2163), [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2165), [anon_sym_class] = ACTIONS(2165), [anon_sym_async] = ACTIONS(2165), [anon_sym_function] = ACTIONS(2165), [anon_sym_new] = ACTIONS(2165), [anon_sym_PLUS] = ACTIONS(2165), [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), [anon_sym_TILDE] = ACTIONS(2163), [anon_sym_void] = ACTIONS(2165), [anon_sym_delete] = ACTIONS(2165), @@ -82690,7 +82897,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2165), [anon_sym_enum] = ACTIONS(2165), }, - [642] = { + [643] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_typeof] = ACTIONS(1479), + [anon_sym_import] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_with] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_debugger] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_case] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_LTtemplate_GT] = ACTIONS(1477), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_function] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1477), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_delete] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1477), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1477), + [sym_number] = ACTIONS(1477), + [sym_this] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_true] = ACTIONS(1479), + [sym_false] = ACTIONS(1479), + [sym_null] = ACTIONS(1479), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [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_abstract] = ACTIONS(1479), + [anon_sym_interface] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + }, + [644] = { [ts_builtin_sym_end] = ACTIONS(2167), [sym_identifier] = ACTIONS(2169), [anon_sym_export] = ACTIONS(2169), @@ -82725,14 +83011,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2169), [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2169), [anon_sym_class] = ACTIONS(2169), [anon_sym_async] = ACTIONS(2169), [anon_sym_function] = ACTIONS(2169), [anon_sym_new] = ACTIONS(2169), [anon_sym_PLUS] = ACTIONS(2169), [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_SLASH] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), [anon_sym_TILDE] = ACTIONS(2167), [anon_sym_void] = ACTIONS(2169), [anon_sym_delete] = ACTIONS(2169), @@ -82769,7 +83055,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2169), [anon_sym_enum] = ACTIONS(2169), }, - [643] = { + [645] = { + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_namespace] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_typeof] = ACTIONS(1467), + [anon_sym_import] = ACTIONS(1467), + [anon_sym_var] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_with] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_debugger] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_throw] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_LTtemplate_GT] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_function] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1467), + [anon_sym_delete] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1465), + [sym_number] = ACTIONS(1465), + [sym_this] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_true] = ACTIONS(1467), + [sym_false] = ACTIONS(1467), + [sym_null] = ACTIONS(1467), + [sym_undefined] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_readonly] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1467), + [anon_sym_set] = ACTIONS(1467), + [anon_sym_declare] = ACTIONS(1467), + [anon_sym_public] = ACTIONS(1467), + [anon_sym_private] = ACTIONS(1467), + [anon_sym_protected] = ACTIONS(1467), + [anon_sym_override] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_any] = ACTIONS(1467), + [anon_sym_number] = ACTIONS(1467), + [anon_sym_boolean] = ACTIONS(1467), + [anon_sym_string] = ACTIONS(1467), + [anon_sym_symbol] = ACTIONS(1467), + [anon_sym_abstract] = ACTIONS(1467), + [anon_sym_interface] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + }, + [646] = { [ts_builtin_sym_end] = ACTIONS(2171), [sym_identifier] = ACTIONS(2173), [anon_sym_export] = ACTIONS(2173), @@ -82804,14 +83169,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2173), [anon_sym_LBRACK] = ACTIONS(2171), [anon_sym_LTtemplate_GT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), [anon_sym_class] = ACTIONS(2173), [anon_sym_async] = ACTIONS(2173), [anon_sym_function] = ACTIONS(2173), [anon_sym_new] = ACTIONS(2173), [anon_sym_PLUS] = ACTIONS(2173), [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), [anon_sym_TILDE] = ACTIONS(2171), [anon_sym_void] = ACTIONS(2173), [anon_sym_delete] = ACTIONS(2173), @@ -82848,86 +83213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2173), [anon_sym_enum] = ACTIONS(2173), }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(1401), - [sym_identifier] = ACTIONS(1403), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_type] = ACTIONS(1403), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_typeof] = ACTIONS(1403), - [anon_sym_import] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_await] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_with] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_debugger] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_throw] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_case] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LTtemplate_GT] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_class] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(1403), - [anon_sym_new] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_delete] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_number] = ACTIONS(1401), - [sym_this] = ACTIONS(1403), - [sym_super] = ACTIONS(1403), - [sym_true] = ACTIONS(1403), - [sym_false] = ACTIONS(1403), - [sym_null] = ACTIONS(1403), - [sym_undefined] = ACTIONS(1403), - [anon_sym_AT] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_readonly] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1403), - [anon_sym_set] = ACTIONS(1403), - [anon_sym_declare] = ACTIONS(1403), - [anon_sym_public] = ACTIONS(1403), - [anon_sym_private] = ACTIONS(1403), - [anon_sym_protected] = ACTIONS(1403), - [anon_sym_override] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [anon_sym_abstract] = ACTIONS(1403), - [anon_sym_interface] = ACTIONS(1403), - [anon_sym_enum] = ACTIONS(1403), - }, - [645] = { + [647] = { [ts_builtin_sym_end] = ACTIONS(2175), [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(2177), @@ -82962,14 +83248,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2177), [anon_sym_LBRACK] = ACTIONS(2175), [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), [anon_sym_class] = ACTIONS(2177), [anon_sym_async] = ACTIONS(2177), [anon_sym_function] = ACTIONS(2177), [anon_sym_new] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(2177), [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_SLASH] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), [anon_sym_TILDE] = ACTIONS(2175), [anon_sym_void] = ACTIONS(2177), [anon_sym_delete] = ACTIONS(2177), @@ -83006,86 +83292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2177), [anon_sym_enum] = ACTIONS(2177), }, - [646] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_identifier] = ACTIONS(1441), - [anon_sym_export] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_namespace] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym_import] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_await] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1441), - [anon_sym_with] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_debugger] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_throw] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_yield] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_LTtemplate_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_class] = ACTIONS(1441), - [anon_sym_async] = ACTIONS(1441), - [anon_sym_function] = ACTIONS(1441), - [anon_sym_new] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_delete] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_number] = ACTIONS(1439), - [sym_this] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_true] = ACTIONS(1441), - [sym_false] = ACTIONS(1441), - [sym_null] = ACTIONS(1441), - [sym_undefined] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_readonly] = ACTIONS(1441), - [anon_sym_get] = ACTIONS(1441), - [anon_sym_set] = ACTIONS(1441), - [anon_sym_declare] = ACTIONS(1441), - [anon_sym_public] = ACTIONS(1441), - [anon_sym_private] = ACTIONS(1441), - [anon_sym_protected] = ACTIONS(1441), - [anon_sym_override] = ACTIONS(1441), - [anon_sym_module] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_number] = ACTIONS(1441), - [anon_sym_boolean] = ACTIONS(1441), - [anon_sym_string] = ACTIONS(1441), - [anon_sym_symbol] = ACTIONS(1441), - [anon_sym_abstract] = ACTIONS(1441), - [anon_sym_interface] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - }, - [647] = { + [648] = { [ts_builtin_sym_end] = ACTIONS(2179), [sym_identifier] = ACTIONS(2181), [anon_sym_export] = ACTIONS(2181), @@ -83120,14 +83327,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2179), [anon_sym_LTtemplate_GT] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), [anon_sym_class] = ACTIONS(2181), [anon_sym_async] = ACTIONS(2181), [anon_sym_function] = ACTIONS(2181), [anon_sym_new] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2181), [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), [anon_sym_TILDE] = ACTIONS(2179), [anon_sym_void] = ACTIONS(2181), [anon_sym_delete] = ACTIONS(2181), @@ -83164,7 +83371,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2181), [anon_sym_enum] = ACTIONS(2181), }, - [648] = { + [649] = { + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_export] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_namespace] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_typeof] = ACTIONS(2133), + [anon_sym_import] = ACTIONS(2133), + [anon_sym_var] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_with] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_debugger] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_throw] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_case] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LTtemplate_GT] = ACTIONS(2131), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_function] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_void] = ACTIONS(2133), + [anon_sym_delete] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2131), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2131), + [sym_number] = ACTIONS(2131), + [sym_this] = ACTIONS(2133), + [sym_super] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [sym_undefined] = ACTIONS(2133), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_readonly] = ACTIONS(2133), + [anon_sym_get] = ACTIONS(2133), + [anon_sym_set] = ACTIONS(2133), + [anon_sym_declare] = ACTIONS(2133), + [anon_sym_public] = ACTIONS(2133), + [anon_sym_private] = ACTIONS(2133), + [anon_sym_protected] = ACTIONS(2133), + [anon_sym_override] = ACTIONS(2133), + [anon_sym_module] = ACTIONS(2133), + [anon_sym_any] = ACTIONS(2133), + [anon_sym_number] = ACTIONS(2133), + [anon_sym_boolean] = ACTIONS(2133), + [anon_sym_string] = ACTIONS(2133), + [anon_sym_symbol] = ACTIONS(2133), + [anon_sym_abstract] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + }, + [650] = { [ts_builtin_sym_end] = ACTIONS(2183), [sym_identifier] = ACTIONS(2185), [anon_sym_export] = ACTIONS(2185), @@ -83199,14 +83485,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(2183), [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), [anon_sym_class] = ACTIONS(2185), [anon_sym_async] = ACTIONS(2185), [anon_sym_function] = ACTIONS(2185), [anon_sym_new] = ACTIONS(2185), [anon_sym_PLUS] = ACTIONS(2185), [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), [anon_sym_TILDE] = ACTIONS(2183), [anon_sym_void] = ACTIONS(2185), [anon_sym_delete] = ACTIONS(2185), @@ -83243,7 +83529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2185), [anon_sym_enum] = ACTIONS(2185), }, - [649] = { + [651] = { [ts_builtin_sym_end] = ACTIONS(2187), [sym_identifier] = ACTIONS(2189), [anon_sym_export] = ACTIONS(2189), @@ -83278,14 +83564,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2189), [anon_sym_LBRACK] = ACTIONS(2187), [anon_sym_LTtemplate_GT] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), [anon_sym_class] = ACTIONS(2189), [anon_sym_async] = ACTIONS(2189), [anon_sym_function] = ACTIONS(2189), [anon_sym_new] = ACTIONS(2189), [anon_sym_PLUS] = ACTIONS(2189), [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), [anon_sym_TILDE] = ACTIONS(2187), [anon_sym_void] = ACTIONS(2189), [anon_sym_delete] = ACTIONS(2189), @@ -83322,7 +83608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2189), [anon_sym_enum] = ACTIONS(2189), }, - [650] = { + [652] = { [ts_builtin_sym_end] = ACTIONS(2191), [sym_identifier] = ACTIONS(2193), [anon_sym_export] = ACTIONS(2193), @@ -83357,14 +83643,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2193), [anon_sym_LBRACK] = ACTIONS(2191), [anon_sym_LTtemplate_GT] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), [anon_sym_class] = ACTIONS(2193), [anon_sym_async] = ACTIONS(2193), [anon_sym_function] = ACTIONS(2193), [anon_sym_new] = 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(2191), [anon_sym_void] = ACTIONS(2193), [anon_sym_delete] = ACTIONS(2193), @@ -83401,7 +83687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2193), [anon_sym_enum] = ACTIONS(2193), }, - [651] = { + [653] = { [ts_builtin_sym_end] = ACTIONS(2195), [sym_identifier] = ACTIONS(2197), [anon_sym_export] = ACTIONS(2197), @@ -83436,14 +83722,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2197), [anon_sym_LBRACK] = ACTIONS(2195), [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), [anon_sym_class] = ACTIONS(2197), [anon_sym_async] = ACTIONS(2197), [anon_sym_function] = ACTIONS(2197), [anon_sym_new] = 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(2195), [anon_sym_void] = ACTIONS(2197), [anon_sym_delete] = ACTIONS(2197), @@ -83480,7 +83766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2197), [anon_sym_enum] = ACTIONS(2197), }, - [652] = { + [654] = { [ts_builtin_sym_end] = ACTIONS(2199), [sym_identifier] = ACTIONS(2201), [anon_sym_export] = ACTIONS(2201), @@ -83515,14 +83801,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2201), [anon_sym_LBRACK] = ACTIONS(2199), [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2201), [anon_sym_class] = ACTIONS(2201), [anon_sym_async] = ACTIONS(2201), [anon_sym_function] = ACTIONS(2201), [anon_sym_new] = ACTIONS(2201), [anon_sym_PLUS] = ACTIONS(2201), [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), [anon_sym_TILDE] = ACTIONS(2199), [anon_sym_void] = ACTIONS(2201), [anon_sym_delete] = ACTIONS(2201), @@ -83559,86 +83845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2201), [anon_sym_enum] = ACTIONS(2201), }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_namespace] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_typeof] = ACTIONS(1515), - [anon_sym_import] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_await] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_with] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_debugger] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_LTtemplate_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_class] = ACTIONS(1515), - [anon_sym_async] = ACTIONS(1515), - [anon_sym_function] = ACTIONS(1515), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_delete] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_number] = ACTIONS(1513), - [sym_this] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [sym_null] = ACTIONS(1515), - [sym_undefined] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_readonly] = ACTIONS(1515), - [anon_sym_get] = ACTIONS(1515), - [anon_sym_set] = ACTIONS(1515), - [anon_sym_declare] = ACTIONS(1515), - [anon_sym_public] = ACTIONS(1515), - [anon_sym_private] = ACTIONS(1515), - [anon_sym_protected] = ACTIONS(1515), - [anon_sym_override] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_number] = ACTIONS(1515), - [anon_sym_boolean] = ACTIONS(1515), - [anon_sym_string] = ACTIONS(1515), - [anon_sym_symbol] = ACTIONS(1515), - [anon_sym_abstract] = ACTIONS(1515), - [anon_sym_interface] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - }, - [654] = { + [655] = { [ts_builtin_sym_end] = ACTIONS(2203), [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(2205), @@ -83673,14 +83880,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2205), [anon_sym_LBRACK] = ACTIONS(2203), [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), [anon_sym_class] = ACTIONS(2205), [anon_sym_async] = ACTIONS(2205), [anon_sym_function] = ACTIONS(2205), [anon_sym_new] = 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(2203), [anon_sym_void] = ACTIONS(2205), [anon_sym_delete] = ACTIONS(2205), @@ -83717,7 +83924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2205), [anon_sym_enum] = ACTIONS(2205), }, - [655] = { + [656] = { [ts_builtin_sym_end] = ACTIONS(2207), [sym_identifier] = ACTIONS(2209), [anon_sym_export] = ACTIONS(2209), @@ -83752,14 +83959,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2209), [anon_sym_LBRACK] = ACTIONS(2207), [anon_sym_LTtemplate_GT] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), [anon_sym_class] = ACTIONS(2209), [anon_sym_async] = ACTIONS(2209), [anon_sym_function] = ACTIONS(2209), [anon_sym_new] = 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(2207), [anon_sym_void] = ACTIONS(2209), [anon_sym_delete] = ACTIONS(2209), @@ -83796,7 +84003,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2209), [anon_sym_enum] = ACTIONS(2209), }, - [656] = { + [657] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_typeof] = ACTIONS(1479), + [anon_sym_import] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_with] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_debugger] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_case] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_LTtemplate_GT] = ACTIONS(1477), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_function] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1477), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_delete] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1477), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1477), + [sym_number] = ACTIONS(1477), + [sym_this] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_true] = ACTIONS(1479), + [sym_false] = ACTIONS(1479), + [sym_null] = ACTIONS(1479), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [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_abstract] = ACTIONS(1479), + [anon_sym_interface] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + }, + [658] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_namespace] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1451), + [anon_sym_import] = ACTIONS(1451), + [anon_sym_var] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_await] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_with] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_debugger] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_throw] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_case] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LTtemplate_GT] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_function] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_void] = ACTIONS(1451), + [anon_sym_delete] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1449), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1449), + [sym_number] = ACTIONS(1449), + [sym_this] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_true] = ACTIONS(1451), + [sym_false] = ACTIONS(1451), + [sym_null] = ACTIONS(1451), + [sym_undefined] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_readonly] = ACTIONS(1451), + [anon_sym_get] = ACTIONS(1451), + [anon_sym_set] = ACTIONS(1451), + [anon_sym_declare] = ACTIONS(1451), + [anon_sym_public] = ACTIONS(1451), + [anon_sym_private] = ACTIONS(1451), + [anon_sym_protected] = ACTIONS(1451), + [anon_sym_override] = ACTIONS(1451), + [anon_sym_module] = ACTIONS(1451), + [anon_sym_any] = ACTIONS(1451), + [anon_sym_number] = ACTIONS(1451), + [anon_sym_boolean] = ACTIONS(1451), + [anon_sym_string] = ACTIONS(1451), + [anon_sym_symbol] = ACTIONS(1451), + [anon_sym_abstract] = ACTIONS(1451), + [anon_sym_interface] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + }, + [659] = { [ts_builtin_sym_end] = ACTIONS(2211), [sym_identifier] = ACTIONS(2213), [anon_sym_export] = ACTIONS(2213), @@ -83831,14 +84196,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2213), [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), [anon_sym_class] = ACTIONS(2213), [anon_sym_async] = ACTIONS(2213), [anon_sym_function] = ACTIONS(2213), [anon_sym_new] = 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(2211), [anon_sym_void] = ACTIONS(2213), [anon_sym_delete] = ACTIONS(2213), @@ -83875,7 +84240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2213), [anon_sym_enum] = ACTIONS(2213), }, - [657] = { + [660] = { [ts_builtin_sym_end] = ACTIONS(2215), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2217), @@ -83910,14 +84275,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2217), [anon_sym_LBRACK] = ACTIONS(2215), [anon_sym_LTtemplate_GT] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), [anon_sym_class] = ACTIONS(2217), [anon_sym_async] = ACTIONS(2217), [anon_sym_function] = ACTIONS(2217), [anon_sym_new] = ACTIONS(2217), [anon_sym_PLUS] = ACTIONS(2217), [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), [anon_sym_TILDE] = ACTIONS(2215), [anon_sym_void] = ACTIONS(2217), [anon_sym_delete] = ACTIONS(2217), @@ -83954,7 +84319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2217), [anon_sym_enum] = ACTIONS(2217), }, - [658] = { + [661] = { [ts_builtin_sym_end] = ACTIONS(2219), [sym_identifier] = ACTIONS(2221), [anon_sym_export] = ACTIONS(2221), @@ -83989,14 +84354,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2221), [anon_sym_LBRACK] = ACTIONS(2219), [anon_sym_LTtemplate_GT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), [anon_sym_class] = ACTIONS(2221), [anon_sym_async] = ACTIONS(2221), [anon_sym_function] = ACTIONS(2221), [anon_sym_new] = ACTIONS(2221), [anon_sym_PLUS] = ACTIONS(2221), [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), [anon_sym_TILDE] = ACTIONS(2219), [anon_sym_void] = ACTIONS(2221), [anon_sym_delete] = ACTIONS(2221), @@ -84033,7 +84398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2221), [anon_sym_enum] = ACTIONS(2221), }, - [659] = { + [662] = { [ts_builtin_sym_end] = ACTIONS(2223), [sym_identifier] = ACTIONS(2225), [anon_sym_export] = ACTIONS(2225), @@ -84068,14 +84433,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2225), [anon_sym_LBRACK] = ACTIONS(2223), [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), [anon_sym_class] = ACTIONS(2225), [anon_sym_async] = ACTIONS(2225), [anon_sym_function] = ACTIONS(2225), [anon_sym_new] = 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(2223), [anon_sym_void] = ACTIONS(2225), [anon_sym_delete] = ACTIONS(2225), @@ -84112,7 +84477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2225), [anon_sym_enum] = ACTIONS(2225), }, - [660] = { + [663] = { [ts_builtin_sym_end] = ACTIONS(2227), [sym_identifier] = ACTIONS(2229), [anon_sym_export] = ACTIONS(2229), @@ -84147,14 +84512,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2229), [anon_sym_LBRACK] = ACTIONS(2227), [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), [anon_sym_class] = ACTIONS(2229), [anon_sym_async] = ACTIONS(2229), [anon_sym_function] = ACTIONS(2229), [anon_sym_new] = 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(2227), [anon_sym_void] = ACTIONS(2229), [anon_sym_delete] = ACTIONS(2229), @@ -84191,7 +84556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2229), [anon_sym_enum] = ACTIONS(2229), }, - [661] = { + [664] = { [ts_builtin_sym_end] = ACTIONS(2231), [sym_identifier] = ACTIONS(2233), [anon_sym_export] = ACTIONS(2233), @@ -84226,14 +84591,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2233), [anon_sym_LBRACK] = ACTIONS(2231), [anon_sym_LTtemplate_GT] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), [anon_sym_class] = ACTIONS(2233), [anon_sym_async] = ACTIONS(2233), [anon_sym_function] = ACTIONS(2233), [anon_sym_new] = ACTIONS(2233), [anon_sym_PLUS] = ACTIONS(2233), [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), [anon_sym_TILDE] = ACTIONS(2231), [anon_sym_void] = ACTIONS(2233), [anon_sym_delete] = ACTIONS(2233), @@ -84270,7 +84635,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2233), [anon_sym_enum] = ACTIONS(2233), }, - [662] = { + [665] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [666] = { [ts_builtin_sym_end] = ACTIONS(2235), [sym_identifier] = ACTIONS(2237), [anon_sym_export] = ACTIONS(2237), @@ -84305,14 +84749,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2237), [anon_sym_LBRACK] = ACTIONS(2235), [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [667] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [668] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), [anon_sym_class] = ACTIONS(2237), [anon_sym_async] = ACTIONS(2237), [anon_sym_function] = ACTIONS(2237), [anon_sym_new] = 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(2235), [anon_sym_void] = ACTIONS(2237), [anon_sym_delete] = ACTIONS(2237), @@ -84349,7 +84951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2237), [anon_sym_enum] = ACTIONS(2237), }, - [663] = { + [669] = { [ts_builtin_sym_end] = ACTIONS(2239), [sym_identifier] = ACTIONS(2241), [anon_sym_export] = ACTIONS(2241), @@ -84384,14 +84986,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2241), [anon_sym_LBRACK] = ACTIONS(2239), [anon_sym_LTtemplate_GT] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), [anon_sym_class] = ACTIONS(2241), [anon_sym_async] = ACTIONS(2241), [anon_sym_function] = ACTIONS(2241), [anon_sym_new] = ACTIONS(2241), [anon_sym_PLUS] = ACTIONS(2241), [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), [anon_sym_TILDE] = ACTIONS(2239), [anon_sym_void] = ACTIONS(2241), [anon_sym_delete] = ACTIONS(2241), @@ -84428,7 +85030,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2241), [anon_sym_enum] = ACTIONS(2241), }, - [664] = { + [670] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [671] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [672] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [673] = { [ts_builtin_sym_end] = ACTIONS(2243), [sym_identifier] = ACTIONS(2245), [anon_sym_export] = ACTIONS(2245), @@ -84463,14 +85302,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2245), [anon_sym_LBRACK] = ACTIONS(2243), [anon_sym_LTtemplate_GT] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), [anon_sym_class] = ACTIONS(2245), [anon_sym_async] = ACTIONS(2245), [anon_sym_function] = ACTIONS(2245), [anon_sym_new] = 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(2243), [anon_sym_void] = ACTIONS(2245), [anon_sym_delete] = ACTIONS(2245), @@ -84507,86 +85346,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2245), [anon_sym_enum] = ACTIONS(2245), }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(2101), - [anon_sym_import] = ACTIONS(2101), - [anon_sym_var] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_else] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_with] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_debugger] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_case] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LTtemplate_GT] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_void] = ACTIONS(2101), - [anon_sym_delete] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), + [674] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2099), - [sym_number] = ACTIONS(2099), - [sym_this] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_null] = ACTIONS(2101), - [sym_undefined] = ACTIONS(2101), - [anon_sym_AT] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_readonly] = ACTIONS(2101), - [anon_sym_get] = ACTIONS(2101), - [anon_sym_set] = ACTIONS(2101), - [anon_sym_declare] = ACTIONS(2101), - [anon_sym_public] = ACTIONS(2101), - [anon_sym_private] = ACTIONS(2101), - [anon_sym_protected] = ACTIONS(2101), - [anon_sym_override] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_any] = ACTIONS(2101), - [anon_sym_number] = ACTIONS(2101), - [anon_sym_boolean] = ACTIONS(2101), - [anon_sym_string] = ACTIONS(2101), - [anon_sym_symbol] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, - [666] = { + [675] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [676] = { [ts_builtin_sym_end] = ACTIONS(2247), [sym_identifier] = ACTIONS(2249), [anon_sym_export] = ACTIONS(2249), @@ -84621,14 +85539,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2249), [anon_sym_LBRACK] = ACTIONS(2247), [anon_sym_LTtemplate_GT] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), [anon_sym_class] = ACTIONS(2249), [anon_sym_async] = ACTIONS(2249), [anon_sym_function] = ACTIONS(2249), [anon_sym_new] = 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(2247), [anon_sym_void] = ACTIONS(2249), [anon_sym_delete] = ACTIONS(2249), @@ -84665,7 +85583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2249), [anon_sym_enum] = ACTIONS(2249), }, - [667] = { + [677] = { [ts_builtin_sym_end] = ACTIONS(2251), [sym_identifier] = ACTIONS(2253), [anon_sym_export] = ACTIONS(2253), @@ -84700,14 +85618,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2253), [anon_sym_LBRACK] = ACTIONS(2251), [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2253), [anon_sym_function] = ACTIONS(2253), [anon_sym_new] = 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(2251), [anon_sym_void] = ACTIONS(2253), [anon_sym_delete] = ACTIONS(2253), @@ -84744,3718 +85662,2928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2253), [anon_sym_enum] = ACTIONS(2253), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - }, - [669] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_with] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_debugger] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_throw] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_LTtemplate_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_class] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(1543), - [anon_sym_new] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_delete] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_number] = ACTIONS(1541), - [sym_this] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_true] = ACTIONS(1543), - [sym_false] = ACTIONS(1543), - [sym_null] = ACTIONS(1543), - [sym_undefined] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_abstract] = ACTIONS(1543), - [anon_sym_interface] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - }, - [670] = { - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_export] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(2261), - [anon_sym_var] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_with] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_debugger] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_case] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_SLASH] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2261), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_this] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_null] = ACTIONS(2261), - [sym_undefined] = ACTIONS(2261), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_readonly] = ACTIONS(2261), - [anon_sym_get] = ACTIONS(2261), - [anon_sym_set] = ACTIONS(2261), - [anon_sym_declare] = ACTIONS(2261), - [anon_sym_public] = ACTIONS(2261), - [anon_sym_private] = ACTIONS(2261), - [anon_sym_protected] = ACTIONS(2261), - [anon_sym_override] = ACTIONS(2261), - [anon_sym_module] = ACTIONS(2261), - [anon_sym_any] = ACTIONS(2261), - [anon_sym_number] = ACTIONS(2261), - [anon_sym_boolean] = ACTIONS(2261), - [anon_sym_string] = ACTIONS(2261), - [anon_sym_symbol] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_typeof] = ACTIONS(2265), - [anon_sym_import] = ACTIONS(2265), - [anon_sym_var] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_with] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_debugger] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LTtemplate_GT] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_void] = ACTIONS(2265), - [anon_sym_delete] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2263), - [anon_sym_SQUOTE] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2263), - [sym_number] = ACTIONS(2263), - [sym_this] = ACTIONS(2265), - [sym_super] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_null] = ACTIONS(2265), - [sym_undefined] = ACTIONS(2265), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_readonly] = ACTIONS(2265), - [anon_sym_get] = ACTIONS(2265), - [anon_sym_set] = ACTIONS(2265), - [anon_sym_declare] = ACTIONS(2265), - [anon_sym_public] = ACTIONS(2265), - [anon_sym_private] = ACTIONS(2265), - [anon_sym_protected] = ACTIONS(2265), - [anon_sym_override] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), - [anon_sym_any] = ACTIONS(2265), - [anon_sym_number] = ACTIONS(2265), - [anon_sym_boolean] = ACTIONS(2265), - [anon_sym_string] = ACTIONS(2265), - [anon_sym_symbol] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_export] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_typeof] = ACTIONS(2269), - [anon_sym_import] = ACTIONS(2269), - [anon_sym_var] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_with] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_debugger] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_case] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LTtemplate_GT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_void] = ACTIONS(2269), - [anon_sym_delete] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2267), - [sym_number] = ACTIONS(2267), - [sym_this] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_null] = ACTIONS(2269), - [sym_undefined] = ACTIONS(2269), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_readonly] = ACTIONS(2269), - [anon_sym_get] = ACTIONS(2269), - [anon_sym_set] = ACTIONS(2269), - [anon_sym_declare] = ACTIONS(2269), - [anon_sym_public] = ACTIONS(2269), - [anon_sym_private] = ACTIONS(2269), - [anon_sym_protected] = ACTIONS(2269), - [anon_sym_override] = ACTIONS(2269), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_any] = ACTIONS(2269), - [anon_sym_number] = ACTIONS(2269), - [anon_sym_boolean] = ACTIONS(2269), - [anon_sym_string] = ACTIONS(2269), - [anon_sym_symbol] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [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(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_typeof] = ACTIONS(2273), - [anon_sym_import] = ACTIONS(2273), - [anon_sym_var] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_with] = 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(2271), - [anon_sym_case] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LTtemplate_GT] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_function] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_void] = ACTIONS(2273), - [anon_sym_delete] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2271), - [sym_number] = ACTIONS(2271), - [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(2271), - [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_abstract] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_typeof] = ACTIONS(2277), - [anon_sym_import] = ACTIONS(2277), - [anon_sym_var] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_with] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_debugger] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_case] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LTtemplate_GT] = ACTIONS(2275), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_SLASH] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_function] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(2277), - [anon_sym_delete] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_DASH_DASH] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2275), - [sym_number] = ACTIONS(2275), - [sym_this] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [sym_null] = ACTIONS(2277), - [sym_undefined] = ACTIONS(2277), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_readonly] = ACTIONS(2277), - [anon_sym_get] = ACTIONS(2277), - [anon_sym_set] = ACTIONS(2277), - [anon_sym_declare] = ACTIONS(2277), - [anon_sym_public] = ACTIONS(2277), - [anon_sym_private] = ACTIONS(2277), - [anon_sym_protected] = ACTIONS(2277), - [anon_sym_override] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_any] = ACTIONS(2277), - [anon_sym_number] = ACTIONS(2277), - [anon_sym_boolean] = ACTIONS(2277), - [anon_sym_string] = ACTIONS(2277), - [anon_sym_symbol] = ACTIONS(2277), - [anon_sym_abstract] = ACTIONS(2277), - [anon_sym_interface] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - }, - [675] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [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(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_typeof] = ACTIONS(2281), - [anon_sym_import] = ACTIONS(2281), - [anon_sym_var] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_with] = 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(2279), - [anon_sym_case] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LTtemplate_GT] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_void] = ACTIONS(2281), - [anon_sym_delete] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2279), - [anon_sym_SQUOTE] = ACTIONS(2279), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2279), - [sym_number] = ACTIONS(2279), - [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(2279), - [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_abstract] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_export] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_typeof] = ACTIONS(2285), - [anon_sym_import] = ACTIONS(2285), - [anon_sym_var] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_with] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_debugger] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_case] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LTtemplate_GT] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_void] = ACTIONS(2285), - [anon_sym_delete] = ACTIONS(2285), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2283), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2283), - [sym_number] = ACTIONS(2283), - [sym_this] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_null] = ACTIONS(2285), - [sym_undefined] = ACTIONS(2285), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_readonly] = ACTIONS(2285), - [anon_sym_get] = ACTIONS(2285), - [anon_sym_set] = ACTIONS(2285), - [anon_sym_declare] = ACTIONS(2285), - [anon_sym_public] = ACTIONS(2285), - [anon_sym_private] = ACTIONS(2285), - [anon_sym_protected] = ACTIONS(2285), - [anon_sym_override] = ACTIONS(2285), - [anon_sym_module] = ACTIONS(2285), - [anon_sym_any] = ACTIONS(2285), - [anon_sym_number] = ACTIONS(2285), - [anon_sym_boolean] = ACTIONS(2285), - [anon_sym_string] = ACTIONS(2285), - [anon_sym_symbol] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [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(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_var] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = 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(2287), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [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(2287), - [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_abstract] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - }, [678] = { - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_default] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_typeof] = ACTIONS(2293), - [anon_sym_import] = ACTIONS(2293), - [anon_sym_var] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_with] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_debugger] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_case] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LTtemplate_GT] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_void] = ACTIONS(2293), - [anon_sym_delete] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2291), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2291), - [sym_number] = ACTIONS(2291), - [sym_this] = ACTIONS(2293), - [sym_super] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_null] = ACTIONS(2293), - [sym_undefined] = ACTIONS(2293), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_readonly] = ACTIONS(2293), - [anon_sym_get] = ACTIONS(2293), - [anon_sym_set] = ACTIONS(2293), - [anon_sym_declare] = ACTIONS(2293), - [anon_sym_public] = ACTIONS(2293), - [anon_sym_private] = ACTIONS(2293), - [anon_sym_protected] = ACTIONS(2293), - [anon_sym_override] = ACTIONS(2293), - [anon_sym_module] = ACTIONS(2293), - [anon_sym_any] = ACTIONS(2293), - [anon_sym_number] = ACTIONS(2293), - [anon_sym_boolean] = ACTIONS(2293), - [anon_sym_string] = ACTIONS(2293), - [anon_sym_symbol] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2223), + [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(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_with] = 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(2223), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = 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(2223), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [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(2223), + [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_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_LTtemplate_GT] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2295), - [sym_number] = ACTIONS(2295), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [683] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [684] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [685] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [686] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2301), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_typeof] = ACTIONS(2301), - [anon_sym_import] = ACTIONS(2301), - [anon_sym_var] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_with] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_debugger] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_throw] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_case] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LTtemplate_GT] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_SLASH] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_function] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_void] = ACTIONS(2301), - [anon_sym_delete] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2299), - [sym_number] = ACTIONS(2299), - [sym_this] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_true] = ACTIONS(2301), - [sym_false] = ACTIONS(2301), - [sym_null] = ACTIONS(2301), - [sym_undefined] = ACTIONS(2301), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_readonly] = ACTIONS(2301), - [anon_sym_get] = ACTIONS(2301), - [anon_sym_set] = ACTIONS(2301), - [anon_sym_declare] = ACTIONS(2301), - [anon_sym_public] = ACTIONS(2301), - [anon_sym_private] = ACTIONS(2301), - [anon_sym_protected] = ACTIONS(2301), - [anon_sym_override] = ACTIONS(2301), - [anon_sym_module] = ACTIONS(2301), - [anon_sym_any] = ACTIONS(2301), - [anon_sym_number] = ACTIONS(2301), - [anon_sym_boolean] = ACTIONS(2301), - [anon_sym_string] = ACTIONS(2301), - [anon_sym_symbol] = ACTIONS(2301), - [anon_sym_abstract] = ACTIONS(2301), - [anon_sym_interface] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2305), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_typeof] = ACTIONS(2305), - [anon_sym_import] = ACTIONS(2305), - [anon_sym_var] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_switch] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_debugger] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_throw] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_case] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_LTtemplate_GT] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_void] = ACTIONS(2305), - [anon_sym_delete] = ACTIONS(2305), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2303), - [anon_sym_SQUOTE] = ACTIONS(2303), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2303), - [sym_number] = ACTIONS(2303), - [sym_this] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_null] = ACTIONS(2305), - [sym_undefined] = ACTIONS(2305), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_get] = ACTIONS(2305), - [anon_sym_set] = ACTIONS(2305), - [anon_sym_declare] = ACTIONS(2305), - [anon_sym_public] = ACTIONS(2305), - [anon_sym_private] = ACTIONS(2305), - [anon_sym_protected] = ACTIONS(2305), - [anon_sym_override] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_any] = ACTIONS(2305), - [anon_sym_number] = ACTIONS(2305), - [anon_sym_boolean] = ACTIONS(2305), - [anon_sym_string] = ACTIONS(2305), - [anon_sym_symbol] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), }, [689] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2235), + [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(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = 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(2235), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = 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(2235), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2309), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_typeof] = ACTIONS(2309), - [anon_sym_import] = ACTIONS(2309), - [anon_sym_var] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_with] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_debugger] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_case] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LTtemplate_GT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_void] = ACTIONS(2309), - [anon_sym_delete] = ACTIONS(2309), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [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(2235), + [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_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + }, + [690] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_export] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_var] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_debugger] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2307), - [sym_number] = ACTIONS(2307), - [sym_this] = ACTIONS(2309), - [sym_super] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_null] = ACTIONS(2309), - [sym_undefined] = ACTIONS(2309), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_readonly] = ACTIONS(2309), - [anon_sym_get] = ACTIONS(2309), - [anon_sym_set] = ACTIONS(2309), - [anon_sym_declare] = ACTIONS(2309), - [anon_sym_public] = ACTIONS(2309), - [anon_sym_private] = ACTIONS(2309), - [anon_sym_protected] = ACTIONS(2309), - [anon_sym_override] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_any] = ACTIONS(2309), - [anon_sym_number] = ACTIONS(2309), - [anon_sym_boolean] = ACTIONS(2309), - [anon_sym_string] = ACTIONS(2309), - [anon_sym_symbol] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_this] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_null] = ACTIONS(2257), + [sym_undefined] = ACTIONS(2257), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_get] = ACTIONS(2257), + [anon_sym_set] = ACTIONS(2257), + [anon_sym_declare] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_private] = ACTIONS(2257), + [anon_sym_protected] = ACTIONS(2257), + [anon_sym_override] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_any] = ACTIONS(2257), + [anon_sym_number] = ACTIONS(2257), + [anon_sym_boolean] = ACTIONS(2257), + [anon_sym_string] = ACTIONS(2257), + [anon_sym_symbol] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), }, [691] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2265), + [anon_sym_import] = ACTIONS(2265), + [anon_sym_var] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_with] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_debugger] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_case] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_SLASH] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2265), + [anon_sym_delete] = ACTIONS(2265), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_this] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_null] = ACTIONS(2265), + [sym_undefined] = ACTIONS(2265), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_get] = ACTIONS(2265), + [anon_sym_set] = ACTIONS(2265), + [anon_sym_declare] = ACTIONS(2265), + [anon_sym_public] = ACTIONS(2265), + [anon_sym_private] = ACTIONS(2265), + [anon_sym_protected] = ACTIONS(2265), + [anon_sym_override] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_any] = ACTIONS(2265), + [anon_sym_number] = ACTIONS(2265), + [anon_sym_boolean] = ACTIONS(2265), + [anon_sym_string] = ACTIONS(2265), + [anon_sym_symbol] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), }, [693] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2313), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_typeof] = ACTIONS(2313), - [anon_sym_import] = ACTIONS(2313), - [anon_sym_var] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_with] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_debugger] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_case] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_LTtemplate_GT] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_SLASH] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_void] = ACTIONS(2313), - [anon_sym_delete] = ACTIONS(2313), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2311), - [anon_sym_SQUOTE] = ACTIONS(2311), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_export] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_typeof] = ACTIONS(2269), + [anon_sym_import] = ACTIONS(2269), + [anon_sym_var] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_with] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_debugger] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_case] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_LTtemplate_GT] = ACTIONS(2267), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_void] = ACTIONS(2269), + [anon_sym_delete] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2267), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2311), - [sym_number] = ACTIONS(2311), - [sym_this] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_true] = ACTIONS(2313), - [sym_false] = ACTIONS(2313), - [sym_null] = ACTIONS(2313), - [sym_undefined] = ACTIONS(2313), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_readonly] = ACTIONS(2313), - [anon_sym_get] = ACTIONS(2313), - [anon_sym_set] = ACTIONS(2313), - [anon_sym_declare] = ACTIONS(2313), - [anon_sym_public] = ACTIONS(2313), - [anon_sym_private] = ACTIONS(2313), - [anon_sym_protected] = ACTIONS(2313), - [anon_sym_override] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_any] = ACTIONS(2313), - [anon_sym_number] = ACTIONS(2313), - [anon_sym_boolean] = ACTIONS(2313), - [anon_sym_string] = ACTIONS(2313), - [anon_sym_symbol] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), + [anon_sym_BQUOTE] = ACTIONS(2267), + [sym_number] = ACTIONS(2267), + [sym_this] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_undefined] = ACTIONS(2269), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_readonly] = ACTIONS(2269), + [anon_sym_get] = ACTIONS(2269), + [anon_sym_set] = ACTIONS(2269), + [anon_sym_declare] = ACTIONS(2269), + [anon_sym_public] = ACTIONS(2269), + [anon_sym_private] = ACTIONS(2269), + [anon_sym_protected] = ACTIONS(2269), + [anon_sym_override] = ACTIONS(2269), + [anon_sym_module] = ACTIONS(2269), + [anon_sym_any] = ACTIONS(2269), + [anon_sym_number] = ACTIONS(2269), + [anon_sym_boolean] = ACTIONS(2269), + [anon_sym_string] = ACTIONS(2269), + [anon_sym_symbol] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), }, [694] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2271), + [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(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_with] = 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(2271), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_LTtemplate_GT] = ACTIONS(2271), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_new] = 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(2271), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2271), + [sym_number] = ACTIONS(2271), + [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(2271), + [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_abstract] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), }, [695] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [696] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [697] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_typeof] = ACTIONS(2277), + [anon_sym_import] = ACTIONS(2277), + [anon_sym_var] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_switch] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_with] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_debugger] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_throw] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_case] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LTtemplate_GT] = ACTIONS(2275), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_function] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(2277), + [anon_sym_delete] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2275), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2275), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2275), + [sym_number] = ACTIONS(2275), + [sym_this] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_true] = ACTIONS(2277), + [sym_false] = ACTIONS(2277), + [sym_null] = ACTIONS(2277), + [sym_undefined] = ACTIONS(2277), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_readonly] = ACTIONS(2277), + [anon_sym_get] = ACTIONS(2277), + [anon_sym_set] = ACTIONS(2277), + [anon_sym_declare] = ACTIONS(2277), + [anon_sym_public] = ACTIONS(2277), + [anon_sym_private] = ACTIONS(2277), + [anon_sym_protected] = ACTIONS(2277), + [anon_sym_override] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_any] = ACTIONS(2277), + [anon_sym_number] = ACTIONS(2277), + [anon_sym_boolean] = ACTIONS(2277), + [anon_sym_string] = ACTIONS(2277), + [anon_sym_symbol] = ACTIONS(2277), + [anon_sym_abstract] = ACTIONS(2277), + [anon_sym_interface] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2279), + [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(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_with] = 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(2279), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LTtemplate_GT] = ACTIONS(2279), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_new] = 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(2279), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2279), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2279), + [sym_number] = ACTIONS(2279), + [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(2279), + [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_abstract] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), }, [699] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LTtemplate_GT] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_BQUOTE] = ACTIONS(2283), + [sym_number] = ACTIONS(2283), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + }, + [700] = { + [ts_builtin_sym_end] = ACTIONS(2287), + [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(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_with] = 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(2287), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_LTtemplate_GT] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_new] = 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(2287), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2287), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2287), + [sym_number] = ACTIONS(2287), + [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(2287), + [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_abstract] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), }, [701] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_typeof] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_var] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_with] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_debugger] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LTtemplate_GT] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_SLASH] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_void] = ACTIONS(2293), + [anon_sym_delete] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2291), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2291), + [sym_number] = ACTIONS(2291), + [sym_this] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_true] = ACTIONS(2293), + [sym_false] = ACTIONS(2293), + [sym_null] = ACTIONS(2293), + [sym_undefined] = ACTIONS(2293), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_readonly] = ACTIONS(2293), + [anon_sym_get] = ACTIONS(2293), + [anon_sym_set] = ACTIONS(2293), + [anon_sym_declare] = ACTIONS(2293), + [anon_sym_public] = ACTIONS(2293), + [anon_sym_private] = ACTIONS(2293), + [anon_sym_protected] = ACTIONS(2293), + [anon_sym_override] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_any] = ACTIONS(2293), + [anon_sym_number] = ACTIONS(2293), + [anon_sym_boolean] = ACTIONS(2293), + [anon_sym_string] = ACTIONS(2293), + [anon_sym_symbol] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), }, [702] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_identifier] = ACTIONS(2321), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_typeof] = ACTIONS(2321), - [anon_sym_import] = ACTIONS(2321), - [anon_sym_var] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_with] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_debugger] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_LTtemplate_GT] = ACTIONS(2319), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_SLASH] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_void] = ACTIONS(2321), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_typeof] = ACTIONS(2297), + [anon_sym_import] = ACTIONS(2297), + [anon_sym_var] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_with] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_debugger] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LTtemplate_GT] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_void] = ACTIONS(2297), + [anon_sym_delete] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2295), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2319), - [sym_number] = ACTIONS(2319), - [sym_this] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), - [sym_true] = ACTIONS(2321), - [sym_false] = ACTIONS(2321), - [sym_null] = ACTIONS(2321), - [sym_undefined] = ACTIONS(2321), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_readonly] = ACTIONS(2321), - [anon_sym_get] = ACTIONS(2321), - [anon_sym_set] = ACTIONS(2321), - [anon_sym_declare] = ACTIONS(2321), - [anon_sym_public] = ACTIONS(2321), - [anon_sym_private] = ACTIONS(2321), - [anon_sym_protected] = ACTIONS(2321), - [anon_sym_override] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_any] = ACTIONS(2321), - [anon_sym_number] = ACTIONS(2321), - [anon_sym_boolean] = ACTIONS(2321), - [anon_sym_string] = ACTIONS(2321), - [anon_sym_symbol] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), + [anon_sym_BQUOTE] = ACTIONS(2295), + [sym_number] = ACTIONS(2295), + [sym_this] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_null] = ACTIONS(2297), + [sym_undefined] = ACTIONS(2297), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_readonly] = ACTIONS(2297), + [anon_sym_get] = ACTIONS(2297), + [anon_sym_set] = ACTIONS(2297), + [anon_sym_declare] = ACTIONS(2297), + [anon_sym_public] = ACTIONS(2297), + [anon_sym_private] = ACTIONS(2297), + [anon_sym_protected] = ACTIONS(2297), + [anon_sym_override] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_any] = ACTIONS(2297), + [anon_sym_number] = ACTIONS(2297), + [anon_sym_boolean] = ACTIONS(2297), + [anon_sym_string] = ACTIONS(2297), + [anon_sym_symbol] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), }, [703] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_export] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2301), + [anon_sym_var] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_with] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_debugger] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_SLASH] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2301), + [anon_sym_delete] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_this] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_true] = ACTIONS(2301), + [sym_false] = ACTIONS(2301), + [sym_null] = ACTIONS(2301), + [sym_undefined] = ACTIONS(2301), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_readonly] = ACTIONS(2301), + [anon_sym_get] = ACTIONS(2301), + [anon_sym_set] = ACTIONS(2301), + [anon_sym_declare] = ACTIONS(2301), + [anon_sym_public] = ACTIONS(2301), + [anon_sym_private] = ACTIONS(2301), + [anon_sym_protected] = ACTIONS(2301), + [anon_sym_override] = ACTIONS(2301), + [anon_sym_module] = ACTIONS(2301), + [anon_sym_any] = ACTIONS(2301), + [anon_sym_number] = ACTIONS(2301), + [anon_sym_boolean] = ACTIONS(2301), + [anon_sym_string] = ACTIONS(2301), + [anon_sym_symbol] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), }, [704] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_typeof] = ACTIONS(2305), + [anon_sym_import] = ACTIONS(2305), + [anon_sym_var] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_with] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_debugger] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LTtemplate_GT] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_SLASH] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_void] = ACTIONS(2305), + [anon_sym_delete] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2303), + [sym_number] = ACTIONS(2303), + [sym_this] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_true] = ACTIONS(2305), + [sym_false] = ACTIONS(2305), + [sym_null] = ACTIONS(2305), + [sym_undefined] = ACTIONS(2305), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_readonly] = ACTIONS(2305), + [anon_sym_get] = ACTIONS(2305), + [anon_sym_set] = ACTIONS(2305), + [anon_sym_declare] = ACTIONS(2305), + [anon_sym_public] = ACTIONS(2305), + [anon_sym_private] = ACTIONS(2305), + [anon_sym_protected] = ACTIONS(2305), + [anon_sym_override] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_any] = ACTIONS(2305), + [anon_sym_number] = ACTIONS(2305), + [anon_sym_boolean] = ACTIONS(2305), + [anon_sym_string] = ACTIONS(2305), + [anon_sym_symbol] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_export] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2301), + [anon_sym_var] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_with] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_debugger] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_SLASH] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2301), + [anon_sym_delete] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_this] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_true] = ACTIONS(2301), + [sym_false] = ACTIONS(2301), + [sym_null] = ACTIONS(2301), + [sym_undefined] = ACTIONS(2301), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_readonly] = ACTIONS(2301), + [anon_sym_get] = ACTIONS(2301), + [anon_sym_set] = ACTIONS(2301), + [anon_sym_declare] = ACTIONS(2301), + [anon_sym_public] = ACTIONS(2301), + [anon_sym_private] = ACTIONS(2301), + [anon_sym_protected] = ACTIONS(2301), + [anon_sym_override] = ACTIONS(2301), + [anon_sym_module] = ACTIONS(2301), + [anon_sym_any] = ACTIONS(2301), + [anon_sym_number] = ACTIONS(2301), + [anon_sym_boolean] = ACTIONS(2301), + [anon_sym_string] = ACTIONS(2301), + [anon_sym_symbol] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_export] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2309), + [anon_sym_import] = ACTIONS(2309), + [anon_sym_var] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_with] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_debugger] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2309), + [anon_sym_delete] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_this] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [sym_null] = ACTIONS(2309), + [sym_undefined] = ACTIONS(2309), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_readonly] = ACTIONS(2309), + [anon_sym_get] = ACTIONS(2309), + [anon_sym_set] = ACTIONS(2309), + [anon_sym_declare] = ACTIONS(2309), + [anon_sym_public] = ACTIONS(2309), + [anon_sym_private] = ACTIONS(2309), + [anon_sym_protected] = ACTIONS(2309), + [anon_sym_override] = ACTIONS(2309), + [anon_sym_module] = ACTIONS(2309), + [anon_sym_any] = ACTIONS(2309), + [anon_sym_number] = ACTIONS(2309), + [anon_sym_boolean] = ACTIONS(2309), + [anon_sym_string] = ACTIONS(2309), + [anon_sym_symbol] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), }, [707] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2329), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_typeof] = ACTIONS(2329), - [anon_sym_import] = ACTIONS(2329), - [anon_sym_var] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_with] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_debugger] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_LTtemplate_GT] = ACTIONS(2327), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_SLASH] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_void] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2327), - [sym_number] = ACTIONS(2327), - [sym_this] = ACTIONS(2329), - [sym_super] = ACTIONS(2329), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [sym_undefined] = ACTIONS(2329), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_readonly] = ACTIONS(2329), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_declare] = ACTIONS(2329), - [anon_sym_public] = ACTIONS(2329), - [anon_sym_private] = ACTIONS(2329), - [anon_sym_protected] = ACTIONS(2329), - [anon_sym_override] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_any] = ACTIONS(2329), - [anon_sym_number] = ACTIONS(2329), - [anon_sym_boolean] = ACTIONS(2329), - [anon_sym_string] = ACTIONS(2329), - [anon_sym_symbol] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [708] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_typeof] = ACTIONS(2313), + [anon_sym_import] = ACTIONS(2313), + [anon_sym_var] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_with] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_debugger] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LTtemplate_GT] = ACTIONS(2311), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_SLASH] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_void] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2311), + [sym_number] = ACTIONS(2311), + [sym_this] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [sym_null] = ACTIONS(2313), + [sym_undefined] = ACTIONS(2313), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_readonly] = ACTIONS(2313), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), + [anon_sym_declare] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_private] = ACTIONS(2313), + [anon_sym_protected] = ACTIONS(2313), + [anon_sym_override] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_any] = ACTIONS(2313), + [anon_sym_number] = ACTIONS(2313), + [anon_sym_boolean] = ACTIONS(2313), + [anon_sym_string] = ACTIONS(2313), + [anon_sym_symbol] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2315), + [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(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_with] = 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(2315), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LTtemplate_GT] = ACTIONS(2315), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_new] = 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(2315), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2315), + [sym_number] = ACTIONS(2315), + [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(2315), + [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_abstract] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_typeof] = ACTIONS(2313), + [anon_sym_import] = ACTIONS(2313), + [anon_sym_var] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_with] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_debugger] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LTtemplate_GT] = ACTIONS(2311), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_SLASH] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_void] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2311), + [sym_number] = ACTIONS(2311), + [sym_this] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [sym_null] = ACTIONS(2313), + [sym_undefined] = ACTIONS(2313), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_readonly] = ACTIONS(2313), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), + [anon_sym_declare] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_private] = ACTIONS(2313), + [anon_sym_protected] = ACTIONS(2313), + [anon_sym_override] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_any] = ACTIONS(2313), + [anon_sym_number] = ACTIONS(2313), + [anon_sym_boolean] = ACTIONS(2313), + [anon_sym_string] = ACTIONS(2313), + [anon_sym_symbol] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), }, [711] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2333), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_typeof] = ACTIONS(2333), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_with] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_debugger] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_case] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_LTtemplate_GT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_SLASH] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_void] = ACTIONS(2333), - [anon_sym_delete] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2331), - [sym_number] = ACTIONS(2331), - [sym_this] = ACTIONS(2333), - [sym_super] = ACTIONS(2333), - [sym_true] = ACTIONS(2333), - [sym_false] = ACTIONS(2333), - [sym_null] = ACTIONS(2333), - [sym_undefined] = ACTIONS(2333), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_readonly] = ACTIONS(2333), - [anon_sym_get] = ACTIONS(2333), - [anon_sym_set] = ACTIONS(2333), - [anon_sym_declare] = ACTIONS(2333), - [anon_sym_public] = ACTIONS(2333), - [anon_sym_private] = ACTIONS(2333), - [anon_sym_protected] = ACTIONS(2333), - [anon_sym_override] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_any] = ACTIONS(2333), - [anon_sym_number] = ACTIONS(2333), - [anon_sym_boolean] = ACTIONS(2333), - [anon_sym_string] = ACTIONS(2333), - [anon_sym_symbol] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [712] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_export] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_typeof] = ACTIONS(2321), + [anon_sym_import] = ACTIONS(2321), + [anon_sym_var] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_debugger] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LTtemplate_GT] = ACTIONS(2319), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_void] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2319), + [sym_number] = ACTIONS(2319), + [sym_this] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_null] = ACTIONS(2321), + [sym_undefined] = ACTIONS(2321), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_readonly] = ACTIONS(2321), + [anon_sym_get] = ACTIONS(2321), + [anon_sym_set] = ACTIONS(2321), + [anon_sym_declare] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_override] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_any] = ACTIONS(2321), + [anon_sym_number] = ACTIONS(2321), + [anon_sym_boolean] = ACTIONS(2321), + [anon_sym_string] = ACTIONS(2321), + [anon_sym_symbol] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, [715] = { [ts_builtin_sym_end] = ACTIONS(2323), @@ -88492,14 +88620,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2325), [anon_sym_LBRACK] = ACTIONS(2323), [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), [anon_sym_class] = ACTIONS(2325), [anon_sym_async] = ACTIONS(2325), [anon_sym_function] = ACTIONS(2325), [anon_sym_new] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(2325), [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_SLASH] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), [anon_sym_TILDE] = ACTIONS(2323), [anon_sym_void] = ACTIONS(2325), [anon_sym_delete] = ACTIONS(2325), @@ -88536,7 +88664,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2325), [anon_sym_enum] = ACTIONS(2325), }, - [716] = { + [716] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_export] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2329), + [anon_sym_import] = ACTIONS(2329), + [anon_sym_var] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_with] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_debugger] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_SLASH] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_this] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_undefined] = ACTIONS(2329), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_readonly] = ACTIONS(2329), + [anon_sym_get] = ACTIONS(2329), + [anon_sym_set] = ACTIONS(2329), + [anon_sym_declare] = ACTIONS(2329), + [anon_sym_public] = ACTIONS(2329), + [anon_sym_private] = ACTIONS(2329), + [anon_sym_protected] = ACTIONS(2329), + [anon_sym_override] = ACTIONS(2329), + [anon_sym_module] = ACTIONS(2329), + [anon_sym_any] = ACTIONS(2329), + [anon_sym_number] = ACTIONS(2329), + [anon_sym_boolean] = ACTIONS(2329), + [anon_sym_string] = ACTIONS(2329), + [anon_sym_symbol] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_typeof] = ACTIONS(2333), + [anon_sym_import] = ACTIONS(2333), + [anon_sym_var] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_with] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_debugger] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_LTtemplate_GT] = ACTIONS(2331), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_SLASH] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_void] = ACTIONS(2333), + [anon_sym_delete] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2331), + [sym_number] = ACTIONS(2331), + [sym_this] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [sym_null] = ACTIONS(2333), + [sym_undefined] = ACTIONS(2333), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_readonly] = ACTIONS(2333), + [anon_sym_get] = ACTIONS(2333), + [anon_sym_set] = ACTIONS(2333), + [anon_sym_declare] = ACTIONS(2333), + [anon_sym_public] = ACTIONS(2333), + [anon_sym_private] = ACTIONS(2333), + [anon_sym_protected] = ACTIONS(2333), + [anon_sym_override] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_any] = ACTIONS(2333), + [anon_sym_number] = ACTIONS(2333), + [anon_sym_boolean] = ACTIONS(2333), + [anon_sym_string] = ACTIONS(2333), + [anon_sym_symbol] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + }, + [720] = { [ts_builtin_sym_end] = ACTIONS(2335), [sym_identifier] = ACTIONS(2337), [anon_sym_export] = ACTIONS(2337), @@ -88571,14 +89015,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2337), [anon_sym_LBRACK] = ACTIONS(2335), [anon_sym_LTtemplate_GT] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), [anon_sym_class] = ACTIONS(2337), [anon_sym_async] = ACTIONS(2337), [anon_sym_function] = ACTIONS(2337), [anon_sym_new] = ACTIONS(2337), [anon_sym_PLUS] = ACTIONS(2337), [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), [anon_sym_TILDE] = ACTIONS(2335), [anon_sym_void] = ACTIONS(2337), [anon_sym_delete] = ACTIONS(2337), @@ -88615,244 +89059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2337), [anon_sym_enum] = ACTIONS(2337), }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [720] = { + [721] = { [ts_builtin_sym_end] = ACTIONS(2339), [sym_identifier] = ACTIONS(2341), [anon_sym_export] = ACTIONS(2341), @@ -88879,296 +89086,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(2341), [anon_sym_break] = ACTIONS(2341), [anon_sym_continue] = ACTIONS(2341), - [anon_sym_debugger] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_case] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_LTtemplate_GT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_void] = ACTIONS(2341), - [anon_sym_delete] = ACTIONS(2341), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2339), - [anon_sym_SQUOTE] = ACTIONS(2339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2339), - [sym_number] = ACTIONS(2339), - [sym_this] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_true] = ACTIONS(2341), - [sym_false] = ACTIONS(2341), - [sym_null] = ACTIONS(2341), - [sym_undefined] = ACTIONS(2341), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_readonly] = ACTIONS(2341), - [anon_sym_get] = ACTIONS(2341), - [anon_sym_set] = ACTIONS(2341), - [anon_sym_declare] = ACTIONS(2341), - [anon_sym_public] = ACTIONS(2341), - [anon_sym_private] = ACTIONS(2341), - [anon_sym_protected] = ACTIONS(2341), - [anon_sym_override] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_any] = ACTIONS(2341), - [anon_sym_number] = ACTIONS(2341), - [anon_sym_boolean] = ACTIONS(2341), - [anon_sym_string] = ACTIONS(2341), - [anon_sym_symbol] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - }, - [721] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [722] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_debugger] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LTtemplate_GT] = ACTIONS(2339), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_void] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(2341), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [anon_sym_BQUOTE] = ACTIONS(2339), + [sym_number] = ACTIONS(2339), + [sym_this] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_null] = ACTIONS(2341), + [sym_undefined] = ACTIONS(2341), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_readonly] = ACTIONS(2341), + [anon_sym_get] = ACTIONS(2341), + [anon_sym_set] = ACTIONS(2341), + [anon_sym_declare] = ACTIONS(2341), + [anon_sym_public] = ACTIONS(2341), + [anon_sym_private] = ACTIONS(2341), + [anon_sym_protected] = ACTIONS(2341), + [anon_sym_override] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_any] = ACTIONS(2341), + [anon_sym_number] = ACTIONS(2341), + [anon_sym_boolean] = ACTIONS(2341), + [anon_sym_string] = ACTIONS(2341), + [anon_sym_symbol] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), }, - [724] = { + [722] = { [ts_builtin_sym_end] = ACTIONS(2343), [sym_identifier] = ACTIONS(2345), [anon_sym_export] = ACTIONS(2345), @@ -89203,14 +89173,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(2343), [anon_sym_LTtemplate_GT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2345), [anon_sym_class] = ACTIONS(2345), [anon_sym_async] = ACTIONS(2345), [anon_sym_function] = ACTIONS(2345), [anon_sym_new] = ACTIONS(2345), [anon_sym_PLUS] = ACTIONS(2345), [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_SLASH] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), [anon_sym_TILDE] = ACTIONS(2343), [anon_sym_void] = ACTIONS(2345), [anon_sym_delete] = ACTIONS(2345), @@ -89247,86 +89217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2345), [anon_sym_enum] = ACTIONS(2345), }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [726] = { + [723] = { [ts_builtin_sym_end] = ACTIONS(2347), [sym_identifier] = ACTIONS(2349), [anon_sym_export] = ACTIONS(2349), @@ -89361,14 +89252,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2349), [anon_sym_LBRACK] = ACTIONS(2347), [anon_sym_LTtemplate_GT] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_SLASH] = ACTIONS(2349), [anon_sym_class] = ACTIONS(2349), [anon_sym_async] = ACTIONS(2349), [anon_sym_function] = ACTIONS(2349), [anon_sym_new] = ACTIONS(2349), [anon_sym_PLUS] = ACTIONS(2349), [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_SLASH] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), [anon_sym_TILDE] = ACTIONS(2347), [anon_sym_void] = ACTIONS(2349), [anon_sym_delete] = ACTIONS(2349), @@ -89405,7 +89296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2349), [anon_sym_enum] = ACTIONS(2349), }, - [727] = { + [724] = { [ts_builtin_sym_end] = ACTIONS(2351), [sym_identifier] = ACTIONS(2353), [anon_sym_export] = ACTIONS(2353), @@ -89440,14 +89331,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2353), [anon_sym_LBRACK] = ACTIONS(2351), [anon_sym_LTtemplate_GT] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), [anon_sym_class] = ACTIONS(2353), [anon_sym_async] = ACTIONS(2353), [anon_sym_function] = ACTIONS(2353), [anon_sym_new] = ACTIONS(2353), [anon_sym_PLUS] = ACTIONS(2353), [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_SLASH] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), [anon_sym_TILDE] = ACTIONS(2351), [anon_sym_void] = ACTIONS(2353), [anon_sym_delete] = ACTIONS(2353), @@ -89461,346 +89352,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2353), [sym_super] = ACTIONS(2353), [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [sym_undefined] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(2353), - [anon_sym_set] = ACTIONS(2353), - [anon_sym_declare] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_protected] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_any] = ACTIONS(2353), - [anon_sym_number] = ACTIONS(2353), - [anon_sym_boolean] = ACTIONS(2353), - [anon_sym_string] = ACTIONS(2353), - [anon_sym_symbol] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [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(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_typeof] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_var] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = 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(2315), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LTtemplate_GT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_delete] = ACTIONS(2317), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2315), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2315), - [sym_number] = ACTIONS(2315), - [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(2315), - [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_abstract] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_LTtemplate_GT] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), + [sym_false] = ACTIONS(2353), + [sym_null] = ACTIONS(2353), + [sym_undefined] = ACTIONS(2353), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_readonly] = ACTIONS(2353), + [anon_sym_get] = ACTIONS(2353), + [anon_sym_set] = ACTIONS(2353), + [anon_sym_declare] = ACTIONS(2353), + [anon_sym_public] = ACTIONS(2353), + [anon_sym_private] = ACTIONS(2353), + [anon_sym_protected] = ACTIONS(2353), + [anon_sym_override] = ACTIONS(2353), + [anon_sym_module] = ACTIONS(2353), + [anon_sym_any] = ACTIONS(2353), + [anon_sym_number] = ACTIONS(2353), + [anon_sym_boolean] = ACTIONS(2353), + [anon_sym_string] = ACTIONS(2353), + [anon_sym_symbol] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), }, - [732] = { + [725] = { [ts_builtin_sym_end] = ACTIONS(2355), [sym_identifier] = ACTIONS(2357), [anon_sym_export] = ACTIONS(2357), @@ -89835,14 +89410,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2357), [anon_sym_LBRACK] = ACTIONS(2355), [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), [anon_sym_class] = ACTIONS(2357), [anon_sym_async] = ACTIONS(2357), [anon_sym_function] = ACTIONS(2357), [anon_sym_new] = ACTIONS(2357), [anon_sym_PLUS] = ACTIONS(2357), [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_SLASH] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), [anon_sym_TILDE] = ACTIONS(2355), [anon_sym_void] = ACTIONS(2357), [anon_sym_delete] = ACTIONS(2357), @@ -89879,86 +89454,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2357), [anon_sym_enum] = ACTIONS(2357), }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_var] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_debugger] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_delete] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), + [726] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2355), - [sym_number] = ACTIONS(2355), - [sym_this] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_null] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_private] = ACTIONS(2357), - [anon_sym_protected] = ACTIONS(2357), - [anon_sym_override] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_any] = ACTIONS(2357), - [anon_sym_number] = ACTIONS(2357), - [anon_sym_boolean] = ACTIONS(2357), - [anon_sym_string] = ACTIONS(2357), - [anon_sym_symbol] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, - [734] = { + [727] = { [ts_builtin_sym_end] = ACTIONS(2359), [sym_identifier] = ACTIONS(2361), [anon_sym_export] = ACTIONS(2361), @@ -89993,14 +89568,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2361), [anon_sym_LBRACK] = ACTIONS(2359), [anon_sym_LTtemplate_GT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_SLASH] = ACTIONS(2361), [anon_sym_class] = ACTIONS(2361), [anon_sym_async] = ACTIONS(2361), [anon_sym_function] = ACTIONS(2361), [anon_sym_new] = ACTIONS(2361), [anon_sym_PLUS] = ACTIONS(2361), [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_SLASH] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), [anon_sym_TILDE] = ACTIONS(2359), [anon_sym_void] = ACTIONS(2361), [anon_sym_delete] = ACTIONS(2361), @@ -90037,7 +89612,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2361), [anon_sym_enum] = ACTIONS(2361), }, - [735] = { + [728] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [729] = { [ts_builtin_sym_end] = ACTIONS(2363), [sym_identifier] = ACTIONS(2365), [anon_sym_export] = ACTIONS(2365), @@ -90072,14 +89726,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2365), [anon_sym_LBRACK] = ACTIONS(2363), [anon_sym_LTtemplate_GT] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_SLASH] = ACTIONS(2365), [anon_sym_class] = ACTIONS(2365), [anon_sym_async] = ACTIONS(2365), [anon_sym_function] = ACTIONS(2365), [anon_sym_new] = ACTIONS(2365), [anon_sym_PLUS] = ACTIONS(2365), [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_SLASH] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), [anon_sym_TILDE] = ACTIONS(2363), [anon_sym_void] = ACTIONS(2365), [anon_sym_delete] = ACTIONS(2365), @@ -90116,86 +89770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2365), [anon_sym_enum] = ACTIONS(2365), }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [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(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = 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(2095), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LTtemplate_GT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2095), - [sym_number] = ACTIONS(2095), - [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(2095), - [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_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - }, - [737] = { + [730] = { [ts_builtin_sym_end] = ACTIONS(2367), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2369), @@ -90230,14 +89805,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2369), [anon_sym_LBRACK] = ACTIONS(2367), [anon_sym_LTtemplate_GT] = ACTIONS(2367), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_SLASH] = ACTIONS(2369), [anon_sym_class] = ACTIONS(2369), [anon_sym_async] = ACTIONS(2369), [anon_sym_function] = ACTIONS(2369), [anon_sym_new] = ACTIONS(2369), [anon_sym_PLUS] = ACTIONS(2369), [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_SLASH] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), [anon_sym_TILDE] = ACTIONS(2367), [anon_sym_void] = ACTIONS(2369), [anon_sym_delete] = ACTIONS(2369), @@ -90274,86 +89849,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2369), [anon_sym_enum] = ACTIONS(2369), }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_with] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_debugger] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_throw] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_LTtemplate_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_class] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(1543), - [anon_sym_new] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_delete] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_number] = ACTIONS(1541), - [sym_this] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_true] = ACTIONS(1543), - [sym_false] = ACTIONS(1543), - [sym_null] = ACTIONS(1543), - [sym_undefined] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_abstract] = ACTIONS(1543), - [anon_sym_interface] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), + [731] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, - [739] = { + [733] = { [ts_builtin_sym_end] = ACTIONS(2371), [sym_identifier] = ACTIONS(2373), [anon_sym_export] = ACTIONS(2373), @@ -90388,14 +90042,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2373), [anon_sym_LBRACK] = ACTIONS(2371), [anon_sym_LTtemplate_GT] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(2373), [anon_sym_class] = ACTIONS(2373), [anon_sym_async] = ACTIONS(2373), [anon_sym_function] = ACTIONS(2373), [anon_sym_new] = ACTIONS(2373), [anon_sym_PLUS] = ACTIONS(2373), [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), [anon_sym_TILDE] = ACTIONS(2371), [anon_sym_void] = ACTIONS(2373), [anon_sym_delete] = ACTIONS(2373), @@ -90432,7 +90086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2373), [anon_sym_enum] = ACTIONS(2373), }, - [740] = { + [734] = { [ts_builtin_sym_end] = ACTIONS(2375), [sym_identifier] = ACTIONS(2377), [anon_sym_export] = ACTIONS(2377), @@ -90467,14 +90121,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2377), [anon_sym_LBRACK] = ACTIONS(2375), [anon_sym_LTtemplate_GT] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(2377), [anon_sym_class] = ACTIONS(2377), [anon_sym_async] = ACTIONS(2377), [anon_sym_function] = ACTIONS(2377), [anon_sym_new] = ACTIONS(2377), [anon_sym_PLUS] = ACTIONS(2377), [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), [anon_sym_TILDE] = ACTIONS(2375), [anon_sym_void] = ACTIONS(2377), [anon_sym_delete] = ACTIONS(2377), @@ -90511,7 +90165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2377), [anon_sym_enum] = ACTIONS(2377), }, - [741] = { + [735] = { [ts_builtin_sym_end] = ACTIONS(2379), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2381), @@ -90546,14 +90200,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2381), [anon_sym_LBRACK] = ACTIONS(2379), [anon_sym_LTtemplate_GT] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_SLASH] = ACTIONS(2381), [anon_sym_class] = ACTIONS(2381), [anon_sym_async] = ACTIONS(2381), [anon_sym_function] = ACTIONS(2381), [anon_sym_new] = ACTIONS(2381), [anon_sym_PLUS] = ACTIONS(2381), [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), [anon_sym_TILDE] = ACTIONS(2379), [anon_sym_void] = ACTIONS(2381), [anon_sym_delete] = ACTIONS(2381), @@ -90590,86 +90244,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2381), [anon_sym_enum] = ACTIONS(2381), }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2377), - [anon_sym_export] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_typeof] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2377), - [anon_sym_var] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_with] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_debugger] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_case] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_LTtemplate_GT] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_void] = ACTIONS(2377), - [anon_sym_delete] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), + [736] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_typeof] = ACTIONS(2381), + [anon_sym_import] = ACTIONS(2381), + [anon_sym_var] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_with] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_debugger] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LTtemplate_GT] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_void] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2375), - [sym_number] = ACTIONS(2375), - [sym_this] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_true] = ACTIONS(2377), - [sym_false] = ACTIONS(2377), - [sym_null] = ACTIONS(2377), - [sym_undefined] = ACTIONS(2377), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_readonly] = ACTIONS(2377), - [anon_sym_get] = ACTIONS(2377), - [anon_sym_set] = ACTIONS(2377), - [anon_sym_declare] = ACTIONS(2377), - [anon_sym_public] = ACTIONS(2377), - [anon_sym_private] = ACTIONS(2377), - [anon_sym_protected] = ACTIONS(2377), - [anon_sym_override] = ACTIONS(2377), - [anon_sym_module] = ACTIONS(2377), - [anon_sym_any] = ACTIONS(2377), - [anon_sym_number] = ACTIONS(2377), - [anon_sym_boolean] = ACTIONS(2377), - [anon_sym_string] = ACTIONS(2377), - [anon_sym_symbol] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), + [anon_sym_BQUOTE] = ACTIONS(2379), + [sym_number] = ACTIONS(2379), + [sym_this] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [sym_null] = ACTIONS(2381), + [sym_undefined] = ACTIONS(2381), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_readonly] = ACTIONS(2381), + [anon_sym_get] = ACTIONS(2381), + [anon_sym_set] = ACTIONS(2381), + [anon_sym_declare] = ACTIONS(2381), + [anon_sym_public] = ACTIONS(2381), + [anon_sym_private] = ACTIONS(2381), + [anon_sym_protected] = ACTIONS(2381), + [anon_sym_override] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_any] = ACTIONS(2381), + [anon_sym_number] = ACTIONS(2381), + [anon_sym_boolean] = ACTIONS(2381), + [anon_sym_string] = ACTIONS(2381), + [anon_sym_symbol] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), }, - [743] = { + [737] = { [ts_builtin_sym_end] = ACTIONS(2383), [sym_identifier] = ACTIONS(2385), [anon_sym_export] = ACTIONS(2385), @@ -90704,14 +90358,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2385), [anon_sym_LBRACK] = ACTIONS(2383), [anon_sym_LTtemplate_GT] = ACTIONS(2383), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_SLASH] = ACTIONS(2385), [anon_sym_class] = ACTIONS(2385), [anon_sym_async] = ACTIONS(2385), [anon_sym_function] = ACTIONS(2385), [anon_sym_new] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(2385), [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_SLASH] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), [anon_sym_TILDE] = ACTIONS(2383), [anon_sym_void] = ACTIONS(2385), [anon_sym_delete] = ACTIONS(2385), @@ -90748,7 +90402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2385), [anon_sym_enum] = ACTIONS(2385), }, - [744] = { + [738] = { [ts_builtin_sym_end] = ACTIONS(2387), [sym_identifier] = ACTIONS(2389), [anon_sym_export] = ACTIONS(2389), @@ -90783,14 +90437,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(2387), [anon_sym_LTtemplate_GT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_SLASH] = ACTIONS(2389), [anon_sym_class] = ACTIONS(2389), [anon_sym_async] = ACTIONS(2389), [anon_sym_function] = ACTIONS(2389), [anon_sym_new] = ACTIONS(2389), [anon_sym_PLUS] = ACTIONS(2389), [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_SLASH] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), [anon_sym_TILDE] = ACTIONS(2387), [anon_sym_void] = ACTIONS(2389), [anon_sym_delete] = ACTIONS(2389), @@ -90827,7 +90481,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2389), [anon_sym_enum] = ACTIONS(2389), }, - [745] = { + [739] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [740] = { [ts_builtin_sym_end] = ACTIONS(2391), [sym_identifier] = ACTIONS(2393), [anon_sym_export] = ACTIONS(2393), @@ -90862,14 +90595,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2393), [anon_sym_LBRACK] = ACTIONS(2391), [anon_sym_LTtemplate_GT] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), [anon_sym_class] = ACTIONS(2393), [anon_sym_async] = ACTIONS(2393), [anon_sym_function] = ACTIONS(2393), [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS] = ACTIONS(2393), [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_SLASH] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), [anon_sym_TILDE] = ACTIONS(2391), [anon_sym_void] = ACTIONS(2393), [anon_sym_delete] = ACTIONS(2393), @@ -90906,7 +90639,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2393), [anon_sym_enum] = ACTIONS(2393), }, - [746] = { + [741] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(1443), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_await] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_with] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_debugger] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_throw] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LTtemplate_GT] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_function] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1441), + [anon_sym_void] = ACTIONS(1443), + [anon_sym_delete] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1441), + [sym_number] = ACTIONS(1441), + [sym_this] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_true] = ACTIONS(1443), + [sym_false] = ACTIONS(1443), + [sym_null] = ACTIONS(1443), + [sym_undefined] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_readonly] = ACTIONS(1443), + [anon_sym_get] = ACTIONS(1443), + [anon_sym_set] = ACTIONS(1443), + [anon_sym_declare] = ACTIONS(1443), + [anon_sym_public] = ACTIONS(1443), + [anon_sym_private] = ACTIONS(1443), + [anon_sym_protected] = ACTIONS(1443), + [anon_sym_override] = ACTIONS(1443), + [anon_sym_module] = ACTIONS(1443), + [anon_sym_any] = ACTIONS(1443), + [anon_sym_number] = ACTIONS(1443), + [anon_sym_boolean] = ACTIONS(1443), + [anon_sym_string] = ACTIONS(1443), + [anon_sym_symbol] = ACTIONS(1443), + [anon_sym_abstract] = ACTIONS(1443), + [anon_sym_interface] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + }, + [742] = { [ts_builtin_sym_end] = ACTIONS(2395), [sym_identifier] = ACTIONS(2397), [anon_sym_export] = ACTIONS(2397), @@ -90941,14 +90753,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(2395), [anon_sym_LTtemplate_GT] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2397), [anon_sym_class] = ACTIONS(2397), [anon_sym_async] = ACTIONS(2397), [anon_sym_function] = ACTIONS(2397), [anon_sym_new] = ACTIONS(2397), [anon_sym_PLUS] = ACTIONS(2397), [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), [anon_sym_TILDE] = ACTIONS(2395), [anon_sym_void] = ACTIONS(2397), [anon_sym_delete] = ACTIONS(2397), @@ -90985,165 +90797,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2397), [anon_sym_enum] = ACTIONS(2397), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2377), - [anon_sym_export] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_typeof] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2377), - [anon_sym_var] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_with] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_debugger] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_case] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_LTtemplate_GT] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_void] = ACTIONS(2377), - [anon_sym_delete] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), + [743] = { + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_typeof] = ACTIONS(2401), + [anon_sym_import] = ACTIONS(2401), + [anon_sym_var] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_with] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_debugger] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LTtemplate_GT] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_void] = ACTIONS(2401), + [anon_sym_delete] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2375), - [sym_number] = ACTIONS(2375), - [sym_this] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_true] = ACTIONS(2377), - [sym_false] = ACTIONS(2377), - [sym_null] = ACTIONS(2377), - [sym_undefined] = ACTIONS(2377), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_readonly] = ACTIONS(2377), - [anon_sym_get] = ACTIONS(2377), - [anon_sym_set] = ACTIONS(2377), - [anon_sym_declare] = ACTIONS(2377), - [anon_sym_public] = ACTIONS(2377), - [anon_sym_private] = ACTIONS(2377), - [anon_sym_protected] = ACTIONS(2377), - [anon_sym_override] = ACTIONS(2377), - [anon_sym_module] = ACTIONS(2377), - [anon_sym_any] = ACTIONS(2377), - [anon_sym_number] = ACTIONS(2377), - [anon_sym_boolean] = ACTIONS(2377), - [anon_sym_string] = ACTIONS(2377), - [anon_sym_symbol] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), + [anon_sym_BQUOTE] = ACTIONS(2399), + [sym_number] = ACTIONS(2399), + [sym_this] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_null] = ACTIONS(2401), + [sym_undefined] = ACTIONS(2401), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_readonly] = ACTIONS(2401), + [anon_sym_get] = ACTIONS(2401), + [anon_sym_set] = ACTIONS(2401), + [anon_sym_declare] = ACTIONS(2401), + [anon_sym_public] = ACTIONS(2401), + [anon_sym_private] = ACTIONS(2401), + [anon_sym_protected] = ACTIONS(2401), + [anon_sym_override] = ACTIONS(2401), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_any] = ACTIONS(2401), + [anon_sym_number] = ACTIONS(2401), + [anon_sym_boolean] = ACTIONS(2401), + [anon_sym_string] = ACTIONS(2401), + [anon_sym_symbol] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, - [748] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_typeof] = ACTIONS(2401), - [anon_sym_import] = ACTIONS(2401), - [anon_sym_var] = ACTIONS(2401), - [anon_sym_let] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_with] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_debugger] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LTtemplate_GT] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_SLASH] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_void] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), + [745] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2399), - [sym_number] = ACTIONS(2399), - [sym_this] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_undefined] = ACTIONS(2401), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_readonly] = ACTIONS(2401), - [anon_sym_get] = ACTIONS(2401), - [anon_sym_set] = ACTIONS(2401), - [anon_sym_declare] = ACTIONS(2401), - [anon_sym_public] = ACTIONS(2401), - [anon_sym_private] = ACTIONS(2401), - [anon_sym_protected] = ACTIONS(2401), - [anon_sym_override] = ACTIONS(2401), - [anon_sym_module] = ACTIONS(2401), - [anon_sym_any] = ACTIONS(2401), - [anon_sym_number] = ACTIONS(2401), - [anon_sym_boolean] = ACTIONS(2401), - [anon_sym_string] = ACTIONS(2401), - [anon_sym_symbol] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), }, - [749] = { + [746] = { [ts_builtin_sym_end] = ACTIONS(2403), [sym_identifier] = ACTIONS(2405), [anon_sym_export] = ACTIONS(2405), @@ -91178,14 +91069,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2405), [anon_sym_LBRACK] = ACTIONS(2403), [anon_sym_LTtemplate_GT] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_SLASH] = ACTIONS(2405), [anon_sym_class] = ACTIONS(2405), [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(2405), [anon_sym_new] = ACTIONS(2405), [anon_sym_PLUS] = ACTIONS(2405), [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_SLASH] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), [anon_sym_TILDE] = ACTIONS(2403), [anon_sym_void] = ACTIONS(2405), [anon_sym_delete] = ACTIONS(2405), @@ -91222,7 +91113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2405), [anon_sym_enum] = ACTIONS(2405), }, - [750] = { + [747] = { [ts_builtin_sym_end] = ACTIONS(2407), [sym_identifier] = ACTIONS(2409), [anon_sym_export] = ACTIONS(2409), @@ -91257,14 +91148,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2409), [anon_sym_LBRACK] = ACTIONS(2407), [anon_sym_LTtemplate_GT] = ACTIONS(2407), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2409), [anon_sym_class] = ACTIONS(2409), [anon_sym_async] = ACTIONS(2409), [anon_sym_function] = ACTIONS(2409), [anon_sym_new] = ACTIONS(2409), [anon_sym_PLUS] = ACTIONS(2409), [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_SLASH] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), [anon_sym_TILDE] = ACTIONS(2407), [anon_sym_void] = ACTIONS(2409), [anon_sym_delete] = ACTIONS(2409), @@ -91273,351 +91164,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2407), [anon_sym_SQUOTE] = ACTIONS(2407), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2407), - [sym_number] = ACTIONS(2407), - [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(2407), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_readonly] = ACTIONS(2409), - [anon_sym_get] = ACTIONS(2409), - [anon_sym_set] = ACTIONS(2409), - [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_abstract] = ACTIONS(2409), - [anon_sym_interface] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - }, - [751] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_var] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_debugger] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_delete] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2355), - [sym_number] = ACTIONS(2355), - [sym_this] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_null] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_private] = ACTIONS(2357), - [anon_sym_protected] = ACTIONS(2357), - [anon_sym_override] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_any] = ACTIONS(2357), - [anon_sym_number] = ACTIONS(2357), - [anon_sym_boolean] = ACTIONS(2357), - [anon_sym_string] = ACTIONS(2357), - [anon_sym_symbol] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - }, - [752] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_var] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_debugger] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_delete] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2355), - [sym_number] = ACTIONS(2355), - [sym_this] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_null] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_private] = ACTIONS(2357), - [anon_sym_protected] = ACTIONS(2357), - [anon_sym_override] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_any] = ACTIONS(2357), - [anon_sym_number] = ACTIONS(2357), - [anon_sym_boolean] = ACTIONS(2357), - [anon_sym_string] = ACTIONS(2357), - [anon_sym_symbol] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_var] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_debugger] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_delete] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2355), - [sym_number] = ACTIONS(2355), - [sym_this] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_null] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_private] = ACTIONS(2357), - [anon_sym_protected] = ACTIONS(2357), - [anon_sym_override] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_any] = ACTIONS(2357), - [anon_sym_number] = ACTIONS(2357), - [anon_sym_boolean] = ACTIONS(2357), - [anon_sym_string] = ACTIONS(2357), - [anon_sym_symbol] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_typeof] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_var] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_debugger] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LTtemplate_GT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_delete] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2355), - [sym_number] = ACTIONS(2355), - [sym_this] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_null] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_private] = ACTIONS(2357), - [anon_sym_protected] = ACTIONS(2357), - [anon_sym_override] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_any] = ACTIONS(2357), - [anon_sym_number] = ACTIONS(2357), - [anon_sym_boolean] = ACTIONS(2357), - [anon_sym_string] = ACTIONS(2357), - [anon_sym_symbol] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), + [anon_sym_BQUOTE] = ACTIONS(2407), + [sym_number] = ACTIONS(2407), + [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(2407), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_readonly] = ACTIONS(2409), + [anon_sym_get] = ACTIONS(2409), + [anon_sym_set] = ACTIONS(2409), + [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_abstract] = ACTIONS(2409), + [anon_sym_interface] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), }, - [755] = { + [748] = { [ts_builtin_sym_end] = ACTIONS(2411), [sym_identifier] = ACTIONS(2413), [anon_sym_export] = ACTIONS(2413), @@ -91652,14 +91227,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2413), [anon_sym_LBRACK] = ACTIONS(2411), [anon_sym_LTtemplate_GT] = ACTIONS(2411), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_SLASH] = ACTIONS(2413), [anon_sym_class] = ACTIONS(2413), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2413), [anon_sym_new] = ACTIONS(2413), [anon_sym_PLUS] = ACTIONS(2413), [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_SLASH] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), [anon_sym_TILDE] = ACTIONS(2411), [anon_sym_void] = ACTIONS(2413), [anon_sym_delete] = ACTIONS(2413), @@ -91696,7 +91271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2413), [anon_sym_enum] = ACTIONS(2413), }, - [756] = { + [749] = { [ts_builtin_sym_end] = ACTIONS(2415), [sym_identifier] = ACTIONS(2417), [anon_sym_export] = ACTIONS(2417), @@ -91731,14 +91306,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2417), [anon_sym_LBRACK] = ACTIONS(2415), [anon_sym_LTtemplate_GT] = ACTIONS(2415), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_SLASH] = ACTIONS(2417), [anon_sym_class] = ACTIONS(2417), [anon_sym_async] = ACTIONS(2417), [anon_sym_function] = ACTIONS(2417), [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS] = ACTIONS(2417), [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_SLASH] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), [anon_sym_TILDE] = ACTIONS(2415), [anon_sym_void] = ACTIONS(2417), [anon_sym_delete] = ACTIONS(2417), @@ -91747,114 +91322,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2415), [anon_sym_SQUOTE] = ACTIONS(2415), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2415), - [sym_number] = ACTIONS(2415), - [sym_this] = ACTIONS(2417), - [sym_super] = ACTIONS(2417), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_null] = ACTIONS(2417), - [sym_undefined] = ACTIONS(2417), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_readonly] = ACTIONS(2417), - [anon_sym_get] = ACTIONS(2417), - [anon_sym_set] = ACTIONS(2417), - [anon_sym_declare] = ACTIONS(2417), - [anon_sym_public] = ACTIONS(2417), - [anon_sym_private] = ACTIONS(2417), - [anon_sym_protected] = ACTIONS(2417), - [anon_sym_override] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_any] = ACTIONS(2417), - [anon_sym_number] = ACTIONS(2417), - [anon_sym_boolean] = ACTIONS(2417), - [anon_sym_string] = ACTIONS(2417), - [anon_sym_symbol] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), + [anon_sym_BQUOTE] = ACTIONS(2415), + [sym_number] = ACTIONS(2415), + [sym_this] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_true] = ACTIONS(2417), + [sym_false] = ACTIONS(2417), + [sym_null] = ACTIONS(2417), + [sym_undefined] = ACTIONS(2417), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [751] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [752] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [753] = { + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_typeof] = ACTIONS(2401), + [anon_sym_import] = ACTIONS(2401), + [anon_sym_var] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_with] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_debugger] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LTtemplate_GT] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_void] = ACTIONS(2401), + [anon_sym_delete] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2399), + [sym_number] = ACTIONS(2399), + [sym_this] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_null] = ACTIONS(2401), + [sym_undefined] = ACTIONS(2401), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_readonly] = ACTIONS(2401), + [anon_sym_get] = ACTIONS(2401), + [anon_sym_set] = ACTIONS(2401), + [anon_sym_declare] = ACTIONS(2401), + [anon_sym_public] = ACTIONS(2401), + [anon_sym_private] = ACTIONS(2401), + [anon_sym_protected] = ACTIONS(2401), + [anon_sym_override] = ACTIONS(2401), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_any] = ACTIONS(2401), + [anon_sym_number] = ACTIONS(2401), + [anon_sym_boolean] = ACTIONS(2401), + [anon_sym_string] = ACTIONS(2401), + [anon_sym_symbol] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + }, + [754] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_typeof] = ACTIONS(2381), + [anon_sym_import] = ACTIONS(2381), + [anon_sym_var] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_with] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_debugger] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LTtemplate_GT] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_void] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2379), + [sym_number] = ACTIONS(2379), + [sym_this] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [sym_null] = ACTIONS(2381), + [sym_undefined] = ACTIONS(2381), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_readonly] = ACTIONS(2381), + [anon_sym_get] = ACTIONS(2381), + [anon_sym_set] = ACTIONS(2381), + [anon_sym_declare] = ACTIONS(2381), + [anon_sym_public] = ACTIONS(2381), + [anon_sym_private] = ACTIONS(2381), + [anon_sym_protected] = ACTIONS(2381), + [anon_sym_override] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_any] = ACTIONS(2381), + [anon_sym_number] = ACTIONS(2381), + [anon_sym_boolean] = ACTIONS(2381), + [anon_sym_string] = ACTIONS(2381), + [anon_sym_symbol] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + }, + [755] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_typeof] = ACTIONS(2381), + [anon_sym_import] = ACTIONS(2381), + [anon_sym_var] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_with] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_debugger] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LTtemplate_GT] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_void] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2379), + [sym_number] = ACTIONS(2379), + [sym_this] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [sym_null] = ACTIONS(2381), + [sym_undefined] = ACTIONS(2381), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_readonly] = ACTIONS(2381), + [anon_sym_get] = ACTIONS(2381), + [anon_sym_set] = ACTIONS(2381), + [anon_sym_declare] = ACTIONS(2381), + [anon_sym_public] = ACTIONS(2381), + [anon_sym_private] = ACTIONS(2381), + [anon_sym_protected] = ACTIONS(2381), + [anon_sym_override] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_any] = ACTIONS(2381), + [anon_sym_number] = ACTIONS(2381), + [anon_sym_boolean] = ACTIONS(2381), + [anon_sym_string] = ACTIONS(2381), + [anon_sym_symbol] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + }, + [756] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_typeof] = ACTIONS(2381), + [anon_sym_import] = ACTIONS(2381), + [anon_sym_var] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_with] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_debugger] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LTtemplate_GT] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_void] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2379), + [sym_number] = ACTIONS(2379), + [sym_this] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [sym_null] = ACTIONS(2381), + [sym_undefined] = ACTIONS(2381), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_readonly] = ACTIONS(2381), + [anon_sym_get] = ACTIONS(2381), + [anon_sym_set] = ACTIONS(2381), + [anon_sym_declare] = ACTIONS(2381), + [anon_sym_public] = ACTIONS(2381), + [anon_sym_private] = ACTIONS(2381), + [anon_sym_protected] = ACTIONS(2381), + [anon_sym_override] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_any] = ACTIONS(2381), + [anon_sym_number] = ACTIONS(2381), + [anon_sym_boolean] = ACTIONS(2381), + [anon_sym_string] = ACTIONS(2381), + [anon_sym_symbol] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), }, [757] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_typeof] = ACTIONS(2421), - [anon_sym_import] = ACTIONS(2421), - [anon_sym_var] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_with] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_debugger] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_LTtemplate_GT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_SLASH] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_void] = ACTIONS(2421), - [anon_sym_delete] = ACTIONS(2421), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_typeof] = ACTIONS(2381), + [anon_sym_import] = ACTIONS(2381), + [anon_sym_var] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_with] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_debugger] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LTtemplate_GT] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_void] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2419), - [sym_number] = ACTIONS(2419), - [sym_this] = ACTIONS(2421), - [sym_super] = ACTIONS(2421), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_undefined] = ACTIONS(2421), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_readonly] = ACTIONS(2421), - [anon_sym_get] = ACTIONS(2421), - [anon_sym_set] = ACTIONS(2421), - [anon_sym_declare] = ACTIONS(2421), - [anon_sym_public] = ACTIONS(2421), - [anon_sym_private] = ACTIONS(2421), - [anon_sym_protected] = ACTIONS(2421), - [anon_sym_override] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_any] = ACTIONS(2421), - [anon_sym_number] = ACTIONS(2421), - [anon_sym_boolean] = ACTIONS(2421), - [anon_sym_string] = ACTIONS(2421), - [anon_sym_symbol] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), + [anon_sym_BQUOTE] = ACTIONS(2379), + [sym_number] = ACTIONS(2379), + [sym_this] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [sym_null] = ACTIONS(2381), + [sym_undefined] = ACTIONS(2381), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_readonly] = ACTIONS(2381), + [anon_sym_get] = ACTIONS(2381), + [anon_sym_set] = ACTIONS(2381), + [anon_sym_declare] = ACTIONS(2381), + [anon_sym_public] = ACTIONS(2381), + [anon_sym_private] = ACTIONS(2381), + [anon_sym_protected] = ACTIONS(2381), + [anon_sym_override] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_any] = ACTIONS(2381), + [anon_sym_number] = ACTIONS(2381), + [anon_sym_boolean] = ACTIONS(2381), + [anon_sym_string] = ACTIONS(2381), + [anon_sym_symbol] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), }, [758] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_debugger] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2261), + [anon_sym_delete] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_this] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_get] = ACTIONS(2261), + [anon_sym_set] = ACTIONS(2261), + [anon_sym_declare] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_private] = ACTIONS(2261), + [anon_sym_protected] = ACTIONS(2261), + [anon_sym_override] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_any] = ACTIONS(2261), + [anon_sym_number] = ACTIONS(2261), + [anon_sym_boolean] = ACTIONS(2261), + [anon_sym_string] = ACTIONS(2261), + [anon_sym_symbol] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + }, + [759] = { [ts_builtin_sym_end] = ACTIONS(2419), [sym_identifier] = ACTIONS(2421), [anon_sym_export] = ACTIONS(2421), @@ -91889,14 +92096,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2421), [anon_sym_LBRACK] = ACTIONS(2419), [anon_sym_LTtemplate_GT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_SLASH] = ACTIONS(2421), [anon_sym_class] = ACTIONS(2421), [anon_sym_async] = ACTIONS(2421), [anon_sym_function] = ACTIONS(2421), [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS] = ACTIONS(2421), [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_SLASH] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), [anon_sym_TILDE] = ACTIONS(2419), [anon_sym_void] = ACTIONS(2421), [anon_sym_delete] = ACTIONS(2421), @@ -91933,7 +92140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2421), [anon_sym_enum] = ACTIONS(2421), }, - [759] = { + [760] = { [ts_builtin_sym_end] = ACTIONS(2423), [sym_identifier] = ACTIONS(2425), [anon_sym_export] = ACTIONS(2425), @@ -91968,14 +92175,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(2423), [anon_sym_LTtemplate_GT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2425), [anon_sym_class] = ACTIONS(2425), [anon_sym_async] = ACTIONS(2425), [anon_sym_function] = ACTIONS(2425), [anon_sym_new] = ACTIONS(2425), [anon_sym_PLUS] = ACTIONS(2425), [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), [anon_sym_TILDE] = ACTIONS(2423), [anon_sym_void] = ACTIONS(2425), [anon_sym_delete] = ACTIONS(2425), @@ -92012,7 +92219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2425), [anon_sym_enum] = ACTIONS(2425), }, - [760] = { + [761] = { [ts_builtin_sym_end] = ACTIONS(2427), [sym_identifier] = ACTIONS(2429), [anon_sym_export] = ACTIONS(2429), @@ -92047,14 +92254,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2429), [anon_sym_LBRACK] = ACTIONS(2427), [anon_sym_LTtemplate_GT] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_SLASH] = ACTIONS(2429), [anon_sym_class] = ACTIONS(2429), [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(2429), [anon_sym_new] = ACTIONS(2429), [anon_sym_PLUS] = ACTIONS(2429), [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), [anon_sym_TILDE] = ACTIONS(2427), [anon_sym_void] = ACTIONS(2429), [anon_sym_delete] = ACTIONS(2429), @@ -92091,7 +92298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2429), [anon_sym_enum] = ACTIONS(2429), }, - [761] = { + [762] = { [ts_builtin_sym_end] = ACTIONS(2431), [sym_identifier] = ACTIONS(2433), [anon_sym_export] = ACTIONS(2433), @@ -92126,14 +92333,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2433), [anon_sym_LBRACK] = ACTIONS(2431), [anon_sym_LTtemplate_GT] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), [anon_sym_class] = ACTIONS(2433), [anon_sym_async] = ACTIONS(2433), [anon_sym_function] = ACTIONS(2433), [anon_sym_new] = ACTIONS(2433), [anon_sym_PLUS] = ACTIONS(2433), [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), [anon_sym_TILDE] = ACTIONS(2431), [anon_sym_void] = ACTIONS(2433), [anon_sym_delete] = ACTIONS(2433), @@ -92170,7 +92377,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2433), [anon_sym_enum] = ACTIONS(2433), }, - [762] = { + [763] = { + [ts_builtin_sym_end] = ACTIONS(2223), + [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(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_with] = 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(2223), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = 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(2223), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [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(2223), + [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_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + }, + [764] = { [ts_builtin_sym_end] = ACTIONS(2435), [sym_identifier] = ACTIONS(2437), [anon_sym_export] = ACTIONS(2437), @@ -92205,14 +92491,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2437), [anon_sym_LBRACK] = ACTIONS(2435), [anon_sym_LTtemplate_GT] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_SLASH] = ACTIONS(2437), [anon_sym_class] = ACTIONS(2437), [anon_sym_async] = ACTIONS(2437), [anon_sym_function] = ACTIONS(2437), [anon_sym_new] = ACTIONS(2437), [anon_sym_PLUS] = ACTIONS(2437), [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), [anon_sym_TILDE] = ACTIONS(2435), [anon_sym_void] = ACTIONS(2437), [anon_sym_delete] = ACTIONS(2437), @@ -92249,7 +92535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2437), [anon_sym_enum] = ACTIONS(2437), }, - [763] = { + [765] = { [ts_builtin_sym_end] = ACTIONS(2439), [sym_identifier] = ACTIONS(2441), [anon_sym_export] = ACTIONS(2441), @@ -92284,14 +92570,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2441), [anon_sym_LBRACK] = ACTIONS(2439), [anon_sym_LTtemplate_GT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_SLASH] = ACTIONS(2441), [anon_sym_class] = ACTIONS(2441), [anon_sym_async] = ACTIONS(2441), [anon_sym_function] = ACTIONS(2441), [anon_sym_new] = ACTIONS(2441), [anon_sym_PLUS] = ACTIONS(2441), [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_SLASH] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), [anon_sym_TILDE] = ACTIONS(2439), [anon_sym_void] = ACTIONS(2441), [anon_sym_delete] = ACTIONS(2441), @@ -92328,7 +92614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2441), [anon_sym_enum] = ACTIONS(2441), }, - [764] = { + [766] = { [ts_builtin_sym_end] = ACTIONS(2443), [sym_identifier] = ACTIONS(2445), [anon_sym_export] = ACTIONS(2445), @@ -92363,14 +92649,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2445), [anon_sym_LBRACK] = ACTIONS(2443), [anon_sym_LTtemplate_GT] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_SLASH] = ACTIONS(2445), [anon_sym_class] = ACTIONS(2445), [anon_sym_async] = ACTIONS(2445), [anon_sym_function] = ACTIONS(2445), [anon_sym_new] = ACTIONS(2445), [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), [anon_sym_TILDE] = ACTIONS(2443), [anon_sym_void] = ACTIONS(2445), [anon_sym_delete] = ACTIONS(2445), @@ -92407,56 +92693,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2445), [anon_sym_enum] = ACTIONS(2445), }, - [765] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3481), - [sym_optional_tuple_parameter] = STATE(3481), - [sym_optional_type] = STATE(3481), - [sym_rest_type] = STATE(3481), - [sym__tuple_type_member] = STATE(3481), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [767] = { + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_typeof] = ACTIONS(2449), + [anon_sym_import] = ACTIONS(2449), + [anon_sym_var] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_with] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_debugger] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_LTtemplate_GT] = ACTIONS(2447), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_void] = ACTIONS(2449), + [anon_sym_delete] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2447), + [sym_number] = ACTIONS(2447), + [sym_this] = ACTIONS(2449), + [sym_super] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_null] = ACTIONS(2449), + [sym_undefined] = ACTIONS(2449), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_typeof] = ACTIONS(2453), + [anon_sym_import] = ACTIONS(2453), + [anon_sym_var] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_with] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_debugger] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_case] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_LTtemplate_GT] = ACTIONS(2451), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_void] = ACTIONS(2453), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2451), + [sym_number] = ACTIONS(2451), + [sym_this] = ACTIONS(2453), + [sym_super] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [sym_undefined] = ACTIONS(2453), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + }, + [769] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3569), + [sym_optional_tuple_parameter] = STATE(3569), + [sym_optional_type] = STATE(3569), + [sym_rest_type] = STATE(3569), + [sym__tuple_type_member] = STATE(3569), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_RBRACK] = ACTIONS(2459), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + }, + [770] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3490), + [sym_optional_tuple_parameter] = STATE(3490), + [sym_optional_type] = STATE(3490), + [sym_rest_type] = STATE(3490), + [sym__tuple_type_member] = STATE(3490), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2465), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92469,7 +92989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92483,56 +93003,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [766] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3428), - [sym_optional_tuple_parameter] = STATE(3428), - [sym_optional_type] = STATE(3428), - [sym_rest_type] = STATE(3428), - [sym__tuple_type_member] = STATE(3428), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [771] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3577), + [sym_optional_tuple_parameter] = STATE(3577), + [sym_optional_type] = STATE(3577), + [sym_rest_type] = STATE(3577), + [sym__tuple_type_member] = STATE(3577), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2469), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92545,7 +93065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92559,56 +93079,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [767] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3623), - [sym_optional_tuple_parameter] = STATE(3623), - [sym_optional_type] = STATE(3623), - [sym_rest_type] = STATE(3623), - [sym__tuple_type_member] = STATE(3623), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [772] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3478), + [sym_optional_tuple_parameter] = STATE(3478), + [sym_optional_type] = STATE(3478), + [sym_rest_type] = STATE(3478), + [sym__tuple_type_member] = STATE(3478), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(2473), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92621,7 +93141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92635,56 +93155,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [768] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), + [773] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), [sym_tuple_parameter] = STATE(3507), [sym_optional_tuple_parameter] = STATE(3507), [sym_optional_type] = STATE(3507), [sym_rest_type] = STATE(3507), [sym__tuple_type_member] = STATE(3507), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2477), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92697,7 +93217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92711,56 +93231,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [769] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3590), - [sym_optional_tuple_parameter] = STATE(3590), - [sym_optional_type] = STATE(3590), - [sym_rest_type] = STATE(3590), - [sym__tuple_type_member] = STATE(3590), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [774] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(2469), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92773,7 +93292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92787,55 +93306,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [770] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [775] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92848,7 +93367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92862,55 +93381,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [771] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [776] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92923,7 +93442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -92937,55 +93456,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [772] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [777] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -92998,7 +93517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93012,55 +93531,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [773] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [778] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93073,7 +93592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93087,55 +93606,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [774] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [779] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93148,7 +93667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93162,55 +93681,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [775] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [780] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93223,7 +93742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93237,55 +93756,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [776] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [781] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93298,7 +93817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93312,55 +93831,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [777] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [782] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93373,7 +93892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93387,55 +93906,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [778] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [783] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93448,7 +93967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93462,55 +93981,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [779] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), + [784] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + }, + [785] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + }, + [786] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + }, + [787] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_rest_pattern] = STATE(3827), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2969), + [sym_tuple_parameter] = STATE(3785), + [sym_optional_tuple_parameter] = STATE(3785), + [sym_optional_type] = STATE(3785), + [sym_rest_type] = STATE(3785), + [sym__tuple_type_member] = STATE(3785), + [sym_constructor_type] = STATE(2969), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2969), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2969), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2969), + [sym_identifier] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -93523,7 +94263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -93537,303 +94277,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [780] = { - [sym_identifier] = ACTIONS(2493), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_type] = ACTIONS(2493), - [anon_sym_namespace] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(2493), - [anon_sym_import] = ACTIONS(2493), - [anon_sym_var] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_switch] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_with] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_debugger] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_throw] = ACTIONS(2493), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_LTtemplate_GT] = ACTIONS(2495), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_SLASH] = ACTIONS(2493), - [anon_sym_class] = ACTIONS(2493), - [anon_sym_async] = ACTIONS(2493), - [anon_sym_function] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_void] = ACTIONS(2493), - [anon_sym_delete] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2495), - [anon_sym_SQUOTE] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2495), - [sym_number] = ACTIONS(2495), - [sym_this] = ACTIONS(2493), - [sym_super] = ACTIONS(2493), - [sym_true] = ACTIONS(2493), - [sym_false] = ACTIONS(2493), - [sym_null] = ACTIONS(2493), - [sym_undefined] = ACTIONS(2493), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2493), - [anon_sym_readonly] = ACTIONS(2493), - [anon_sym_get] = ACTIONS(2493), - [anon_sym_set] = ACTIONS(2493), - [anon_sym_declare] = ACTIONS(2493), - [anon_sym_public] = ACTIONS(2493), - [anon_sym_private] = ACTIONS(2493), - [anon_sym_protected] = ACTIONS(2493), - [anon_sym_override] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_any] = ACTIONS(2493), - [anon_sym_number] = ACTIONS(2493), - [anon_sym_boolean] = ACTIONS(2493), - [anon_sym_string] = ACTIONS(2493), - [anon_sym_symbol] = ACTIONS(2493), - [anon_sym_abstract] = ACTIONS(2493), - [anon_sym_interface] = ACTIONS(2493), - [anon_sym_enum] = ACTIONS(2493), - }, - [781] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), + [788] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), }, - [782] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), + [789] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), }, - [783] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), + [790] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), }, - [784] = { + [791] = { [sym_identifier] = ACTIONS(2501), [anon_sym_export] = ACTIONS(2501), [anon_sym_type] = ACTIONS(2501), @@ -93863,14 +94529,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2501), [anon_sym_LBRACK] = ACTIONS(2503), [anon_sym_LTtemplate_GT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), [anon_sym_class] = ACTIONS(2501), [anon_sym_async] = ACTIONS(2501), [anon_sym_function] = ACTIONS(2501), [anon_sym_new] = ACTIONS(2501), [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), [anon_sym_TILDE] = ACTIONS(2503), [anon_sym_void] = ACTIONS(2501), [anon_sym_delete] = ACTIONS(2501), @@ -93907,7 +94573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2501), [anon_sym_enum] = ACTIONS(2501), }, - [785] = { + [792] = { [sym_identifier] = ACTIONS(2505), [anon_sym_export] = ACTIONS(2505), [anon_sym_type] = ACTIONS(2505), @@ -93937,14 +94603,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2505), [anon_sym_LBRACK] = ACTIONS(2507), [anon_sym_LTtemplate_GT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), [anon_sym_class] = ACTIONS(2505), [anon_sym_async] = ACTIONS(2505), [anon_sym_function] = ACTIONS(2505), [anon_sym_new] = ACTIONS(2505), [anon_sym_PLUS] = ACTIONS(2505), [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_SLASH] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), [anon_sym_TILDE] = ACTIONS(2507), [anon_sym_void] = ACTIONS(2505), [anon_sym_delete] = ACTIONS(2505), @@ -93981,155 +94647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2505), [anon_sym_enum] = ACTIONS(2505), }, - [786] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_rest_pattern] = STATE(3674), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3018), - [sym_tuple_parameter] = STATE(3733), - [sym_optional_tuple_parameter] = STATE(3733), - [sym_optional_type] = STATE(3733), - [sym_rest_type] = STATE(3733), - [sym__tuple_type_member] = STATE(3733), - [sym_constructor_type] = STATE(3018), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3018), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3018), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3018), - [sym_identifier] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [787] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - }, - [788] = { + [793] = { [sym_identifier] = ACTIONS(2509), [anon_sym_export] = ACTIONS(2509), [anon_sym_type] = ACTIONS(2509), @@ -94159,14 +94677,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2509), [anon_sym_LBRACK] = ACTIONS(2511), [anon_sym_LTtemplate_GT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), [anon_sym_class] = ACTIONS(2509), [anon_sym_async] = ACTIONS(2509), [anon_sym_function] = ACTIONS(2509), [anon_sym_new] = ACTIONS(2509), [anon_sym_PLUS] = ACTIONS(2509), [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), [anon_sym_TILDE] = ACTIONS(2511), [anon_sym_void] = ACTIONS(2509), [anon_sym_delete] = ACTIONS(2509), @@ -94203,303 +94721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2509), [anon_sym_enum] = ACTIONS(2509), }, - [789] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - }, - [790] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - }, - [791] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - }, - [792] = { - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_LTtemplate_GT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - }, - [793] = { + [794] = { [sym_identifier] = ACTIONS(2513), [anon_sym_export] = ACTIONS(2513), [anon_sym_type] = ACTIONS(2513), @@ -94529,14 +94751,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2513), [anon_sym_LBRACK] = ACTIONS(2515), [anon_sym_LTtemplate_GT] = ACTIONS(2515), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), [anon_sym_class] = ACTIONS(2513), [anon_sym_async] = ACTIONS(2513), [anon_sym_function] = ACTIONS(2513), [anon_sym_new] = ACTIONS(2513), [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), [anon_sym_TILDE] = ACTIONS(2515), [anon_sym_void] = ACTIONS(2513), [anon_sym_delete] = ACTIONS(2513), @@ -94573,41 +94795,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2513), [anon_sym_enum] = ACTIONS(2513), }, - [794] = { + [795] = { + [sym_identifier] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_typeof] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_var] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_debugger] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LTtemplate_GT] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_void] = ACTIONS(2501), + [anon_sym_delete] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2503), + [sym_number] = ACTIONS(2503), + [sym_this] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_undefined] = ACTIONS(2501), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_readonly] = ACTIONS(2501), + [anon_sym_get] = ACTIONS(2501), + [anon_sym_set] = ACTIONS(2501), + [anon_sym_declare] = ACTIONS(2501), + [anon_sym_public] = ACTIONS(2501), + [anon_sym_private] = ACTIONS(2501), + [anon_sym_protected] = ACTIONS(2501), + [anon_sym_override] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_any] = ACTIONS(2501), + [anon_sym_number] = ACTIONS(2501), + [anon_sym_boolean] = ACTIONS(2501), + [anon_sym_string] = ACTIONS(2501), + [anon_sym_symbol] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + }, + [796] = { [sym_identifier] = ACTIONS(2517), [anon_sym_export] = ACTIONS(2517), [anon_sym_type] = ACTIONS(2517), - [anon_sym_EQ] = ACTIONS(2517), [anon_sym_namespace] = ACTIONS(2517), [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), [anon_sym_typeof] = ACTIONS(2517), [anon_sym_import] = ACTIONS(2517), + [anon_sym_var] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), [anon_sym_await] = ACTIONS(2517), - [anon_sym_COLON] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_debugger] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2519), [anon_sym_yield] = ACTIONS(2517), [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2519), [anon_sym_LTtemplate_GT] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2519), - [anon_sym_SLASH] = ACTIONS(2517), - [anon_sym_DOT] = ACTIONS(2517), [anon_sym_class] = ACTIONS(2517), [anon_sym_async] = ACTIONS(2517), [anon_sym_function] = ACTIONS(2517), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_QMARK_DOT] = ACTIONS(2519), [anon_sym_new] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), [anon_sym_PLUS] = ACTIONS(2517), [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_SLASH] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2519), [anon_sym_void] = ACTIONS(2517), [anon_sym_delete] = ACTIONS(2517), @@ -94629,7 +94928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2517), [anon_sym_get] = ACTIONS(2517), [anon_sym_set] = ACTIONS(2517), - [anon_sym_QMARK] = ACTIONS(2517), [anon_sym_declare] = ACTIONS(2517), [anon_sym_public] = ACTIONS(2517), [anon_sym_private] = ACTIONS(2517), @@ -94642,43 +94940,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2517), [anon_sym_symbol] = ACTIONS(2517), [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_extends] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), }, - [795] = { + [797] = { [sym_identifier] = ACTIONS(2521), [anon_sym_export] = ACTIONS(2521), [anon_sym_type] = ACTIONS(2521), - [anon_sym_EQ] = ACTIONS(2521), [anon_sym_namespace] = ACTIONS(2521), [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), [anon_sym_typeof] = ACTIONS(2521), [anon_sym_import] = ACTIONS(2521), + [anon_sym_var] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), [anon_sym_await] = ACTIONS(2521), - [anon_sym_COLON] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_with] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_debugger] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), [anon_sym_yield] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_RBRACK] = ACTIONS(2523), [anon_sym_LTtemplate_GT] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_GT] = ACTIONS(2523), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_DOT] = ACTIONS(2521), [anon_sym_class] = ACTIONS(2521), [anon_sym_async] = ACTIONS(2521), [anon_sym_function] = ACTIONS(2521), - [anon_sym_EQ_GT] = ACTIONS(2523), - [anon_sym_QMARK_DOT] = ACTIONS(2523), [anon_sym_new] = ACTIONS(2521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), [anon_sym_PLUS] = ACTIONS(2521), [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_SLASH] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), [anon_sym_TILDE] = ACTIONS(2523), [anon_sym_void] = ACTIONS(2521), [anon_sym_delete] = ACTIONS(2521), @@ -94700,7 +95002,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2521), [anon_sym_get] = ACTIONS(2521), [anon_sym_set] = ACTIONS(2521), - [anon_sym_QMARK] = ACTIONS(2521), [anon_sym_declare] = ACTIONS(2521), [anon_sym_public] = ACTIONS(2521), [anon_sym_private] = ACTIONS(2521), @@ -94713,9 +95014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2521), [anon_sym_symbol] = ACTIONS(2521), [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_extends] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), }, - [796] = { + [798] = { [sym_identifier] = ACTIONS(2525), [anon_sym_export] = ACTIONS(2525), [anon_sym_type] = ACTIONS(2525), @@ -94735,9 +95037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2527), [anon_sym_RBRACK] = ACTIONS(2527), [anon_sym_LTtemplate_GT] = ACTIONS(2527), - [anon_sym_LT] = ACTIONS(2525), [anon_sym_GT] = ACTIONS(2527), - [anon_sym_SLASH] = ACTIONS(2525), [anon_sym_DOT] = ACTIONS(2525), [anon_sym_class] = ACTIONS(2525), [anon_sym_async] = ACTIONS(2525), @@ -94750,6 +95050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2527), [anon_sym_PLUS] = ACTIONS(2525), [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_TILDE] = ACTIONS(2527), [anon_sym_void] = ACTIONS(2525), [anon_sym_delete] = ACTIONS(2525), @@ -94786,45 +95088,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2525), [anon_sym_extends] = ACTIONS(2525), }, - [797] = { - [sym_nested_identifier] = STATE(126), - [sym_string] = STATE(125), - [sym__module] = STATE(153), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), + [799] = { [sym_identifier] = ACTIONS(2529), + [anon_sym_export] = ACTIONS(2529), + [anon_sym_type] = ACTIONS(2529), + [anon_sym_EQ] = ACTIONS(2529), + [anon_sym_namespace] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_COMMA] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_typeof] = ACTIONS(2529), + [anon_sym_import] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_await] = ACTIONS(2529), + [anon_sym_COLON] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_RBRACK] = ACTIONS(2531), + [anon_sym_LTtemplate_GT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), + [anon_sym_DOT] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_function] = ACTIONS(2529), + [anon_sym_EQ_GT] = ACTIONS(2531), + [anon_sym_QMARK_DOT] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_PIPE] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_SLASH] = ACTIONS(2529), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_void] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2531), + [sym_number] = ACTIONS(2531), + [sym_this] = ACTIONS(2529), + [sym_super] = ACTIONS(2529), + [sym_true] = ACTIONS(2529), + [sym_false] = ACTIONS(2529), + [sym_null] = ACTIONS(2529), + [sym_undefined] = ACTIONS(2529), + [anon_sym_AT] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_readonly] = ACTIONS(2529), + [anon_sym_get] = ACTIONS(2529), + [anon_sym_set] = ACTIONS(2529), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_declare] = ACTIONS(2529), + [anon_sym_public] = ACTIONS(2529), + [anon_sym_private] = ACTIONS(2529), + [anon_sym_protected] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(2529), + [anon_sym_module] = ACTIONS(2529), + [anon_sym_any] = ACTIONS(2529), + [anon_sym_number] = ACTIONS(2529), + [anon_sym_boolean] = ACTIONS(2529), + [anon_sym_string] = ACTIONS(2529), + [anon_sym_symbol] = ACTIONS(2529), + [anon_sym_abstract] = ACTIONS(2529), + [anon_sym_extends] = ACTIONS(2529), + }, + [800] = { + [sym_identifier] = ACTIONS(2533), + [anon_sym_export] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_typeof] = ACTIONS(2533), + [anon_sym_import] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_RBRACK] = ACTIONS(2535), + [anon_sym_LTtemplate_GT] = ACTIONS(2535), + [anon_sym_GT] = ACTIONS(2535), + [anon_sym_DOT] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_EQ_GT] = ACTIONS(2535), + [anon_sym_QMARK_DOT] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_void] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2533), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2535), + [sym_number] = ACTIONS(2535), + [sym_this] = ACTIONS(2533), + [sym_super] = ACTIONS(2533), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_undefined] = ACTIONS(2533), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_readonly] = ACTIONS(2533), + [anon_sym_get] = ACTIONS(2533), + [anon_sym_set] = ACTIONS(2533), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_declare] = ACTIONS(2533), + [anon_sym_public] = ACTIONS(2533), + [anon_sym_private] = ACTIONS(2533), + [anon_sym_protected] = ACTIONS(2533), + [anon_sym_override] = ACTIONS(2533), + [anon_sym_module] = ACTIONS(2533), + [anon_sym_any] = ACTIONS(2533), + [anon_sym_number] = ACTIONS(2533), + [anon_sym_boolean] = ACTIONS(2533), + [anon_sym_string] = ACTIONS(2533), + [anon_sym_symbol] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_extends] = ACTIONS(2533), + }, + [801] = { + [sym_nested_identifier] = STATE(122), + [sym_string] = STATE(124), + [sym__module] = STATE(144), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(2537), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -94835,66 +95277,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2541), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1755), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [798] = { - [sym_nested_identifier] = STATE(594), - [sym_string] = STATE(617), - [sym__module] = STATE(663), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(2535), + [802] = { + [sym_nested_identifier] = STATE(596), + [sym_string] = STATE(621), + [sym__module] = STATE(697), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(2543), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -94905,66 +95347,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1755), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [799] = { - [sym_nested_identifier] = STATE(126), - [sym_string] = STATE(125), - [sym__module] = STATE(153), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(2529), + [803] = { + [sym_nested_identifier] = STATE(596), + [sym_string] = STATE(621), + [sym__module] = STATE(697), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(2543), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -94975,66 +95417,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1755), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [800] = { - [sym_nested_identifier] = STATE(594), - [sym_string] = STATE(617), - [sym__module] = STATE(663), - [aux_sym_object_repeat1] = STATE(3609), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(2535), + [804] = { + [sym_nested_identifier] = STATE(122), + [sym_string] = STATE(124), + [sym__module] = STATE(144), + [aux_sym_object_repeat1] = STATE(3659), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(2537), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -95045,66 +95487,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2541), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1755), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [801] = { - [sym_nested_identifier] = STATE(126), - [sym_string] = STATE(125), - [sym__module] = STATE(153), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(2529), + [805] = { + [sym_nested_identifier] = STATE(596), + [sym_string] = STATE(621), + [sym__module] = STATE(697), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(2543), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -95115,66 +95557,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1755), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [802] = { - [sym_nested_identifier] = STATE(594), - [sym_string] = STATE(617), - [sym__module] = STATE(663), - [aux_sym_object_repeat1] = STATE(3592), - [aux_sym_object_pattern_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(2535), + [806] = { + [sym_nested_identifier] = STATE(122), + [sym_string] = STATE(124), + [sym__module] = STATE(144), + [aux_sym_object_repeat1] = STATE(3499), + [aux_sym_object_pattern_repeat1] = STATE(3658), + [sym_identifier] = ACTIONS(2537), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1887), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1740), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(150), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(150), [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -95185,150 +95627,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2541), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1755), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(153), - [sym__ternary_qmark] = ACTIONS(153), + [sym__automatic_semicolon] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(150), }, - [803] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2743), - [sym_constructor_type] = STATE(2743), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2743), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_predicate] = STATE(3252), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2634), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2743), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2743), - [sym_identifier] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2569), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_asserts] = ACTIONS(2579), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [804] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2633), - [sym_constructor_type] = STATE(2633), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2633), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_predicate] = STATE(2958), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2539), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2633), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2633), - [sym_identifier] = ACTIONS(2587), + [807] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2656), + [sym_constructor_type] = STATE(2656), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2656), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_predicate] = STATE(3038), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2514), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2656), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2656), + [sym_identifier] = ACTIONS(2545), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(2591), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(2549), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -95336,7 +95711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(748), [anon_sym_symbol] = ACTIONS(748), [anon_sym_abstract] = ACTIONS(742), - [anon_sym_asserts] = ACTIONS(2593), + [anon_sym_asserts] = ACTIONS(2551), [anon_sym_infer] = ACTIONS(744), [anon_sym_keyof] = ACTIONS(746), [anon_sym_unknown] = ACTIONS(748), @@ -95344,204 +95719,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [805] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2663), - [sym_constructor_type] = STATE(2663), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2663), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_predicate] = STATE(3883), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2663), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2663), - [sym_identifier] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(2597), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_asserts] = ACTIONS(2599), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [806] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [807] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [808] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2746), + [sym_constructor_type] = STATE(2746), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2746), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_predicate] = STATE(3738), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2746), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2746), + [sym_identifier] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), + [sym_this] = ACTIONS(2555), [sym_true] = ACTIONS(1246), [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(201), + [anon_sym_asserts] = ACTIONS(2557), [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), @@ -95549,252 +95788,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [808] = { - [sym_export_statement] = STATE(2943), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(2943), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(2943), - [sym_property_signature] = STATE(2943), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(2943), - [sym_index_signature] = STATE(2943), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2605), - [anon_sym_export] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_readonly] = ACTIONS(2633), - [anon_sym_get] = ACTIONS(2635), - [anon_sym_set] = ACTIONS(2635), - [anon_sym_declare] = ACTIONS(2605), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2639), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_any] = ACTIONS(2605), - [anon_sym_number] = ACTIONS(2605), - [anon_sym_boolean] = ACTIONS(2605), - [anon_sym_string] = ACTIONS(2605), - [anon_sym_symbol] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2643), - }, [809] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2771), + [sym_constructor_type] = STATE(2771), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2771), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_predicate] = STATE(3060), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2631), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2771), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2771), + [sym_identifier] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2591), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_asserts] = ACTIONS(2601), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [810] = { + [sym_export_statement] = STATE(2904), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2904), [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2645), - [anon_sym_export] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2625), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2904), + [sym_property_signature] = STATE(2904), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2904), + [sym_index_signature] = STATE(2904), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2609), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_readonly] = ACTIONS(2659), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2663), - [anon_sym_private] = ACTIONS(2663), - [anon_sym_protected] = ACTIONS(2663), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_module] = ACTIONS(2645), - [anon_sym_any] = ACTIONS(2645), - [anon_sym_number] = ACTIONS(2645), - [anon_sym_boolean] = ACTIONS(2645), - [anon_sym_string] = ACTIONS(2645), - [anon_sym_symbol] = ACTIONS(2645), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_readonly] = ACTIONS(2637), + [anon_sym_get] = ACTIONS(2639), + [anon_sym_set] = ACTIONS(2639), + [anon_sym_declare] = ACTIONS(2609), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2609), + [anon_sym_any] = ACTIONS(2609), + [anon_sym_number] = ACTIONS(2609), + [anon_sym_boolean] = ACTIONS(2609), + [anon_sym_string] = ACTIONS(2609), + [anon_sym_symbol] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2647), }, - [810] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3402), - [sym_constructor_type] = STATE(3402), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3402), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3402), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3402), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [811] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1737), + [sym_constructor_type] = STATE(1737), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1737), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_predicate] = STATE(1736), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1576), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1737), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1737), + [sym_identifier] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2677), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [811] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [812] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_type_parameter] = STATE(3520), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [sym_identifier] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -95807,7 +96047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -95821,116 +96061,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [812] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1654), - [sym_constructor_type] = STATE(1654), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1654), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_predicate] = STATE(1653), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1579), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1654), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1654), - [sym_identifier] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, [813] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3353), - [sym_constructor_type] = STATE(3353), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3353), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3353), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3353), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -95943,7 +96115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -95958,455 +96130,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [814] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2702), - [sym_constructor_type] = STATE(2702), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2702), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_predicate] = STATE(2647), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2634), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2702), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2702), - [sym_identifier] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2569), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2691), + [sym_constructor_type] = STATE(2691), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2691), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_predicate] = STATE(2692), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2631), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2691), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2691), + [sym_identifier] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2591), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), }, [815] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2609), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_readonly] = ACTIONS(2637), + [anon_sym_get] = ACTIONS(2639), + [anon_sym_set] = ACTIONS(2639), + [anon_sym_declare] = ACTIONS(2609), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2609), + [anon_sym_any] = ACTIONS(2609), + [anon_sym_number] = ACTIONS(2609), + [anon_sym_boolean] = ACTIONS(2609), + [anon_sym_string] = ACTIONS(2609), + [anon_sym_symbol] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, [816] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2439), - [sym_constructor_type] = STATE(2439), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2439), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_predicate] = STATE(2369), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2439), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2439), - [sym_identifier] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(578), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(2597), + [sym_this] = ACTIONS(1244), [sym_true] = ACTIONS(1246), [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [817] = { - [sym_nested_identifier] = STATE(1245), - [sym_string] = STATE(1244), - [sym__module] = STATE(1410), - [sym_identifier] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(1995), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [818] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2576), - [sym_constructor_type] = STATE(2576), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2576), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_predicate] = STATE(2565), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2539), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2576), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2576), - [sym_identifier] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(2591), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [819] = { - [sym_identifier] = ACTIONS(2723), - [anon_sym_export] = ACTIONS(2723), - [anon_sym_type] = ACTIONS(2723), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_typeof] = ACTIONS(2723), - [anon_sym_import] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2725), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_await] = ACTIONS(2723), - [anon_sym_COLON] = ACTIONS(2725), - [anon_sym_yield] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_RBRACK] = ACTIONS(2725), - [anon_sym_LTtemplate_GT] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2723), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_async] = ACTIONS(2723), - [anon_sym_function] = ACTIONS(2723), - [anon_sym_EQ_GT] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_void] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2725), - [sym_number] = ACTIONS(2725), - [sym_this] = ACTIONS(2723), - [sym_super] = ACTIONS(2723), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [sym_null] = ACTIONS(2723), - [sym_undefined] = ACTIONS(2723), - [anon_sym_AT] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_readonly] = ACTIONS(2723), - [anon_sym_get] = ACTIONS(2723), - [anon_sym_set] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(2725), - [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_extends] = ACTIONS(2723), - [anon_sym_implements] = ACTIONS(2723), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [820] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_type_parameter] = STATE(3538), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [sym_identifier] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(578), + [817] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -96419,7 +96387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -96433,116 +96401,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [821] = { - [sym_nested_identifier] = STATE(1245), - [sym_string] = STATE(1244), - [sym__module] = STATE(1410), - [sym_identifier] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(216), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), - }, - [822] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3384), - [sym_constructor_type] = STATE(3384), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3384), + [818] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3377), + [sym_constructor_type] = STATE(3377), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3377), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3377), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3377), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -96555,7 +96455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -96569,252 +96469,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [823] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3483), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3483), - [sym_pair] = STATE(3483), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), + [819] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3490), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2731), - [anon_sym_export] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2625), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2711), + [anon_sym_export] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_readonly] = ACTIONS(2741), - [anon_sym_get] = ACTIONS(2743), - [anon_sym_set] = ACTIONS(2743), - [anon_sym_declare] = ACTIONS(2731), - [anon_sym_public] = ACTIONS(2745), - [anon_sym_private] = ACTIONS(2745), - [anon_sym_protected] = ACTIONS(2745), - [anon_sym_override] = ACTIONS(2747), - [anon_sym_module] = ACTIONS(2731), - [anon_sym_any] = ACTIONS(2731), - [anon_sym_number] = ACTIONS(2731), - [anon_sym_boolean] = ACTIONS(2731), - [anon_sym_string] = ACTIONS(2731), - [anon_sym_symbol] = ACTIONS(2731), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2719), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2723), + [anon_sym_set] = ACTIONS(2723), + [anon_sym_declare] = ACTIONS(2711), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_protected] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2727), + [anon_sym_module] = ACTIONS(2711), + [anon_sym_any] = ACTIONS(2711), + [anon_sym_number] = ACTIONS(2711), + [anon_sym_boolean] = ACTIONS(2711), + [anon_sym_string] = ACTIONS(2711), + [anon_sym_symbol] = ACTIONS(2711), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, - [824] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2672), - [sym_constructor_type] = STATE(2672), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2672), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_predicate] = STATE(2673), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2634), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2672), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2672), - [sym_identifier] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2569), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [820] = { + [sym_identifier] = ACTIONS(2729), + [anon_sym_export] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_COMMA] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_typeof] = ACTIONS(2729), + [anon_sym_import] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_RPAREN] = ACTIONS(2731), + [anon_sym_await] = ACTIONS(2729), + [anon_sym_COLON] = ACTIONS(2731), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_RBRACK] = ACTIONS(2731), + [anon_sym_LTtemplate_GT] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_function] = ACTIONS(2729), + [anon_sym_EQ_GT] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_void] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2731), + [sym_number] = ACTIONS(2731), + [sym_this] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_undefined] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_readonly] = ACTIONS(2729), + [anon_sym_get] = ACTIONS(2729), + [anon_sym_set] = ACTIONS(2729), + [anon_sym_QMARK] = ACTIONS(2731), + [anon_sym_declare] = ACTIONS(2729), + [anon_sym_public] = ACTIONS(2729), + [anon_sym_private] = ACTIONS(2729), + [anon_sym_protected] = ACTIONS(2729), + [anon_sym_override] = ACTIONS(2729), + [anon_sym_module] = ACTIONS(2729), + [anon_sym_any] = ACTIONS(2729), + [anon_sym_number] = ACTIONS(2729), + [anon_sym_boolean] = ACTIONS(2729), + [anon_sym_string] = ACTIONS(2729), + [anon_sym_symbol] = ACTIONS(2729), + [anon_sym_extends] = ACTIONS(2729), + [anon_sym_implements] = ACTIONS(2729), }, - [825] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1681), - [sym_constructor_type] = STATE(1681), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1681), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_predicate] = STATE(1680), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1579), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1681), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1681), - [sym_identifier] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [821] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2711), + [anon_sym_export] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2719), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2723), + [anon_sym_set] = ACTIONS(2723), + [anon_sym_declare] = ACTIONS(2711), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_protected] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2727), + [anon_sym_module] = ACTIONS(2711), + [anon_sym_any] = ACTIONS(2711), + [anon_sym_number] = ACTIONS(2711), + [anon_sym_boolean] = ACTIONS(2711), + [anon_sym_string] = ACTIONS(2711), + [anon_sym_symbol] = ACTIONS(2711), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, - [826] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [822] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3321), + [sym_constructor_type] = STATE(3321), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3321), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -96827,7 +96727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -96841,184 +96741,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [827] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(3017), - [sym_constructor_type] = STATE(3017), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3017), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_predicate] = STATE(2375), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2789), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3017), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3017), - [sym_identifier] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [823] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(2763), + [sym_this] = ACTIONS(1244), [sym_true] = ACTIONS(1246), [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [828] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), + [824] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2645), - [anon_sym_export] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2625), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2711), + [anon_sym_export] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_readonly] = ACTIONS(2659), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2663), - [anon_sym_private] = ACTIONS(2663), - [anon_sym_protected] = ACTIONS(2663), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_module] = ACTIONS(2645), - [anon_sym_any] = ACTIONS(2645), - [anon_sym_number] = ACTIONS(2645), - [anon_sym_boolean] = ACTIONS(2645), - [anon_sym_string] = ACTIONS(2645), - [anon_sym_symbol] = ACTIONS(2645), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2719), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2723), + [anon_sym_set] = ACTIONS(2723), + [anon_sym_declare] = ACTIONS(2711), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_protected] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2727), + [anon_sym_module] = ACTIONS(2711), + [anon_sym_any] = ACTIONS(2711), + [anon_sym_number] = ACTIONS(2711), + [anon_sym_boolean] = ACTIONS(2711), + [anon_sym_string] = ACTIONS(2711), + [anon_sym_symbol] = ACTIONS(2711), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, - [829] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3331), - [sym_constructor_type] = STATE(3331), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3331), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3331), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3331), + [825] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2741), + [anon_sym_export] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_readonly] = ACTIONS(2751), + [anon_sym_get] = ACTIONS(2753), + [anon_sym_set] = ACTIONS(2753), + [anon_sym_declare] = ACTIONS(2741), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_private] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_override] = ACTIONS(2757), + [anon_sym_module] = ACTIONS(2741), + [anon_sym_any] = ACTIONS(2741), + [anon_sym_number] = ACTIONS(2741), + [anon_sym_boolean] = ACTIONS(2741), + [anon_sym_string] = ACTIONS(2741), + [anon_sym_symbol] = ACTIONS(2741), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), + }, + [826] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2720), + [sym_constructor_type] = STATE(2720), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2720), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_predicate] = STATE(2721), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2631), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2720), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2720), + [sym_identifier] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2591), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [827] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -97031,7 +97067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -97045,75 +97081,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [830] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(3000), - [sym_constructor_type] = STATE(3000), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3000), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_predicate] = STATE(2369), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2789), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3000), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3000), - [sym_identifier] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [828] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2626), + [sym_constructor_type] = STATE(2626), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2626), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_predicate] = STATE(2624), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2514), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2626), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2626), + [sym_identifier] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(2549), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [829] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3647), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3647), + [sym_pair] = STATE(3647), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3547), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2761), + [anon_sym_export] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(2763), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2771), + [anon_sym_get] = ACTIONS(2773), + [anon_sym_set] = ACTIONS(2773), + [anon_sym_declare] = ACTIONS(2761), + [anon_sym_public] = ACTIONS(2775), + [anon_sym_private] = ACTIONS(2775), + [anon_sym_protected] = ACTIONS(2775), + [anon_sym_override] = ACTIONS(2777), + [anon_sym_module] = ACTIONS(2761), + [anon_sym_any] = ACTIONS(2761), + [anon_sym_number] = ACTIONS(2761), + [anon_sym_boolean] = ACTIONS(2761), + [anon_sym_string] = ACTIONS(2761), + [anon_sym_symbol] = ACTIONS(2761), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, - [831] = { + [830] = { [sym_identifier] = ACTIONS(2779), [anon_sym_export] = ACTIONS(2779), [anon_sym_type] = ACTIONS(2779), @@ -97133,9 +97237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2781), [anon_sym_RBRACK] = ACTIONS(2781), [anon_sym_LTtemplate_GT] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2779), [anon_sym_GT] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2779), [anon_sym_class] = ACTIONS(2779), [anon_sym_async] = ACTIONS(2779), [anon_sym_function] = ACTIONS(2779), @@ -97145,6 +97247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2781), [anon_sym_PLUS] = ACTIONS(2779), [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), [anon_sym_TILDE] = ACTIONS(2781), [anon_sym_void] = ACTIONS(2779), [anon_sym_delete] = ACTIONS(2779), @@ -97181,184 +97285,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(2779), [anon_sym_implements] = ACTIONS(2779), }, - [832] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2605), - [anon_sym_export] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_readonly] = ACTIONS(2633), - [anon_sym_get] = ACTIONS(2635), - [anon_sym_set] = ACTIONS(2635), - [anon_sym_declare] = ACTIONS(2605), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2639), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_any] = ACTIONS(2605), - [anon_sym_number] = ACTIONS(2605), - [anon_sym_boolean] = ACTIONS(2605), - [anon_sym_string] = ACTIONS(2605), - [anon_sym_symbol] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), - }, - [833] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2645), - [anon_sym_export] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [831] = { + [sym_nested_identifier] = STATE(1284), + [sym_string] = STATE(1285), + [sym__module] = STATE(1512), + [sym_identifier] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(211), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_readonly] = ACTIONS(2659), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2663), - [anon_sym_private] = ACTIONS(2663), - [anon_sym_protected] = ACTIONS(2663), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_module] = ACTIONS(2645), - [anon_sym_any] = ACTIONS(2645), - [anon_sym_number] = ACTIONS(2645), - [anon_sym_boolean] = ACTIONS(2645), - [anon_sym_string] = ACTIONS(2645), - [anon_sym_symbol] = ACTIONS(2645), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), }, - [834] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [832] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -97371,7 +97407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -97385,180 +97421,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [835] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1235), - [sym_constructor_type] = STATE(1235), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1235), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_predicate] = STATE(1239), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1224), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1235), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1235), - [sym_identifier] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2817), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [836] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1325), - [sym_constructor_type] = STATE(1325), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1325), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_predicate] = STATE(1326), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1224), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1325), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1325), - [sym_identifier] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2817), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [837] = { - [sym_nested_identifier] = STATE(1245), - [sym_string] = STATE(1244), - [sym__module] = STATE(1410), - [sym_identifier] = ACTIONS(2721), + [833] = { + [sym_nested_identifier] = STATE(1284), + [sym_string] = STATE(1285), + [sym__module] = STATE(1512), + [sym_identifier] = ACTIONS(2783), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1311), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(1261), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(1261), [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(216), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -97569,272 +97467,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(118), [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(150), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(150), [anon_sym_DASH_DASH] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(2005), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(150), }, - [838] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3483), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3483), - [sym_pair] = STATE(3483), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3490), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2731), - [anon_sym_export] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [834] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_readonly] = ACTIONS(2741), - [anon_sym_get] = ACTIONS(2743), - [anon_sym_set] = ACTIONS(2743), - [anon_sym_declare] = ACTIONS(2731), - [anon_sym_public] = ACTIONS(2745), - [anon_sym_private] = ACTIONS(2745), - [anon_sym_protected] = ACTIONS(2745), - [anon_sym_override] = ACTIONS(2747), - [anon_sym_module] = ACTIONS(2731), - [anon_sym_any] = ACTIONS(2731), - [anon_sym_number] = ACTIONS(2731), - [anon_sym_boolean] = ACTIONS(2731), - [anon_sym_string] = ACTIONS(2731), - [anon_sym_symbol] = ACTIONS(2731), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [839] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2835), - [anon_sym_export] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_namespace] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [835] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2622), + [sym_constructor_type] = STATE(2622), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2622), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_predicate] = STATE(2630), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2514), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2622), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2622), + [sym_identifier] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(2549), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [836] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2967), + [sym_constructor_type] = STATE(2967), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2967), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_predicate] = STATE(2376), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2821), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2967), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2967), + [sym_identifier] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_readonly] = ACTIONS(2845), - [anon_sym_get] = ACTIONS(2847), - [anon_sym_set] = ACTIONS(2847), - [anon_sym_declare] = ACTIONS(2835), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_any] = ACTIONS(2835), - [anon_sym_number] = ACTIONS(2835), - [anon_sym_boolean] = ACTIONS(2835), - [anon_sym_string] = ACTIONS(2835), - [anon_sym_symbol] = ACTIONS(2835), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(2801), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(2807), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2809), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [840] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), + [837] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2853), - [anon_sym_export] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_new] = ACTIONS(2625), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2813), + [anon_sym_export] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_readonly] = ACTIONS(2861), - [anon_sym_get] = ACTIONS(2863), - [anon_sym_set] = ACTIONS(2863), - [anon_sym_declare] = ACTIONS(2853), - [anon_sym_public] = ACTIONS(2865), - [anon_sym_private] = ACTIONS(2865), - [anon_sym_protected] = ACTIONS(2865), - [anon_sym_override] = ACTIONS(2867), - [anon_sym_module] = ACTIONS(2853), - [anon_sym_any] = ACTIONS(2853), - [anon_sym_number] = ACTIONS(2853), - [anon_sym_boolean] = ACTIONS(2853), - [anon_sym_string] = ACTIONS(2853), - [anon_sym_symbol] = ACTIONS(2853), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_get] = ACTIONS(2825), + [anon_sym_set] = ACTIONS(2825), + [anon_sym_declare] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2827), + [anon_sym_private] = ACTIONS(2827), + [anon_sym_protected] = ACTIONS(2827), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_module] = ACTIONS(2813), + [anon_sym_any] = ACTIONS(2813), + [anon_sym_number] = ACTIONS(2813), + [anon_sym_boolean] = ACTIONS(2813), + [anon_sym_string] = ACTIONS(2813), + [anon_sym_symbol] = ACTIONS(2813), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, - [841] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [838] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3397), + [sym_constructor_type] = STATE(3397), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3397), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3397), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3397), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -97847,7 +97815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -97861,184 +97829,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [842] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2605), - [anon_sym_export] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_readonly] = ACTIONS(2633), - [anon_sym_get] = ACTIONS(2635), - [anon_sym_set] = ACTIONS(2635), - [anon_sym_declare] = ACTIONS(2605), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2639), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_any] = ACTIONS(2605), - [anon_sym_number] = ACTIONS(2605), - [anon_sym_boolean] = ACTIONS(2605), - [anon_sym_string] = ACTIONS(2605), - [anon_sym_symbol] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), - }, - [843] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), - [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2835), - [anon_sym_export] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_namespace] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [839] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1317), + [sym_constructor_type] = STATE(1317), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1317), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_predicate] = STATE(1318), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1227), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1317), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1317), + [sym_identifier] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_readonly] = ACTIONS(2845), - [anon_sym_get] = ACTIONS(2847), - [anon_sym_set] = ACTIONS(2847), - [anon_sym_declare] = ACTIONS(2835), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_any] = ACTIONS(2835), - [anon_sym_number] = ACTIONS(2835), - [anon_sym_boolean] = ACTIONS(2835), - [anon_sym_string] = ACTIONS(2835), - [anon_sym_symbol] = ACTIONS(2835), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2861), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, - [844] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [840] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -98051,7 +97951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98065,116 +97965,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [845] = { - [sym_export_statement] = STATE(3021), - [sym_object_pattern] = STATE(4072), - [sym_object_assignment_pattern] = STATE(3482), - [sym_array_pattern] = STATE(4072), - [sym__call_signature] = STATE(3044), - [sym__destructuring_pattern] = STATE(4072), - [sym_spread_element] = STATE(3471), - [sym_string] = STATE(2474), - [sym_decorator] = STATE(1155), - [sym_formal_parameters] = STATE(2628), - [sym_rest_pattern] = STATE(3482), - [sym_method_definition] = STATE(3471), - [sym_pair] = STATE(3471), - [sym_pair_pattern] = STATE(3482), - [sym__property_name] = STATE(2474), - [sym_computed_property_name] = STATE(2474), - [sym_method_signature] = STATE(3021), + [841] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), [sym_accessibility_modifier] = STATE(2254), - [sym_override_modifier] = STATE(2263), - [sym_call_signature] = STATE(3021), - [sym_property_signature] = STATE(3021), - [sym_type_parameters] = STATE(3849), - [sym_construct_signature] = STATE(3021), - [sym_index_signature] = STATE(3021), - [aux_sym_export_statement_repeat1] = STATE(3411), - [aux_sym_object_repeat1] = STATE(3475), - [aux_sym_object_pattern_repeat1] = STATE(3497), - [sym_identifier] = ACTIONS(2605), - [anon_sym_export] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2625), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2813), + [anon_sym_export] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2629), - [sym_private_property_identifier] = ACTIONS(2629), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_readonly] = ACTIONS(2633), - [anon_sym_get] = ACTIONS(2635), - [anon_sym_set] = ACTIONS(2635), - [anon_sym_declare] = ACTIONS(2605), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2639), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_any] = ACTIONS(2605), - [anon_sym_number] = ACTIONS(2605), - [anon_sym_boolean] = ACTIONS(2605), - [anon_sym_string] = ACTIONS(2605), - [anon_sym_symbol] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_PIPE_RBRACE] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_get] = ACTIONS(2825), + [anon_sym_set] = ACTIONS(2825), + [anon_sym_declare] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2827), + [anon_sym_private] = ACTIONS(2827), + [anon_sym_protected] = ACTIONS(2827), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_module] = ACTIONS(2813), + [anon_sym_any] = ACTIONS(2813), + [anon_sym_number] = ACTIONS(2813), + [anon_sym_boolean] = ACTIONS(2813), + [anon_sym_string] = ACTIONS(2813), + [anon_sym_symbol] = ACTIONS(2813), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, - [846] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [842] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3438), + [sym_constructor_type] = STATE(3438), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3438), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3438), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3438), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2881), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -98187,7 +98087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98201,61 +98101,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [847] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [843] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2480), + [sym_constructor_type] = STATE(2480), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2480), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_predicate] = STATE(2376), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2480), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2480), + [sym_identifier] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), + [sym_this] = ACTIONS(2555), [sym_true] = ACTIONS(1246), [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98269,184 +98169,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [848] = { - [sym_identifier] = ACTIONS(2881), - [anon_sym_export] = ACTIONS(2881), - [anon_sym_type] = ACTIONS(2881), - [anon_sym_EQ] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_typeof] = ACTIONS(2881), - [anon_sym_import] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_await] = ACTIONS(2881), - [anon_sym_COLON] = ACTIONS(2883), - [anon_sym_yield] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_RBRACK] = ACTIONS(2883), - [anon_sym_LTtemplate_GT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_async] = ACTIONS(2881), - [anon_sym_function] = ACTIONS(2881), - [anon_sym_EQ_GT] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_void] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2883), - [sym_number] = ACTIONS(2883), - [sym_this] = ACTIONS(2881), - [sym_super] = ACTIONS(2881), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [sym_null] = ACTIONS(2881), - [sym_undefined] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_readonly] = ACTIONS(2881), - [anon_sym_get] = ACTIONS(2881), - [anon_sym_set] = ACTIONS(2881), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_declare] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_protected] = ACTIONS(2881), - [anon_sym_override] = ACTIONS(2881), - [anon_sym_module] = ACTIONS(2881), - [anon_sym_any] = ACTIONS(2881), - [anon_sym_number] = ACTIONS(2881), - [anon_sym_boolean] = ACTIONS(2881), - [anon_sym_string] = ACTIONS(2881), - [anon_sym_symbol] = ACTIONS(2881), - [anon_sym_extends] = ACTIONS(2881), - [anon_sym_implements] = ACTIONS(2881), - }, - [849] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2590), - [sym_constructor_type] = STATE(2590), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2590), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_predicate] = STATE(2591), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2539), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2590), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2590), - [sym_identifier] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(2591), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [850] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3412), - [sym_constructor_type] = STATE(3412), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3412), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3412), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3412), + [844] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3350), + [sym_constructor_type] = STATE(3350), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3350), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3350), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3350), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -98459,7 +98223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98473,48 +98237,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [851] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [845] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2609), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_readonly] = ACTIONS(2637), + [anon_sym_get] = ACTIONS(2639), + [anon_sym_set] = ACTIONS(2639), + [anon_sym_declare] = ACTIONS(2609), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2609), + [anon_sym_any] = ACTIONS(2609), + [anon_sym_number] = ACTIONS(2609), + [anon_sym_boolean] = ACTIONS(2609), + [anon_sym_string] = ACTIONS(2609), + [anon_sym_symbol] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), + }, + [846] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -98527,7 +98359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98541,48 +98373,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [852] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [847] = { + [sym_identifier] = ACTIONS(2887), + [anon_sym_export] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_typeof] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_RPAREN] = ACTIONS(2889), + [anon_sym_await] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_RBRACK] = ACTIONS(2889), + [anon_sym_LTtemplate_GT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_function] = ACTIONS(2887), + [anon_sym_EQ_GT] = ACTIONS(2889), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_void] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2889), + [sym_number] = ACTIONS(2889), + [sym_this] = ACTIONS(2887), + [sym_super] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_undefined] = ACTIONS(2887), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_readonly] = ACTIONS(2887), + [anon_sym_get] = ACTIONS(2887), + [anon_sym_set] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_declare] = ACTIONS(2887), + [anon_sym_public] = ACTIONS(2887), + [anon_sym_private] = ACTIONS(2887), + [anon_sym_protected] = ACTIONS(2887), + [anon_sym_override] = ACTIONS(2887), + [anon_sym_module] = ACTIONS(2887), + [anon_sym_any] = ACTIONS(2887), + [anon_sym_number] = ACTIONS(2887), + [anon_sym_boolean] = ACTIONS(2887), + [anon_sym_string] = ACTIONS(2887), + [anon_sym_symbol] = ACTIONS(2887), + [anon_sym_extends] = ACTIONS(2887), + [anon_sym_implements] = ACTIONS(2887), + }, + [848] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1692), + [sym_constructor_type] = STATE(1692), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1692), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_predicate] = STATE(1691), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1576), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1692), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1692), + [sym_identifier] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2677), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [849] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -98595,7 +98563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98609,61 +98577,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, + [850] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3005), + [sym_constructor_type] = STATE(3005), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3005), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_predicate] = STATE(2379), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2821), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3005), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3005), + [sym_identifier] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(2801), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(2807), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2809), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), + }, + [851] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1346), + [sym_constructor_type] = STATE(1346), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1346), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_predicate] = STATE(1348), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1227), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1346), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1346), + [sym_identifier] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2861), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [852] = { + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3647), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3647), + [sym_pair] = STATE(3647), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3547), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2761), + [anon_sym_export] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2771), + [anon_sym_get] = ACTIONS(2773), + [anon_sym_set] = ACTIONS(2773), + [anon_sym_declare] = ACTIONS(2761), + [anon_sym_public] = ACTIONS(2775), + [anon_sym_private] = ACTIONS(2775), + [anon_sym_protected] = ACTIONS(2775), + [anon_sym_override] = ACTIONS(2777), + [anon_sym_module] = ACTIONS(2761), + [anon_sym_any] = ACTIONS(2761), + [anon_sym_number] = ACTIONS(2761), + [anon_sym_boolean] = ACTIONS(2761), + [anon_sym_string] = ACTIONS(2761), + [anon_sym_symbol] = ACTIONS(2761), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), + }, [853] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2466), - [sym_constructor_type] = STATE(2466), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2466), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_predicate] = STATE(2375), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2386), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2466), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2466), - [sym_identifier] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(578), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(2597), + [sym_this] = ACTIONS(1244), [sym_true] = ACTIONS(1246), [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98678,247 +98850,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [854] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2991), - [sym_constructor_type] = STATE(2991), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2991), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2991), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2991), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2457), + [sym_constructor_type] = STATE(2457), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2457), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_predicate] = STATE(2379), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2402), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2457), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2457), + [sym_identifier] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), + [sym_this] = ACTIONS(2555), [sym_true] = ACTIONS(1246), [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [855] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1624), - [sym_constructor_type] = STATE(1624), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1624), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1624), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1624), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [sym_export_statement] = STATE(2927), + [sym_object_pattern] = STATE(4007), + [sym_object_assignment_pattern] = STATE(3648), + [sym_array_pattern] = STATE(4007), + [sym__call_signature] = STATE(3284), + [sym__destructuring_pattern] = STATE(4007), + [sym_spread_element] = STATE(3656), + [sym_string] = STATE(2499), + [sym_decorator] = STATE(1163), + [sym_formal_parameters] = STATE(2645), + [sym_rest_pattern] = STATE(3648), + [sym_method_definition] = STATE(3656), + [sym_pair] = STATE(3656), + [sym_pair_pattern] = STATE(3648), + [sym__property_name] = STATE(2499), + [sym_computed_property_name] = STATE(2499), + [sym_method_signature] = STATE(2927), + [sym_accessibility_modifier] = STATE(2254), + [sym_override_modifier] = STATE(2284), + [sym_call_signature] = STATE(2927), + [sym_property_signature] = STATE(2927), + [sym_type_parameters] = STATE(3927), + [sym_construct_signature] = STATE(2927), + [sym_index_signature] = STATE(2927), + [aux_sym_export_statement_repeat1] = STATE(3376), + [aux_sym_object_repeat1] = STATE(3665), + [aux_sym_object_pattern_repeat1] = STATE(3580), + [sym_identifier] = ACTIONS(2609), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_readonly] = ACTIONS(2637), + [anon_sym_get] = ACTIONS(2639), + [anon_sym_set] = ACTIONS(2639), + [anon_sym_declare] = ACTIONS(2609), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2609), + [anon_sym_any] = ACTIONS(2609), + [anon_sym_number] = ACTIONS(2609), + [anon_sym_boolean] = ACTIONS(2609), + [anon_sym_string] = ACTIONS(2609), + [anon_sym_symbol] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2645), + [anon_sym_PIPE_RBRACE] = ACTIONS(2703), }, [856] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2595), - [sym_constructor_type] = STATE(2595), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2595), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2595), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2595), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), + [sym_nested_identifier] = STATE(1284), + [sym_string] = STATE(1285), + [sym__module] = STATE(1512), + [sym_identifier] = ACTIONS(2783), + [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(150), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, + [857] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [857] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2426), - [sym_constructor_type] = STATE(2426), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2426), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2426), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2426), + [858] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1635), + [sym_constructor_type] = STATE(1635), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1635), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1635), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1635), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [859] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2953), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2953), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -98931,7 +99241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -98945,50 +99255,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [858] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2990), - [sym_constructor_type] = STATE(2990), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2990), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2990), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2990), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [860] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2381), + [sym_constructor_type] = STATE(2381), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2381), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2381), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2381), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -98997,199 +99307,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), - }, - [859] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1704), - [sym_constructor_type] = STATE(1704), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1704), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1704), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1704), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [860] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3090), - [sym_constructor_type] = STATE(3090), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3090), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3090), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3090), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, [861] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2385), - [sym_constructor_type] = STATE(2385), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2385), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2385), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2385), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3451), + [sym_constructor_type] = STATE(3451), + [sym__primary_type] = STATE(2392), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3451), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3451), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3451), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -99198,74 +99374,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [862] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2587), - [sym_constructor_type] = STATE(2587), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2587), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2587), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2587), - [sym_identifier] = ACTIONS(1275), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2620), + [sym_constructor_type] = STATE(2620), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2620), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2620), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2620), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -99281,247 +99457,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, [863] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2600), - [sym_constructor_type] = STATE(2600), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2600), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2600), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2600), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [864] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2597), - [sym_constructor_type] = STATE(2597), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2597), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2597), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2597), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [865] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1598), - [sym_constructor_type] = STATE(1598), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1598), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1598), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1598), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [866] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2409), - [sym_constructor_type] = STATE(2409), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2409), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2409), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2409), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3413), + [sym_constructor_type] = STATE(3413), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3413), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3413), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3413), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -99534,7 +99509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -99548,327 +99523,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [867] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3598), - [sym_constructor_type] = STATE(3598), - [sym__primary_type] = STATE(2568), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3598), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3598), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3598), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [868] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3598), - [sym_constructor_type] = STATE(3598), - [sym__primary_type] = STATE(2578), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3598), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3598), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3598), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [869] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2579), - [sym_constructor_type] = STATE(2579), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2579), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2579), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2579), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [870] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), + [864] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), [sym__type] = STATE(2583), [sym_constructor_type] = STATE(2583), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), [sym_infer_type] = STATE(2583), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), [sym_readonly_type] = STATE(2583), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), [sym_function_type] = STATE(2583), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [871] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2585), - [sym_constructor_type] = STATE(2585), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2585), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2585), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2585), - [sym_identifier] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -99883,114 +99590,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [872] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1677), - [sym_constructor_type] = STATE(1677), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1677), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1677), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1677), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [873] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3432), - [sym_constructor_type] = STATE(3432), - [sym__primary_type] = STATE(2359), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3432), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3432), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3432), + [865] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3451), + [sym_constructor_type] = STATE(3451), + [sym__primary_type] = STATE(2401), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3451), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3451), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3451), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -100003,7 +99643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -100017,47 +99657,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [874] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3432), - [sym_constructor_type] = STATE(3432), - [sym__primary_type] = STATE(2361), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3432), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3432), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3432), + [866] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3366), + [sym_constructor_type] = STATE(3366), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3366), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3366), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3366), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -100070,7 +99710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -100084,59 +99724,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [875] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2750), - [sym_constructor_type] = STATE(2750), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2750), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2750), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2750), - [sym_identifier] = ACTIONS(1275), + [867] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3117), + [sym_constructor_type] = STATE(3117), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3117), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3117), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3117), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(2807), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2809), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), + }, + [868] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3112), + [sym_constructor_type] = STATE(3112), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3112), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3112), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3112), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -100151,47 +99858,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [876] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2427), - [sym_constructor_type] = STATE(2427), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2427), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2427), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2427), + [869] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3359), + [sym_constructor_type] = STATE(3359), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3359), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -100204,7 +99911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -100218,126 +99925,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [877] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2749), - [sym_constructor_type] = STATE(2749), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2749), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2749), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2749), - [sym_identifier] = ACTIONS(1275), + [870] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2898), + [sym_constructor_type] = STATE(2898), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2898), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2898), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2898), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + }, + [871] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3597), + [sym_constructor_type] = STATE(3597), + [sym__primary_type] = STATE(2586), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3597), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3597), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3597), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1230), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1248), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), [anon_sym_boolean] = ACTIONS(748), [anon_sym_string] = ACTIONS(748), [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), [anon_sym_keyof] = ACTIONS(746), [anon_sym_unknown] = ACTIONS(748), [anon_sym_never] = ACTIONS(748), [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [878] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2609), - [sym_constructor_type] = STATE(2609), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2609), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2609), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2609), - [sym_identifier] = ACTIONS(1275), + [872] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3597), + [sym_constructor_type] = STATE(3597), + [sym__primary_type] = STATE(2588), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3597), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3597), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3597), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [873] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2589), + [sym_constructor_type] = STATE(2589), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2589), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2589), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2589), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -100352,59 +100193,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [879] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2611), - [sym_constructor_type] = STATE(2611), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2611), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2611), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2611), - [sym_identifier] = ACTIONS(1275), + [874] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1697), + [sym_constructor_type] = STATE(1697), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1697), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1697), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1697), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [875] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2615), + [sym_constructor_type] = STATE(2615), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2615), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2615), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2615), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -100419,47 +100327,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [880] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2890), - [sym_constructor_type] = STATE(2890), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2890), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2890), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2890), + [876] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2479), + [sym_constructor_type] = STATE(2479), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2479), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2479), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2479), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -100472,7 +100380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -100486,117 +100394,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [881] = { - [sym_nested_identifier] = STATE(1245), - [sym_string] = STATE(1244), - [sym__module] = STATE(1410), - [sym_identifier] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(153), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), + [877] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2616), + [sym_constructor_type] = STATE(2616), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2616), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2616), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2616), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [878] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1299), + [sym_constructor_type] = STATE(1299), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1299), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1299), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1299), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, - [882] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2469), - [sym_constructor_type] = STATE(2469), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2469), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2469), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [879] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3004), + [sym_constructor_type] = STATE(3004), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3004), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3004), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3004), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -100605,263 +100580,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [883] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1278), - [sym_constructor_type] = STATE(1278), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1278), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1278), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1278), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [884] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1678), - [sym_constructor_type] = STATE(1678), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1678), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1678), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1678), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [885] = { - [sym_nested_identifier] = STATE(1245), - [sym_string] = STATE(1244), - [sym__module] = STATE(1410), - [sym_identifier] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(153), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_RBRACK] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(153), - [anon_sym_PLUS_EQ] = ACTIONS(157), - [anon_sym_DASH_EQ] = ACTIONS(157), - [anon_sym_STAR_EQ] = ACTIONS(157), - [anon_sym_SLASH_EQ] = ACTIONS(157), - [anon_sym_PERCENT_EQ] = ACTIONS(157), - [anon_sym_CARET_EQ] = ACTIONS(157), - [anon_sym_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_EQ] = ACTIONS(157), - [anon_sym_GT_GT_EQ] = ACTIONS(157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(157), - [anon_sym_LT_LT_EQ] = ACTIONS(157), - [anon_sym_STAR_STAR_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP_EQ] = ACTIONS(157), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(157), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(153), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [886] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2891), - [sym_constructor_type] = STATE(2891), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2891), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2891), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2891), + [880] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2455), + [sym_constructor_type] = STATE(2455), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2455), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2455), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2455), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -100874,7 +100648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -100888,47 +100662,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [887] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3323), - [sym_constructor_type] = STATE(3323), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3323), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3323), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3323), + [881] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3411), + [sym_constructor_type] = STATE(3411), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3411), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3411), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3411), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -100941,7 +100715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -100955,114 +100729,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [888] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1280), - [sym_constructor_type] = STATE(1280), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1280), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1280), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1280), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [882] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1598), + [sym_constructor_type] = STATE(1598), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1598), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1598), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1598), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [889] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3352), - [sym_constructor_type] = STATE(3352), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3352), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3352), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3352), + [883] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2456), + [sym_constructor_type] = STATE(2456), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2456), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2456), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2456), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -101075,7 +100849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -101089,251 +100863,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [890] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1640), - [sym_constructor_type] = STATE(1640), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1640), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1640), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1640), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [891] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1290), - [sym_constructor_type] = STATE(1290), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1290), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1290), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1290), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [892] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(3495), - [sym_constructor_type] = STATE(3495), - [sym__primary_type] = STATE(1291), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(3495), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(3495), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(3495), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [893] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2930), - [sym_constructor_type] = STATE(2930), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2930), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2930), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2930), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [884] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2478), + [sym_constructor_type] = STATE(2478), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2478), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2478), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2478), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -101342,129 +100915,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), - }, - [894] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(3495), - [sym_constructor_type] = STATE(3495), - [sym__primary_type] = STATE(1295), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(3495), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(3495), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(3495), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [895] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2960), - [sym_constructor_type] = STATE(2960), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2960), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2960), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2960), + [885] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3375), + [sym_constructor_type] = STATE(3375), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3375), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3375), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3375), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -101477,7 +100983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -101491,47 +100997,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [896] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3302), - [sym_constructor_type] = STATE(3302), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3302), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3302), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3302), + [886] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3172), + [sym_constructor_type] = STATE(3172), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3172), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3172), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3172), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [887] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2618), + [sym_constructor_type] = STATE(2618), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2618), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2618), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2618), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [888] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1253), + [sym_constructor_type] = STATE(1253), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1253), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1253), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1253), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [889] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2408), + [sym_constructor_type] = STATE(2408), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2408), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2408), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2408), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -101544,7 +101251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -101558,47 +101265,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [897] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2385), - [sym_constructor_type] = STATE(2385), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2385), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2385), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2385), + [890] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2656), + [sym_constructor_type] = STATE(2656), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2656), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2656), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2656), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [891] = { + [sym_nested_identifier] = STATE(1284), + [sym_string] = STATE(1285), + [sym__module] = STATE(1512), + [sym_identifier] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, + [892] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3410), + [sym_constructor_type] = STATE(3410), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3410), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3410), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3410), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -101611,7 +101452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -101625,114 +101466,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [898] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(3629), - [sym_constructor_type] = STATE(3629), - [sym__primary_type] = STATE(2361), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3629), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3629), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3629), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), - }, - [899] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3358), - [sym_constructor_type] = STATE(3358), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3358), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3358), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3358), + [893] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3427), + [sym_constructor_type] = STATE(3427), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3427), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3427), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3427), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -101745,7 +101519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -101759,248 +101533,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [900] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1330), - [sym_constructor_type] = STATE(1330), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1330), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1330), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1330), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [894] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1612), + [sym_constructor_type] = STATE(1612), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1612), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1612), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1612), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [901] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1328), - [sym_constructor_type] = STATE(1328), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1328), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1328), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1328), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [895] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1733), + [sym_constructor_type] = STATE(1733), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1733), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1733), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1733), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [902] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1331), - [sym_constructor_type] = STATE(1331), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1331), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1331), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1331), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), + [896] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1250), + [sym_constructor_type] = STATE(1250), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1250), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1250), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1250), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, - [903] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2356), - [sym_constructor_type] = STATE(2356), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2356), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2356), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2356), + [897] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3392), + [sym_constructor_type] = STATE(3392), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3392), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3392), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3392), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -102013,7 +101787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -102027,47 +101801,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [904] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3310), - [sym_constructor_type] = STATE(3310), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3310), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3310), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3310), + [898] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2440), + [sym_constructor_type] = STATE(2440), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2440), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2440), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2440), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -102080,7 +101854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -102094,47 +101868,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [905] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3415), - [sym_constructor_type] = STATE(3415), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3415), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3415), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3415), + [899] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2381), + [sym_constructor_type] = STATE(2381), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2381), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2381), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2381), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -102147,7 +101921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -102161,114 +101935,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [906] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1623), - [sym_constructor_type] = STATE(1623), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1623), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1623), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1623), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), + [900] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2623), + [sym_constructor_type] = STATE(2623), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2623), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2623), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2623), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [901] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1734), + [sym_constructor_type] = STATE(1734), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1734), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1734), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1734), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [907] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2381), - [sym_constructor_type] = STATE(2381), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2381), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2381), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2381), + [902] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1699), + [sym_constructor_type] = STATE(1699), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1699), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1699), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1699), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [903] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1726), + [sym_constructor_type] = STATE(1726), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1726), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1726), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1726), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [904] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2695), + [sym_constructor_type] = STATE(2695), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2695), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2695), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2695), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [905] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2608), + [sym_constructor_type] = STATE(2608), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2608), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2608), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2608), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [906] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2746), + [sym_constructor_type] = STATE(2746), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2746), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2746), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2746), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -102281,7 +102390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -102295,47 +102404,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, + [907] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2738), + [sym_constructor_type] = STATE(2738), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2738), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2738), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2738), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, [908] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2358), - [sym_constructor_type] = STATE(2358), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2358), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2358), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2358), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3426), + [sym_constructor_type] = STATE(3426), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3426), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3426), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3426), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -102348,7 +102524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -102363,49 +102539,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [909] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2456), - [sym_constructor_type] = STATE(2456), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2456), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2456), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2456), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2944), + [sym_constructor_type] = STATE(2944), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2944), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2944), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2944), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -102414,196 +102590,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, [910] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1233), - [sym_constructor_type] = STATE(1233), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1233), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1233), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1233), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [911] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2605), - [sym_constructor_type] = STATE(2605), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2605), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2605), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2605), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [912] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3334), - [sym_constructor_type] = STATE(3334), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3334), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3334), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3334), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2472), + [sym_constructor_type] = STATE(2472), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2472), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2472), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2472), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -102616,7 +102658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -102630,50 +102672,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [913] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2372), - [sym_constructor_type] = STATE(2372), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2372), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2372), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2372), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [911] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2694), + [sym_constructor_type] = STATE(2694), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2694), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2694), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2694), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [912] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2407), + [sym_constructor_type] = STATE(2407), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2407), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2407), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2407), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -102682,199 +102791,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), + }, + [913] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1632), + [sym_constructor_type] = STATE(1632), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1632), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1632), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1632), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, [914] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1276), - [sym_constructor_type] = STATE(1276), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1276), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1276), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1276), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1627), + [sym_constructor_type] = STATE(1627), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1627), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1627), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1627), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, [915] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1285), - [sym_constructor_type] = STATE(1285), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1285), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1285), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1285), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1319), + [sym_constructor_type] = STATE(1319), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1319), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1319), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1319), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, [916] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3327), - [sym_constructor_type] = STATE(3327), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3327), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3327), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3327), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2395), + [sym_constructor_type] = STATE(2395), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2395), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2395), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2395), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -102883,65 +103059,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, [917] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3330), - [sym_constructor_type] = STATE(3330), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3330), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3330), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3330), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2396), + [sym_constructor_type] = STATE(2396), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2396), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2396), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2396), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -102950,141 +103126,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, [918] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3201), - [sym_constructor_type] = STATE(3201), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3201), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3201), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3201), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2597), + [sym_constructor_type] = STATE(2597), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2597), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2597), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2597), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, [919] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3207), - [sym_constructor_type] = STATE(3207), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3207), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3207), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3207), - [sym_identifier] = ACTIONS(1275), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2596), + [sym_constructor_type] = STATE(2596), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2596), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2596), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2596), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -103100,46 +103276,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, [920] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3012), - [sym_constructor_type] = STATE(3012), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3012), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3012), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3012), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1320), + [sym_constructor_type] = STATE(1320), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1320), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1320), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1320), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [921] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(3576), + [sym_constructor_type] = STATE(3576), + [sym__primary_type] = STATE(1741), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(3576), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(3576), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(3576), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [922] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2380), + [sym_constructor_type] = STATE(2380), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2380), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2380), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2380), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -103152,7 +103462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -103166,181 +103476,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [921] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2395), - [sym_constructor_type] = STATE(2395), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2395), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2395), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2395), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), - }, - [922] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1266), - [sym_constructor_type] = STATE(1266), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1266), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1266), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1266), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, [923] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3366), - [sym_constructor_type] = STATE(3366), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3366), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3366), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3366), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2922), + [sym_constructor_type] = STATE(2922), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2922), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2922), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2922), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -103353,7 +103529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -103368,46 +103544,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [924] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3432), - [sym_constructor_type] = STATE(3432), - [sym__primary_type] = STATE(3198), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3343), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3432), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3432), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2577), + [sym_constructor_type] = STATE(2577), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2577), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2577), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2577), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [925] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3032), + [sym_constructor_type] = STATE(3032), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3032), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3032), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3032), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -103420,7 +103663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -103434,117 +103677,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [925] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1263), - [sym_constructor_type] = STATE(1263), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1263), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1263), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1263), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, [926] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2929), - [sym_constructor_type] = STATE(2929), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2601), + [sym_constructor_type] = STATE(2601), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2601), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2601), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2601), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [927] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2962), + [sym_constructor_type] = STATE(2962), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2962), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2962), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2962), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -103553,65 +103796,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [927] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3392), - [sym_constructor_type] = STATE(3392), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3392), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3392), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3392), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [928] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2963), + [sym_constructor_type] = STATE(2963), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2963), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2963), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2963), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -103620,132 +103863,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [928] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1599), - [sym_constructor_type] = STATE(1599), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, [929] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(3629), - [sym_constructor_type] = STATE(3629), - [sym__primary_type] = STATE(2359), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3629), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3629), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3629), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2906), + [sym_constructor_type] = STATE(2906), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2906), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2906), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2906), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -103755,7 +103931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -103763,123 +103939,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [930] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1639), - [sym_constructor_type] = STATE(1639), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1639), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1639), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1639), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [931] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2358), - [sym_constructor_type] = STATE(2358), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2358), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2358), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2358), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3353), + [sym_constructor_type] = STATE(3353), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3353), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3353), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3353), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -103888,62 +103997,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + }, + [931] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3053), + [sym_constructor_type] = STATE(3053), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3053), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3053), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3053), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, [932] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3350), - [sym_constructor_type] = STATE(3350), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3350), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3350), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3350), + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3062), + [sym_constructor_type] = STATE(3062), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3062), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3062), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3062), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), + }, + [933] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2396), + [sym_constructor_type] = STATE(2396), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2396), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2396), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2396), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -103956,7 +104199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -103970,114 +104213,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [933] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2740), - [sym_constructor_type] = STATE(2740), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2740), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2740), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2740), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, [934] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2961), - [sym_constructor_type] = STATE(2961), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2961), + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(3511), + [sym_constructor_type] = STATE(3511), + [sym__primary_type] = STATE(2663), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(3511), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(3511), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(3511), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [935] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2395), + [sym_constructor_type] = STATE(2395), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2395), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2395), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2395), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -104090,7 +104333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -104104,50 +104347,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [935] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(3016), - [sym_constructor_type] = STATE(3016), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3016), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3016), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3016), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [936] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(3511), + [sym_constructor_type] = STATE(3511), + [sym__primary_type] = STATE(2661), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(3511), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(3511), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(3511), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [937] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3423), + [sym_constructor_type] = STATE(3423), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3423), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3423), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3423), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -104156,65 +104466,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [936] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2900), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [938] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(3576), + [sym_constructor_type] = STATE(3576), + [sym__primary_type] = STATE(1716), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(3576), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(3576), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(3576), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [939] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3554), + [sym_constructor_type] = STATE(3554), + [sym__primary_type] = STATE(2392), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3554), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3554), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3554), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -104224,7 +104601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -104232,187 +104609,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - }, - [937] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1340), - [sym_constructor_type] = STATE(1340), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1340), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1340), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1340), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [938] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2689), - [sym_constructor_type] = STATE(2689), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2689), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2689), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2689), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [939] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3381), - [sym_constructor_type] = STATE(3381), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3381), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3381), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3381), + [940] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3420), + [sym_constructor_type] = STATE(3420), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3420), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3420), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3420), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -104425,7 +104668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -104439,181 +104682,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [940] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2633), - [sym_constructor_type] = STATE(2633), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2633), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2633), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2633), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, [941] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2735), - [sym_constructor_type] = STATE(2735), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2735), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2735), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2735), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [942] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3348), - [sym_constructor_type] = STATE(3348), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3348), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3348), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3348), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3419), + [sym_constructor_type] = STATE(3419), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3419), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3419), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3419), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -104626,7 +104735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -104640,114 +104749,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [943] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2688), - [sym_constructor_type] = STATE(2688), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2688), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2688), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2688), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [942] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1637), + [sym_constructor_type] = STATE(1637), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1637), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1637), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1637), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [944] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2408), - [sym_constructor_type] = STATE(2408), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2408), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2408), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2408), + [943] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2407), + [sym_constructor_type] = STATE(2407), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2407), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2407), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2407), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -104760,7 +104869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -104774,251 +104883,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [945] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2733), - [sym_constructor_type] = STATE(2733), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2733), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2733), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2733), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [946] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2720), - [sym_constructor_type] = STATE(2720), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2720), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2720), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2720), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [947] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2682), - [sym_constructor_type] = STATE(2682), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2682), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2682), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2682), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [948] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2975), - [sym_constructor_type] = STATE(2975), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2975), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2975), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2975), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [944] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2380), + [sym_constructor_type] = STATE(2380), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2380), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2380), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2380), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -105027,62 +104935,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [949] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2873), - [sym_constructor_type] = STATE(2873), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2873), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2873), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2873), + [945] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2905), + [sym_constructor_type] = STATE(2905), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2905), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2905), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2905), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -105095,7 +105003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -105109,315 +105017,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [950] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2719), - [sym_constructor_type] = STATE(2719), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2719), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2719), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2719), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [951] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(3486), - [sym_constructor_type] = STATE(3486), - [sym__primary_type] = STATE(2680), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(3486), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(3486), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(3486), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [952] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3102), - [sym_constructor_type] = STATE(3102), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3102), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3102), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3102), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), - }, - [953] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(3486), - [sym_constructor_type] = STATE(3486), - [sym__primary_type] = STATE(2671), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(3486), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(3486), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(3486), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [954] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3347), - [sym_constructor_type] = STATE(3347), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3347), + [946] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3323), + [sym_constructor_type] = STATE(3323), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3323), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3323), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3323), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -105430,7 +105070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -105444,50 +105084,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [955] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2945), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [947] = { + [sym_nested_identifier] = STATE(1284), + [sym_string] = STATE(1285), + [sym__module] = STATE(1512), + [sym_identifier] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(148), + [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(154), + [anon_sym_DASH_EQ] = ACTIONS(154), + [anon_sym_STAR_EQ] = ACTIONS(154), + [anon_sym_SLASH_EQ] = ACTIONS(154), + [anon_sym_PERCENT_EQ] = ACTIONS(154), + [anon_sym_CARET_EQ] = ACTIONS(154), + [anon_sym_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_EQ] = ACTIONS(154), + [anon_sym_GT_GT_EQ] = ACTIONS(154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), + [anon_sym_LT_LT_EQ] = ACTIONS(154), + [anon_sym_STAR_STAR_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP_EQ] = ACTIONS(154), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_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(150), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(150), + }, + [948] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1339), + [sym_constructor_type] = STATE(1339), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1339), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1339), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1339), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [949] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2715), + [sym_constructor_type] = STATE(2715), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2715), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2715), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2715), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [950] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(3473), + [sym_constructor_type] = STATE(3473), + [sym__primary_type] = STATE(1305), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(3473), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(3473), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(3473), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [951] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3554), + [sym_constructor_type] = STATE(3554), + [sym__primary_type] = STATE(2401), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3554), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3554), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3554), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -105497,7 +105405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -105505,65 +105413,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [956] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3028), - [sym_constructor_type] = STATE(3028), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3028), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3028), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3028), - [sym_identifier] = ACTIONS(1275), + [952] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3045), + [sym_constructor_type] = STATE(3045), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3045), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3045), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3045), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -105578,126 +105486,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [957] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1311), - [sym_constructor_type] = STATE(1311), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1311), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1311), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1311), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), + [953] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2756), + [sym_constructor_type] = STATE(2756), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2756), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2756), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2756), + [sym_identifier] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_any] = ACTIONS(748), + [anon_sym_number] = ACTIONS(748), + [anon_sym_boolean] = ACTIONS(748), + [anon_sym_string] = ACTIONS(748), + [anon_sym_symbol] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_infer] = ACTIONS(744), + [anon_sym_keyof] = ACTIONS(746), + [anon_sym_unknown] = ACTIONS(748), + [anon_sym_never] = ACTIONS(748), + [anon_sym_object] = ACTIONS(748), + [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [958] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3271), - [sym_constructor_type] = STATE(3271), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1275), + [954] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(2759), + [sym_constructor_type] = STATE(2759), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(2759), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(2759), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(2759), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -105712,50 +105620,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, - [959] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3410), - [sym_constructor_type] = STATE(3410), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3410), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3410), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3410), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [955] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2705), + [sym_constructor_type] = STATE(2705), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2705), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2705), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2705), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [956] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3010), + [sym_constructor_type] = STATE(3010), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3010), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3010), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3010), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -105764,65 +105739,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), + }, + [957] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2753), + [sym_constructor_type] = STATE(2753), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2753), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2753), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2753), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [958] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2674), + [sym_constructor_type] = STATE(2674), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2674), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2674), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2674), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [959] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1665), + [sym_constructor_type] = STATE(1665), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1665), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1665), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1665), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, [960] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(3050), - [sym_constructor_type] = STATE(3050), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3050), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3050), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3050), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(3008), + [sym_constructor_type] = STATE(3008), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3008), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3008), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3008), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -105831,199 +106007,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, [961] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3355), - [sym_constructor_type] = STATE(3355), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3355), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3355), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3355), - [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_number] = ACTIONS(1242), - [sym_this] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2751), + [sym_constructor_type] = STATE(2751), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2751), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2751), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2751), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), }, [962] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1657), - [sym_constructor_type] = STATE(1657), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1657), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1657), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1657), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [963] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2372), - [sym_constructor_type] = STATE(2372), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2372), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2372), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2372), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4278), + [sym_nested_type_identifier] = STATE(2758), + [sym__type] = STATE(2408), + [sym_constructor_type] = STATE(2408), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2408), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3822), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2408), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -106032,208 +106141,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2807), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(2809), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(2811), }, - [964] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), + [963] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), [sym__type] = STATE(2675), [sym_constructor_type] = STATE(2675), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), [sym_infer_type] = STATE(2675), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), [sym_readonly_type] = STATE(2675), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), [sym_function_type] = STATE(2675), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - }, - [965] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2676), - [sym_constructor_type] = STATE(2676), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2676), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2676), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2676), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), }, - [966] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(3150), - [sym_constructor_type] = STATE(3150), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(3150), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(3150), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(3150), - [sym_identifier] = ACTIONS(1275), + [964] = { + [sym_nested_identifier] = STATE(4018), + [sym_string] = STATE(2600), + [sym_formal_parameters] = STATE(3970), + [sym_nested_type_identifier] = STATE(2483), + [sym__type] = STATE(3054), + [sym_constructor_type] = STATE(3054), + [sym__primary_type] = STATE(2594), + [sym_template_literal_type] = STATE(2590), + [sym_infer_type] = STATE(3054), + [sym_conditional_type] = STATE(2590), + [sym_generic_type] = STATE(2590), + [sym_type_query] = STATE(2590), + [sym_index_type_query] = STATE(2590), + [sym_lookup_type] = STATE(2590), + [sym_literal_type] = STATE(2590), + [sym__number] = STATE(2587), + [sym_existential_type] = STATE(2590), + [sym_flow_maybe_type] = STATE(2590), + [sym_parenthesized_type] = STATE(2590), + [sym_predefined_type] = STATE(2590), + [sym_object_type] = STATE(2590), + [sym_type_parameters] = STATE(3867), + [sym_array_type] = STATE(2590), + [sym_tuple_type] = STATE(2590), + [sym_readonly_type] = STATE(3054), + [sym_union_type] = STATE(2590), + [sym_intersection_type] = STATE(2590), + [sym_function_type] = STATE(3054), + [sym_identifier] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1279), [anon_sym_AMP] = ACTIONS(718), [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_number] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_undefined] = ACTIONS(1297), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_QMARK] = ACTIONS(738), [anon_sym_any] = ACTIONS(748), [anon_sym_number] = ACTIONS(748), @@ -106248,47 +106290,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(748), [anon_sym_LBRACE_PIPE] = ACTIONS(750), }, + [965] = { + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2737), + [sym_constructor_type] = STATE(2737), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2737), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2737), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2737), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), + }, + [966] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1337), + [sym_constructor_type] = STATE(1337), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1337), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1337), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1337), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, [967] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2663), - [sym_constructor_type] = STATE(2663), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2663), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2663), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2663), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3371), + [sym_constructor_type] = STATE(3371), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3371), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3371), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3371), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -106301,7 +106477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -106316,250 +106492,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [968] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2562), - [sym_constructor_type] = STATE(2562), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2562), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2562), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2562), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(3473), + [sym_constructor_type] = STATE(3473), + [sym__primary_type] = STATE(1303), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(3473), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(3473), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(3473), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, [969] = { - [sym_nested_identifier] = STATE(3964), - [sym_string] = STATE(2613), - [sym_formal_parameters] = STATE(3999), - [sym_nested_type_identifier] = STATE(2484), - [sym__type] = STATE(2602), - [sym_constructor_type] = STATE(2602), - [sym__primary_type] = STATE(2567), - [sym_template_literal_type] = STATE(2569), - [sym_infer_type] = STATE(2602), - [sym_conditional_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_type_query] = STATE(2569), - [sym_index_type_query] = STATE(2569), - [sym_lookup_type] = STATE(2569), - [sym_literal_type] = STATE(2569), - [sym__number] = STATE(2570), - [sym_existential_type] = STATE(2569), - [sym_flow_maybe_type] = STATE(2569), - [sym_parenthesized_type] = STATE(2569), - [sym_predefined_type] = STATE(2569), - [sym_object_type] = STATE(2569), - [sym_type_parameters] = STATE(3841), - [sym_array_type] = STATE(2569), - [sym_tuple_type] = STATE(2569), - [sym_readonly_type] = STATE(2602), - [sym_union_type] = STATE(2569), - [sym_intersection_type] = STATE(2569), - [sym_function_type] = STATE(2602), - [sym_identifier] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_void] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1299), - [sym_number] = ACTIONS(1301), - [sym_this] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_any] = ACTIONS(748), - [anon_sym_number] = ACTIONS(748), - [anon_sym_boolean] = ACTIONS(748), - [anon_sym_string] = ACTIONS(748), - [anon_sym_symbol] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(742), - [anon_sym_infer] = ACTIONS(744), - [anon_sym_keyof] = ACTIONS(746), - [anon_sym_unknown] = ACTIONS(748), - [anon_sym_never] = ACTIONS(748), - [anon_sym_object] = ACTIONS(748), - [anon_sym_LBRACE_PIPE] = ACTIONS(750), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3398), + [sym_constructor_type] = STATE(3398), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3398), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3398), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3398), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [970] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1725), - [sym_constructor_type] = STATE(1725), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1725), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1725), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1725), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1236), + [sym_constructor_type] = STATE(1236), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1236), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1236), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1236), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [971] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1666), + [sym_constructor_type] = STATE(1666), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1666), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1666), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1666), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), }, - [971] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2356), - [sym_constructor_type] = STATE(2356), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2356), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2356), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2356), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [972] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3345), + [sym_constructor_type] = STATE(3345), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3345), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3345), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3345), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -106568,62 +106811,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [972] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3328), - [sym_constructor_type] = STATE(3328), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3328), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3328), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3328), + [973] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3430), + [sym_constructor_type] = STATE(3430), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3430), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3430), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3430), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -106636,7 +106879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -106650,47 +106893,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [973] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2395), - [sym_constructor_type] = STATE(2395), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2395), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2395), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2395), + [974] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2899), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2899), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -106703,7 +106946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -106717,452 +106960,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [974] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1724), - [sym_constructor_type] = STATE(1724), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1724), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1724), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1724), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, [975] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1716), - [sym_constructor_type] = STATE(1716), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1716), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1716), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1716), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2722), + [sym_constructor_type] = STATE(2722), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2722), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2722), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2722), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), }, [976] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2738), - [sym_constructor_type] = STATE(2738), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2738), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2738), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2738), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [sym_nested_identifier] = STATE(4034), + [sym_string] = STATE(2707), + [sym_formal_parameters] = STATE(4156), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2719), + [sym_constructor_type] = STATE(2719), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2702), + [sym_infer_type] = STATE(2719), + [sym_conditional_type] = STATE(2702), + [sym_generic_type] = STATE(2702), + [sym_type_query] = STATE(2702), + [sym_index_type_query] = STATE(2702), + [sym_lookup_type] = STATE(2702), + [sym_literal_type] = STATE(2702), + [sym__number] = STATE(2701), + [sym_existential_type] = STATE(2702), + [sym_flow_maybe_type] = STATE(2702), + [sym_parenthesized_type] = STATE(2702), + [sym_predefined_type] = STATE(2702), + [sym_object_type] = STATE(2702), + [sym_type_parameters] = STATE(3866), + [sym_array_type] = STATE(2702), + [sym_tuple_type] = STATE(2702), + [sym_readonly_type] = STATE(2719), + [sym_union_type] = STATE(2702), + [sym_intersection_type] = STATE(2702), + [sym_function_type] = STATE(2719), + [sym_identifier] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_typeof] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2589), + [sym_this] = ACTIONS(2911), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [sym_null] = ACTIONS(2593), + [sym_undefined] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2597), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_infer] = ACTIONS(2603), + [anon_sym_keyof] = ACTIONS(2605), + [anon_sym_unknown] = ACTIONS(2581), + [anon_sym_never] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_LBRACE_PIPE] = ACTIONS(2607), }, [977] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(3626), - [sym_constructor_type] = STATE(3626), - [sym__primary_type] = STATE(1715), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(3626), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(3626), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(3626), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2889), + [sym_constructor_type] = STATE(2889), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2889), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2889), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2889), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, [978] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(3626), - [sym_constructor_type] = STATE(3626), - [sym__primary_type] = STATE(1712), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(3626), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(3626), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(3626), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1294), + [sym_constructor_type] = STATE(1294), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1294), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1294), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1294), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, [979] = { - [sym_nested_identifier] = STATE(4006), - [sym_string] = STATE(2732), - [sym_formal_parameters] = STATE(4196), - [sym_nested_type_identifier] = STATE(2606), - [sym__type] = STATE(2697), - [sym_constructor_type] = STATE(2697), - [sym__primary_type] = STATE(2728), - [sym_template_literal_type] = STATE(2727), - [sym_infer_type] = STATE(2697), - [sym_conditional_type] = STATE(2727), - [sym_generic_type] = STATE(2727), - [sym_type_query] = STATE(2727), - [sym_index_type_query] = STATE(2727), - [sym_lookup_type] = STATE(2727), - [sym_literal_type] = STATE(2727), - [sym__number] = STATE(2726), - [sym_existential_type] = STATE(2727), - [sym_flow_maybe_type] = STATE(2727), - [sym_parenthesized_type] = STATE(2727), - [sym_predefined_type] = STATE(2727), - [sym_object_type] = STATE(2727), - [sym_type_parameters] = STATE(3779), - [sym_array_type] = STATE(2727), - [sym_tuple_type] = STATE(2727), - [sym_readonly_type] = STATE(2697), - [sym_union_type] = STATE(2727), - [sym_intersection_type] = STATE(2727), - [sym_function_type] = STATE(2697), - [sym_identifier] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_typeof] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2565), - [sym_number] = ACTIONS(2567), - [sym_this] = ACTIONS(2903), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2559), - [anon_sym_number] = ACTIONS(2559), - [anon_sym_boolean] = ACTIONS(2559), - [anon_sym_string] = ACTIONS(2559), - [anon_sym_symbol] = ACTIONS(2559), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_infer] = ACTIONS(2581), - [anon_sym_keyof] = ACTIONS(2583), - [anon_sym_unknown] = ACTIONS(2559), - [anon_sym_never] = ACTIONS(2559), - [anon_sym_object] = ACTIONS(2559), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1295), + [sym_constructor_type] = STATE(1295), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1295), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1295), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1295), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), }, [980] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4050), - [sym_nested_type_identifier] = STATE(2754), - [sym__type] = STATE(2381), - [sym_constructor_type] = STATE(2381), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2381), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3656), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2381), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2381), - [sym_identifier] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1367), + [sym_constructor_type] = STATE(1367), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1367), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1367), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1367), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [981] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1366), + [sym_constructor_type] = STATE(1366), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1366), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1366), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1366), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [982] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3301), + [sym_constructor_type] = STATE(3301), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3301), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3301), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3301), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1240), [sym_number] = ACTIONS(1242), @@ -107171,62 +107481,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1246), [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), [anon_sym_string] = ACTIONS(207), [anon_sym_symbol] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(201), [anon_sym_infer] = ACTIONS(203), - [anon_sym_keyof] = ACTIONS(2771), + [anon_sym_keyof] = ACTIONS(205), [anon_sym_unknown] = ACTIONS(207), [anon_sym_never] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(2773), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [981] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(2892), - [sym_constructor_type] = STATE(2892), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(2892), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(2892), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(2892), + [983] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(2990), + [sym_constructor_type] = STATE(2990), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(2990), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(2990), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(2990), + [sym_identifier] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1240), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1246), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + }, + [984] = { + [sym_nested_identifier] = STATE(4279), + [sym_string] = STATE(1802), + [sym_formal_parameters] = STATE(4106), + [sym_nested_type_identifier] = STATE(1543), + [sym__type] = STATE(1688), + [sym_constructor_type] = STATE(1688), + [sym__primary_type] = STATE(1773), + [sym_template_literal_type] = STATE(1772), + [sym_infer_type] = STATE(1688), + [sym_conditional_type] = STATE(1772), + [sym_generic_type] = STATE(1772), + [sym_type_query] = STATE(1772), + [sym_index_type_query] = STATE(1772), + [sym_lookup_type] = STATE(1772), + [sym_literal_type] = STATE(1772), + [sym__number] = STATE(1770), + [sym_existential_type] = STATE(1772), + [sym_flow_maybe_type] = STATE(1772), + [sym_parenthesized_type] = STATE(1772), + [sym_predefined_type] = STATE(1772), + [sym_object_type] = STATE(1772), + [sym_type_parameters] = STATE(3682), + [sym_array_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_readonly_type] = STATE(1688), + [sym_union_type] = STATE(1772), + [sym_intersection_type] = STATE(1772), + [sym_function_type] = STATE(1688), + [sym_identifier] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2675), + [sym_this] = ACTIONS(2901), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [sym_null] = ACTIONS(2679), + [sym_undefined] = ACTIONS(2679), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_infer] = ACTIONS(2687), + [anon_sym_keyof] = ACTIONS(2689), + [anon_sym_unknown] = ACTIONS(2671), + [anon_sym_never] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_LBRACE_PIPE] = ACTIONS(2691), + }, + [985] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3365), + [sym_constructor_type] = STATE(3365), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3365), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3365), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3365), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -107239,7 +107683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -107253,181 +107697,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(207), [anon_sym_LBRACE_PIPE] = ACTIONS(209), }, - [982] = { - [sym_nested_identifier] = STATE(3936), - [sym_string] = STATE(1241), - [sym_formal_parameters] = STATE(4109), - [sym_nested_type_identifier] = STATE(1226), - [sym__type] = STATE(1341), - [sym_constructor_type] = STATE(1341), - [sym__primary_type] = STATE(1238), - [sym_template_literal_type] = STATE(1237), - [sym_infer_type] = STATE(1341), - [sym_conditional_type] = STATE(1237), - [sym_generic_type] = STATE(1237), - [sym_type_query] = STATE(1237), - [sym_index_type_query] = STATE(1237), - [sym_lookup_type] = STATE(1237), - [sym_literal_type] = STATE(1237), - [sym__number] = STATE(1236), - [sym_existential_type] = STATE(1237), - [sym_flow_maybe_type] = STATE(1237), - [sym_parenthesized_type] = STATE(1237), - [sym_predefined_type] = STATE(1237), - [sym_object_type] = STATE(1237), - [sym_type_parameters] = STATE(3909), - [sym_array_type] = STATE(1237), - [sym_tuple_type] = STATE(1237), - [sym_readonly_type] = STATE(1341), - [sym_union_type] = STATE(1237), - [sym_intersection_type] = STATE(1237), - [sym_function_type] = STATE(1341), - [sym_identifier] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_typeof] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), + [986] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1298), + [sym_constructor_type] = STATE(1298), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1298), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1298), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1298), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), [anon_sym_DQUOTE] = ACTIONS(179), [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2815), - [sym_this] = ACTIONS(2899), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_infer] = ACTIONS(2827), - [anon_sym_keyof] = ACTIONS(2829), - [anon_sym_unknown] = ACTIONS(2811), - [anon_sym_never] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_LBRACE_PIPE] = ACTIONS(2831), - }, - [983] = { - [sym_nested_identifier] = STATE(4052), - [sym_string] = STATE(1790), - [sym_formal_parameters] = STATE(4158), - [sym_nested_type_identifier] = STATE(1527), - [sym__type] = STATE(1778), - [sym_constructor_type] = STATE(1778), - [sym__primary_type] = STATE(1788), - [sym_template_literal_type] = STATE(1787), - [sym_infer_type] = STATE(1778), - [sym_conditional_type] = STATE(1787), - [sym_generic_type] = STATE(1787), - [sym_type_query] = STATE(1787), - [sym_index_type_query] = STATE(1787), - [sym_lookup_type] = STATE(1787), - [sym_literal_type] = STATE(1787), - [sym__number] = STATE(1786), - [sym_existential_type] = STATE(1787), - [sym_flow_maybe_type] = STATE(1787), - [sym_parenthesized_type] = STATE(1787), - [sym_predefined_type] = STATE(1787), - [sym_object_type] = STATE(1787), - [sym_type_parameters] = STATE(3671), - [sym_array_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_readonly_type] = STATE(1778), - [sym_union_type] = STATE(1787), - [sym_intersection_type] = STATE(1787), - [sym_function_type] = STATE(1778), - [sym_identifier] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_typeof] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [987] = { + [sym_nested_identifier] = STATE(3962), + [sym_string] = STATE(1287), + [sym_formal_parameters] = STATE(4048), + [sym_nested_type_identifier] = STATE(1224), + [sym__type] = STATE(1342), + [sym_constructor_type] = STATE(1342), + [sym__primary_type] = STATE(1289), + [sym_template_literal_type] = STATE(1290), + [sym_infer_type] = STATE(1342), + [sym_conditional_type] = STATE(1290), + [sym_generic_type] = STATE(1290), + [sym_type_query] = STATE(1290), + [sym_index_type_query] = STATE(1290), + [sym_lookup_type] = STATE(1290), + [sym_literal_type] = STATE(1290), + [sym__number] = STATE(1291), + [sym_existential_type] = STATE(1290), + [sym_flow_maybe_type] = STATE(1290), + [sym_parenthesized_type] = STATE(1290), + [sym_predefined_type] = STATE(1290), + [sym_object_type] = STATE(1290), + [sym_type_parameters] = STATE(3924), + [sym_array_type] = STATE(1290), + [sym_tuple_type] = STATE(1290), + [sym_readonly_type] = STATE(1342), + [sym_union_type] = STATE(1290), + [sym_intersection_type] = STATE(1290), + [sym_function_type] = STATE(1342), + [sym_identifier] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_typeof] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_SQUOTE] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2697), - [sym_number] = ACTIONS(2699), - [sym_this] = ACTIONS(2895), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_any] = ACTIONS(2695), - [anon_sym_number] = ACTIONS(2695), - [anon_sym_boolean] = ACTIONS(2695), - [anon_sym_string] = ACTIONS(2695), - [anon_sym_symbol] = ACTIONS(2695), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_infer] = ACTIONS(2711), - [anon_sym_keyof] = ACTIONS(2713), - [anon_sym_unknown] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_object] = ACTIONS(2695), - [anon_sym_LBRACE_PIPE] = ACTIONS(2715), - }, - [984] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2380), - [sym_formal_parameters] = STATE(4133), - [sym_nested_type_identifier] = STATE(2355), - [sym__type] = STATE(3326), - [sym_constructor_type] = STATE(3326), - [sym__primary_type] = STATE(2370), - [sym_template_literal_type] = STATE(2368), - [sym_infer_type] = STATE(3326), - [sym_conditional_type] = STATE(2368), - [sym_generic_type] = STATE(2368), - [sym_type_query] = STATE(2368), - [sym_index_type_query] = STATE(2368), - [sym_lookup_type] = STATE(2368), - [sym_literal_type] = STATE(2368), - [sym__number] = STATE(2367), - [sym_existential_type] = STATE(2368), - [sym_flow_maybe_type] = STATE(2368), - [sym_parenthesized_type] = STATE(2368), - [sym_predefined_type] = STATE(2368), - [sym_object_type] = STATE(2368), - [sym_type_parameters] = STATE(3776), - [sym_array_type] = STATE(2368), - [sym_tuple_type] = STATE(2368), - [sym_readonly_type] = STATE(3326), - [sym_union_type] = STATE(2368), - [sym_intersection_type] = STATE(2368), - [sym_function_type] = STATE(3326), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), + [sym_this] = ACTIONS(2907), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_infer] = ACTIONS(2871), + [anon_sym_keyof] = ACTIONS(2873), + [anon_sym_unknown] = ACTIONS(2855), + [anon_sym_never] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_LBRACE_PIPE] = ACTIONS(2875), + }, + [988] = { + [sym_nested_identifier] = STATE(4122), + [sym_string] = STATE(2369), + [sym_formal_parameters] = STATE(4121), + [sym_nested_type_identifier] = STATE(2365), + [sym__type] = STATE(3451), + [sym_constructor_type] = STATE(3451), + [sym__primary_type] = STATE(3314), + [sym_template_literal_type] = STATE(2372), + [sym_infer_type] = STATE(3320), + [sym_conditional_type] = STATE(2372), + [sym_generic_type] = STATE(2372), + [sym_type_query] = STATE(2372), + [sym_index_type_query] = STATE(2372), + [sym_lookup_type] = STATE(2372), + [sym_literal_type] = STATE(2372), + [sym__number] = STATE(2371), + [sym_existential_type] = STATE(2372), + [sym_flow_maybe_type] = STATE(2372), + [sym_parenthesized_type] = STATE(2372), + [sym_predefined_type] = STATE(2372), + [sym_object_type] = STATE(2372), + [sym_type_parameters] = STATE(3795), + [sym_array_type] = STATE(2372), + [sym_tuple_type] = STATE(2372), + [sym_readonly_type] = STATE(3451), + [sym_union_type] = STATE(2372), + [sym_intersection_type] = STATE(2372), + [sym_function_type] = STATE(3451), [sym_identifier] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_typeof] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), [anon_sym_void] = ACTIONS(207), [anon_sym_DQUOTE] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1238), @@ -107440,7 +107884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1246), [sym_undefined] = ACTIONS(1246), [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), [anon_sym_boolean] = ACTIONS(207), @@ -107457,163 +107901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1220), 1, - anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_COLON, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(1258), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(153), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [93] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1254), 1, - anon_sym_EQ, - ACTIONS(1256), 1, - anon_sym_EQ_GT, - ACTIONS(2905), 1, - sym_identifier, - STATE(1212), 1, - sym_string, - STATE(1217), 1, - sym_nested_identifier, - STATE(1434), 1, - sym__module, - ACTIONS(153), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 26, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [182] = 12, + [0] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(179), 1, @@ -107624,15 +107912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(2721), 1, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 14, + ACTIONS(150), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107647,7 +107935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107669,87 +107957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_in, anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [271] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1893), 1, - anon_sym_COLON, - ACTIONS(2905), 1, - sym_identifier, - STATE(1212), 1, - sym_string, - STATE(1217), 1, - sym_nested_identifier, - STATE(1434), 1, - sym__module, - ACTIONS(153), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -107760,170 +107968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [362] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1889), 1, - anon_sym_COLON, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - anon_sym_DQUOTE, - ACTIONS(2533), 1, - anon_sym_SQUOTE, - STATE(125), 1, - sym_string, - STATE(126), 1, - sym_nested_identifier, - STATE(153), 1, - sym__module, - ACTIONS(153), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [453] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(2905), 1, - sym_identifier, - STATE(1212), 1, - sym_string, - STATE(1217), 1, - sym_nested_identifier, - STATE(1434), 1, - sym__module, - ACTIONS(153), 15, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [542] = 14, + [89] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -107934,173 +107989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_in, - ACTIONS(2016), 1, - anon_sym_of, - ACTIONS(2905), 1, - sym_identifier, - STATE(1212), 1, - sym_string, - STATE(1217), 1, - sym_nested_identifier, - STATE(1434), 1, - sym__module, - ACTIONS(153), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [635] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, - anon_sym_EQ, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(153), 15, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [724] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1889), 1, + ACTIONS(1899), 1, anon_sym_COLON, - ACTIONS(2535), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(594), 1, - sym_nested_identifier, - STATE(617), 1, + STATE(1228), 1, sym_string, - STATE(663), 1, + STATE(1229), 1, + sym_nested_identifier, + STATE(1462), 1, sym__module, - ACTIONS(153), 14, + ACTIONS(150), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -108115,7 +108014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108136,9 +108035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108149,36 +108046,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [815] = 13, + [180] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, ACTIONS(1250), 1, anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1893), 1, + ACTIONS(1895), 1, anon_sym_COLON, - ACTIONS(2535), 1, + ACTIONS(2537), 1, sym_identifier, - STATE(594), 1, + ACTIONS(2539), 1, + anon_sym_DQUOTE, + ACTIONS(2541), 1, + anon_sym_SQUOTE, + STATE(122), 1, sym_nested_identifier, - STATE(617), 1, + STATE(124), 1, sym_string, - STATE(663), 1, + STATE(144), 1, sym__module, - ACTIONS(153), 14, + ACTIONS(150), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -108193,7 +108092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108214,9 +108113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108227,41 +108124,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [906] = 14, + [271] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(1250), 1, + anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1736), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, - anon_sym_COLON, - ACTIONS(1742), 1, - anon_sym_LT, - ACTIONS(1751), 1, - anon_sym_QMARK, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1881), 1, - anon_sym_EQ, - ACTIONS(2907), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(153), 13, + STATE(1228), 1, + sym_string, + STATE(1229), 1, + sym_nested_identifier, + STATE(1462), 1, + sym__module, + ACTIONS(150), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -108272,7 +108169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108288,13 +108185,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), 24, + ACTIONS(118), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108305,38 +108201,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [998] = 12, + [360] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, + ACTIONS(83), 1, anon_sym_DQUOTE, - ACTIONS(181), 1, + ACTIONS(85), 1, anon_sym_SQUOTE, - ACTIONS(1267), 1, + ACTIONS(1250), 1, anon_sym_EQ, - ACTIONS(1269), 1, + ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(2721), 1, + ACTIONS(2011), 1, + anon_sym_in, + ACTIONS(2014), 1, + anon_sym_of, + ACTIONS(2913), 1, sym_identifier, - STATE(1244), 1, + STATE(1228), 1, sym_string, - STATE(1245), 1, + STATE(1229), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1462), 1, sym__module, - ACTIONS(153), 13, + ACTIONS(150), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -108346,7 +108249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108362,14 +108265,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), 26, + ACTIONS(118), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108380,42 +108280,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [1086] = 14, + [453] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(1250), 1, + anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1736), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1895), 1, anon_sym_COLON, - ACTIONS(1742), 1, - anon_sym_LT, - ACTIONS(1751), 1, - anon_sym_QMARK, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(1881), 1, - anon_sym_EQ, - ACTIONS(2907), 1, + ACTIONS(2543), 1, sym_identifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(153), 13, + STATE(596), 1, + sym_nested_identifier, + STATE(621), 1, + sym_string, + STATE(697), 1, + sym__module, + ACTIONS(150), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -108426,7 +108326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108442,13 +108342,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), 24, + ACTIONS(118), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108459,42 +108358,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1178] = 15, + [544] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, ACTIONS(179), 1, anon_sym_DQUOTE, ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(214), 1, - anon_sym_COMMA, - ACTIONS(1273), 1, + ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(2034), 1, + ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(2037), 1, - anon_sym_COLON, - ACTIONS(2721), 1, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 11, + ACTIONS(150), 15, + 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, @@ -108504,7 +108403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108525,9 +108424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108538,41 +108435,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1272] = 14, + [633] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(1250), 1, + anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1736), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1899), 1, anon_sym_COLON, - ACTIONS(1742), 1, - anon_sym_LT, - ACTIONS(1751), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, - anon_sym_EQ, - ACTIONS(2907), 1, + ACTIONS(2543), 1, sym_identifier, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(153), 13, + STATE(596), 1, + sym_nested_identifier, + STATE(621), 1, + sym_string, + STATE(697), 1, + sym__module, + ACTIONS(150), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -108583,7 +108481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108599,13 +108497,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), 24, + ACTIONS(118), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108616,38 +108513,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1364] = 12, + [724] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, + ACTIONS(83), 1, anon_sym_DQUOTE, - ACTIONS(181), 1, + ACTIONS(85), 1, anon_sym_SQUOTE, - ACTIONS(1269), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(1254), 1, anon_sym_EQ, - ACTIONS(2721), 1, + ACTIONS(1256), 1, + anon_sym_EQ_GT, + ACTIONS(2913), 1, sym_identifier, - STATE(1244), 1, + STATE(1228), 1, sym_string, - STATE(1245), 1, + STATE(1229), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1462), 1, sym__module, - ACTIONS(153), 13, + ACTIONS(150), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -108657,7 +108557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108678,9 +108578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108691,57 +108590,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [1452] = 3, + [813] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 24, - anon_sym_STAR, + ACTIONS(148), 1, + anon_sym_EQ_GT, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(181), 1, + anon_sym_SQUOTE, + ACTIONS(1220), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2911), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(1258), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(150), 11, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108757,26 +108653,12 @@ 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 24, + ACTIONS(118), 25, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108787,73 +108669,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2915), 37, + anon_sym_satisfies, + [906] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(181), 1, + anon_sym_SQUOTE, + ACTIONS(1303), 1, + anon_sym_EQ, + ACTIONS(1305), 1, + anon_sym_EQ_GT, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(150), 13, sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1590] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1736), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, - anon_sym_COLON, - ACTIONS(1742), 1, - anon_sym_LT, - ACTIONS(1751), 1, - anon_sym_QMARK, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(1881), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108869,29 +108728,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(153), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(118), 26, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108902,37 +108744,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [1679] = 12, + anon_sym_satisfies, + anon_sym_implements, + [994] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(124), 1, + anon_sym_RBRACK, ACTIONS(179), 1, anon_sym_DQUOTE, ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1273), 1, + ACTIONS(214), 1, + anon_sym_COMMA, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(2721), 1, + ACTIONS(2028), 1, + anon_sym_EQ, + ACTIONS(2031), 1, + anon_sym_COLON, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 13, + ACTIONS(150), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -108941,7 +108792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108962,9 +108813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -108975,37 +108824,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1766] = 12, + [1088] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, - anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2917), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_COLON, + ACTIONS(1752), 1, + anon_sym_LT, + ACTIONS(1755), 1, + anon_sym_QMARK, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(1887), 1, + anon_sym_EQ, + ACTIONS(2915), 1, sym_identifier, - STATE(2744), 1, - sym_nested_identifier, - STATE(2771), 1, - sym_string, - STATE(3116), 1, - sym__module, - ACTIONS(153), 13, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(150), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -109016,7 +108871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109032,14 +108887,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), 25, + ACTIONS(118), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109050,6 +108903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, @@ -109058,28 +108912,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [1853] = 13, + [1180] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1736), 1, + ACTIONS(1740), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1743), 1, anon_sym_COLON, - ACTIONS(1742), 1, + ACTIONS(1752), 1, anon_sym_LT, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_QMARK, - ACTIONS(1763), 1, + ACTIONS(1773), 1, anon_sym_RBRACE, - ACTIONS(1881), 1, + ACTIONS(1887), 1, anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(157), 15, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(150), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109095,29 +108965,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(153), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(118), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109128,34 +108981,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [1942] = 13, + anon_sym_satisfies, + [1272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1739), 1, - anon_sym_COLON, - ACTIONS(1751), 1, - anon_sym_QMARK, - ACTIONS(2921), 1, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(181), 1, + anon_sym_SQUOTE, + ACTIONS(1305), 1, + anon_sym_EQ_GT, + ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(2925), 1, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(150), 13, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2928), 1, - anon_sym_LT, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2933), 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109171,29 +109039,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(2923), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2919), 21, + ACTIONS(118), 26, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109204,53 +109055,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [2031] = 13, + anon_sym_satisfies, + anon_sym_implements, + [1360] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1726), 1, + ACTIONS(1730), 1, anon_sym_RBRACE, - ACTIONS(1736), 1, + ACTIONS(1740), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1743), 1, anon_sym_COLON, - ACTIONS(1742), 1, + ACTIONS(1752), 1, anon_sym_LT, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_QMARK, - ACTIONS(1881), 1, + ACTIONS(1887), 1, anon_sym_EQ, - STATE(3609), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 16, + ACTIONS(150), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, @@ -109260,16 +109101,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109280,23 +109135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [2120] = 3, + anon_sym_satisfies, + [1452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 24, + ACTIONS(2917), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109307,14 +109163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, anon_sym_QMARK, - ACTIONS(2937), 37, + ACTIONS(2919), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -109352,7 +109210,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2189] = 14, + [1521] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_EQ, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2921), 1, + sym_identifier, + STATE(2770), 1, + sym_nested_identifier, + STATE(2844), 1, + sym_string, + STATE(3200), 1, + sym__module, + ACTIONS(150), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [1608] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(124), 1, @@ -109363,19 +109296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(214), 1, anon_sym_COMMA, - ACTIONS(1273), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(2034), 1, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(2721), 1, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 11, + ACTIONS(150), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -109387,7 +109320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109408,9 +109341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109421,34 +109352,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [2280] = 12, + [1699] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, + anon_sym_COLON, + ACTIONS(1755), 1, + anon_sym_QMARK, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(2925), 1, + anon_sym_EQ, + ACTIONS(2929), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_EQ_GT, + ACTIONS(2936), 1, + anon_sym_LT, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2927), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + [1788] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1263), 1, anon_sym_EQ, ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(2529), 1, + ACTIONS(2537), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2539), 1, anon_sym_DQUOTE, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_SQUOTE, - STATE(125), 1, - sym_string, - STATE(126), 1, + STATE(122), 1, sym_nested_identifier, - STATE(153), 1, + STATE(124), 1, + sym_string, + STATE(144), 1, sym__module, - ACTIONS(153), 13, + ACTIONS(150), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -109462,7 +109471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109483,9 +109492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109496,34 +109503,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [2367] = 12, + [1875] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(85), 1, + ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(1263), 1, - anon_sym_EQ, ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(2905), 1, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(2783), 1, sym_identifier, - STATE(1212), 1, - sym_string, - STATE(1217), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1434), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 13, + ACTIONS(150), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -109537,7 +109546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109558,9 +109567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109571,49 +109578,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [2454] = 13, + [1962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1271), 1, + ACTIONS(2939), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1273), 1, - anon_sym_EQ_GT, - ACTIONS(2037), 1, - anon_sym_COLON, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(153), 12, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(2941), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + 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_BQUOTE, - ACTIONS(157), 15, + anon_sym_satisfies, + anon_sym_implements, + [2031] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1740), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_COLON, + ACTIONS(1752), 1, + anon_sym_LT, + ACTIONS(1755), 1, + anon_sym_QMARK, + ACTIONS(1887), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109629,14 +109691,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(118), 25, - anon_sym_STAR, + ACTIONS(150), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109647,48 +109723,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [2543] = 12, + [2120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(2943), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(153), 13, - sym__automatic_semicolon, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(2945), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + anon_sym_satisfies, + anon_sym_implements, + [2189] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1743), 1, + anon_sym_COLON, + ACTIONS(1755), 1, + anon_sym_QMARK, + ACTIONS(2925), 1, + anon_sym_EQ, + ACTIONS(2929), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_EQ_GT, + ACTIONS(2936), 1, + anon_sym_LT, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109704,14 +109833,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(118), 25, - anon_sym_STAR, + ACTIONS(2927), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109722,38 +109865,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [2630] = 13, + [2278] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(179), 1, anon_sym_DQUOTE, ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(1271), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(1273), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(2051), 1, - anon_sym_COLON, - ACTIONS(2721), 1, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 12, + ACTIONS(150), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -109764,7 +109905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109785,9 +109926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109798,25 +109937,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [2719] = 3, + [2365] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 24, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2613), 1, + anon_sym_STAR, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2625), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(2949), 1, + anon_sym_export, + ACTIONS(2954), 1, + anon_sym_async, + ACTIONS(2956), 1, + anon_sym_static, + ACTIONS(2958), 1, + anon_sym_readonly, + ACTIONS(2964), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2254), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(2633), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2951), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2960), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2962), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2499), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3873), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3875), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(2957), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2947), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109827,14 +110064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, anon_sym_QMARK, - ACTIONS(2941), 37, + ACTIONS(2968), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -109872,29 +110111,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2788] = 12, + [2567] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(179), 1, anon_sym_DQUOTE, ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(1273), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(2721), 1, + ACTIONS(1309), 1, + anon_sym_EQ_GT, + ACTIONS(2055), 1, + anon_sym_COLON, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 13, + ACTIONS(150), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -109905,7 +110145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109926,9 +110166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109939,102 +110177,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [2875] = 35, + [2656] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, ACTIONS(236), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2609), 1, + ACTIONS(2613), 1, anon_sym_STAR, - ACTIONS(2611), 1, + ACTIONS(2615), 1, anon_sym_LBRACE, - ACTIONS(2617), 1, - anon_sym_LPAREN, ACTIONS(2621), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2625), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(2945), 1, + ACTIONS(2949), 1, anon_sym_export, - ACTIONS(2950), 1, + ACTIONS(2954), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2956), 1, anon_sym_static, - ACTIONS(2954), 1, + ACTIONS(2958), 1, anon_sym_readonly, - ACTIONS(2960), 1, + ACTIONS(2964), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, STATE(2254), 1, sym_accessibility_modifier, - STATE(2263), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(2629), 2, + ACTIONS(2633), 2, sym_number, sym_private_property_identifier, - ACTIONS(2947), 2, + ACTIONS(2951), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2956), 2, + ACTIONS(2960), 2, anon_sym_get, anon_sym_set, - ACTIONS(2958), 3, + ACTIONS(2962), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2474), 3, + STATE(2499), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3711), 3, + STATE(3873), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4072), 3, + STATE(3875), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(2979), 6, + STATE(2897), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2943), 10, + ACTIONS(2947), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -110045,48 +110285,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3008] = 3, + [2789] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 24, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(1263), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(2964), 37, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(2913), 1, + sym_identifier, + STATE(1228), 1, + sym_string, + STATE(1229), 1, + sym_nested_identifier, + STATE(1462), 1, + sym__module, + ACTIONS(150), 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110102,26 +110334,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(118), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [3077] = 3, + [2876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 24, + ACTIONS(2970), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110132,14 +110379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, anon_sym_QMARK, - ACTIONS(2968), 37, + ACTIONS(2972), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -110177,115 +110426,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3146] = 35, + [2945] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(2609), 1, - anon_sym_STAR, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(2617), 1, + ACTIONS(1309), 1, + anon_sym_EQ_GT, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(150), 13, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(2621), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(2945), 1, - anon_sym_export, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_static, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(2960), 1, - anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2254), 1, - sym_accessibility_modifier, - STATE(2263), 1, - sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(2629), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2947), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2956), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2958), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2474), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3711), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(2934), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2943), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [3279] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [3032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 24, + ACTIONS(2974), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110296,14 +110520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, anon_sym_QMARK, - ACTIONS(2972), 37, + ACTIONS(2976), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -110341,28 +110567,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3348] = 13, + [3101] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1743), 1, anon_sym_COLON, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_QMARK, - ACTIONS(1765), 1, + ACTIONS(1769), 1, anon_sym_RBRACE, - ACTIONS(2921), 1, - anon_sym_EQ, ACTIONS(2925), 1, + anon_sym_EQ, + ACTIONS(2929), 1, anon_sym_LPAREN, - ACTIONS(2928), 1, - anon_sym_LT, - ACTIONS(2931), 1, + ACTIONS(2932), 1, anon_sym_EQ_GT, - STATE(3592), 1, + ACTIONS(2936), 1, + anon_sym_LT, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110378,7 +110604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 16, + ACTIONS(2927), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -110395,12 +110621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 21, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110411,37 +110636,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [3437] = 12, + [3190] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(1263), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(2535), 1, + ACTIONS(2031), 1, + anon_sym_COLON, + ACTIONS(2783), 1, sym_identifier, - STATE(594), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(617), 1, + STATE(1285), 1, sym_string, - STATE(663), 1, + STATE(1512), 1, sym__module, - ACTIONS(153), 13, - sym__automatic_semicolon, + ACTIONS(150), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -110450,7 +110677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110471,9 +110698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110484,36 +110709,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [3524] = 13, + [3279] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(1740), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, anon_sym_COLON, - ACTIONS(1751), 1, + ACTIONS(1752), 1, + anon_sym_LT, + ACTIONS(1755), 1, anon_sym_QMARK, - ACTIONS(1763), 1, + ACTIONS(1773), 1, anon_sym_RBRACE, - ACTIONS(2921), 1, + ACTIONS(1887), 1, anon_sym_EQ, - ACTIONS(2925), 1, - anon_sym_LPAREN, - ACTIONS(2928), 1, - anon_sym_LT, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2933), 15, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110529,7 +110756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 16, + ACTIONS(150), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -110546,12 +110773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110562,40 +110788,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [3613] = 5, + [3368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + ACTIONS(2978), 24, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110606,13 +110814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2923), 22, + anon_sym_QMARK, + ACTIONS(2980), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -110626,6 +110837,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -110635,17 +110861,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3685] = 3, + [3437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 23, - anon_sym_STAR, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(1263), 1, anon_sym_EQ, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(2543), 1, + sym_identifier, + STATE(596), 1, + sym_nested_identifier, + STATE(621), 1, + sym_string, + STATE(697), 1, + sym__module, + ACTIONS(150), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110656,26 +110926,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - ACTIONS(2515), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_satisfies, + [3524] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(1740), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + ACTIONS(1743), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1752), 1, + anon_sym_LT, + ACTIONS(1755), 1, + anon_sym_QMARK, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(1887), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110691,6 +110973,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(150), 16, + 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, @@ -110699,29 +110990,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3753] = 13, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + [3613] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(179), 1, anon_sym_DQUOTE, ACTIONS(181), 1, anon_sym_SQUOTE, - ACTIONS(216), 1, - anon_sym_EQ_GT, - ACTIONS(1261), 1, - anon_sym_COLON, - ACTIONS(1311), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(2721), 1, + ACTIONS(1315), 1, + anon_sym_EQ_GT, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 11, + ACTIONS(150), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -110733,7 +111043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110749,14 +111059,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), 25, + ACTIONS(118), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110767,53 +111076,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [3841] = 12, + [3699] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(181), 1, + anon_sym_SQUOTE, + ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(2980), 1, + ACTIONS(1315), 1, + anon_sym_EQ_GT, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(150), 11, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(2984), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(2988), 1, anon_sym_QMARK_DOT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110829,27 +111133,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(2919), 19, + ACTIONS(118), 26, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_of, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [3927] = 14, + anon_sym_satisfies, + [3785] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(179), 1, @@ -110860,19 +111171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2011), 1, anon_sym_in, - ACTIONS(2016), 1, + ACTIONS(2014), 1, anon_sym_of, - ACTIONS(2721), 1, + ACTIONS(2783), 1, sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, + STATE(1284), 1, sym_nested_identifier, - STATE(1410), 1, + STATE(1285), 1, + sym_string, + STATE(1512), 1, sym__module, - ACTIONS(153), 11, + ACTIONS(150), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -110884,7 +111195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110904,9 +111215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -110917,37 +111226,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [4017] = 12, + [3875] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(2986), 1, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(181), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, anon_sym_EQ_GT, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_COMMA, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(150), 11, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2933), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110963,61 +111285,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(2923), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2919), 18, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [4103] = 12, + anon_sym_satisfies, + [3963] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2982), 1, anon_sym_EQ, ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, anon_sym_LPAREN, - ACTIONS(3006), 1, + ACTIONS(2988), 1, anon_sym_DOT, - ACTIONS(3008), 1, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(2992), 1, anon_sym_QMARK_DOT, - STATE(2478), 1, + STATE(2489), 1, sym_arguments, - ACTIONS(2982), 2, + ACTIONS(2994), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2978), 7, + ACTIONS(2984), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -111025,7 +111337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(2923), 10, + ACTIONS(2927), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -111036,7 +111348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111052,13 +111364,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(2919), 20, + ACTIONS(2923), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111067,42 +111377,111 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4189] = 16, + [4049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_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(2999), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + ACTIONS(2927), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - ACTIONS(3010), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [4121] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(2998), 1, anon_sym_EQ, - ACTIONS(3017), 1, + ACTIONS(3005), 1, anon_sym_COLON, + ACTIONS(3007), 1, + anon_sym_LBRACK, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, ACTIONS(3019), 1, anon_sym_QMARK, - STATE(2365), 1, + ACTIONS(3022), 1, + anon_sym_extends, + STATE(2404), 1, sym_type_arguments, - STATE(3782), 1, + STATE(3870), 1, sym_type_annotation, - ACTIONS(2996), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3013), 2, + ACTIONS(3001), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2923), 12, + ACTIONS(3013), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -111115,7 +111494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111131,12 +111510,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(2919), 19, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111145,44 +111523,36 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4283] = 12, + [4215] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1313), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(1315), 1, + ACTIONS(2990), 1, anon_sym_EQ_GT, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(153), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3010), 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_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, + anon_sym_extends, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3007), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3013), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111198,64 +111568,72 @@ 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), 26, - anon_sym_STAR, + ACTIONS(2927), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 18, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [4369] = 13, + [4301] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(3010), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3022), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, anon_sym_DOT, - STATE(2561), 1, - sym_type_arguments, - ACTIONS(2996), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3013), 2, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3002), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2923), 12, + ACTIONS(2994), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + 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, @@ -111264,7 +111642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111280,12 +111658,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(2919), 19, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111294,23 +111670,23 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [4457] = 3, + [4387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 23, + ACTIONS(2513), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111321,13 +111697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2503), 37, + ACTIONS(2515), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -111365,38 +111743,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4525] = 12, + [4455] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - anon_sym_EQ, - ACTIONS(1315), 1, + ACTIONS(2990), 1, anon_sym_EQ_GT, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(153), 11, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(2998), 1, + anon_sym_EQ, + ACTIONS(3007), 1, anon_sym_LBRACK, + ACTIONS(3030), 1, anon_sym_DOT, + ACTIONS(3033), 1, + anon_sym_LT, + STATE(2603), 1, + sym_type_arguments, + ACTIONS(3001), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3013), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3022), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2927), 12, + 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_BQUOTE, - ACTIONS(157), 15, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111412,50 +111798,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), 26, + ACTIONS(2923), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [4611] = 9, + [4543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(1220), 1, + ACTIONS(2509), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1377), 1, - anon_sym_extends, - ACTIONS(3028), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3031), 3, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(157), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + ACTIONS(2511), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, @@ -111471,16 +111874,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(153), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -111489,48 +111882,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [4690] = 8, + anon_sym_implements, + [4611] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(151), 1, + ACTIONS(3038), 1, anon_sym_EQ_GT, - ACTIONS(572), 1, - anon_sym_QMARK, - ACTIONS(124), 5, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(153), 14, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2994), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -111539,7 +111920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111555,47 +111936,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 22, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [4767] = 8, + [4696] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, - anon_sym_EQ, - ACTIONS(3039), 1, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(181), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, anon_sym_EQ_GT, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(3037), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2923), 14, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(2783), 1, + sym_identifier, + STATE(1284), 1, + sym_nested_identifier, + STATE(1285), 1, + sym_string, + STATE(1512), 1, + sym__module, + ACTIONS(150), 11, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -111604,11 +111985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111624,13 +112003,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(2919), 22, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111641,28 +112019,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [4844] = 8, + anon_sym_satisfies, + [4781] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(211), 1, anon_sym_EQ, - ACTIONS(3039), 1, + ACTIONS(216), 1, anon_sym_EQ_GT, - ACTIONS(3045), 1, + ACTIONS(628), 1, anon_sym_QMARK, - ACTIONS(3043), 5, + ACTIONS(214), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2923), 14, + ACTIONS(150), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -111677,7 +112059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111693,13 +112075,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(2919), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111710,43 +112090,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [4921] = 15, + [4858] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + ACTIONS(3010), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, anon_sym_extends, - ACTIONS(3034), 1, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(3039), 1, + ACTIONS(3038), 1, anon_sym_EQ_GT, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(3047), 1, - anon_sym_RPAREN, - STATE(2365), 1, + STATE(2404), 1, sym_type_arguments, - ACTIONS(2996), 2, + ACTIONS(3007), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3013), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3037), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2923), 12, + ACTIONS(2927), 15, + 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, @@ -111756,7 +112136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111772,12 +112152,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(2919), 19, + ACTIONS(2923), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -111786,114 +112164,34 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5012] = 12, + [4943] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - anon_sym_SQUOTE, ACTIONS(216), 1, anon_sym_EQ_GT, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(2721), 1, - sym_identifier, - STATE(1244), 1, - sym_string, - STATE(1245), 1, - sym_nested_identifier, - STATE(1410), 1, - sym__module, - ACTIONS(153), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [5097] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - ACTIONS(3050), 1, - anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_EQ_GT, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(2990), 2, + ACTIONS(2005), 1, + anon_sym_QMARK, + ACTIONS(1261), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 15, - sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(150), 14, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -111903,7 +112201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111919,50 +112217,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(2919), 18, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5182] = 9, + [5020] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(151), 1, + ACTIONS(2932), 1, anon_sym_EQ_GT, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(3040), 1, + anon_sym_EQ, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3031), 2, + anon_sym_extends, + ACTIONS(2994), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1377), 6, + ACTIONS(2927), 13, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(153), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -111971,7 +112277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111987,13 +112293,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(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112002,43 +112305,31 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5261] = 8, + [5105] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - ACTIONS(3010), 1, + ACTIONS(1220), 1, anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(3054), 5, + ACTIONS(1403), 1, + anon_sym_extends, + ACTIONS(3042), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2923), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(3045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112054,58 +112345,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + ACTIONS(150), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5338] = 12, + [5184] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(3050), 1, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(3052), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 3, + ACTIONS(628), 1, + anon_sym_QMARK, + ACTIONS(124), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 13, - sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(150), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112114,7 +112413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112130,55 +112429,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(2919), 19, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5423] = 12, + [5261] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + ACTIONS(3007), 1, + anon_sym_LBRACK, + ACTIONS(3010), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, anon_sym_extends, - ACTIONS(3057), 1, + ACTIONS(3048), 1, anon_sym_EQ, - STATE(2365), 1, + ACTIONS(3053), 1, + anon_sym_RPAREN, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(2404), 1, sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2996), 3, - anon_sym_GT, + ACTIONS(3013), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 15, - sym__automatic_semicolon, + ACTIONS(3051), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2927), 12, 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, @@ -112188,7 +112492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112204,11 +112508,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(2919), 18, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112217,40 +112521,45 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5508] = 12, + [5352] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2986), 1, + ACTIONS(2990), 1, anon_sym_EQ_GT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2982), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2978), 4, - anon_sym_RBRACE, + ACTIONS(2998), 1, + anon_sym_EQ, + ACTIONS(3001), 1, anon_sym_RPAREN, + ACTIONS(3007), 1, anon_sym_LBRACK, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, anon_sym_extends, - ACTIONS(2923), 12, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3013), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3060), 2, anon_sym_COMMA, anon_sym_COLON, + ACTIONS(2927), 12, + 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, @@ -112259,7 +112568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112275,13 +112584,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(2919), 20, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112290,44 +112597,41 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5593] = 15, + [5443] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, - anon_sym_EQ_GT, + ACTIONS(2982), 1, + anon_sym_EQ, ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + anon_sym_EQ_GT, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - ACTIONS(3010), 1, - anon_sym_EQ, - ACTIONS(3013), 1, - anon_sym_RPAREN, - ACTIONS(3041), 1, - anon_sym_QMARK, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(2996), 2, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2994), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3054), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2923), 12, + ACTIONS(2984), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2927), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112336,7 +112640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112352,12 +112656,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(2919), 19, + ACTIONS(2923), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112366,41 +112669,36 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [5684] = 12, + [5528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(3057), 1, + ACTIONS(2996), 1, anon_sym_EQ, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 3, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + ACTIONS(3065), 1, + anon_sym_QMARK, + ACTIONS(3063), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 13, - sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112409,7 +112707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112425,42 +112723,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(2919), 19, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5769] = 8, + [5605] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(3048), 1, anon_sym_EQ, - ACTIONS(216), 1, + ACTIONS(3056), 1, anon_sym_EQ_GT, - ACTIONS(572), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(214), 5, + ACTIONS(3051), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(153), 14, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -112475,7 +112776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112491,13 +112792,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), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112508,32 +112807,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5846] = 8, + [5682] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(216), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(1995), 1, - anon_sym_QMARK, - ACTIONS(1261), 5, + ACTIONS(148), 1, + anon_sym_EQ_GT, + ACTIONS(3042), 1, + anon_sym_LBRACK, + ACTIONS(3045), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1403), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(153), 14, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(150), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -112544,7 +112848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112560,69 +112864,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 22, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [5923] = 9, + [5761] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1252), 1, + ACTIONS(2932), 1, anon_sym_EQ_GT, - ACTIONS(1377), 1, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, anon_sym_extends, - ACTIONS(3028), 2, + ACTIONS(3040), 1, + anon_sym_EQ, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3007), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3031), 3, + ACTIONS(3013), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 16, + ACTIONS(2927), 15, 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, @@ -112632,12 +112923,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 19, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112646,26 +112951,29 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6001] = 7, + [5846] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(2998), 1, anon_sym_EQ, - ACTIONS(3041), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3037), 5, + ACTIONS(3060), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2923), 14, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -112680,7 +112988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112696,13 +113004,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(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -112713,36 +113019,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6075] = 11, + [5923] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(3048), 1, anon_sym_EQ, - ACTIONS(216), 1, - anon_sym_EQ_GT, - ACTIONS(572), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3028), 1, - anon_sym_LBRACK, - ACTIONS(214), 2, + ACTIONS(3051), 5, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1377), 2, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3031), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 13, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -112753,7 +113055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112769,64 +113071,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 20, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6157] = 12, + [5997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(3059), 1, + ACTIONS(1250), 1, anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(1252), 1, anon_sym_EQ_GT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 3, + ACTIONS(1895), 1, + anon_sym_COLON, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(150), 14, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112842,64 +113136,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(2919), 19, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [6241] = 12, + anon_sym_satisfies, + [6073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3065), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(3002), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2996), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 14, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112915,54 +113185,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 18, + ACTIONS(150), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6325] = 12, + [6145] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, ACTIONS(3067), 1, anon_sym_EQ, ACTIONS(3069), 1, anon_sym_EQ_GT, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(3002), 2, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2996), 3, + ACTIONS(2994), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 14, + ACTIONS(2927), 12, sym__ternary_qmark, anon_sym_as, - 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, @@ -112971,7 +113264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112987,11 +113280,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(2919), 18, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113000,38 +113292,39 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6409] = 14, + [6229] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(2990), 1, + ACTIONS(3007), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + ACTIONS(3010), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - ACTIONS(3043), 1, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + ACTIONS(3063), 1, anon_sym_COLON, - STATE(2365), 1, + STATE(2404), 1, sym_type_arguments, - ACTIONS(2996), 2, + ACTIONS(3013), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3071), 2, + ACTIONS(3022), 3, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2923), 12, + anon_sym_extends, + ACTIONS(2927), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -113044,7 +113337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113060,12 +113353,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(2919), 19, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113074,39 +113366,38 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6497] = 12, + [6315] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - ACTIONS(3059), 1, + ACTIONS(211), 1, anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(216), 1, anon_sym_EQ_GT, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_COMMA, + ACTIONS(628), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(2996), 3, - anon_sym_GT, + ACTIONS(214), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1403), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3045), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 14, + ACTIONS(150), 13, 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, @@ -113116,8 +113407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113133,11 +113423,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(2919), 18, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113146,40 +113436,42 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6581] = 13, + [6397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2990), 1, + ACTIONS(3007), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + ACTIONS(3010), 1, anon_sym_DOT, - ACTIONS(3039), 1, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3067), 1, + anon_sym_EQ, + ACTIONS(3069), 1, anon_sym_EQ_GT, - ACTIONS(3043), 1, - anon_sym_COLON, - STATE(2365), 1, + STATE(2404), 1, sym_type_arguments, - ACTIONS(2996), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3002), 3, + ACTIONS(3022), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(2923), 12, + ACTIONS(3013), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -113189,7 +113481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113205,12 +113497,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(2919), 19, + ACTIONS(2923), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113219,53 +113509,40 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [6667] = 9, + [6481] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(3071), 1, anon_sym_EQ, - ACTIONS(1256), 1, + ACTIONS(3073), 1, anon_sym_EQ_GT, - ACTIONS(1377), 1, - anon_sym_extends, - ACTIONS(3028), 2, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3031), 3, + anon_sym_extends, + ACTIONS(2994), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 16, - sym__automatic_semicolon, + ACTIONS(2927), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113274,34 +113551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [6745] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, - anon_sym_EQ, - ACTIONS(157), 15, + anon_sym_implements, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113317,66 +113568,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(153), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6817] = 8, + [6565] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(2998), 1, anon_sym_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1889), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(153), 14, - sym__automatic_semicolon, + anon_sym_RBRACK, + ACTIONS(2927), 14, 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, @@ -113384,9 +113612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113402,14 +113632,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), 25, + ACTIONS(2923), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113420,38 +113647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [6893] = 11, + [6639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(572), 1, + ACTIONS(3065), 1, anon_sym_QMARK, - ACTIONS(3028), 1, - anon_sym_LBRACK, - ACTIONS(124), 2, + ACTIONS(3063), 5, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1377), 2, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3031), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 13, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113462,7 +113683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113478,55 +113699,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(118), 20, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [6975] = 12, + [6713] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, + ACTIONS(3007), 1, + anon_sym_LBRACK, + ACTIONS(3010), 1, anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(3067), 1, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_EQ_GT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 3, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3022), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2982), 3, + ACTIONS(3013), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 12, + ACTIONS(2927), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113535,7 +113759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113551,12 +113775,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(2919), 19, + ACTIONS(2923), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113565,36 +113787,37 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [7059] = 12, + [6797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(3024), 1, anon_sym_LPAREN, - ACTIONS(2984), 1, + ACTIONS(3026), 1, anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(3028), 1, anon_sym_QMARK_DOT, - ACTIONS(3063), 1, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(3065), 1, + ACTIONS(3077), 1, anon_sym_EQ_GT, - STATE(2348), 1, + STATE(2360), 1, sym_arguments, - ACTIONS(2978), 3, + ACTIONS(2984), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2982), 3, + ACTIONS(2994), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 12, + ACTIONS(2927), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -113607,7 +113830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113623,12 +113846,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(2919), 19, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113637,20 +113858,22 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [7143] = 6, + [6881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2986), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(1220), 1, + anon_sym_EQ, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113666,7 +113889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 19, + ACTIONS(150), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -113686,13 +113909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113703,30 +113924,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7215] = 7, + [6953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3045), 1, - anon_sym_QMARK, - ACTIONS(3043), 5, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2927), 19, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2923), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113737,7 +113975,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [7025] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + anon_sym_EQ, + ACTIONS(1256), 1, + anon_sym_EQ_GT, + ACTIONS(1403), 1, + anon_sym_extends, + ACTIONS(3042), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113753,56 +114030,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + ACTIONS(150), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7289] = 12, + [7103] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2986), 1, + ACTIONS(2990), 1, anon_sym_EQ_GT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2982), 3, + ACTIONS(3007), 1, + anon_sym_LBRACK, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, + anon_sym_extends, + ACTIONS(3063), 1, + anon_sym_COLON, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3013), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(2978), 4, + ACTIONS(3079), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2923), 10, + ACTIONS(2927), 12, 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, @@ -113811,7 +114105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113827,13 +114121,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(2919), 20, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113842,24 +114134,25 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [7373] = 8, + [7191] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 1, anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1893), 1, + ACTIONS(1899), 1, anon_sym_COLON, - ACTIONS(2907), 1, + ACTIONS(2915), 1, sym_identifier, - ACTIONS(153), 14, + ACTIONS(150), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -113874,7 +114167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113895,9 +114188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -113908,22 +114199,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - [7449] = 6, + [7267] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(2986), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(628), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_LBRACK, + ACTIONS(124), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1403), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3045), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(150), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113939,16 +114259,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 19, + 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_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, + anon_sym_DASH_DASH, + [7349] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, + anon_sym_extends, + ACTIONS(3071), 1, + anon_sym_EQ, + ACTIONS(3073), 1, + anon_sym_EQ_GT, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3007), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3013), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + [7433] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_EQ, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(1403), 1, + anon_sym_extends, + ACTIONS(3042), 2, anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(150), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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, @@ -113959,37 +114401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7521] = 6, + [7511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, + ACTIONS(2990), 1, anon_sym_EQ_GT, - ACTIONS(1220), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114005,7 +114444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 19, + ACTIONS(2927), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -114025,13 +114464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114042,32 +114479,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7593] = 7, + [7583] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3041), 1, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2994), 3, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - ACTIONS(3054), 5, + ACTIONS(2984), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2923), 14, + anon_sym_extends, + ACTIONS(2927), 10, 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, @@ -114076,7 +114522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114092,39 +114538,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + ACTIONS(2923), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7667] = 7, + [7667] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_COLON, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2994), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2984), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2927), 10, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114140,58 +114609,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 17, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7740] = 3, + [7750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 23, + ACTIONS(2943), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114202,13 +114649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2964), 34, + ACTIONS(2945), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -114243,38 +114692,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [7805] = 6, + [7815] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(1263), 1, anon_sym_EQ, - ACTIONS(1252), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 18, + ACTIONS(3042), 1, + anon_sym_LBRACK, + ACTIONS(1403), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(150), 15, 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, @@ -114285,13 +114724,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_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, + anon_sym_DASH_DASH, + [7892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114302,20 +114779,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7876] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(2515), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -114331,14 +114814,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(2923), 18, - sym__automatic_semicolon, - 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_BQUOTE, + anon_sym_satisfies, + [7957] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(148), 1, + anon_sym_EQ_GT, + ACTIONS(1220), 1, + anon_sym_EQ, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1258), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(150), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -114350,13 +114850,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114367,31 +114881,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [7947] = 10, + [8032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - ACTIONS(1379), 1, - anon_sym_QMARK, - ACTIONS(3028), 1, + ACTIONS(1220), 1, + anon_sym_EQ, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1403), 1, + anon_sym_extends, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(3031), 2, + ACTIONS(3045), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1377), 3, + ACTIONS(3083), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(153), 13, + ACTIONS(150), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -114405,7 +114922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114425,9 +114942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114436,31 +114951,40 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [8026] = 8, + [8113] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(1220), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_COLON, - ACTIONS(1258), 3, - anon_sym_COMMA, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3022), 1, + anon_sym_extends, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3007), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(153), 14, + anon_sym_LBRACK, + ACTIONS(3013), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 13, 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, @@ -114470,7 +114994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114486,40 +115010,35 @@ 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), 22, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [8101] = 3, + [8196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 23, + ACTIONS(2970), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114530,13 +115049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2937), 34, + ACTIONS(2972), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -114571,42 +115092,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [8166] = 12, + [8261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2978), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_extends, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(2990), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(2996), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(2923), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + ACTIONS(2980), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114622,34 +115146,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(2919), 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_BQUOTE, + anon_sym_satisfies, + [8326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2939), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_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_DASH_DASH, - [8249] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(2941), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -114665,16 +115208,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(2923), 18, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8391] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3007), 1, + anon_sym_LBRACK, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3087), 1, + anon_sym_EQ, + ACTIONS(3089), 1, + anon_sym_EQ_GT, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3022), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3013), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 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, @@ -114684,37 +115252,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [8320] = 6, + [8474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114730,11 +115308,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(2923), 18, + ACTIONS(2927), 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, @@ -114749,13 +115328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114766,18 +115343,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8391] = 5, + [8543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2932), 1, + anon_sym_EQ_GT, + ACTIONS(3040), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(3091), 1, + anon_sym_in, + ACTIONS(3094), 1, + anon_sym_of, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114793,14 +115378,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(2923), 19, + ACTIONS(2927), 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, @@ -114813,13 +115396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114830,91 +115410,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8460] = 12, + [8618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(3039), 1, - anon_sym_EQ_GT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2982), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2978), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2923), 10, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 20, + ACTIONS(2974), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8543] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, - anon_sym_EQ, - ACTIONS(157), 15, + ACTIONS(2976), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, @@ -114930,17 +115472,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(153), 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114949,40 +115480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [8614] = 3, + [8683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 23, + ACTIONS(2917), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -114993,13 +115499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2941), 34, + ACTIONS(2919), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115034,16 +115542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [8679] = 7, + [8748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - anon_sym_COLON, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, + ACTIONS(1250), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(2011), 1, + anon_sym_in, + ACTIONS(3096), 1, + anon_sym_of, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115059,7 +115569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 17, + ACTIONS(150), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115077,13 +115587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115094,23 +115601,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8752] = 3, + [8823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 23, - anon_sym_STAR, + ACTIONS(2982), 1, anon_sym_EQ, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2927), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115121,24 +115665,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2911), 34, - sym__automatic_semicolon, + [8892] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + anon_sym_EQ, + ACTIONS(148), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + anon_sym_QMARK, + ACTIONS(3042), 1, + anon_sym_LBRACK, + ACTIONS(3045), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1403), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(150), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115154,24 +115721,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8817] = 7, + 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_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, + anon_sym_DASH_DASH, + [8971] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 1, anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1893), 1, - anon_sym_COLON, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115187,11 +115765,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(153), 17, + ACTIONS(150), 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, @@ -115209,52 +115788,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [9042] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(3087), 1, + anon_sym_EQ, + ACTIONS(3089), 1, + anon_sym_EQ_GT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2994), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [8890] = 12, + [9125] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, - anon_sym_DOT, - ACTIONS(3075), 1, + ACTIONS(1303), 1, anon_sym_EQ, - ACTIONS(3077), 1, + ACTIONS(1305), 1, anon_sym_EQ_GT, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(3002), 2, - anon_sym_COMMA, + ACTIONS(1403), 1, anon_sym_extends, - ACTIONS(2996), 3, + ACTIONS(3042), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3045), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 13, + ACTIONS(150), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -115264,7 +115909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + anon_sym_implements, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115280,11 +115926,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(2919), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115293,22 +115938,24 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [8973] = 7, + [9202] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 1, anon_sym_EQ, ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(1889), 1, + ACTIONS(1895), 1, anon_sym_COLON, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115324,7 +115971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 17, + ACTIONS(150), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115346,9 +115993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115359,18 +116004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9046] = 5, + [9275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(1254), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(1256), 1, + anon_sym_EQ_GT, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115386,16 +116035,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(2923), 19, + ACTIONS(150), 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_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -115406,13 +116054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115423,51 +116069,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9115] = 3, + [9346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 23, - anon_sym_STAR, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(1311), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(2968), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_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(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115483,6 +116100,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(150), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -115491,17 +116119,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9180] = 3, + ACTIONS(118), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [9417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 23, + ACTIONS(2966), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115512,13 +116161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2972), 34, + ACTIONS(2968), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115553,18 +116204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [9245] = 8, + [9482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1252), 1, + ACTIONS(1899), 1, + anon_sym_COLON, + ACTIONS(2932), 1, anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_in, - ACTIONS(3079), 1, - anon_sym_of, - ACTIONS(157), 15, + ACTIONS(3040), 1, + anon_sym_EQ, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115580,7 +116229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 17, + ACTIONS(2927), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -115598,12 +116247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115614,24 +116262,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9320] = 8, + [9555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(3057), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(3081), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(2933), 15, + ACTIONS(3038), 1, + anon_sym_EQ_GT, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115647,12 +116293,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(2923), 17, + ACTIONS(2927), 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, @@ -115665,12 +116312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 21, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115681,34 +116327,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9395] = 9, + [9626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(3028), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(1377), 2, + ACTIONS(1403), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3031), 3, + ACTIONS(3045), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(153), 15, - sym__automatic_semicolon, + ACTIONS(150), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -115719,7 +116367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115739,8 +116387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115749,20 +116395,24 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [9472] = 6, + [9703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, + ACTIONS(1895), 1, + anon_sym_COLON, + ACTIONS(2932), 1, anon_sym_EQ_GT, - ACTIONS(2974), 1, + ACTIONS(3040), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115778,12 +116428,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(2923), 18, + ACTIONS(2927), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -115797,13 +116446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115814,45 +116461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9543] = 9, + [9776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1269), 1, + ACTIONS(2932), 1, anon_sym_EQ_GT, - ACTIONS(1377), 1, - anon_sym_extends, - ACTIONS(3028), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3031), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 15, - 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(157), 15, + ACTIONS(3040), 1, + anon_sym_EQ, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115868,34 +116492,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(2927), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9620] = 6, + [9847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 1, + ACTIONS(2932), 1, anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115911,13 +116557,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(153), 18, + ACTIONS(2927), 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, @@ -115930,13 +116576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -115947,51 +116591,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [9691] = 3, + [9918] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 23, - anon_sym_STAR, + ACTIONS(1250), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(2503), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_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(1252), 1, + anon_sym_EQ_GT, + ACTIONS(1899), 1, + anon_sym_COLON, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116007,37 +116624,14 @@ 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_BQUOTE, - anon_sym_satisfies, - [9756] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(1220), 1, - anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_COLON, - ACTIONS(1377), 1, - anon_sym_extends, - ACTIONS(3028), 1, - anon_sym_LBRACK, - ACTIONS(3031), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3086), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(153), 13, + ACTIONS(150), 17, + 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, @@ -116048,54 +116642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [9837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 23, + ACTIONS(118), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116106,55 +116657,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2915), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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_BQUOTE, - anon_sym_satisfies, - [9902] = 6, + [9991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, - anon_sym_EQ, ACTIONS(1256), 1, anon_sym_EQ_GT, - ACTIONS(157), 15, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116170,7 +116688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 18, + ACTIONS(150), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -116193,9 +116711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116206,94 +116722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [9973] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_EQ_GT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2982), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2923), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [10056] = 3, + [10062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 23, + ACTIONS(2509), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116304,13 +116749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - ACTIONS(2515), 34, + ACTIONS(2511), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -116345,39 +116792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [10121] = 9, + [10127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 1, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(1273), 1, + ACTIONS(3038), 1, anon_sym_EQ_GT, - ACTIONS(3028), 1, - anon_sym_LBRACK, - ACTIONS(1377), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3031), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 15, - sym__ternary_qmark, - anon_sym_as, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116393,22 +116815,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(2927), 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, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, @@ -116422,16 +116866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(3031), 2, + ACTIONS(3045), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1377), 3, + ACTIONS(1403), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(153), 13, + ACTIONS(150), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -116445,7 +116889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116465,9 +116909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116476,20 +116918,45 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [10277] = 6, + [10277] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(3051), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(3098), 1, + anon_sym_EQ, + ACTIONS(3101), 1, + anon_sym_in, + ACTIONS(3103), 1, + anon_sym_COLON, + ACTIONS(2927), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116505,31 +116972,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(2923), 17, - 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2919), 22, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116540,29 +116986,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10347] = 7, + [10355] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_COLON, - ACTIONS(3090), 3, + ACTIONS(3007), 1, + anon_sym_LBRACK, + ACTIONS(3010), 1, + anon_sym_DOT, + ACTIONS(3016), 1, + anon_sym_LT, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3022), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2923), 14, + anon_sym_extends, + ACTIONS(3013), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2927), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -116572,7 +117029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116588,37 +117045,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(2919), 22, + ACTIONS(2923), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [10419] = 6, + [10437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 1, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(1269), 1, - anon_sym_EQ_GT, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116634,12 +117085,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(153), 17, + ACTIONS(2927), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -116651,14 +117104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116669,33 +117119,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10489] = 9, + [10505] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_EQ, - ACTIONS(1315), 1, - anon_sym_EQ_GT, - ACTIONS(3028), 1, - anon_sym_LBRACK, - ACTIONS(1377), 2, + ACTIONS(124), 1, + anon_sym_RBRACK, + ACTIONS(214), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3031), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 14, + ACTIONS(1309), 1, + anon_sym_EQ_GT, + ACTIONS(2028), 1, + anon_sym_EQ, + ACTIONS(2031), 1, + anon_sym_COLON, + ACTIONS(150), 14, 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, @@ -116706,7 +117155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116722,50 +117171,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(118), 19, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10565] = 12, + [10581] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(2980), 1, + ACTIONS(3024), 1, anon_sym_LPAREN, - ACTIONS(2984), 1, + ACTIONS(3026), 1, anon_sym_DOT, - ACTIONS(2988), 1, + ACTIONS(3028), 1, anon_sym_QMARK_DOT, - ACTIONS(3039), 1, + ACTIONS(3056), 1, anon_sym_EQ_GT, - STATE(2348), 1, + STATE(2360), 1, sym_arguments, - ACTIONS(2978), 3, + ACTIONS(2984), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2982), 3, + ACTIONS(2994), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 10, + ACTIONS(2927), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -116776,7 +117228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116792,12 +117244,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(2919), 19, + ACTIONS(2923), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116806,22 +117256,41 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [10647] = 7, + [10663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(3081), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(2933), 15, + ACTIONS(3063), 1, + anon_sym_COLON, + ACTIONS(3105), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2927), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116837,30 +117306,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(2923), 17, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2919), 21, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116871,46 +117321,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10719] = 12, + [10735] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(1263), 1, anon_sym_EQ, - ACTIONS(2980), 1, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(150), 13, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(2984), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(2988), 1, anon_sym_QMARK_DOT, - ACTIONS(3039), 1, - anon_sym_EQ_GT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2982), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2978), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2923), 10, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116926,35 +117368,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(2919), 20, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [10801] = 6, + anon_sym_satisfies, + [10807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(3073), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116970,7 +117417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 17, + ACTIONS(2927), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116988,13 +117435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117005,100 +117450,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [10871] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_AT, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - ACTIONS(3095), 12, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - ACTIONS(3093), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [10941] = 7, + [10877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1315), 1, anon_sym_EQ_GT, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(153), 13, - sym__automatic_semicolon, + ACTIONS(3042), 1, + anon_sym_LBRACK, + ACTIONS(1403), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(150), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - ACTIONS(157), 15, + anon_sym_satisfies, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117114,38 +117505,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(118), 25, + ACTIONS(118), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [11013] = 5, + [10953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(1303), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(1305), 1, + anon_sym_EQ_GT, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117161,14 +117548,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(2923), 18, - sym__automatic_semicolon, + ACTIONS(150), 17, 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, @@ -117180,13 +117565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + anon_sym_implements, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117197,84 +117581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11081] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(3104), 1, - anon_sym_DOT, - STATE(1159), 1, - sym_arguments, - ACTIONS(3102), 12, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3100), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [11151] = 6, + [11023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, + ACTIONS(1305), 1, anon_sym_EQ_GT, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117290,7 +117612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 17, + ACTIONS(150), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117312,9 +117634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117325,36 +117645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11221] = 7, + [11093] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, + ACTIONS(3040), 1, anon_sym_EQ, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(3106), 1, - sym_identifier, - ACTIONS(153), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(157), 15, + ACTIONS(3091), 1, + anon_sym_in, + ACTIONS(3094), 1, + anon_sym_of, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117370,14 +117678,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(118), 25, - anon_sym_STAR, + ACTIONS(2927), 17, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 21, + anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117388,34 +117710,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - [11293] = 9, + [11165] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, - anon_sym_EQ_GT, - ACTIONS(1220), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(1377), 1, - anon_sym_extends, - ACTIONS(3028), 2, + ACTIONS(2990), 1, + anon_sym_EQ_GT, + ACTIONS(3105), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3031), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 14, + anon_sym_RBRACK, + ACTIONS(2927), 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, @@ -117426,7 +117744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117442,47 +117760,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 20, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11369] = 10, + [11237] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, + ACTIONS(148), 1, anon_sym_EQ_GT, - ACTIONS(3108), 1, + ACTIONS(1220), 1, anon_sym_EQ, - ACTIONS(3111), 1, - anon_sym_in, - ACTIONS(3113), 1, - anon_sym_COLON, - ACTIONS(2923), 14, + ACTIONS(1403), 1, + anon_sym_extends, + ACTIONS(3042), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3045), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(150), 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, @@ -117493,7 +117813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117509,57 +117829,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 21, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_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_DASH_DASH, - [11447] = 9, + [11313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(214), 1, - anon_sym_COMMA, - ACTIONS(1273), 1, - anon_sym_EQ_GT, - ACTIONS(2034), 1, - anon_sym_EQ, - ACTIONS(2037), 1, - anon_sym_COLON, - ACTIONS(153), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3024), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3112), 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, + STATE(1160), 1, + sym_arguments, + ACTIONS(3110), 12, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(157), 15, + sym_number, + anon_sym_AT, + ACTIONS(3108), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [11383] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, + anon_sym_EQ, + ACTIONS(3073), 1, + anon_sym_EQ_GT, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117575,43 +117937,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), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [11523] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(2986), 1, - anon_sym_EQ_GT, - ACTIONS(3090), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2923), 14, + ACTIONS(2927), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -117624,29 +117954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + anon_sym_implements, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117657,39 +117970,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11595] = 12, + [11453] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_LT, - ACTIONS(2999), 1, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, anon_sym_DOT, - ACTIONS(3039), 1, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(3056), 1, anon_sym_EQ_GT, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(3002), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2996), 3, - anon_sym_GT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2994), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2923), 12, + ACTIONS(2984), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2927), 10, 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, @@ -117698,7 +118011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117714,11 +118027,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(2919), 18, + ACTIONS(2923), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117727,18 +118040,20 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, - [11677] = 5, + [11535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3040), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117754,7 +118069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 18, + ACTIONS(2927), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -117773,13 +118088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117790,43 +118103,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11745] = 9, + [11603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(216), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, - anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(3118), 1, + anon_sym_AT, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + ACTIONS(3116), 12, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1377), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3031), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(153), 13, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + ACTIONS(3114), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [11673] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_EQ, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(3121), 1, + sym_identifier, + ACTIONS(150), 13, + 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117842,34 +118214,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), 19, + ACTIONS(118), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [11820] = 6, + anon_sym_satisfies, + [11745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3071), 1, anon_sym_EQ, - ACTIONS(3065), 1, - anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117885,60 +118261,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(2923), 16, - sym__automatic_semicolon, + ACTIONS(2927), 17, 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2919), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [11889] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, - anon_sym_EQ_GT, - ACTIONS(3108), 1, - anon_sym_EQ, - ACTIONS(2923), 14, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -117951,29 +118278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + anon_sym_implements, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117984,20 +118294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [11962] = 6, + [11812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3067), 1, anon_sym_EQ, - ACTIONS(3065), 1, + ACTIONS(3069), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118013,13 +118325,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(2923), 16, - sym__automatic_semicolon, + ACTIONS(2927), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118030,13 +118342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118047,28 +118357,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12031] = 8, + [11881] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(214), 1, - anon_sym_COMMA, - ACTIONS(1273), 1, + ACTIONS(216), 1, anon_sym_EQ_GT, - ACTIONS(2034), 1, + ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(153), 14, + ACTIONS(3042), 1, + anon_sym_LBRACK, + ACTIONS(1403), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(150), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118079,7 +118395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118095,33 +118411,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), 22, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12104] = 3, + [11956] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 13, + ACTIONS(3118), 1, + anon_sym_AT, + ACTIONS(3123), 1, + anon_sym_class, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + ACTIONS(3116), 12, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -118134,8 +118455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, - anon_sym_AT, - ACTIONS(3115), 42, + ACTIONS(3114), 39, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -118143,8 +118463,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_await, anon_sym_yield, - anon_sym_LT, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + anon_sym_DASH_DASH, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [12027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3128), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3126), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, anon_sym_DOT, anon_sym_class, anon_sym_async, @@ -118152,6 +118527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_void, anon_sym_delete, anon_sym_DASH_DASH, @@ -118178,12 +118555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [12167] = 5, + [12090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(1309), 1, + anon_sym_EQ_GT, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118199,13 +118578,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(2923), 17, + ACTIONS(150), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118216,14 +118595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(2919), 22, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118234,24 +118610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12234] = 8, + [12159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(3111), 1, - anon_sym_in, - ACTIONS(3113), 1, + ACTIONS(2031), 1, anon_sym_COLON, - ACTIONS(2923), 15, + ACTIONS(150), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -118267,7 +118643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118283,12 +118659,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(2919), 21, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118299,27 +118674,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12307] = 7, + [12230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 1, + ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(1273), 1, + ACTIONS(3077), 1, anon_sym_EQ_GT, - ACTIONS(2037), 1, - anon_sym_COLON, - ACTIONS(153), 15, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2927), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [12299] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(124), 1, anon_sym_RBRACK, + ACTIONS(214), 1, + anon_sym_COMMA, + ACTIONS(1309), 1, + anon_sym_EQ_GT, + ACTIONS(2028), 1, + anon_sym_EQ, + ACTIONS(150), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118330,7 +118771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118350,9 +118791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118363,20 +118802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12378] = 6, + [12372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118392,13 +118833,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(2923), 16, + ACTIONS(2927), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118409,13 +118850,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_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_DASH_DASH, + [12441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_EQ, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(150), 16, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118426,24 +118928,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12447] = 8, + [12510] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3067), 1, anon_sym_EQ, ACTIONS(3069), 1, anon_sym_EQ_GT, - ACTIONS(3111), 1, + ACTIONS(3101), 1, anon_sym_in, - ACTIONS(3119), 1, + ACTIONS(3103), 1, anon_sym_COLON, - ACTIONS(2923), 15, + ACTIONS(2927), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -118459,7 +118963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118475,12 +118979,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(2919), 21, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118491,22 +118993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12520] = 7, + [12583] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 1, + ACTIONS(1307), 1, anon_sym_EQ, - ACTIONS(1273), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(2051), 1, + ACTIONS(2055), 1, anon_sym_COLON, - ACTIONS(153), 15, + ACTIONS(150), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -118522,7 +119026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118542,9 +119046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118555,20 +119057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12591] = 6, + [12654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, - anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1309), 1, anon_sym_EQ_GT, - ACTIONS(157), 15, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118584,13 +119088,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(153), 16, - sym__automatic_semicolon, + ACTIONS(150), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118605,9 +119109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118618,20 +119120,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12660] = 6, + [12723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(157), 15, + ACTIONS(3069), 1, + anon_sym_EQ_GT, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118647,7 +119151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(153), 16, + ACTIONS(2927), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -118664,13 +119168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118681,40 +119183,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12729] = 6, + [12792] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3067), 1, anon_sym_EQ, ACTIONS(3069), 1, anon_sym_EQ_GT, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2923), 16, + ACTIONS(3101), 1, + anon_sym_in, + ACTIONS(3130), 1, + anon_sym_COLON, + ACTIONS(2927), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -118727,13 +119218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118744,20 +119248,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12798] = 6, + [12865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1273), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(157), 15, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118773,13 +119279,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(153), 16, + ACTIONS(150), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -118794,9 +119300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118807,20 +119311,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12867] = 6, + [12934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1265), 1, + ACTIONS(3051), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(3098), 1, anon_sym_EQ, - ACTIONS(157), 15, + ACTIONS(2927), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118836,30 +119361,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(153), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118870,24 +119376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [12936] = 7, + [13007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_AT, - ACTIONS(3121), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - ACTIONS(3095), 12, + ACTIONS(3110), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -118900,7 +119400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, - ACTIONS(3093), 39, + anon_sym_AT, + ACTIONS(3108), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -118908,13 +119409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_await, anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_void, anon_sym_delete, anon_sym_DASH_DASH, @@ -118940,12 +119442,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [13007] = 5, + anon_sym_abstract, + [13069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(1315), 1, + anon_sym_EQ_GT, + ACTIONS(150), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118961,13 +119482,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(2923), 16, + ACTIONS(118), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [13137] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(216), 1, + anon_sym_EQ_GT, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1311), 1, + anon_sym_EQ, + ACTIONS(150), 14, 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, @@ -118978,13 +119529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(154), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -118995,27 +119560,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13073] = 8, + [13207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(3039), 1, + ACTIONS(1315), 1, anon_sym_EQ_GT, - ACTIONS(3081), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(2923), 14, + ACTIONS(150), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119027,7 +119591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119043,12 +119607,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 21, + ACTIONS(118), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [13275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3051), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, + anon_sym_RBRACK, + ACTIONS(3098), 1, + anon_sym_EQ, + ACTIONS(2927), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_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_DASH_DASH, + [13345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 1, + anon_sym_EQ, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2927), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119059,16 +119746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13145] = 3, + [13411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 13, + ACTIONS(3134), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -119082,7 +119771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3100), 41, + ACTIONS(3132), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -119090,14 +119779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_await, anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_void, anon_sym_delete, anon_sym_DASH_DASH, @@ -119124,12 +119813,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [13207] = 5, + [13473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3087), 1, anon_sym_EQ, - ACTIONS(2933), 15, + ACTIONS(3089), 1, + anon_sym_EQ_GT, + ACTIONS(2927), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119145,30 +119852,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(2923), 16, - 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119179,24 +119867,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13273] = 6, + [13541] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(1315), 1, + ACTIONS(3056), 1, anon_sym_EQ_GT, - ACTIONS(153), 15, + ACTIONS(3091), 1, + anon_sym_in, + ACTIONS(3094), 1, + anon_sym_of, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119208,7 +119901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119224,13 +119917,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), 22, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119241,16 +119931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13341] = 3, + [13613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 13, + ACTIONS(3138), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -119264,7 +119956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3124), 41, + ACTIONS(3136), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -119272,14 +119964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_await, anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_void, anon_sym_delete, anon_sym_DASH_DASH, @@ -119306,14 +119998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [13403] = 6, + [13675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(1315), 1, + ACTIONS(3089), 1, anon_sym_EQ_GT, - ACTIONS(153), 15, + ACTIONS(2927), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119329,7 +120021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119345,13 +120037,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), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119362,36 +120052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13471] = 6, + [13743] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3075), 1, anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_EQ_GT, - ACTIONS(2923), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119407,42 +120081,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(2919), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [13539] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACK, - ACTIONS(3108), 1, - anon_sym_EQ, - ACTIONS(2923), 14, + ACTIONS(2927), 16, + 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, @@ -119454,29 +120098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119487,81 +120113,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3128), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - anon_sym_DASH_DASH, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [13671] = 7, + [13809] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(216), 1, anon_sym_EQ_GT, - ACTIONS(1261), 1, - anon_sym_COLON, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(153), 14, + ACTIONS(2011), 1, + anon_sym_in, + ACTIONS(3096), 1, + anon_sym_of, + ACTIONS(150), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119576,7 +120147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119592,13 +120163,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), 22, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119609,20 +120177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13741] = 6, + [13881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3087), 1, anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_EQ_GT, - ACTIONS(2923), 15, + ACTIONS(2927), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119638,7 +120206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119654,13 +120222,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(2919), 22, + ACTIONS(2923), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119671,24 +120237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13809] = 8, + [13946] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(216), 1, - anon_sym_EQ_GT, - ACTIONS(1311), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(3091), 1, anon_sym_in, - ACTIONS(3079), 1, + ACTIONS(3094), 1, anon_sym_of, - ACTIONS(153), 14, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119703,7 +120269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119719,12 +120285,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), 21, + ACTIONS(2923), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119735,20 +120299,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13881] = 6, + [14015] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(216), 1, anon_sym_EQ_GT, ACTIONS(1311), 1, anon_sym_EQ, - ACTIONS(153), 14, + ACTIONS(150), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119763,7 +120329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(157), 15, + ACTIONS(154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119783,9 +120349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119796,22 +120360,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_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_DASH_DASH, - [13948] = 7, + [14082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(3081), 1, + ACTIONS(3063), 1, + anon_sym_COLON, + ACTIONS(2927), 14, + 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_BQUOTE, + anon_sym_satisfies, + ACTIONS(2934), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(2923), 14, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [14149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + ACTIONS(2927), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -119826,7 +120451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2933), 15, + ACTIONS(2934), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119842,285 +120467,1089 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 21, + ACTIONS(2923), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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_DASH_DASH, + [14216] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3146), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3148), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2965), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14332] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3166), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3168), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2977), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14448] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(2623), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2647), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2904), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14564] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(2701), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2703), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2927), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14680] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3170), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3172), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2980), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14796] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3174), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3176), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3026), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14912] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(3178), 1, + sym_identifier, + ACTIONS(3180), 1, anon_sym_STAR, + ACTIONS(3182), 1, + anon_sym_type, + ACTIONS(3186), 1, + anon_sym_LBRACE, + ACTIONS(3190), 1, + anon_sym_typeof, + STATE(3751), 1, + sym_import_clause, + STATE(3752), 1, + sym_string, + STATE(3753), 1, + sym__import_identifier, + STATE(3755), 1, + sym_import_require_clause, + STATE(4184), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(3184), 16, + anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_DASH_DASH, - [14017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_COLON, - ACTIONS(2923), 14, + anon_sym_satisfies, + ACTIONS(3188), 22, + 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14084] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(2923), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + [14995] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14149] = 6, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3192), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3280), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15107] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3039), 1, - anon_sym_EQ_GT, - ACTIONS(2923), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 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_BQUOTE, - anon_sym_satisfies, - ACTIONS(2933), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(2919), 22, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3194), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3280), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15219] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [14216] = 31, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3196), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3280), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15331] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3198), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3280), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15443] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3138), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3140), 2, + ACTIONS(3154), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3160), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3200), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3146), 2, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3280), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [15555] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_new, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2645), 1, + anon_sym_abstract, + ACTIONS(3142), 1, + anon_sym_export, + ACTIONS(3144), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_async, + ACTIONS(3156), 1, + anon_sym_static, + ACTIONS(3158), 1, + anon_sym_readonly, + ACTIONS(3164), 1, + anon_sym_override, + STATE(1163), 1, + sym_decorator, + STATE(2263), 1, + sym_accessibility_modifier, + STATE(2281), 1, + sym_override_modifier, + STATE(2645), 1, + sym_formal_parameters, + STATE(3284), 1, + sym__call_signature, + STATE(3376), 1, + aux_sym_export_statement_repeat1, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3202), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2895), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120131,81 +121560,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14332] = 31, + [15667] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3158), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3160), 2, + ACTIONS(3204), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3005), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120216,81 +121642,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14448] = 31, + [15779] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3162), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3164), 2, + ACTIONS(3206), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2952), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120301,81 +121724,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14564] = 31, + [15891] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3166), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3168), 2, + ACTIONS(3208), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2888), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120386,81 +121806,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14680] = 31, + [16003] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1941), 1, + anon_sym_namespace, + ACTIONS(1943), 1, + anon_sym_import, + ACTIONS(1945), 1, + anon_sym_var, + ACTIONS(1947), 1, + anon_sym_let, + ACTIONS(1949), 1, + anon_sym_const, + ACTIONS(1951), 1, + anon_sym_class, + ACTIONS(1953), 1, + anon_sym_async, + ACTIONS(1955), 1, + anon_sym_function, + ACTIONS(1957), 1, + anon_sym_declare, + ACTIONS(1961), 1, + anon_sym_abstract, + ACTIONS(1965), 1, + anon_sym_interface, + ACTIONS(1967), 1, + anon_sym_enum, + ACTIONS(3210), 1, + anon_sym_STAR, + ACTIONS(3212), 1, + anon_sym_default, + ACTIONS(3214), 1, + anon_sym_type, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3218), 1, + anon_sym_as, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3223), 1, + anon_sym_RBRACE, + ACTIONS(3228), 1, + anon_sym_module, + STATE(1163), 1, + sym_decorator, + STATE(3148), 1, + aux_sym_export_statement_repeat1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, + sym_export_clause, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3678), 1, + sym_namespace_export, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3223), 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, + [16123] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(2619), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2643), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3230), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2943), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120471,81 +121974,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14796] = 31, + [16235] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1941), 1, + anon_sym_namespace, + ACTIONS(1943), 1, + anon_sym_import, + ACTIONS(1945), 1, + anon_sym_var, + ACTIONS(1947), 1, + anon_sym_let, + ACTIONS(1949), 1, + anon_sym_const, + ACTIONS(1951), 1, + anon_sym_class, + ACTIONS(1953), 1, + anon_sym_async, + ACTIONS(1955), 1, + anon_sym_function, + ACTIONS(1957), 1, + anon_sym_declare, + ACTIONS(1961), 1, + anon_sym_abstract, + ACTIONS(1965), 1, + anon_sym_interface, + ACTIONS(1967), 1, + anon_sym_enum, + ACTIONS(3210), 1, + anon_sym_STAR, + ACTIONS(3212), 1, + anon_sym_default, + ACTIONS(3214), 1, + anon_sym_type, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3218), 1, + anon_sym_as, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3228), 1, + anon_sym_module, + ACTIONS(3232), 1, + anon_sym_RBRACE, + STATE(1163), 1, + sym_decorator, + STATE(3148), 1, + aux_sym_export_statement_repeat1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, + sym_export_clause, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3678), 1, + sym_namespace_export, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3223), 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, + [16355] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1941), 1, + anon_sym_namespace, + ACTIONS(1943), 1, + anon_sym_import, + ACTIONS(1945), 1, + anon_sym_var, + ACTIONS(1947), 1, + anon_sym_let, + ACTIONS(1949), 1, + anon_sym_const, + ACTIONS(1951), 1, + anon_sym_class, + ACTIONS(1953), 1, + anon_sym_async, + ACTIONS(1955), 1, + anon_sym_function, + ACTIONS(1957), 1, + anon_sym_declare, + ACTIONS(1961), 1, + anon_sym_abstract, + ACTIONS(1965), 1, + anon_sym_interface, + ACTIONS(1967), 1, + anon_sym_enum, + ACTIONS(3210), 1, + anon_sym_STAR, + ACTIONS(3212), 1, + anon_sym_default, + ACTIONS(3214), 1, + anon_sym_type, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3218), 1, + anon_sym_as, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3228), 1, + anon_sym_module, + ACTIONS(3235), 1, + anon_sym_RBRACE, + STATE(1163), 1, + sym_decorator, + STATE(3148), 1, + aux_sym_export_statement_repeat1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, + sym_export_clause, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3678), 1, + sym_namespace_export, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3223), 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, + [16475] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(2653), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2667), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3238), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3021), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120556,146 +122228,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14912] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(3170), 1, - sym_identifier, - ACTIONS(3172), 1, - anon_sym_STAR, - ACTIONS(3174), 1, - anon_sym_type, - ACTIONS(3178), 1, - anon_sym_LBRACE, - ACTIONS(3182), 1, - anon_sym_typeof, - STATE(3770), 1, - sym_import_clause, - STATE(3798), 1, - sym_import_require_clause, - STATE(3799), 1, - sym__import_identifier, - STATE(3805), 1, - sym_string, - STATE(4173), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(3176), 16, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(3180), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [14995] = 30, + [16587] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3184), 2, + ACTIONS(3240), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120706,78 +122310,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15107] = 30, + [16699] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3186), 2, + ACTIONS(3242), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120788,78 +122392,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15219] = 30, + [16811] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3188), 2, + ACTIONS(3244), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -120870,79 +122474,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15331] = 34, + [16923] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1724), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1935), 1, + ACTIONS(1941), 1, anon_sym_namespace, - ACTIONS(1937), 1, + ACTIONS(1943), 1, anon_sym_import, - ACTIONS(1939), 1, + ACTIONS(1945), 1, anon_sym_var, - ACTIONS(1941), 1, + ACTIONS(1947), 1, anon_sym_let, - ACTIONS(1943), 1, + ACTIONS(1949), 1, anon_sym_const, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_class, - ACTIONS(1947), 1, + ACTIONS(1953), 1, anon_sym_async, - ACTIONS(1949), 1, + ACTIONS(1955), 1, anon_sym_function, - ACTIONS(1951), 1, + ACTIONS(1957), 1, anon_sym_declare, - ACTIONS(1955), 1, + ACTIONS(1961), 1, anon_sym_abstract, - ACTIONS(1959), 1, + ACTIONS(1965), 1, anon_sym_interface, - ACTIONS(1961), 1, + ACTIONS(1967), 1, anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(3210), 1, anon_sym_STAR, - ACTIONS(3192), 1, + ACTIONS(3212), 1, anon_sym_default, - ACTIONS(3194), 1, + ACTIONS(3214), 1, anon_sym_type, - ACTIONS(3196), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3198), 1, + ACTIONS(3218), 1, anon_sym_as, - ACTIONS(3200), 1, + ACTIONS(3220), 1, anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(3208), 1, + ACTIONS(3228), 1, anon_sym_module, - STATE(1155), 1, + ACTIONS(3246), 1, + anon_sym_RBRACE, + STATE(1163), 1, sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, + STATE(3148), 1, aux_sym_export_statement_repeat1, - STATE(3356), 1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, sym_export_clause, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - STATE(3703), 1, + STATE(3678), 1, sym_namespace_export, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3095), 13, + STATE(3223), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -120956,78 +122560,78 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [15451] = 30, + [17043] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3210), 2, + ACTIONS(3249), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121038,78 +122642,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15563] = 30, + [17155] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3212), 2, + ACTIONS(3251), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121120,78 +122724,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15675] = 30, + [17267] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1941), 1, + anon_sym_namespace, + ACTIONS(1943), 1, + anon_sym_import, + ACTIONS(1945), 1, + anon_sym_var, + ACTIONS(1947), 1, + anon_sym_let, + ACTIONS(1949), 1, + anon_sym_const, + ACTIONS(1951), 1, + anon_sym_class, + ACTIONS(1953), 1, + anon_sym_async, + ACTIONS(1955), 1, + anon_sym_function, + ACTIONS(1957), 1, + anon_sym_declare, + ACTIONS(1961), 1, + anon_sym_abstract, + ACTIONS(1965), 1, + anon_sym_interface, + ACTIONS(1967), 1, + anon_sym_enum, + ACTIONS(3210), 1, + anon_sym_STAR, + ACTIONS(3212), 1, + anon_sym_default, + ACTIONS(3214), 1, + anon_sym_type, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3218), 1, + anon_sym_as, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3228), 1, + anon_sym_module, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(1163), 1, + sym_decorator, + STATE(3148), 1, + aux_sym_export_statement_repeat1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, + sym_export_clause, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + STATE(3678), 1, + sym_namespace_export, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3223), 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, + [17387] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3214), 2, + ACTIONS(3256), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121202,78 +122892,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15787] = 30, + [17499] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3216), 2, + ACTIONS(3258), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121284,78 +122974,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15899] = 30, + [17611] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3218), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3280), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121366,164 +123053,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16011] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1724), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1935), 1, - anon_sym_namespace, - ACTIONS(1937), 1, - anon_sym_import, - ACTIONS(1939), 1, - anon_sym_var, - ACTIONS(1941), 1, - anon_sym_let, - ACTIONS(1943), 1, - anon_sym_const, - ACTIONS(1945), 1, - anon_sym_class, - ACTIONS(1947), 1, - anon_sym_async, - ACTIONS(1949), 1, - anon_sym_function, - ACTIONS(1951), 1, - anon_sym_declare, - ACTIONS(1955), 1, - anon_sym_abstract, - ACTIONS(1959), 1, - anon_sym_interface, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(3190), 1, - anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 1, - anon_sym_as, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3220), 1, - anon_sym_RBRACE, - STATE(1155), 1, - sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3356), 1, - sym_export_clause, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - STATE(3703), 1, - sym_namespace_export, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3095), 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, - [16131] = 30, + [17719] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3223), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(2958), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121534,78 +123132,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16243] = 30, + [17827] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3225), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3023), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121616,79 +123211,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16355] = 34, + [17935] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1724), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1935), 1, + ACTIONS(1941), 1, anon_sym_namespace, - ACTIONS(1937), 1, + ACTIONS(1943), 1, anon_sym_import, - ACTIONS(1939), 1, + ACTIONS(1945), 1, anon_sym_var, - ACTIONS(1941), 1, + ACTIONS(1947), 1, anon_sym_let, - ACTIONS(1943), 1, + ACTIONS(1949), 1, anon_sym_const, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_class, - ACTIONS(1947), 1, + ACTIONS(1953), 1, anon_sym_async, - ACTIONS(1949), 1, + ACTIONS(1955), 1, anon_sym_function, - ACTIONS(1951), 1, + ACTIONS(1957), 1, anon_sym_declare, - ACTIONS(1955), 1, + ACTIONS(1961), 1, anon_sym_abstract, - ACTIONS(1959), 1, + ACTIONS(1965), 1, anon_sym_interface, - ACTIONS(1961), 1, + ACTIONS(1967), 1, anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(3210), 1, anon_sym_STAR, - ACTIONS(3192), 1, + ACTIONS(3212), 1, anon_sym_default, - ACTIONS(3194), 1, + ACTIONS(3214), 1, anon_sym_type, - ACTIONS(3196), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3198), 1, + ACTIONS(3218), 1, anon_sym_as, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3208), 1, + ACTIONS(3228), 1, anon_sym_module, - ACTIONS(3227), 1, - anon_sym_RBRACE, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, + STATE(3148), 1, aux_sym_export_statement_repeat1, - STATE(3356), 1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, sym_export_clause, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - STATE(3703), 1, + STATE(3678), 1, sym_namespace_export, - ACTIONS(3206), 6, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3095), 13, + STATE(3223), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -121702,164 +123292,128 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [16475] = 34, + [18047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1724), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1935), 1, - anon_sym_namespace, - ACTIONS(1937), 1, - anon_sym_import, - ACTIONS(1939), 1, - anon_sym_var, - ACTIONS(1941), 1, - anon_sym_let, - ACTIONS(1943), 1, - anon_sym_const, - ACTIONS(1945), 1, - anon_sym_class, - ACTIONS(1947), 1, - anon_sym_async, - ACTIONS(1949), 1, - anon_sym_function, - ACTIONS(1951), 1, - anon_sym_declare, - ACTIONS(1955), 1, - anon_sym_abstract, - ACTIONS(1959), 1, - anon_sym_interface, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(1419), 15, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 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, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1417), 33, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3200), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3230), 1, anon_sym_RBRACE, - STATE(1155), 1, - sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3356), 1, - sym_export_clause, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - STATE(3703), 1, - sym_namespace_export, - ACTIONS(3206), 6, - sym__automatic_semicolon, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, anon_sym_COLON, - 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, anon_sym_PIPE_RBRACE, - STATE(3095), 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, - [16595] = 30, + [18103] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3233), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(2987), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121870,78 +123424,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16707] = 30, + [18211] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3235), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(2957), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -121952,78 +123503,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16819] = 30, + [18319] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3237), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(3021), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122034,78 +123582,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16931] = 30, + [18427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1529), 15, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1527), 33, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [18483] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, + ACTIONS(2629), 1, anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_abstract, - ACTIONS(3134), 1, + ACTIONS(3142), 1, anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3152), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3156), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3158), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(2239), 1, + STATE(2263), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2281), 1, sym_override_modifier, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3044), 1, + STATE(3284), 1, sym__call_signature, - STATE(3411), 1, + STATE(3376), 1, aux_sym_export_statement_repeat1, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(3146), 2, + ACTIONS(3154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3239), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2494), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, + STATE(2897), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122116,78 +123714,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17043] = 30, + [18591] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(1941), 1, + anon_sym_namespace, + ACTIONS(1943), 1, + anon_sym_import, + ACTIONS(1945), 1, + anon_sym_var, + ACTIONS(1947), 1, + anon_sym_let, + ACTIONS(1949), 1, + anon_sym_const, + ACTIONS(1951), 1, + anon_sym_class, + ACTIONS(1953), 1, + anon_sym_async, + ACTIONS(1955), 1, + anon_sym_function, + ACTIONS(1957), 1, + anon_sym_declare, + ACTIONS(1961), 1, + anon_sym_abstract, + ACTIONS(1965), 1, + anon_sym_interface, + ACTIONS(1967), 1, + anon_sym_enum, + ACTIONS(3210), 1, + anon_sym_STAR, + ACTIONS(3212), 1, + anon_sym_default, + ACTIONS(3214), 1, + anon_sym_type, + ACTIONS(3218), 1, + anon_sym_as, + ACTIONS(3228), 1, + anon_sym_module, + ACTIONS(3264), 1, + anon_sym_EQ, + STATE(1163), 1, + sym_decorator, + STATE(3148), 1, + aux_sym_export_statement_repeat1, + STATE(3217), 1, + sym_internal_module, + STATE(3219), 1, + sym_declaration, + STATE(3338), 1, + sym_export_clause, + STATE(3678), 1, + sym_namespace_export, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3223), 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, + [18701] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 1, + anon_sym_DOT, + ACTIONS(3270), 1, + anon_sym_LT, + ACTIONS(3272), 1, + anon_sym_is, + STATE(1302), 1, + sym_type_arguments, + ACTIONS(3266), 13, + anon_sym_STAR, + anon_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(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3022), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [18764] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3270), 1, + anon_sym_LT, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3284), 1, + anon_sym_QMARK_DOT, + STATE(1256), 1, + sym_type_arguments, + STATE(1376), 1, + sym_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3274), 13, anon_sym_STAR, - ACTIONS(3142), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3276), 26, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [18835] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3288), 1, + anon_sym_RBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3292), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3294), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3296), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3302), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + STATE(3665), 1, + aux_sym_object_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3298), 2, anon_sym_get, anon_sym_set, - ACTIONS(3241), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3300), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3656), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3286), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122198,78 +123983,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17155] = 30, + [18933] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3306), 1, + anon_sym_RBRACE, + ACTIONS(3308), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3310), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3312), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3318), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3547), 1, + aux_sym_object_repeat1, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3314), 2, anon_sym_get, anon_sym_set, - ACTIONS(3243), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3316), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3647), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3304), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122280,78 +124056,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17267] = 30, + [19031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3324), 1, + anon_sym_DOT, + STATE(1309), 1, + sym_arguments, + ACTIONS(3320), 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, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3322), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19091] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, + ACTIONS(3326), 1, + anon_sym_DOT, + STATE(1308), 1, + sym_arguments, + ACTIONS(2994), 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(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2984), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19151] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 1, + anon_sym_DOT, + ACTIONS(3270), 1, + anon_sym_LT, + STATE(1302), 1, + sym_type_arguments, + ACTIONS(3266), 13, anon_sym_STAR, - ACTIONS(3142), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3022), 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, - ACTIONS(3144), 1, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3272), 1, + anon_sym_is, + ACTIONS(3328), 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_DASH_DASH, + ACTIONS(3330), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19267] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, + anon_sym_LBRACK, + ACTIONS(3334), 1, + anon_sym_RBRACE, + ACTIONS(3336), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3338), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3340), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3346), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + STATE(3665), 1, + aux_sym_object_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3342), 2, anon_sym_get, anon_sym_set, - ACTIONS(3245), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3344), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3656), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3332), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122362,78 +124343,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17379] = 30, + [19365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, + ACTIONS(1419), 15, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(1417), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 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, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(3348), 1, + sym__automatic_semicolon, + ACTIONS(1327), 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(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(1325), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [19477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3270), 1, + anon_sym_LT, + STATE(1306), 1, + sym_type_arguments, + ACTIONS(3350), 13, anon_sym_STAR, - ACTIONS(3142), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3352), 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(3144), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19535] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, + anon_sym_LBRACK, + ACTIONS(3356), 1, + anon_sym_RBRACE, + ACTIONS(3358), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3360), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3362), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3368), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3547), 1, + aux_sym_object_repeat1, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3364), 2, anon_sym_get, anon_sym_set, - ACTIONS(3247), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3154), 3, + ACTIONS(3366), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3647), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3354), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122444,196 +124573,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17491] = 34, + [19633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1724), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1405), 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, - ACTIONS(1935), 1, - anon_sym_namespace, - ACTIONS(1937), 1, - anon_sym_import, - ACTIONS(1939), 1, - anon_sym_var, - ACTIONS(1941), 1, - anon_sym_let, - ACTIONS(1943), 1, - anon_sym_const, - ACTIONS(1945), 1, - anon_sym_class, - ACTIONS(1947), 1, - anon_sym_async, - ACTIONS(1949), 1, - anon_sym_function, - ACTIONS(1951), 1, - anon_sym_declare, - ACTIONS(1955), 1, - anon_sym_abstract, - ACTIONS(1959), 1, - anon_sym_interface, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(3190), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(1403), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + anon_sym_is, + [19687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + anon_sym_is, + ACTIONS(3350), 14, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 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, + anon_sym_DASH_DASH, + ACTIONS(3352), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3200), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3249), 1, anon_sym_RBRACE, - STATE(1155), 1, - sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3356), 1, - sym_export_clause, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - STATE(3703), 1, - sym_namespace_export, - ACTIONS(3206), 6, + anon_sym_LPAREN, + anon_sym_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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [19743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3372), 1, + anon_sym_LBRACE, + STATE(1468), 1, + sym_statement_block, + ACTIONS(1351), 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_DASH_DASH, + ACTIONS(1349), 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_COLON, - 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_BQUOTE, + anon_sym_satisfies, anon_sym_PIPE_RBRACE, - STATE(3095), 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, - [17611] = 30, + [19801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1724), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1935), 1, - anon_sym_namespace, - ACTIONS(1937), 1, - anon_sym_import, - ACTIONS(1939), 1, - anon_sym_var, - ACTIONS(1941), 1, - anon_sym_let, - ACTIONS(1943), 1, - anon_sym_const, - ACTIONS(1945), 1, - anon_sym_class, - ACTIONS(1947), 1, - anon_sym_async, - ACTIONS(1949), 1, - anon_sym_function, - ACTIONS(1951), 1, - anon_sym_declare, - ACTIONS(1955), 1, - anon_sym_abstract, - ACTIONS(1959), 1, - anon_sym_interface, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(3190), 1, + ACTIONS(3374), 1, + anon_sym_DOT, + STATE(1468), 1, + sym_statement_block, + ACTIONS(1351), 14, anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3198), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(3252), 1, - anon_sym_EQ, - STATE(1155), 1, - sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3356), 1, - sym_export_clause, - STATE(3703), 1, - sym_namespace_export, - ACTIONS(3206), 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, + anon_sym_DASH_DASH, + ACTIONS(1349), 29, 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_COLON, - anon_sym_QMARK, + 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_BQUOTE, + anon_sym_satisfies, anon_sym_PIPE_RBRACE, - STATE(3095), 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, - [17721] = 3, + [19861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 15, + ACTIONS(3372), 1, + anon_sym_LBRACE, + ACTIONS(3376), 1, + anon_sym_DOT, + STATE(1468), 1, + sym_statement_block, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1475), 33, + ACTIONS(1349), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, @@ -122641,9 +124818,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122661,235 +124836,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [17777] = 29, + [19921] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(222), 1, anon_sym_STAR, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3144), 1, - anon_sym_async, - ACTIONS(3148), 1, - anon_sym_static, - ACTIONS(3150), 1, - anon_sym_readonly, - ACTIONS(3156), 1, - anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, - sym_accessibility_modifier, - STATE(2270), 1, - sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3152), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2483), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2897), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [17885] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3380), 1, + anon_sym_RBRACE, + ACTIONS(3382), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3384), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3386), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3392), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + STATE(3665), 1, + aux_sym_object_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3388), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3390), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3238), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [17993] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3656), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3378), 11, anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3144), 1, - anon_sym_async, - ACTIONS(3148), 1, - anon_sym_static, - ACTIONS(3150), 1, - anon_sym_readonly, - ACTIONS(3156), 1, - anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, - sym_accessibility_modifier, - STATE(2270), 1, - sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3152), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2483), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3022), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -122900,154 +124910,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18101] = 29, + [20019] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(222), 1, anon_sym_STAR, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3144), 1, - anon_sym_async, - ACTIONS(3148), 1, - anon_sym_static, - ACTIONS(3150), 1, - anon_sym_readonly, - ACTIONS(3156), 1, - anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, - sym_accessibility_modifier, - STATE(2270), 1, - sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3152), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2483), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2934), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18209] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3396), 1, + anon_sym_RBRACE, + ACTIONS(3398), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3400), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3402), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3408), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + STATE(3665), 1, + aux_sym_object_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3404), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3406), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2882), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3656), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3394), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123058,39 +124983,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18317] = 3, + [20117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 15, + ACTIONS(1529), 15, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(1415), 33, - sym__automatic_semicolon, + ACTIONS(1527), 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, @@ -123110,76 +125033,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [18373] = 29, + anon_sym_implements, + [20171] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, - anon_sym_STAR, - ACTIONS(3142), 1, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3144), 1, + ACTIONS(3412), 1, + anon_sym_RBRACE, + ACTIONS(3414), 1, anon_sym_async, - ACTIONS(3148), 1, + ACTIONS(3416), 1, anon_sym_static, - ACTIONS(3150), 1, + ACTIONS(3418), 1, anon_sym_readonly, - ACTIONS(3156), 1, + ACTIONS(3424), 1, anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, + STATE(2257), 1, sym_accessibility_modifier, - STATE(2270), 1, + STATE(2282), 1, sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, + STATE(3580), 1, + aux_sym_object_pattern_repeat1, + STATE(3665), 1, + aux_sym_object_repeat1, + ACTIONS(240), 2, sym_number, sym_private_property_identifier, - ACTIONS(3152), 2, + ACTIONS(3420), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3422), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2483), 3, + STATE(2840), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2979), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3656), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3410), 11, + anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -123190,209 +125107,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18481] = 29, + [20269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(2625), 1, - anon_sym_new, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(2641), 1, - anon_sym_abstract, - ACTIONS(3134), 1, - anon_sym_export, - ACTIONS(3136), 1, + ACTIONS(3430), 1, + anon_sym_DOT, + STATE(1311), 1, + sym_arguments, + ACTIONS(3426), 14, anon_sym_STAR, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3144), 1, - anon_sym_async, - ACTIONS(3148), 1, - anon_sym_static, - ACTIONS(3150), 1, - anon_sym_readonly, - ACTIONS(3156), 1, - anon_sym_override, - STATE(1155), 1, - sym_decorator, - STATE(2239), 1, - sym_accessibility_modifier, - STATE(2270), 1, - sym_override_modifier, - STATE(2628), 1, - sym_formal_parameters, - STATE(3044), 1, - sym__call_signature, - STATE(3411), 1, - aux_sym_export_statement_repeat1, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(3146), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3152), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2483), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2877), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18589] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1724), 1, - anon_sym_LBRACE, - ACTIONS(1751), 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, - ACTIONS(1935), 1, - anon_sym_namespace, - ACTIONS(1937), 1, - anon_sym_import, - ACTIONS(1939), 1, - anon_sym_var, - ACTIONS(1941), 1, - anon_sym_let, - ACTIONS(1943), 1, - anon_sym_const, - ACTIONS(1945), 1, - anon_sym_class, - ACTIONS(1947), 1, - anon_sym_async, - ACTIONS(1949), 1, - anon_sym_function, - ACTIONS(1951), 1, - anon_sym_declare, - ACTIONS(1955), 1, - anon_sym_abstract, - ACTIONS(1959), 1, - anon_sym_interface, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(3190), 1, - anon_sym_STAR, - ACTIONS(3192), 1, - anon_sym_default, - ACTIONS(3194), 1, - anon_sym_type, - ACTIONS(3196), 1, - anon_sym_EQ, - ACTIONS(3198), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3428), 29, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3208), 1, - anon_sym_module, - STATE(1155), 1, - sym_decorator, - STATE(3098), 1, - sym_declaration, - STATE(3105), 1, - sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3356), 1, - sym_export_clause, - STATE(3703), 1, - sym_namespace_export, - ACTIONS(3254), 2, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3095), 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, - [18701] = 11, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [20329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3266), 1, - anon_sym_LT, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3270), 1, - anon_sym_QMARK_DOT, - STATE(1297), 1, - sym_type_arguments, - STATE(1462), 1, - sym_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3258), 13, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3432), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3260), 26, + ACTIONS(3434), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123410,32 +125214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [18772] = 7, + [20388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_LT, - ACTIONS(3274), 1, - anon_sym_DOT, - ACTIONS(3276), 1, - anon_sym_is, - STATE(1288), 1, - sym_type_arguments, - ACTIONS(3272), 13, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3002), 30, + ACTIONS(3444), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123447,6 +125244,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, @@ -123466,93 +125264,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [18835] = 25, + [20441] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_LT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 11, anon_sym_STAR, - ACTIONS(228), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3450), 18, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3280), 1, anon_sym_RBRACE, - ACTIONS(3282), 1, - anon_sym_LBRACK, - ACTIONS(3284), 1, - anon_sym_async, - ACTIONS(3286), 1, - anon_sym_static, - ACTIONS(3288), 1, - anon_sym_readonly, - ACTIONS(3294), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3475), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3290), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3292), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3471), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3278), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18933] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [20524] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(1465), 1, - sym_statement_block, - ACTIONS(1357), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_LT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123560,127 +125373,554 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1355), 30, - sym__automatic_semicolon, + ACTIONS(3450), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + 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, + anon_sym_satisfies, + [20605] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [20704] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3483), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [20801] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3483), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [20896] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_LT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3450), 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, - anon_sym_PLUS_PLUS, + anon_sym_satisfies, + [20979] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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_satisfies, - anon_sym_PIPE_RBRACE, - [18991] = 6, + [21082] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3302), 1, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1307), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3493), 1, + anon_sym_PIPE, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, sym_arguments, - ACTIONS(3298), 14, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [21183] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3483), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3300), 29, + ACTIONS(3450), 17, 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [19051] = 6, + [21270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3308), 1, - anon_sym_DOT, - STATE(1304), 1, - sym_arguments, - ACTIONS(3304), 14, + ACTIONS(2529), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3306), 29, + ACTIONS(2531), 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, @@ -123700,337 +125940,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [19111] = 6, + [21323] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3310), 1, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1303), 1, - sym_arguments, - ACTIONS(2982), 14, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3483), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3471), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2978), 29, + ACTIONS(3450), 14, 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [19171] = 25, + [21414] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, - anon_sym_STAR, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3314), 1, - anon_sym_RBRACE, - ACTIONS(3316), 1, - anon_sym_async, - ACTIONS(3318), 1, - anon_sym_static, - ACTIONS(3320), 1, - anon_sym_readonly, - ACTIONS(3326), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3475), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3322), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3324), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3471), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3312), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19269] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1465), 1, - sym_statement_block, - ACTIONS(1357), 14, - anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1355), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3495), 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_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3499), 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(3501), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [19329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 1, - anon_sym_LT, - ACTIONS(3274), 1, - anon_sym_DOT, - STATE(1288), 1, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - ACTIONS(3272), 13, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3002), 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [19389] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(222), 1, - anon_sym_STAR, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, - anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3497), 4, anon_sym_RBRACE, - ACTIONS(3334), 1, - anon_sym_async, - ACTIONS(3336), 1, - anon_sym_static, - ACTIONS(3338), 1, - anon_sym_readonly, - ACTIONS(3344), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3475), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3340), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3342), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3471), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3330), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19487] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [21529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(3346), 1, - sym__automatic_semicolon, - ACTIONS(1341), 14, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3505), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1339), 30, + ACTIONS(3507), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124061,224 +126143,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [19545] = 25, + [21588] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, - anon_sym_STAR, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3352), 1, - anon_sym_async, - ACTIONS(3354), 1, - anon_sym_static, - ACTIONS(3356), 1, - anon_sym_readonly, - ACTIONS(3362), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3475), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3360), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3471), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3348), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1477), 15, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_LT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1475), 31, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [19697] = 25, + [21665] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, - anon_sym_STAR, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3366), 1, - anon_sym_RBRACE, - ACTIONS(3368), 1, - anon_sym_async, - ACTIONS(3370), 1, - anon_sym_static, - ACTIONS(3372), 1, - anon_sym_readonly, - ACTIONS(3378), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3490), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3374), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3376), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3483), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3364), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [19795] = 4, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [21770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_is, - ACTIONS(3380), 14, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3509), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3382), 31, + ACTIONS(3511), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124308,88 +126333,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [19851] = 4, + [21829] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 1, - anon_sym_is, - ACTIONS(3386), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3388), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3513), 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, + [21942] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 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(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [19907] = 5, + ACTIONS(3515), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_LT, - STATE(1232), 1, - sym_type_arguments, - ACTIONS(3380), 13, + ACTIONS(3278), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_arguments, + ACTIONS(3517), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3382), 31, + ACTIONS(3519), 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, @@ -124413,232 +126545,523 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [19965] = 25, + [22112] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, - ACTIONS(228), 1, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3521), 5, anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, - anon_sym_LBRACK, - ACTIONS(3392), 1, anon_sym_RBRACE, - ACTIONS(3394), 1, - anon_sym_async, - ACTIONS(3396), 1, - anon_sym_static, - ACTIONS(3398), 1, - anon_sym_readonly, - ACTIONS(3404), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3475), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3400), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3402), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3471), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3390), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [20063] = 25, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22225] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, - ACTIONS(228), 1, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3523), 5, anon_sym_COMMA, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, - anon_sym_LBRACK, - ACTIONS(3408), 1, anon_sym_RBRACE, - ACTIONS(3410), 1, - anon_sym_async, - ACTIONS(3412), 1, - anon_sym_static, - ACTIONS(3414), 1, - anon_sym_readonly, - ACTIONS(3420), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - STATE(3490), 1, - aux_sym_object_repeat1, - STATE(3497), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3416), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3418), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3483), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3406), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [20161] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22338] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 15, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3525), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22451] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3527), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22564] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(1415), 31, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3529), 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, + [22677] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 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(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20215] = 3, + ACTIONS(3531), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22790] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3483), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3533), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1377), 32, + ACTIONS(3535), 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, @@ -124658,93 +127081,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - anon_sym_is, - [20269] = 3, + [22855] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3424), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3537), 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, + [22968] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 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(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20322] = 3, + ACTIONS(3539), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [23081] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3428), 31, + ACTIONS(3543), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_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, @@ -124759,92 +127300,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20375] = 3, + [23152] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3432), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3548), 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, + [23265] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 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(3461), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3434), 14, + ACTIONS(3554), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3550), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3436), 31, + ACTIONS(3552), 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, @@ -124858,47 +127445,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20481] = 6, + [23346] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3438), 12, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3561), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3440), 30, + ACTIONS(3559), 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, @@ -124912,29 +127505,34 @@ 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [20540] = 3, + [23421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 14, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3284), 1, + anon_sym_QMARK_DOT, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3450), 31, + ACTIONS(1483), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124944,10 +127542,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, @@ -124964,27 +127559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [20593] = 3, + [23482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 14, + ACTIONS(2525), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3382), 31, + ACTIONS(2527), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125016,27 +127610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20646] = 4, + [23535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_LBRACK, - ACTIONS(3452), 14, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3454), 30, + ACTIONS(2927), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125046,6 +127640,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, @@ -125065,77 +127660,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [20701] = 3, + [23590] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3440), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3564), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20754] = 3, + [23703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 14, + ACTIONS(2533), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3388), 31, + ACTIONS(2535), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125167,25 +127791,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20807] = 3, + [23756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 14, + ACTIONS(2729), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3460), 31, + ACTIONS(2731), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125217,36 +127841,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [20860] = 3, + [23809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 14, + ACTIONS(1399), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1979), 31, + ACTIONS(1397), 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, @@ -125265,38 +127890,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20913] = 3, + anon_sym_PIPE_RBRACE, + [23862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 14, + ACTIONS(1395), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3464), 31, + ACTIONS(1393), 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, @@ -125315,40 +127940,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [20966] = 5, + anon_sym_PIPE_RBRACE, + [23915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, - anon_sym_LBRACE, - STATE(1398), 1, - sym_statement_block, - ACTIONS(1357), 14, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(1977), 1, + anon_sym_extends, + ACTIONS(3566), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3569), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1355), 29, + ACTIONS(1333), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125369,41 +127995,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [21023] = 6, + [23976] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, - anon_sym_LBRACE, - ACTIONS(3468), 1, - anon_sym_DOT, - STATE(1398), 1, - sym_statement_block, - ACTIONS(1357), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_extends, + ACTIONS(3578), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3581), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3572), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3576), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [24037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3586), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3588), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1355), 28, + ACTIONS(2927), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_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, @@ -125422,25 +128101,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [21082] = 3, + [24094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 14, + ACTIONS(2779), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2883), 31, + ACTIONS(2781), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125472,25 +128151,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21135] = 3, + [24147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 14, + ACTIONS(2887), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3472), 31, + ACTIONS(2889), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125522,28 +128201,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21188] = 3, + [24200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 14, + ACTIONS(3590), 1, + anon_sym_LBRACE, + ACTIONS(3592), 1, + anon_sym_DOT, + STATE(1502), 1, + sym_statement_block, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2725), 31, + ACTIONS(1349), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -125552,7 +128236,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, @@ -125570,42 +128253,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21241] = 5, + [24259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3476), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(3590), 1, + anon_sym_LBRACE, + ACTIONS(3594), 1, + anon_sym_DOT, + STATE(1502), 1, + sym_statement_block, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 28, + ACTIONS(1349), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125624,28 +128307,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [21298] = 3, + [24318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3590), 1, + anon_sym_LBRACE, + STATE(1502), 1, + sym_statement_block, + ACTIONS(1351), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 31, + ACTIONS(1349), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -125672,42 +128358,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21351] = 7, + [24375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3490), 1, - anon_sym_extends, - ACTIONS(3484), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3487), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3478), 11, + ACTIONS(3596), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3482), 27, + ACTIONS(3598), 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, @@ -125727,41 +128407,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [21412] = 7, + [24428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(1975), 1, - anon_sym_extends, - ACTIONS(3492), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3495), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1343), 11, + ACTIONS(3600), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(1347), 27, + ACTIONS(3602), 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, @@ -125781,38 +128457,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [21473] = 3, + [24481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 14, + ACTIONS(3328), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1419), 31, - sym__automatic_semicolon, + ACTIONS(3330), 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, @@ -125831,26 +128507,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [21526] = 3, + anon_sym_extends, + anon_sym_implements, + [24534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3608), 1, + anon_sym_LBRACK, + ACTIONS(3604), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 31, + ACTIONS(3606), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125860,7 +128539,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, @@ -125882,98 +128560,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21579] = 26, + [24589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3350), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3502), 2, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 11, + anon_sym_DASH_DASH, + ACTIONS(3352), 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_BQUOTE, anon_sym_satisfies, - [21678] = 3, + anon_sym_extends, + anon_sym_implements, + [24642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 14, + ACTIONS(3610), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3536), 31, + ACTIONS(3612), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126005,25 +128660,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21731] = 3, + [24695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 14, + ACTIONS(3348), 1, + sym__automatic_semicolon, + ACTIONS(1327), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3536), 31, + ACTIONS(1325), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126053,27 +128710,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21784] = 3, + [24750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 14, + ACTIONS(1979), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3540), 31, + ACTIONS(1977), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126105,25 +128761,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21837] = 3, + [24803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 14, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3614), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2781), 31, + ACTIONS(3616), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126153,27 +128813,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21890] = 3, + [24862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 14, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3618), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3536), 31, + ACTIONS(3620), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126203,27 +128866,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [21943] = 3, + [24921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(3626), 1, + anon_sym_DOT, + ACTIONS(3622), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3544), 31, + ACTIONS(3624), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126235,7 +128899,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, @@ -126255,90 +128918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [21996] = 14, + [24976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3550), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3546), 12, + ACTIONS(3628), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3548), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [22071] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3553), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3555), 30, + ACTIONS(3584), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126368,35 +128966,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22130] = 5, + [25029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - STATE(2348), 1, - sym_arguments, - ACTIONS(2919), 14, + ACTIONS(3630), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 29, + ACTIONS(3632), 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, @@ -126420,94 +129016,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22187] = 17, + [25082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3565), 1, - anon_sym_LT, - ACTIONS(3568), 1, - anon_sym_satisfies, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3557), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3436), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3561), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [22268] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3570), 12, + ACTIONS(3634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3572), 30, + ACTIONS(3636), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126537,106 +129067,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22327] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3574), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [22440] = 3, + [25137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 14, + ACTIONS(3588), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3588), 31, + ACTIONS(3586), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126668,27 +129119,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22493] = 4, + [25190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 1, - sym__automatic_semicolon, - ACTIONS(1341), 14, + ACTIONS(3638), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1339), 30, + ACTIONS(3640), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126718,26 +129167,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [22548] = 3, + [25243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(3642), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3544), 31, + ACTIONS(3644), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126769,25 +129219,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22601] = 3, + [25296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(3606), 1, + anon_sym_extends, + ACTIONS(3608), 1, + anon_sym_LBRACK, + ACTIONS(3604), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3646), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3544), 31, + ACTIONS(3648), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126797,7 +129252,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, @@ -126817,27 +129271,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [22654] = 3, + [25355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 14, + ACTIONS(3650), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3592), 31, + ACTIONS(3652), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126869,25 +129322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22707] = 3, + [25408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 14, + ACTIONS(3608), 1, + anon_sym_LBRACK, + ACTIONS(3654), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1975), 31, + ACTIONS(3656), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126897,7 +129352,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, @@ -126919,25 +129373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22760] = 3, + [25463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 14, + ACTIONS(3658), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3596), 31, + ACTIONS(3660), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126969,27 +129423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22813] = 4, + [25516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(3598), 14, + ACTIONS(1983), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3600), 30, + ACTIONS(1981), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127001,6 +129453,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, @@ -127020,25 +129473,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22868] = 3, + [25569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 14, + ACTIONS(3662), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3606), 31, + ACTIONS(3664), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127070,25 +129523,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22921] = 3, + [25622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 14, + ACTIONS(3666), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3490), 31, + ACTIONS(3668), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127120,25 +129573,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [22974] = 3, + [25675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 14, + ACTIONS(3670), 1, + sym__automatic_semicolon, + ACTIONS(1471), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3612), 31, + ACTIONS(1469), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127168,52 +129623,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [23027] = 12, + [25730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3618), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3614), 13, + ACTIONS(3672), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3616), 22, + ACTIONS(3674), 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, @@ -127228,27 +129670,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [23098] = 4, + anon_sym_extends, + anon_sym_implements, + [25783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3621), 13, + ACTIONS(3676), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3623), 31, + ACTIONS(3678), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127280,25 +129724,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23153] = 3, + [25836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 14, + ACTIONS(3680), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3474), 31, + ACTIONS(3682), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127330,25 +129774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23206] = 3, + [25889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 14, + ACTIONS(3684), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3627), 31, + ACTIONS(3686), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127380,46 +129824,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23259] = 9, + [25942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, + ACTIONS(3692), 1, + anon_sym_DOT, + ACTIONS(3688), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3631), 25, + ACTIONS(3690), 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, @@ -127435,106 +129871,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [23324] = 33, + anon_sym_extends, + anon_sym_implements, + [25997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3695), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3688), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3514), 1, anon_sym_AMP, - ACTIONS(3516), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3690), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3520), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 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, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + anon_sym_extends, + anon_sym_implements, + [26052] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3698), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3633), 5, + anon_sym_DASH_DASH, + ACTIONS(3700), 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, - [23437] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 14, + ACTIONS(3698), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3637), 31, + ACTIONS(3700), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127566,105 +130029,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23490] = 33, + [26164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3702), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3639), 5, + anon_sym_DASH_DASH, + ACTIONS(3704), 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, - [23603] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 14, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1971), 31, + ACTIONS(3708), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127696,25 +130130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23656] = 3, + [26272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 14, + ACTIONS(3710), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3643), 31, + ACTIONS(3712), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127746,27 +130180,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [23709] = 4, + [26325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(1987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 30, + ACTIONS(1985), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127796,30 +130228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [23764] = 6, + [26378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3645), 12, + ACTIONS(3714), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3647), 30, + ACTIONS(3716), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127849,31 +130278,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [23823] = 6, + [26431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_extends, - ACTIONS(3456), 1, - anon_sym_LBRACK, - ACTIONS(3452), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3649), 12, + ACTIONS(3718), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3651), 29, + ACTIONS(3720), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127883,6 +130308,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, @@ -127902,106 +130328,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [23882] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3653), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [23995] = 3, + [26484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 14, + ACTIONS(3722), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3540), 31, + ACTIONS(3724), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128033,25 +130380,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24048] = 3, + [26537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 14, + ACTIONS(3726), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3657), 31, + ACTIONS(3728), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128083,27 +130430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24101] = 4, + [26590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_LBRACK, - ACTIONS(3659), 14, + ACTIONS(3722), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3661), 30, + ACTIONS(3724), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128113,6 +130458,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, @@ -128134,33 +130480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24156] = 7, + [26643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3270), 1, - anon_sym_QMARK_DOT, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(1545), 14, + ACTIONS(3726), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1547), 27, + ACTIONS(3728), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128170,7 +130508,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, @@ -128187,35 +130528,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [24217] = 5, + [26696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - STATE(1366), 1, - sym_arguments, - ACTIONS(3663), 14, + ACTIONS(3730), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3665), 29, + ACTIONS(3732), 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, @@ -128239,106 +130578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [24274] = 33, + [26749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3667), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [24387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2517), 14, + ACTIONS(3734), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2519), 31, + ACTIONS(3736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128370,107 +130630,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24440] = 33, + [26802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3669), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [24553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 1, - sym__automatic_semicolon, - ACTIONS(1491), 14, + ACTIONS(3730), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1489), 30, + ACTIONS(3732), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128500,26 +130678,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [24608] = 3, + [26855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1969), 14, + ACTIONS(3734), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1967), 31, + ACTIONS(3736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128551,25 +130730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24661] = 3, + [26908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 14, + ACTIONS(3738), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3675), 31, + ACTIONS(3740), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128601,25 +130780,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24714] = 3, + [26961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 14, + ACTIONS(3742), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3679), 31, + ACTIONS(3744), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128651,25 +130830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24767] = 3, + [27014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 14, + ACTIONS(3738), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3683), 31, + ACTIONS(3740), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128701,105 +130880,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24820] = 33, + [27067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3685), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [24933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 14, + ACTIONS(3742), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3689), 31, + ACTIONS(3744), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128831,87 +130930,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24986] = 15, + [27120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3691), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3746), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 20, + anon_sym_DASH_DASH, + ACTIONS(3748), 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_BQUOTE, anon_sym_satisfies, - [25063] = 3, + anon_sym_extends, + anon_sym_implements, + [27177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 14, + ACTIONS(3750), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3696), 31, + ACTIONS(3752), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128943,25 +131032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25116] = 3, + [27230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 14, + ACTIONS(3754), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3700), 31, + ACTIONS(3756), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128993,35 +131082,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25169] = 6, + [27283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3702), 12, + ACTIONS(3024), 1, + anon_sym_LPAREN, + STATE(2360), 1, + sym_arguments, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3704), 30, + ACTIONS(2927), 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, @@ -129046,25 +131134,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [25228] = 3, + [27340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 14, + ACTIONS(3758), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3700), 31, + ACTIONS(3760), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129096,25 +131184,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25281] = 3, + [27393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 14, + ACTIONS(3762), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3700), 31, + ACTIONS(3764), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129146,106 +131234,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25334] = 34, + [27446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3708), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [25449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3712), 31, + ACTIONS(3768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129277,25 +131284,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25502] = 3, + [27499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2523), 31, + ACTIONS(3768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129327,25 +131334,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25555] = 3, + [27552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 14, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3716), 31, + ACTIONS(3768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129377,92 +131384,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25608] = 20, + [27605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3436), 1, + anon_sym_AMP, + ACTIONS(3438), 1, + anon_sym_PIPE, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(3770), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 17, + anon_sym_DASH_DASH, + ACTIONS(3772), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [25695] = 3, + anon_sym_implements, + [27664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 14, + ACTIONS(3774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3716), 31, + ACTIONS(3776), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129494,25 +131487,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25748] = 3, + [27717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3716), 31, + ACTIONS(3772), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129544,25 +131537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25801] = 3, + [27770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 14, + ACTIONS(3774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3720), 31, + ACTIONS(3776), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129594,25 +131587,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25854] = 3, + [27823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 14, + ACTIONS(3774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3596), 31, + ACTIONS(3776), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129644,25 +131637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25907] = 3, + [27876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 14, + ACTIONS(3778), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3596), 31, + ACTIONS(3780), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129694,27 +131687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25960] = 4, + [27929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_DOT, - ACTIONS(3722), 14, + ACTIONS(1971), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3724), 30, + ACTIONS(1969), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129726,6 +131717,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, @@ -129745,29 +131737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26015] = 6, + [27982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3729), 12, + ACTIONS(3778), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 30, + ACTIONS(3780), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129797,26 +131785,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26074] = 3, + [28035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 14, + ACTIONS(3782), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 31, + ACTIONS(3784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129848,99 +131837,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26127] = 27, + [28088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3786), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3514), 1, anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3580), 1, anon_sym_PIPE, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 11, + anon_sym_DASH_DASH, + ACTIONS(3788), 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_BQUOTE, anon_sym_satisfies, - [26228] = 3, + anon_sym_extends, + anon_sym_implements, + [28141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 14, + ACTIONS(3786), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3735), 31, + ACTIONS(3788), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129972,100 +131937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26281] = 28, + [28194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3580), 1, - anon_sym_PIPE, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 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_satisfies, - [26384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 14, + ACTIONS(3778), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3739), 31, + ACTIONS(3780), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130097,26 +131987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26437] = 4, + [28247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3741), 13, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3743), 31, + ACTIONS(3792), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130148,25 +132037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26492] = 3, + [28300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 14, + ACTIONS(3786), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3747), 31, + ACTIONS(3788), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130198,25 +132087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26545] = 3, + [28353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 14, + ACTIONS(3794), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2527), 31, + ACTIONS(3796), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130248,25 +132137,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26598] = 3, + [28406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 14, + ACTIONS(3794), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1963), 31, + ACTIONS(3796), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130298,25 +132187,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26651] = 3, + [28459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 14, + ACTIONS(3794), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3751), 31, + ACTIONS(3796), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130348,97 +132237,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26704] = 25, + [28512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(1975), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3502), 2, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 12, + anon_sym_DASH_DASH, + ACTIONS(1973), 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_BQUOTE, anon_sym_satisfies, - [26801] = 3, + anon_sym_extends, + anon_sym_implements, + [28565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3755), 31, + ACTIONS(3444), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130470,25 +132337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26854] = 3, + [28618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 14, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3759), 31, + ACTIONS(3444), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130520,25 +132387,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26907] = 3, + [28671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 14, + ACTIONS(3798), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3763), 31, + ACTIONS(3800), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130570,27 +132437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26960] = 5, + [28724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3765), 12, + ACTIONS(3802), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3767), 31, + ACTIONS(3804), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130622,29 +132487,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_PIPE, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3769), 12, + [28777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3771), 30, + ACTIONS(3808), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130674,242 +132535,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27076] = 29, + [28830] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(3832), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(3834), 1, anon_sym_CARET, - ACTIONS(3520), 1, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - STATE(3320), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3525), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [27181] = 3, + anon_sym_of, + anon_sym_SEMI, + [28942] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3862), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3759), 31, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27234] = 33, + [29018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3330), 1, + anon_sym_extends, + ACTIONS(3865), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(3868), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3773), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3761), 14, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3763), 31, + ACTIONS(2927), 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, @@ -130929,107 +132728,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27400] = 33, + [29076] = 36, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(3871), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + STATE(4090), 1, + sym_type_annotation, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3775), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27513] = 3, + [29194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 14, + ACTIONS(3873), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3779), 31, + ACTIONS(3513), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131059,27 +132859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27566] = 3, + [29246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 14, + ACTIONS(3875), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3783), 31, + ACTIONS(3877), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131109,98 +132908,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27619] = 24, + [29298] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(236), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3881), 1, + anon_sym_async, + ACTIONS(3883), 1, + anon_sym_static, + ACTIONS(3885), 1, + anon_sym_readonly, + ACTIONS(3891), 1, + anon_sym_override, + STATE(2257), 1, + sym_accessibility_modifier, + STATE(2282), 1, + sym_override_modifier, + ACTIONS(240), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2951), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3887), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3889), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2840), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3873), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3875), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3879), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [29388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3893), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 12, + anon_sym_DASH_DASH, + ACTIONS(3895), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [27714] = 3, + anon_sym_implements, + [29440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 14, + ACTIONS(3897), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3787), 31, + ACTIONS(3899), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131230,241 +133074,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27767] = 22, + [29492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3901), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3502), 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(3500), 14, + anon_sym_DASH_DASH, + ACTIONS(3903), 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_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, - [27858] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 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(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3789), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27971] = 18, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3691), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3905), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 19, + anon_sym_DASH_DASH, + ACTIONS(3907), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [28054] = 3, + anon_sym_implements, + [29596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 14, + ACTIONS(3909), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3779), 31, + ACTIONS(3911), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131494,27 +133221,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28107] = 3, + [29648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 14, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3787), 31, + ACTIONS(1465), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131544,107 +133270,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28160] = 18, + [29700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3691), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 11, + ACTIONS(3913), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 18, + anon_sym_DASH_DASH, + ACTIONS(3915), 30, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28243] = 17, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3691), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3917), 14, anon_sym_STAR, - anon_sym_SLASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -131653,47 +133333,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 19, + anon_sym_DASH_DASH, + ACTIONS(3919), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [28324] = 3, + anon_sym_implements, + [29804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 14, + ACTIONS(3921), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3783), 31, + ACTIONS(3923), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131723,280 +133417,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28377] = 33, + [29856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3925), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3791), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28490] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3793), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28603] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + anon_sym_DASH_DASH, + ACTIONS(3927), 30, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3799), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3802), 1, anon_sym_RBRACE, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3816), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3818), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3639), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3795), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3838), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3840), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28719] = 4, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, - sym__automatic_semicolon, - ACTIONS(1341), 14, + ACTIONS(3929), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1339), 29, + ACTIONS(3523), 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, @@ -132015,187 +133515,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [28773] = 36, + anon_sym_implements, + [29960] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(3854), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - STATE(4002), 1, - sym_type_annotation, - ACTIONS(3498), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28891] = 33, + ACTIONS(3564), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [30072] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(3967), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3653), 4, + ACTIONS(3559), 20, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [29003] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [30146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 14, + ACTIONS(3970), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1435), 30, + ACTIONS(3972), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132226,25 +133704,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29055] = 3, + [30198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 14, + ACTIONS(3974), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3858), 30, + ACTIONS(3976), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132275,25 +133753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29107] = 3, + [30250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 14, + ACTIONS(3978), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1419), 30, + ACTIONS(3980), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132324,36 +133802,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29159] = 3, + [30302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 14, + ACTIONS(1447), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3862), 30, + ACTIONS(1445), 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, @@ -132372,26 +133850,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29211] = 3, + anon_sym_PIPE_RBRACE, + [30354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 14, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3773), 30, + ACTIONS(1563), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132422,104 +133900,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29263] = 33, + [30406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(1331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3982), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1329), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3806), 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, + anon_sym_DASH_DASH, + ACTIONS(1333), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3818), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, + [30462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + sym__automatic_semicolon, + ACTIONS(1471), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + anon_sym_DASH_DASH, + ACTIONS(1469), 29, + 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, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3669), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [29375] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [30516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 14, + ACTIONS(3987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3775), 30, + ACTIONS(3989), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132550,115 +134050,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29427] = 33, + [30568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3991), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3806), 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, + anon_sym_DASH_DASH, + ACTIONS(3993), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3814), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3876), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3882), 1, - anon_sym_AMP, - ACTIONS(3884), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3868), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3896), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3898), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3894), 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, - ACTIONS(3667), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [29539] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [30620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 14, + ACTIONS(1471), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3906), 30, + ACTIONS(1469), 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, @@ -132677,26 +134147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29591] = 3, + anon_sym_PIPE_RBRACE, + [30672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 14, + ACTIONS(1443), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 30, + ACTIONS(1441), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132727,25 +134197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29643] = 3, + [30724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 14, + ACTIONS(3995), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3912), 30, + ACTIONS(3997), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -132776,36 +134246,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29695] = 3, + [30776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 14, + ACTIONS(4001), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4005), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3999), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1423), 30, + ACTIONS(4003), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -132824,42 +134297,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29747] = 7, + [30832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_DOT, - ACTIONS(3918), 1, - anon_sym_is, - STATE(1717), 1, - sym_type_arguments, - ACTIONS(3272), 13, + ACTIONS(4008), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3002), 27, - sym__automatic_semicolon, + ACTIONS(3531), 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_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, @@ -132877,107 +134345,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [29807] = 35, + anon_sym_implements, + [30884] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(3920), 1, - anon_sym_COMMA, - ACTIONS(3923), 1, - anon_sym_RBRACE, - STATE(3304), 1, + ACTIONS(4010), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3667), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3795), 2, + STATE(4064), 1, + sym_type_annotation, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29923] = 3, + [31002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 14, + ACTIONS(4012), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3927), 30, + ACTIONS(3529), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133008,36 +134477,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29975] = 3, + [31054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 14, + ACTIONS(4014), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1439), 30, - sym__automatic_semicolon, + ACTIONS(4016), 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, @@ -133056,45 +134525,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [30027] = 9, + anon_sym_implements, + [31106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3872), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, + ACTIONS(4018), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3631), 24, - sym__automatic_semicolon, + ACTIONS(3537), 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_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -133111,186 +134572,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [30091] = 33, + anon_sym_implements, + [31158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(4020), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3789), 4, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4022), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [30203] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3814), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3876), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3882), 1, - anon_sym_AMP, - ACTIONS(3884), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3868), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3896), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3898), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3894), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3773), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [30315] = 4, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [31210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(1343), 14, + ACTIONS(4024), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 29, + ACTIONS(4026), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -133298,6 +134650,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, @@ -133320,709 +134673,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30369] = 33, + [31262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(4028), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(3882), 1, anon_sym_AMP, - ACTIONS(3884), 1, - anon_sym_CARET, - ACTIONS(3886), 1, anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - ACTIONS(3900), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3868), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3898), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3894), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3685), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [30481] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 16, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4030), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [30567] = 15, + anon_sym_implements, + [31314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - ACTIONS(3929), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, + ACTIONS(4032), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 19, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4034), 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_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, - [30643] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3802), 1, - anon_sym_RBRACE, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - ACTIONS(3932), 1, - anon_sym_COMMA, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3667), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3795), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3838), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30759] = 33, + anon_sym_implements, + [31366] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3775), 4, + ACTIONS(3539), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [30871] = 33, + [31478] = 36, ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4036), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3868), 2, + STATE(3964), 1, + sym_type_annotation, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3633), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [30983] = 33, + [31596] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3872), 1, + ACTIONS(4038), 1, anon_sym_LT, - ACTIONS(3874), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3882), 1, - anon_sym_AMP, - ACTIONS(3884), 1, - anon_sym_CARET, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - ACTIONS(3900), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, - sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3550), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3552), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3894), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3639), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [31095] = 33, + [31676] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3775), 4, + ACTIONS(3548), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [31207] = 35, + [31788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(4041), 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_DASH_DASH, + ACTIONS(3539), 30, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3799), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3802), 1, anon_sym_RBRACE, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3816), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3818), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, + anon_sym_implements, + [31840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + anon_sym_DASH_DASH, + ACTIONS(4045), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(3935), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31323] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [31892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 14, + ACTIONS(4047), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1489), 30, + ACTIONS(4049), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134053,25 +135221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31375] = 3, + [31944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 14, + ACTIONS(4051), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3939), 30, + ACTIONS(4053), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134102,37 +135270,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31427] = 4, + [31996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3574), 2, anon_sym_EQ, - ACTIONS(3941), 14, + anon_sym_QMARK, + ACTIONS(4055), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3572), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + ACTIONS(3576), 23, + 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_BQUOTE, + anon_sym_satisfies, + [32052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 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_DASH_DASH, - ACTIONS(3945), 29, + ACTIONS(1441), 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_COLON, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -134151,26 +135369,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [31481] = 3, + anon_sym_PIPE_RBRACE, + [32104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 14, + ACTIONS(4058), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 30, + ACTIONS(4060), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134201,25 +135419,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31533] = 3, + [32156] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 14, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(4062), 1, + anon_sym_QMARK_DOT, + ACTIONS(4064), 1, + anon_sym_LT, + STATE(1629), 1, + sym_type_arguments, + STATE(1885), 1, + sym_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, 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, + anon_sym_DASH_DASH, + ACTIONS(3276), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [32224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 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_DASH_DASH, - ACTIONS(1401), 30, + ACTIONS(3188), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134250,25 +135525,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31585] = 3, + [32276] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, 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, + anon_sym_DASH_DASH, + ACTIONS(3543), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_satisfies, + [32346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 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_DASH_DASH, - ACTIONS(1547), 30, + ACTIONS(4071), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134299,25 +135632,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31637] = 3, + [32398] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, + anon_sym_AMP_AMP, + ACTIONS(3937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3933), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3537), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [32510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1449), 30, + ACTIONS(1483), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134348,34 +135760,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31689] = 3, + [32562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3533), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1435), 30, + ACTIONS(3535), 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, @@ -134394,28 +135814,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [31741] = 3, + [32626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 14, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3949), 30, + ACTIONS(2927), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134446,38 +135864,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31793] = 3, + [32678] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(4073), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3953), 30, + ACTIONS(3543), 21, + 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_COMMA, 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, @@ -134492,48 +135921,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [31845] = 11, + [32748] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3914), 1, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3844), 1, anon_sym_LT, - ACTIONS(3955), 1, - anon_sym_QMARK_DOT, - STATE(1791), 1, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(1798), 1, - sym_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3258), 13, + ACTIONS(3810), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3818), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3848), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3548), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [32860] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4076), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3550), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3260), 23, + ACTIONS(3552), 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, @@ -134549,51 +136064,51 @@ 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_BQUOTE, - anon_sym_satisfies, - [31913] = 12, + [32940] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3957), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4079), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3614), 13, + ACTIONS(3557), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3616), 21, + ACTIONS(3559), 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, @@ -134608,108 +136123,184 @@ 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_satisfies, - [31983] = 33, + [33014] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, + ACTIONS(3965), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3933), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3529), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [33126] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3935), 1, + anon_sym_AMP_AMP, + ACTIONS(3937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3773), 4, + ACTIONS(3527), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [32095] = 4, + [33238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3478), 14, + ACTIONS(4082), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 29, + ACTIONS(4084), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134717,6 +136308,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, @@ -134739,91 +136331,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32149] = 20, + [33290] = 36, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3890), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4086), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3868), 2, + STATE(3973), 1, + sym_type_annotation, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3880), 2, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 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, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [32235] = 3, + [33408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 14, + ACTIONS(4088), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3962), 30, + ACTIONS(4090), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134854,25 +136462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32287] = 3, + [33460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 14, + ACTIONS(4092), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1513), 30, + ACTIONS(4094), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -134903,104 +136511,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32339] = 33, + [33512] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3789), 4, + ACTIONS(3531), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [32451] = 3, + [33624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 14, + ACTIONS(1491), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3793), 30, + ACTIONS(1493), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135031,25 +136639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32503] = 3, + [33676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 14, + ACTIONS(1511), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3968), 30, + ACTIONS(1513), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135080,25 +136688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32555] = 3, + [33728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 14, + ACTIONS(1547), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3972), 30, + ACTIONS(1549), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135129,25 +136737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32607] = 3, + [33780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 14, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3976), 30, + ACTIONS(1539), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135178,341 +136786,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32659] = 33, + [33832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(4096), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3838), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3791), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [32771] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3793), 4, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(4098), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [32883] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3816), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3818), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3838), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3840), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3574), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [32995] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33884] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3653), 4, - sym__automatic_semicolon, + ACTIONS(4100), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [33107] = 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [33996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 14, + ACTIONS(4102), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3980), 30, + ACTIONS(4104), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135543,25 +136963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33159] = 3, + [34048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 14, + ACTIONS(1521), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3984), 30, + ACTIONS(1523), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135592,36 +137012,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33211] = 3, + [34100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 14, + ACTIONS(1501), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1423), 30, - sym__automatic_semicolon, + ACTIONS(1503), 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, @@ -135640,180 +137060,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33263] = 27, + anon_sym_implements, + [34152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3882), 1, - anon_sym_AMP, - ACTIONS(3884), 1, - anon_sym_CARET, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(1377), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3896), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3898), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3894), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [33363] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(222), 1, - anon_sym_STAR, - ACTIONS(236), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, - anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_async, - ACTIONS(3990), 1, - anon_sym_static, - ACTIONS(3992), 1, - anon_sym_readonly, - ACTIONS(3998), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - ACTIONS(240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2947), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3994), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3996), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3711), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3986), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33453] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3627), 1, - anon_sym_extends, - ACTIONS(4004), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4007), 3, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4000), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4002), 27, + ACTIONS(1379), 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, @@ -135834,25 +137110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33511] = 3, + [34204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 14, + ACTIONS(1459), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4012), 30, + ACTIONS(1461), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135883,25 +137159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33563] = 3, + [34256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3176), 14, + ACTIONS(1573), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3180), 30, + ACTIONS(1575), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135932,213 +137208,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33615] = 34, + [34308] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3870), 1, - anon_sym_GT, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - ACTIONS(4016), 1, - anon_sym_in, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3880), 2, + ACTIONS(3933), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4014), 4, + ACTIONS(3521), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [33729] = 35, + [34420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1387), 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_DASH_DASH, + ACTIONS(1389), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3268), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4023), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, - anon_sym_GT_GT, - ACTIONS(4037), 1, - anon_sym_AMP, - ACTIONS(4039), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4041), 1, - anon_sym_PIPE, - ACTIONS(4045), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, - sym__ternary_qmark, - STATE(2760), 1, - sym_type_arguments, - STATE(3324), 1, - aux_sym_extends_clause_repeat1, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4021), 2, - anon_sym_LBRACE, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - ACTIONS(4025), 2, + [34472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1411), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4043), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + anon_sym_DASH_DASH, + ACTIONS(1413), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4049), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33845] = 14, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4059), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3546), 12, + ACTIONS(1447), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 20, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(1445), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -136152,115 +137430,138 @@ 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_BQUOTE, anon_sym_satisfies, - [33919] = 29, + anon_sym_implements, + [34576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3502), 1, + ACTIONS(1395), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 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, + anon_sym_DASH_DASH, + ACTIONS(1393), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3816), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(3818), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 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, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3795), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1399), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 8, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(1397), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [34023] = 6, + anon_sym_implements, + [34680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(1467), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 27, + ACTIONS(1465), 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_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, @@ -136279,41 +137580,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [34732] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4110), 1, + anon_sym_COMMA, + ACTIONS(4114), 1, + anon_sym_AMP_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4144), 1, + sym__ternary_qmark, + STATE(2757), 1, + sym_type_arguments, + STATE(3425), 1, + aux_sym_extends_clause_repeat1, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4108), 2, + anon_sym_LBRACE, anon_sym_implements, - [34081] = 6, + ACTIONS(4112), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4140), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4136), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34848] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4068), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(4064), 1, + anon_sym_LT, + ACTIONS(4146), 1, + anon_sym_DOT, + ACTIONS(4148), 1, + anon_sym_is, + STATE(1664), 1, + sym_type_arguments, + ACTIONS(3266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(2923), 27, + ACTIONS(3022), 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_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136331,26 +137714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34139] = 3, + anon_sym_extends, + [34908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 14, + ACTIONS(1451), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1513), 30, + ACTIONS(1449), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136381,251 +137764,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [34191] = 22, + [34960] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3812), 1, - anon_sym_LT, + anon_sym_as, ACTIONS(3814), 1, - anon_sym_DOT, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, anon_sym_GT_GT, ACTIONS(3832), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - STATE(3304), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1930), 2, + ACTIONS(3848), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3502), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 13, + ACTIONS(3539), 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [34281] = 33, + [35072] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3791), 4, + ACTIONS(3515), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [34393] = 18, + [35184] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4074), 1, + ACTIONS(3935), 1, + anon_sym_AMP_AMP, + ACTIONS(3937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, anon_sym_LT, - STATE(3304), 1, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 11, + ACTIONS(3931), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 17, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3513), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + [35296] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3824), 1, anon_sym_AMP_AMP, + ACTIONS(3826), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3818), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3848), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34475] = 17, + ACTIONS(3537), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35408] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, + anon_sym_GT_GT, ACTIONS(3832), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4074), 1, - anon_sym_LT, - STATE(3304), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1930), 2, + ACTIONS(3818), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3848), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 10, + ACTIONS(3846), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3531), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136634,155 +138172,154 @@ 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(3500), 18, + anon_sym_DASH_DASH, + ACTIONS(1553), 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [34555] = 36, + anon_sym_PIPE_RBRACE, + [35572] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(3832), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(3834), 1, anon_sym_CARET, - ACTIONS(3520), 1, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3860), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4077), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - STATE(4084), 1, - sym_type_annotation, - ACTIONS(3498), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34673] = 14, + ACTIONS(3523), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4079), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3546), 12, + ACTIONS(4150), 1, + sym__automatic_semicolon, + ACTIONS(1327), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 20, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(1325), 29, 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, @@ -136796,266 +138333,316 @@ 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_BQUOTE, anon_sym_satisfies, - [34747] = 26, + anon_sym_PIPE_RBRACE, + [35738] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - STATE(3304), 1, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(4152), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3795), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3808), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3830), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3450), 19, + 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, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3500), 10, - sym__automatic_semicolon, + anon_sym_satisfies, + [35814] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2927), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [34845] = 25, + anon_sym_implements, + [35872] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_GT_GT, ACTIONS(3824), 1, - anon_sym_AMP, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, + anon_sym_GT_GT, ACTIONS(3832), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 11, + ACTIONS(3450), 8, 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, - [34941] = 24, + [35976] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(3828), 1, anon_sym_GT_GT, - ACTIONS(3832), 1, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3842), 1, anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3840), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3836), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 11, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3450), 13, 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_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [35035] = 18, + [36066] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4074), 1, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3830), 2, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 8, + ACTIONS(3446), 7, 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(3500), 18, + ACTIONS(3450), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137064,8 +138651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -137074,530 +138659,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [35117] = 28, + [36152] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3812), 1, - anon_sym_LT, + anon_sym_as, ACTIONS(3814), 1, - anon_sym_DOT, + anon_sym_BANG, ACTIONS(3816), 1, - anon_sym_AMP_AMP, + anon_sym_LPAREN, ACTIONS(3820), 1, - anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, ACTIONS(3824), 1, - anon_sym_AMP, + anon_sym_AMP_AMP, ACTIONS(3826), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3828), 1, - anon_sym_PIPE, + anon_sym_GT_GT, ACTIONS(3832), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - STATE(3304), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 9, + ACTIONS(3564), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [35219] = 3, + [36264] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3446), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1471), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, anon_sym_PERCENT, + ACTIONS(3953), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 14, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3933), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1557), 30, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36366] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3818), 1, + anon_sym_GT, + ACTIONS(3820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3824), 1, anon_sym_AMP_AMP, + ACTIONS(3826), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, anon_sym_satisfies, - anon_sym_implements, - [35323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3860), 1, + sym__ternary_qmark, + ACTIONS(4163), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1527), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35375] = 17, + ACTIONS(4161), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [36480] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4082), 1, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(4152), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, + ACTIONS(3931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3949), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3557), 11, - anon_sym_STAR, + ACTIONS(3446), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 18, + ACTIONS(3450), 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_instanceof, - [35455] = 3, + anon_sym_satisfies, + [36562] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3933), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1485), 30, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35507] = 33, + [36656] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, - anon_sym_CARET, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3574), 4, + ACTIONS(3450), 11, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [35619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3685), 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_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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35671] = 27, + [36752] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - STATE(3304), 1, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 10, + ACTIONS(3450), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137608,16 +139169,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [35771] = 3, + [36850] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(4152), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -137625,80 +139213,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4089), 30, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35823] = 12, + [36930] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(4091), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(4152), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3614), 13, + ACTIONS(3446), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3616), 21, + ACTIONS(3450), 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, @@ -137706,93 +139290,112 @@ 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_satisfies, - [35893] = 3, + [37012] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3933), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1459), 30, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35945] = 3, + [37102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 14, + ACTIONS(3640), 1, + anon_sym_extends, + ACTIONS(4166), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4169), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4047), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4096), 30, + ACTIONS(4049), 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, @@ -137813,375 +139416,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35997] = 33, + [37160] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3446), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(3955), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3793), 4, + ACTIONS(3450), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [36109] = 36, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [37264] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - STATE(4131), 1, - sym_type_annotation, - ACTIONS(3498), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36227] = 29, + ACTIONS(3523), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [37376] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 8, + ACTIONS(3525), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [36331] = 28, + [37488] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3872), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3862), 1, anon_sym_LT, - ACTIONS(3874), 1, - anon_sym_AMP_AMP, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3882), 1, - anon_sym_AMP, - ACTIONS(3884), 1, - anon_sym_CARET, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3896), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3898), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 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, - [36433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 14, + ACTIONS(3446), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4102), 30, + ACTIONS(3450), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36485] = 3, + [37570] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3862), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -138189,567 +139757,536 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4106), 30, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36537] = 3, + [37650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3828), 1, anon_sym_GT_GT, + ACTIONS(3832), 1, anon_sym_AMP, + ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3446), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(3810), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3818), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4110), 30, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36589] = 3, + [37748] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3828), 1, anon_sym_GT_GT, + ACTIONS(3832), 1, anon_sym_AMP, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3446), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(3810), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3818), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1401), 30, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [36641] = 5, + [37844] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4112), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3478), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3818), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3482), 23, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 11, + 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [36697] = 3, + [37938] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3840), 1, + anon_sym_PERCENT, + ACTIONS(3842), 1, + anon_sym_STAR_STAR, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3862), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3838), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4117), 30, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36749] = 34, + [38020] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3446), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3824), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3828), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3832), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3834), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3808), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4121), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4123), 30, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36915] = 3, + [38122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3446), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1439), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3822), 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(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, + ACTIONS(3842), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36967] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3812), 1, + ACTIONS(3844), 1, anon_sym_LT, - STATE(3304), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, + ACTIONS(3810), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3631), 24, + ACTIONS(3850), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, anon_sym_satisfies, - [37031] = 33, + [38222] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, + anon_sym_GT_GT, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3840), 2, + ACTIONS(3450), 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, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3667), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [37143] = 3, + anon_sym_satisfies, + [38308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 14, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(1329), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4127), 30, + ACTIONS(1333), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138757,7 +140294,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, @@ -138780,159 +140316,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37195] = 18, + [38362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - ACTIONS(3929), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(1471), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 18, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(1469), 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_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, - [37277] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3890), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3868), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3870), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3896), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3898), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3894), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 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_BQUOTE, anon_sym_satisfies, - [37371] = 3, + anon_sym_implements, + [38414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 14, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(3999), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4131), 30, + ACTIONS(4003), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138940,7 +140393,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, @@ -138963,25 +140415,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37423] = 3, + [38468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 14, + ACTIONS(1555), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4135), 30, + ACTIONS(1553), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139012,366 +140464,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37475] = 17, + [38520] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3446), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4137), 1, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3557), 11, + ACTIONS(3931), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 18, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [37555] = 33, + anon_sym_satisfies, + [38620] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4172), 1, + anon_sym_COMMA, + ACTIONS(4175), 1, + anon_sym_RBRACE, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3633), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [37667] = 33, + [38736] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4180), 1, + anon_sym_RBRACE, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3639), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [37779] = 25, + [38852] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3878), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, + anon_sym_AMP_AMP, + ACTIONS(3937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3890), 1, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + ACTIONS(4180), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4182), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 11, - sym__automatic_semicolon, - sym__ternary_qmark, + [38966] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [37875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 14, + ACTIONS(3965), 1, + sym__ternary_qmark, + ACTIONS(4180), 1, + anon_sym_RBRACE, + ACTIONS(4184), 1, + anon_sym_COMMA, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3933), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1537), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37927] = 3, + [39082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3572), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1397), 30, + ACTIONS(3576), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139379,7 +140888,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, @@ -139402,115 +140910,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37979] = 33, + [39136] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3874), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3878), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3886), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3900), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3902), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4180), 1, + anon_sym_RBRACE, + ACTIONS(4184), 1, + anon_sym_COMMA, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + ACTIONS(4187), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3669), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [38091] = 3, + [39252] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3844), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3533), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 30, + ACTIONS(3535), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -139527,129 +141045,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38143] = 5, + [39316] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4140), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1343), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1347), 23, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(3820), 1, anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3824), 1, anon_sym_AMP_AMP, + ACTIONS(3826), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, anon_sym_satisfies, - [38199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4143), 1, - sym__automatic_semicolon, - ACTIONS(1491), 14, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3818), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1489), 29, - 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(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38253] = 3, + ACTIONS(3529), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 14, + ACTIONS(1451), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4147), 30, + ACTIONS(1449), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139680,516 +141174,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38305] = 26, + [39480] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3878), 1, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, anon_sym_GT_GT, - ACTIONS(3882), 1, + ACTIONS(3832), 1, anon_sym_AMP, - ACTIONS(3884), 1, + ACTIONS(3834), 1, anon_sym_CARET, - ACTIONS(3890), 1, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3868), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3880), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3888), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3898), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 10, + ACTIONS(3527), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [38403] = 17, + [39592] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3890), 1, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, + anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - ACTIONS(3929), 1, + ACTIONS(3844), 1, anon_sym_LT, - STATE(3304), 1, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 10, - anon_sym_BANG, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [38483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1489), 30, + ACTIONS(3521), 4, 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_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38535] = 5, + [39704] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4149), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3941), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3945), 23, - 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, + ACTIONS(87), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [38591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1411), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3824), 1, anon_sym_AMP_AMP, + ACTIONS(3826), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3828), 1, + anon_sym_GT_GT, + ACTIONS(3832), 1, + anon_sym_AMP, + ACTIONS(3834), 1, anon_sym_CARET, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, anon_sym_satisfies, - anon_sym_implements, - [38643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 14, + ACTIONS(3860), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3810), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3818), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3830), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3633), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3846), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [38695] = 36, + ACTIONS(3515), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39816] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3824), 1, + anon_sym_AMP_AMP, + ACTIONS(3826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3828), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(3832), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(3834), 1, anon_sym_CARET, - ACTIONS(3520), 1, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3840), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3842), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3844), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3860), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4154), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - STATE(3982), 1, - sym_type_annotation, - ACTIONS(3498), 2, + ACTIONS(3810), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3818), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3830), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3838), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3848), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3850), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3846), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38813] = 18, + ACTIONS(3513), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39928] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3892), 1, + ACTIONS(4114), 1, + anon_sym_AMP_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3929), 1, + ACTIONS(4134), 1, anon_sym_LT, - STATE(3304), 1, + ACTIONS(4142), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4144), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 11, + ACTIONS(4106), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 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(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3523), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38895] = 3, + [40039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 14, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOT, + STATE(1767), 1, + sym_arguments, + ACTIONS(2994), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4158), 30, + ACTIONS(2984), 26, + 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, @@ -140207,36 +141618,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38947] = 3, + anon_sym_extends, + [40096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 14, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4162), 30, + ACTIONS(2927), 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, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140256,37 +141671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38999] = 3, + [40155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 14, + ACTIONS(1405), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4166), 30, + ACTIONS(1403), 29, + 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, @@ -140305,962 +141717,806 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39051] = 3, + anon_sym_extends, + anon_sym_is, + [40206] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4191), 1, anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4170), 30, + ACTIONS(3450), 16, sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_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_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [39103] = 22, + [40287] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3872), 1, - anon_sym_LT, - ACTIONS(3878), 1, - anon_sym_GT_GT, - ACTIONS(3890), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3892), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(4191), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3868), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3870), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3880), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3888), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3894), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3502), 5, + ACTIONS(3446), 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(3500), 13, - sym__automatic_semicolon, + ACTIONS(3450), 17, 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_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, - [39193] = 33, + anon_sym_implements, + [40366] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3520), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4172), 4, + ACTIONS(3450), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [39305] = 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [40463] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4074), 1, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, - anon_sym_STAR, + ACTIONS(3446), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4106), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 19, - 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, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4136), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [39381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1569), 30, + ACTIONS(3450), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39433] = 3, + [40558] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4112), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1373), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4140), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 14, - anon_sym_STAR, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4002), 30, + ACTIONS(4136), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39537] = 33, + [40651] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3548), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3685), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [39649] = 6, + [40762] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, - anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1717), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4191), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - ACTIONS(3272), 13, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4128), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3002), 27, - sym__automatic_semicolon, + ACTIONS(3450), 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [39706] = 34, + anon_sym_implements, + [40843] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3639), 1, - anon_sym_COMMA, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3935), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39819] = 35, + ACTIONS(3450), 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, + [40944] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - ACTIONS(4174), 1, - anon_sym_RBRACK, - STATE(3320), 1, + STATE(2879), 1, sym_type_arguments, - STATE(3489), 1, - aux_sym_array_repeat1, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39934] = 35, + ACTIONS(4194), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [41055] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3520), 1, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(4176), 1, - anon_sym_RPAREN, - STATE(3320), 1, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(3606), 1, - aux_sym_array_repeat1, - ACTIONS(3498), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40049] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4178), 1, - anon_sym_STAR, - ACTIONS(4180), 1, - anon_sym_RBRACE, - ACTIONS(4182), 1, - anon_sym_async, - ACTIONS(4186), 1, - anon_sym_AT, - ACTIONS(4188), 1, - anon_sym_static, - ACTIONS(4190), 1, - anon_sym_readonly, - ACTIONS(4194), 1, - anon_sym_declare, - ACTIONS(4196), 1, - anon_sym_abstract, - STATE(2176), 1, - sym_method_definition, - STATE(2229), 1, - sym_accessibility_modifier, - STATE(2260), 1, - sym_override_modifier, - STATE(3395), 1, - sym_method_signature, - ACTIONS(4184), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4192), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1546), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2404), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3439), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [40144] = 34, + ACTIONS(3450), 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, + [41154] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, - anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, - sym__ternary_qmark, - ACTIONS(4198), 1, - anon_sym_COMMA, - STATE(3304), 1, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3795), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3840), 2, + ACTIONS(3450), 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, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3836), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40257] = 6, + anon_sym_satisfies, + anon_sym_implements, + [41239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(4200), 1, - anon_sym_DOT, - STATE(1690), 1, - sym_arguments, - ACTIONS(3298), 14, + ACTIONS(3048), 1, + anon_sym_EQ, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3051), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3300), 26, - sym__automatic_semicolon, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141278,251 +142534,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [40314] = 35, + [41296] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(4202), 1, - anon_sym_RPAREN, - STATE(3320), 1, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4191), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(3585), 1, - aux_sym_array_repeat1, - ACTIONS(3498), 2, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3450), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40429] = 34, + anon_sym_satisfies, + anon_sym_implements, + [41371] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - ACTIONS(4198), 1, - anon_sym_COMMA, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4204), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3513), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40542] = 6, + [41482] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(4206), 1, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1691), 1, - sym_arguments, - ACTIONS(3304), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3306), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3448), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4114), 1, anon_sym_AMP_AMP, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, anon_sym_PERCENT, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4144), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3515), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [40599] = 6, + [41593] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(4208), 1, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1692), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4196), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, sym_arguments, - ACTIONS(2982), 14, + ACTIONS(3550), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2978), 26, - sym__automatic_semicolon, + ACTIONS(3552), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -141536,178 +142811,129 @@ 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [40656] = 35, + anon_sym_implements, + [41672] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - ACTIONS(4210), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3443), 1, - aux_sym_array_repeat1, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3521), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40771] = 6, + [41783] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, - anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(3054), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2919), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3454), 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(3461), 1, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [40828] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3484), 1, - anon_sym_LBRACK, - ACTIONS(3487), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3490), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3478), 12, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4199), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3482), 21, + ACTIONS(3559), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -141721,171 +142947,195 @@ 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_BQUOTE, anon_sym_satisfies, - [40889] = 33, + anon_sym_implements, + [41856] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3527), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4216), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [41000] = 8, + [41967] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(3492), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3495), 2, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4114), 1, + anon_sym_AMP_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(4218), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1975), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1343), 12, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4144), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4112), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1347), 21, - 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(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3529), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [41061] = 9, + [42078] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4134), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3629), 13, + ACTIONS(3533), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3631), 23, + ACTIONS(3535), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -141909,117 +143159,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_satisfies, anon_sym_implements, - [41124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3045), 1, - anon_sym_QMARK, - ACTIONS(3043), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2919), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [41181] = 25, + [42141] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4178), 1, + ACTIONS(4202), 1, anon_sym_STAR, - ACTIONS(4182), 1, + ACTIONS(4204), 1, + anon_sym_RBRACE, + ACTIONS(4206), 1, anon_sym_async, - ACTIONS(4186), 1, + ACTIONS(4210), 1, anon_sym_AT, - ACTIONS(4188), 1, + ACTIONS(4212), 1, anon_sym_static, - ACTIONS(4190), 1, + ACTIONS(4214), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4218), 1, anon_sym_declare, - ACTIONS(4196), 1, + ACTIONS(4220), 1, anon_sym_abstract, - ACTIONS(4222), 1, - anon_sym_RBRACE, - STATE(2176), 1, + STATE(2219), 1, sym_method_definition, - STATE(2229), 1, + STATE(2227), 1, sym_accessibility_modifier, - STATE(2260), 1, + STATE(2283), 1, sym_override_modifier, - STATE(3395), 1, + STATE(3331), 1, sym_method_signature, - ACTIONS(4184), 2, + ACTIONS(4208), 2, sym_number, sym_private_property_identifier, - ACTIONS(4192), 2, + ACTIONS(4216), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1553), 3, + STATE(1572), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2404), 3, + STATE(2417), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3439), 3, + STATE(3638), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142030,28 +143229,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [41276] = 5, + [42236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(4064), 1, anon_sym_LT, - STATE(1711), 1, + STATE(1743), 1, sym_type_arguments, - ACTIONS(3380), 13, + ACTIONS(3350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3382), 28, + ACTIONS(3352), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142080,242 +143279,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [41331] = 33, + [42291] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4136), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3450), 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, + [42380] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4114), 1, + anon_sym_AMP_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4106), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4120), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4128), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4140), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4136), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [42483] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, + anon_sym_AMP_AMP, + ACTIONS(3937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_STAR_STAR, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3933), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3961), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4161), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [42594] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4222), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + STATE(3610), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3669), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1377), 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, + ACTIONS(3485), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [41493] = 33, + [42709] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3527), 1, + anon_sym_COMMA, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(4045), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + ACTIONS(4187), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3633), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41604] = 5, + [42822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 2, + ACTIONS(1331), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4224), 5, + ACTIONS(1977), 1, + anon_sym_extends, + ACTIONS(3566), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3478), 14, + anon_sym_LBRACK, + ACTIONS(3569), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 22, + ACTIONS(1333), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + 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, @@ -142334,403 +143709,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [41659] = 33, + [42881] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(4045), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3639), 3, + ACTIONS(3525), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4049), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4226), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3941), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3945), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4136), 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_BQUOTE, - anon_sym_satisfies, - [41825] = 33, + [42992] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(4045), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3653), 3, + ACTIONS(3531), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41936] = 34, + [43103] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3816), 1, - anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(4198), 1, - anon_sym_COMMA, - STATE(3304), 1, + ACTIONS(4224), 1, + anon_sym_RBRACK, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3795), 2, + STATE(3564), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42049] = 34, + [43218] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(3824), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(3826), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(3832), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(3834), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - ACTIONS(4198), 1, + ACTIONS(4226), 1, anon_sym_COMMA, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3795), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4230), 2, + ACTIONS(4228), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42162] = 6, + [43331] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3574), 1, anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(3037), 5, + ACTIONS(3584), 1, + anon_sym_extends, + ACTIONS(3578), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2919), 14, + anon_sym_LBRACK, + ACTIONS(3581), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3572), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(3576), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + 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, @@ -142749,276 +144076,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [42219] = 35, + [43390] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4118), 1, + anon_sym_GT_GT, + ACTIONS(4122), 1, + anon_sym_AMP, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4130), 1, + anon_sym_PERCENT, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - ACTIONS(4232), 1, - anon_sym_RBRACK, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3489), 1, - aux_sym_array_repeat1, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3537), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42334] = 35, + [43501] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(4234), 1, + ACTIONS(4230), 1, anon_sym_RPAREN, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(3567), 1, + STATE(3663), 1, aux_sym_array_repeat1, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42449] = 5, + [43616] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4236), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1343), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1347), 22, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, + ACTIONS(3820), 1, anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, anon_sym_AMP_AMP, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3939), 1, + anon_sym_GT_GT, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, anon_sym_PERCENT, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + ACTIONS(4226), 1, + anon_sym_COMMA, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3933), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3949), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4232), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3957), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [42504] = 25, + [43729] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4178), 1, + ACTIONS(4202), 1, anon_sym_STAR, - ACTIONS(4182), 1, + ACTIONS(4206), 1, anon_sym_async, - ACTIONS(4186), 1, + ACTIONS(4210), 1, anon_sym_AT, - ACTIONS(4188), 1, + ACTIONS(4212), 1, anon_sym_static, - ACTIONS(4190), 1, + ACTIONS(4214), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4218), 1, anon_sym_declare, - ACTIONS(4196), 1, + ACTIONS(4220), 1, + anon_sym_abstract, + ACTIONS(4234), 1, + anon_sym_RBRACE, + STATE(2219), 1, + sym_method_definition, + STATE(2227), 1, + sym_accessibility_modifier, + STATE(2283), 1, + sym_override_modifier, + STATE(3331), 1, + sym_method_signature, + ACTIONS(4208), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4216), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1572), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3638), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [43824] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4202), 1, + anon_sym_STAR, + ACTIONS(4206), 1, + anon_sym_async, + ACTIONS(4210), 1, + anon_sym_AT, + ACTIONS(4212), 1, + anon_sym_static, + ACTIONS(4214), 1, + anon_sym_readonly, + ACTIONS(4218), 1, + anon_sym_declare, + ACTIONS(4220), 1, anon_sym_abstract, - ACTIONS(4238), 1, + ACTIONS(4236), 1, anon_sym_RBRACE, - STATE(2176), 1, + STATE(2219), 1, sym_method_definition, - STATE(2229), 1, + STATE(2227), 1, sym_accessibility_modifier, - STATE(2260), 1, + STATE(2283), 1, sym_override_modifier, - STATE(3395), 1, + STATE(3331), 1, sym_method_signature, - ACTIONS(4184), 2, + ACTIONS(4208), 2, sym_number, sym_private_property_identifier, - ACTIONS(4192), 2, + ACTIONS(4216), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1547), 3, + STATE(1558), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2404), 3, + STATE(2417), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3439), 3, + STATE(3638), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143029,274 +144453,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [42599] = 33, + [43919] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(4045), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3667), 3, + ACTIONS(3539), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42710] = 33, + [44030] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, + ACTIONS(3935), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, + ACTIONS(3937), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3943), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3945), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3947), 1, anon_sym_PIPE, - ACTIONS(4045), 1, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3965), 1, sym__ternary_qmark, - STATE(2769), 1, + ACTIONS(4226), 1, + anon_sym_COMMA, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + ACTIONS(4238), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4049), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4240), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [42821] = 33, + [44143] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, + ACTIONS(4114), 1, anon_sym_AMP_AMP, - ACTIONS(4031), 1, + ACTIONS(4116), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(4118), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(4122), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(4045), 1, + ACTIONS(4130), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4142), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(4144), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(4112), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(4120), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(4128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(4138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(4140), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3685), 3, + ACTIONS(3564), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(4136), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42932] = 7, + [44254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2998), 1, anon_sym_EQ, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 25, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143315,136 +144739,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [42991] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 1, - anon_sym_STAR, - ACTIONS(4248), 1, - anon_sym_RBRACE, - ACTIONS(4250), 1, - anon_sym_LBRACK, - ACTIONS(4253), 1, - anon_sym_async, - ACTIONS(4256), 1, - anon_sym_DASH, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4262), 1, - anon_sym_SQUOTE, - ACTIONS(4268), 1, - anon_sym_AT, - ACTIONS(4271), 1, - anon_sym_static, - ACTIONS(4274), 1, - anon_sym_readonly, - ACTIONS(4280), 1, - anon_sym_declare, - ACTIONS(4286), 1, - anon_sym_override, - ACTIONS(4289), 1, - anon_sym_abstract, - STATE(2176), 1, - sym_method_definition, - STATE(2229), 1, - sym_accessibility_modifier, - STATE(2260), 1, - sym_override_modifier, - STATE(3395), 1, - sym_method_signature, - ACTIONS(4265), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4277), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4283), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1546), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2404), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3439), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4242), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [43086] = 25, + [44311] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4178), 1, + ACTIONS(4202), 1, anon_sym_STAR, - ACTIONS(4182), 1, + ACTIONS(4206), 1, anon_sym_async, - ACTIONS(4186), 1, + ACTIONS(4210), 1, anon_sym_AT, - ACTIONS(4188), 1, + ACTIONS(4212), 1, anon_sym_static, - ACTIONS(4190), 1, + ACTIONS(4214), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4218), 1, anon_sym_declare, - ACTIONS(4196), 1, + ACTIONS(4220), 1, anon_sym_abstract, - ACTIONS(4292), 1, + ACTIONS(4240), 1, anon_sym_RBRACE, - STATE(2176), 1, + STATE(2219), 1, sym_method_definition, - STATE(2229), 1, + STATE(2227), 1, sym_accessibility_modifier, - STATE(2260), 1, + STATE(2283), 1, sym_override_modifier, - STATE(3395), 1, + STATE(3331), 1, sym_method_signature, - ACTIONS(4184), 2, + ACTIONS(4208), 2, sym_number, sym_private_property_identifier, - ACTIONS(4192), 2, + ACTIONS(4216), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1546), 3, + STATE(1572), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2404), 3, + STATE(2417), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3439), 3, + STATE(3638), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143455,429 +144809,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [43181] = 35, + [44406] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(4294), 1, - anon_sym_RPAREN, - STATE(3320), 1, + ACTIONS(4242), 1, + anon_sym_RBRACK, + STATE(3428), 1, sym_type_arguments, - STATE(3472), 1, - aux_sym_array_repeat1, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + STATE(3548), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [43296] = 35, + [44521] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(4296), 1, + ACTIONS(4244), 1, anon_sym_RBRACK, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(3613), 1, + STATE(3564), 1, aux_sym_array_repeat1, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [43411] = 15, + [44636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(2998), 1, + anon_sym_EQ, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4298), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3602), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 18, + anon_sym_DASH_DASH, + ACTIONS(2927), 21, 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43486] = 20, + [44695] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4033), 1, - anon_sym_GT_GT, - ACTIONS(4045), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4035), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4043), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3479), 1, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [43571] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3483), 1, anon_sym_LT, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3820), 1, - anon_sym_GT_GT, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3826), 1, - anon_sym_CARET, - ACTIONS(3828), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3832), 1, - anon_sym_PERCENT, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3842), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(3850), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4246), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3795), 2, + STATE(3592), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3808), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3822), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3830), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3840), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3836), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4014), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [43682] = 25, + [44810] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4178), 1, + ACTIONS(4202), 1, anon_sym_STAR, - ACTIONS(4182), 1, + ACTIONS(4206), 1, anon_sym_async, - ACTIONS(4186), 1, + ACTIONS(4210), 1, anon_sym_AT, - ACTIONS(4188), 1, + ACTIONS(4212), 1, anon_sym_static, - ACTIONS(4190), 1, + ACTIONS(4214), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4218), 1, anon_sym_declare, - ACTIONS(4196), 1, + ACTIONS(4220), 1, anon_sym_abstract, - ACTIONS(4301), 1, + ACTIONS(4248), 1, anon_sym_RBRACE, - STATE(2176), 1, + STATE(2219), 1, sym_method_definition, - STATE(2229), 1, + STATE(2227), 1, sym_accessibility_modifier, - STATE(2260), 1, + STATE(2283), 1, sym_override_modifier, - STATE(3395), 1, + STATE(3331), 1, sym_method_signature, - ACTIONS(4184), 2, + ACTIONS(4208), 2, sym_number, sym_private_property_identifier, - ACTIONS(4192), 2, + ACTIONS(4216), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1546), 3, + STATE(1564), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2404), 3, + STATE(2417), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3439), 3, + STATE(3638), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143888,424 +145171,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [43777] = 28, + [44905] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4033), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4025), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4035), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4043), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4051), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4053), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4049), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3499), 1, anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [43878] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4033), 1, - anon_sym_GT_GT, - ACTIONS(4037), 1, - anon_sym_AMP, - ACTIONS(4039), 1, - anon_sym_CARET, - ACTIONS(4041), 1, - anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4250), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3448), 1, + aux_sym_array_repeat1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4049), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 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, - [43977] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4298), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4043), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 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(3500), 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, + ACTIONS(3485), 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, - anon_sym_implements, - [44058] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(4303), 1, - anon_sym_RPAREN, - STATE(3320), 1, + anon_sym_instanceof, + [45020] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(4252), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(3649), 1, - aux_sym_array_repeat1, - ACTIONS(3498), 2, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + anon_sym_DASH_DASH, + ACTIONS(3543), 20, + 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, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44173] = 25, + anon_sym_PLUS_PLUS, + anon_sym_satisfies, + anon_sym_implements, + [45089] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4178), 1, + ACTIONS(4258), 1, anon_sym_STAR, - ACTIONS(4182), 1, - anon_sym_async, - ACTIONS(4186), 1, - anon_sym_AT, - ACTIONS(4188), 1, - anon_sym_static, - ACTIONS(4190), 1, - anon_sym_readonly, - ACTIONS(4194), 1, - anon_sym_declare, - ACTIONS(4196), 1, - anon_sym_abstract, - ACTIONS(4305), 1, + ACTIONS(4261), 1, anon_sym_RBRACE, - STATE(2176), 1, - sym_method_definition, - STATE(2229), 1, - sym_accessibility_modifier, - STATE(2260), 1, - sym_override_modifier, - STATE(3395), 1, - sym_method_signature, - ACTIONS(4184), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4192), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1570), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2404), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3439), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [44268] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(3142), 1, + ACTIONS(4263), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4178), 1, - anon_sym_STAR, - ACTIONS(4182), 1, + ACTIONS(4266), 1, anon_sym_async, - ACTIONS(4186), 1, + ACTIONS(4269), 1, + anon_sym_DASH, + ACTIONS(4272), 1, + anon_sym_DQUOTE, + ACTIONS(4275), 1, + anon_sym_SQUOTE, + ACTIONS(4281), 1, anon_sym_AT, - ACTIONS(4188), 1, + ACTIONS(4284), 1, anon_sym_static, - ACTIONS(4190), 1, + ACTIONS(4287), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4293), 1, anon_sym_declare, - ACTIONS(4196), 1, + ACTIONS(4299), 1, + anon_sym_override, + ACTIONS(4302), 1, anon_sym_abstract, - ACTIONS(4307), 1, - anon_sym_RBRACE, - STATE(2176), 1, + STATE(2219), 1, sym_method_definition, - STATE(2229), 1, + STATE(2227), 1, sym_accessibility_modifier, - STATE(2260), 1, + STATE(2283), 1, sym_override_modifier, - STATE(3395), 1, + STATE(3331), 1, sym_method_signature, - ACTIONS(4184), 2, + ACTIONS(4278), 2, sym_number, sym_private_property_identifier, - ACTIONS(4192), 2, + ACTIONS(4290), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(4296), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1546), 3, + STATE(1572), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2404), 3, + STATE(2417), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3439), 3, + STATE(3638), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(4255), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -144316,128 +145378,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [44363] = 33, + [45184] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4014), 3, + ACTIONS(4305), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - [44474] = 14, + anon_sym_RBRACK, + [45295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(3065), 1, + anon_sym_QMARK, + ACTIONS(3063), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2923), 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_DASH_DASH, + ACTIONS(2927), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3264), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 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, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4309), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3546), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + [45352] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(3566), 1, + anon_sym_LBRACK, + ACTIONS(3569), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1977), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1329), 12, 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, + anon_sym_DASH_DASH, + ACTIONS(1333), 21, + 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_BQUOTE, + anon_sym_satisfies, + [45413] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_is, + ACTIONS(3350), 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(3548), 19, + anon_sym_DASH_DASH, + ACTIONS(3352), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144451,315 +145605,478 @@ 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44547] = 24, + anon_sym_extends, + [45466] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(3935), 1, + anon_sym_AMP_AMP, + ACTIONS(3937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3939), 1, anon_sym_GT_GT, - ACTIONS(4045), 1, + ACTIONS(3943), 1, + anon_sym_AMP, + ACTIONS(3945), 1, + anon_sym_CARET, + ACTIONS(3947), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, + ACTIONS(3953), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3955), 1, + anon_sym_LT, + ACTIONS(3963), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3965), 1, + sym__ternary_qmark, + ACTIONS(4226), 1, + anon_sym_COMMA, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3933), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3959), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3961), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4049), 3, + ACTIONS(3957), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 10, + [45579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3574), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4313), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3572), 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_DASH_DASH, + ACTIONS(3576), 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_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44640] = 25, + [45634] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4202), 1, + anon_sym_STAR, + ACTIONS(4206), 1, + anon_sym_async, + ACTIONS(4210), 1, + anon_sym_AT, + ACTIONS(4212), 1, + anon_sym_static, + ACTIONS(4214), 1, + anon_sym_readonly, + ACTIONS(4218), 1, + anon_sym_declare, + ACTIONS(4220), 1, + anon_sym_abstract, + ACTIONS(4315), 1, + anon_sym_RBRACE, + STATE(2219), 1, + sym_method_definition, + STATE(2227), 1, + sym_accessibility_modifier, + STATE(2283), 1, + sym_override_modifier, + STATE(3331), 1, + sym_method_signature, + ACTIONS(4208), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4216), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1572), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3638), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [45729] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4019), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4161), 3, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [44735] = 26, + anon_sym_RBRACE, + anon_sym_RPAREN, + [45840] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4317), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4019), 2, + STATE(3581), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [44832] = 17, + [45955] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4045), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4298), 1, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, anon_sym_LT, - STATE(3320), 1, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 10, - anon_sym_BANG, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [44911] = 7, + ACTIONS(4319), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [46066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(1975), 1, - anon_sym_extends, - ACTIONS(3492), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3495), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1343), 11, + ACTIONS(4064), 1, + anon_sym_LT, + ACTIONS(4146), 1, + anon_sym_DOT, + STATE(1664), 1, + sym_type_arguments, + ACTIONS(3266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(1347), 25, + ACTIONS(3022), 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_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144777,103 +146094,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [44970] = 18, + anon_sym_extends, + [46123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4298), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 11, + ACTIONS(1331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4321), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1329), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 16, + anon_sym_DASH_DASH, + ACTIONS(1333), 22, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [45051] = 7, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46178] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, + ACTIONS(3574), 1, anon_sym_EQ, - ACTIONS(3490), 1, - anon_sym_extends, - ACTIONS(3484), 2, - anon_sym_COMMA, + ACTIONS(3578), 1, anon_sym_LBRACK, - ACTIONS(3487), 3, - anon_sym_GT, + ACTIONS(3581), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3478), 11, + ACTIONS(4323), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3584), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3572), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(3482), 25, - sym__automatic_semicolon, + ACTIONS(3576), 21, 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, @@ -144892,133 +146198,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [45110] = 22, + [46239] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4033), 1, - anon_sym_GT_GT, - ACTIONS(4045), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4327), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + STATE(3537), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1499), 2, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3502), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 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, - [45199] = 25, + [46354] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(2627), 1, + ACTIONS(2631), 1, anon_sym_DASH, - ACTIONS(3142), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4178), 1, + ACTIONS(4202), 1, anon_sym_STAR, - ACTIONS(4182), 1, + ACTIONS(4206), 1, anon_sym_async, - ACTIONS(4186), 1, + ACTIONS(4210), 1, anon_sym_AT, - ACTIONS(4188), 1, + ACTIONS(4212), 1, anon_sym_static, - ACTIONS(4190), 1, + ACTIONS(4214), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4218), 1, anon_sym_declare, - ACTIONS(4196), 1, + ACTIONS(4220), 1, anon_sym_abstract, - ACTIONS(4312), 1, + ACTIONS(4329), 1, anon_sym_RBRACE, - STATE(2176), 1, + STATE(2219), 1, sym_method_definition, - STATE(2229), 1, + STATE(2227), 1, sym_accessibility_modifier, - STATE(2260), 1, + STATE(2283), 1, sym_override_modifier, - STATE(3395), 1, + STATE(3331), 1, sym_method_signature, - ACTIONS(4184), 2, + ACTIONS(4208), 2, sym_number, sym_private_property_identifier, - ACTIONS(4192), 2, + ACTIONS(4216), 2, anon_sym_get, anon_sym_set, - ACTIONS(3154), 3, + ACTIONS(3162), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1546), 3, + STATE(1542), 3, sym_decorator, sym_class_static_block, aux_sym_class_body_repeat1, - STATE(2404), 3, + STATE(2417), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3439), 3, + STATE(3638), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3132), 10, + ACTIONS(3140), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145029,120 +146348,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [45294] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(4314), 1, - anon_sym_RPAREN, - STATE(3320), 1, - sym_type_arguments, - STATE(3512), 1, - aux_sym_array_repeat1, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45409] = 7, + [46449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(4001), 2, anon_sym_EQ, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3460), 6, - sym__automatic_semicolon, + anon_sym_QMARK, + ACTIONS(4331), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2919), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3999), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(4003), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -145161,54 +146398,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [45468] = 17, + [46504] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4202), 1, + anon_sym_STAR, + ACTIONS(4206), 1, + anon_sym_async, + ACTIONS(4210), 1, + anon_sym_AT, + ACTIONS(4212), 1, + anon_sym_static, + ACTIONS(4214), 1, + anon_sym_readonly, + ACTIONS(4218), 1, + anon_sym_declare, + ACTIONS(4220), 1, + anon_sym_abstract, + ACTIONS(4333), 1, + anon_sym_RBRACE, + STATE(2219), 1, + sym_method_definition, + STATE(2227), 1, + sym_accessibility_modifier, + STATE(2283), 1, + sym_override_modifier, + STATE(3331), 1, + sym_method_signature, + ACTIONS(4208), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4216), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1590), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3638), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [46599] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4202), 1, + anon_sym_STAR, + ACTIONS(4206), 1, + anon_sym_async, + ACTIONS(4210), 1, + anon_sym_AT, + ACTIONS(4212), 1, + anon_sym_static, + ACTIONS(4214), 1, + anon_sym_readonly, + ACTIONS(4218), 1, + anon_sym_declare, + ACTIONS(4220), 1, + anon_sym_abstract, + ACTIONS(4335), 1, + anon_sym_RBRACE, + STATE(2219), 1, + sym_method_definition, + STATE(2227), 1, + sym_accessibility_modifier, + STATE(2283), 1, + sym_override_modifier, + STATE(3331), 1, + sym_method_signature, + ACTIONS(4208), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4216), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1572), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3638), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [46694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(4337), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4316), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, + STATE(1758), 1, sym_arguments, - ACTIONS(3557), 11, + ACTIONS(3426), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 17, + anon_sym_DASH_DASH, + ACTIONS(3428), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + 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, @@ -145222,336 +146585,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [45547] = 29, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [46751] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4339), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + STATE(3472), 1, + aux_sym_array_repeat1, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [45650] = 33, + [46866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(4148), 1, + anon_sym_is, + ACTIONS(3328), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4037), 1, anon_sym_AMP, - ACTIONS(4039), 1, - anon_sym_CARET, - ACTIONS(4041), 1, anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4055), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4025), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4035), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3793), 3, - anon_sym_LBRACE, + anon_sym_DASH_DASH, + ACTIONS(3330), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45761] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3520), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 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, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + anon_sym_extends, + [46919] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4202), 1, + anon_sym_STAR, + ACTIONS(4206), 1, + anon_sym_async, + ACTIONS(4210), 1, + anon_sym_AT, + ACTIONS(4212), 1, + anon_sym_static, + ACTIONS(4214), 1, + anon_sym_readonly, + ACTIONS(4218), 1, + anon_sym_declare, + ACTIONS(4220), 1, + anon_sym_abstract, + ACTIONS(4341), 1, + anon_sym_RBRACE, + STATE(2219), 1, + sym_method_definition, + STATE(2227), 1, + sym_accessibility_modifier, + STATE(2283), 1, + sym_override_modifier, + STATE(3331), 1, + sym_method_signature, + ACTIONS(4208), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4216), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1579), 3, + sym_decorator, + sym_class_static_block, + aux_sym_class_body_repeat1, + STATE(2417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3638), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3140), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [47014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(4343), 1, + anon_sym_DOT, + STATE(1763), 1, + sym_arguments, + ACTIONS(3320), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + anon_sym_DASH_DASH, + ACTIONS(3322), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4319), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45872] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [47071] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4345), 1, + anon_sym_RBRACK, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3791), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45983] = 4, + [47183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 1, - anon_sym_is, - ACTIONS(3386), 14, + ACTIONS(3742), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3388), 28, + ACTIONS(3744), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145580,27 +146964,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [46036] = 4, + [47233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_is, - ACTIONS(3380), 14, + ACTIONS(3630), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3382), 28, + ACTIONS(3632), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145629,125 +147011,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [46089] = 33, + [47283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3578), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(3584), 1, + anon_sym_extends, + ACTIONS(4323), 1, + anon_sym_RPAREN, + ACTIONS(3574), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3581), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4055), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3572), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4027), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4029), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(3576), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4031), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, - anon_sym_GT_GT, - ACTIONS(4037), 1, - anon_sym_AMP, - ACTIONS(4039), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4041), 1, - anon_sym_PIPE, - ACTIONS(4045), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4025), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4043), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3574), 3, - anon_sym_LBRACE, + anon_sym_DASH_DASH, + ACTIONS(3584), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 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, - [46200] = 12, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [47395] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(2998), 1, + anon_sym_EQ, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(4323), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3614), 13, + ACTIONS(3060), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3602), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3616), 20, + ACTIONS(2927), 21, 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, @@ -145762,478 +147162,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [46269] = 33, + [47457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1977), 1, + anon_sym_extends, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(4307), 1, + anon_sym_RPAREN, + ACTIONS(1331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3569), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3982), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1329), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4027), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4029), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(1333), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4031), 1, anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, - anon_sym_GT_GT, - ACTIONS(4037), 1, - anon_sym_AMP, - ACTIONS(4039), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4041), 1, - anon_sym_PIPE, - ACTIONS(4045), 1, anon_sym_PERCENT, - ACTIONS(4047), 1, anon_sym_STAR_STAR, - ACTIONS(4055), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4019), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47519] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3330), 1, + anon_sym_extends, + ACTIONS(3865), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, + anon_sym_RPAREN, + ACTIONS(3868), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4347), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4349), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2923), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4025), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4043), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + anon_sym_DASH_DASH, + ACTIONS(2927), 21, + 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(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3789), 3, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, + anon_sym_LBRACK, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2927), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46380] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47637] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4041), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4356), 1, + anon_sym_COLON, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3775), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46491] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4178), 1, - anon_sym_STAR, - ACTIONS(4182), 1, - anon_sym_async, - ACTIONS(4186), 1, - anon_sym_AT, - ACTIONS(4188), 1, - anon_sym_static, - ACTIONS(4190), 1, - anon_sym_readonly, - ACTIONS(4194), 1, - anon_sym_declare, - ACTIONS(4196), 1, - anon_sym_abstract, - ACTIONS(4326), 1, - anon_sym_RBRACE, - STATE(2176), 1, - sym_method_definition, - STATE(2229), 1, - sym_accessibility_modifier, - STATE(2260), 1, - sym_override_modifier, - STATE(3395), 1, - sym_method_signature, - ACTIONS(4184), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4192), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1512), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2404), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3439), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46586] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(2627), 1, - anon_sym_DASH, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4178), 1, - anon_sym_STAR, - ACTIONS(4182), 1, - anon_sym_async, - ACTIONS(4186), 1, - anon_sym_AT, - ACTIONS(4188), 1, - anon_sym_static, - ACTIONS(4190), 1, - anon_sym_readonly, - ACTIONS(4194), 1, - anon_sym_declare, - ACTIONS(4196), 1, - anon_sym_abstract, - ACTIONS(4328), 1, - anon_sym_RBRACE, - STATE(2176), 1, - sym_method_definition, - STATE(2229), 1, - sym_accessibility_modifier, - STATE(2260), 1, - sym_override_modifier, - STATE(3395), 1, - sym_method_signature, - ACTIONS(4184), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4192), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1559), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2404), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3439), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3132), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46681] = 33, + [47749] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4027), 1, - anon_sym_LT, - ACTIONS(4029), 1, - anon_sym_AMP_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4033), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4037), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4039), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4041), 1, - anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_PERCENT, - ACTIONS(4047), 1, - anon_sym_STAR_STAR, - ACTIONS(4055), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4057), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4358), 1, + anon_sym_RBRACK, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4019), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4025), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4035), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4043), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4051), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3773), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4049), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46792] = 33, + [47861] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3773), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46902] = 3, + ACTIONS(3450), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(4392), 1, + anon_sym_DOT, + ACTIONS(3622), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3544), 28, + ACTIONS(3624), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146243,7 +147579,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, @@ -146262,120 +147597,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [46952] = 34, + [48015] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3523), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47064] = 10, + [48125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3484), 1, - anon_sym_LBRACK, - ACTIONS(3490), 1, - anon_sym_extends, - ACTIONS(3608), 1, - anon_sym_QMARK, - ACTIONS(4224), 1, - anon_sym_COLON, - ACTIONS(3487), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3478), 12, + ACTIONS(2529), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 21, + ACTIONS(2531), 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, @@ -146394,42 +147720,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [47128] = 10, + anon_sym_extends, + [48175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(1975), 1, - anon_sym_extends, - ACTIONS(1977), 1, - anon_sym_QMARK, - ACTIONS(3492), 1, - anon_sym_LBRACK, - ACTIONS(4236), 1, - anon_sym_COLON, - ACTIONS(3495), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1343), 12, + ACTIONS(1979), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 21, + ACTIONS(1977), 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, @@ -146448,25 +147767,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [47192] = 3, + anon_sym_extends, + [48225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 14, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3505), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2527), 28, + ACTIONS(3507), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146494,503 +147818,516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [47242] = 34, + [48281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(4440), 1, + sym_regex_flags, + ACTIONS(4436), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_DASH_DASH, + anon_sym_satisfies, + ACTIONS(4438), 24, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3268), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3520), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 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_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, + anon_sym_BQUOTE, + [48333] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4368), 1, - anon_sym_RBRACK, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3523), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47354] = 34, + [48443] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4374), 1, - anon_sym_SEMI, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(4406), 1, - sym__automatic_semicolon, - ACTIONS(4408), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(3525), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47466] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_EQ, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4420), 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_BQUOTE, - anon_sym_satisfies, - [47524] = 33, + [48553] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3525), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47634] = 33, + [48663] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3923), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3570), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3572), 27, - sym__automatic_semicolon, + ACTIONS(3450), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_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_BQUOTE, anon_sym_satisfies, - [47800] = 6, + [48755] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3553), 12, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4446), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3555), 27, - sym__automatic_semicolon, + ACTIONS(3450), 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_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_BQUOTE, anon_sym_satisfies, - [47856] = 7, + [48835] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4459), 1, + anon_sym_readonly, + STATE(2272), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [48919] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3810), 1, + ACTIONS(1977), 1, + anon_sym_extends, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3955), 1, - anon_sym_QMARK_DOT, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(1545), 14, + ACTIONS(4463), 1, + anon_sym_RPAREN, + ACTIONS(1331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3569), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4321), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1329), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1547), 24, - sym__automatic_semicolon, + ACTIONS(1333), 21, 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, @@ -147007,346 +148344,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [47914] = 34, + [48981] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4416), 1, - anon_sym_COLON, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48026] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4418), 1, - anon_sym_RPAREN, - STATE(3320), 1, + ACTIONS(4466), 1, + anon_sym_RBRACE, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48138] = 34, + [49093] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4420), 1, - anon_sym_RPAREN, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48250] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3516), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4422), 1, + ACTIONS(4468), 1, anon_sym_RPAREN, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48362] = 5, + [49205] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3474), 7, - sym__automatic_semicolon, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3220), 1, anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4459), 1, + anon_sym_readonly, + STATE(2272), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [49289] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, + anon_sym_EQ, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(4155), 1, anon_sym_LBRACK, + ACTIONS(3051), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3602), 2, + anon_sym_RPAREN, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2919), 12, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147368,38 +148617,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48416] = 9, + [49351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, - anon_sym_LBRACK, - ACTIONS(3490), 1, + ACTIONS(3330), 1, anon_sym_extends, - ACTIONS(4212), 1, + ACTIONS(3865), 1, + anon_sym_LBRACK, + ACTIONS(4472), 1, anon_sym_RPAREN, - ACTIONS(3480), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3487), 2, + ACTIONS(3868), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4112), 2, + ACTIONS(4347), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4470), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3478), 12, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 21, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147421,41 +148670,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48478] = 9, + [49413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 1, - anon_sym_extends, - ACTIONS(3492), 1, - anon_sym_LBRACK, - ACTIONS(4218), 1, - anon_sym_RPAREN, - ACTIONS(1345), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3495), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4140), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1343), 12, + ACTIONS(2533), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 21, + ACTIONS(2535), 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, @@ -147474,47 +148716,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [48540] = 12, + anon_sym_extends, + [49463] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(4424), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3614), 13, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3614), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3616), 19, + ACTIONS(3616), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147529,319 +148765,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_satisfies, - [48608] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4402), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48718] = 33, + [49519] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4402), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48828] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3446), 7, anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4427), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3557), 11, - anon_sym_STAR, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 16, + ACTIONS(3450), 14, 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [48906] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4068), 1, - anon_sym_LBRACK, - ACTIONS(4434), 1, - anon_sym_RPAREN, - ACTIONS(4071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4430), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4432), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2919), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 21, 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_BQUOTE, anon_sym_satisfies, - [48968] = 14, + [49603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4437), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, + STATE(1843), 1, sym_arguments, - ACTIONS(3546), 12, + ACTIONS(3517), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 18, + anon_sym_DASH_DASH, + ACTIONS(3519), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147855,42 +148877,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_BQUOTE, anon_sym_satisfies, - [49040] = 9, + [49657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, - anon_sym_LBRACK, - ACTIONS(3490), 1, - anon_sym_extends, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(3480), 2, + ACTIONS(1331), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3487), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4224), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3478), 12, + ACTIONS(4150), 1, + sym__automatic_semicolon, + ACTIONS(1327), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 21, + ACTIONS(1325), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147909,105 +148929,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49102] = 20, + [49711] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(3200), 1, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3495), 1, anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4475), 1, + anon_sym_RBRACK, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4453), 1, - anon_sym_readonly, - STATE(2268), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [49186] = 9, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 1, - anon_sym_extends, - ACTIONS(3492), 1, - anon_sym_LBRACK, - ACTIONS(4457), 1, - anon_sym_RPAREN, - ACTIONS(1345), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3495), 2, + ACTIONS(4430), 1, anon_sym_AMP, + ACTIONS(4432), 1, anon_sym_PIPE, - ACTIONS(4236), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1343), 12, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3618), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 21, + ACTIONS(3620), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -148026,40 +149057,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49248] = 6, + [49879] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 2, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4062), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [49979] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3460), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2919), 12, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(4477), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(3543), 19, + 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, @@ -148074,31 +149184,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [49304] = 5, + [50047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(3852), 1, - sym__automatic_semicolon, - ACTIONS(1341), 14, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(3746), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1339), 26, + ACTIONS(3748), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -148125,90 +149233,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49358] = 7, + anon_sym_extends, + [50101] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(3492), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(1975), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3495), 3, - anon_sym_GT, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(1343), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1347), 24, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 8, 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_BQUOTE, anon_sym_satisfies, - [49416] = 7, + [50199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3484), 1, - anon_sym_LBRACK, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3487), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3478), 11, + ACTIONS(3762), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(3482), 24, + ACTIONS(3764), 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, @@ -148227,38 +149351,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49474] = 6, + anon_sym_extends, + [50249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4004), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3627), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4000), 12, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4002), 21, + ACTIONS(3768), 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, @@ -148277,38 +149398,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49530] = 6, + anon_sym_extends, + [50299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4068), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3388), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2919), 12, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(3768), 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, @@ -148327,27 +149445,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [49586] = 5, + anon_sym_extends, + [50349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(3765), 12, + ACTIONS(3766), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3767), 28, + ACTIONS(3768), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148376,25 +149493,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49640] = 3, + [50399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 14, + ACTIONS(3774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3739), 28, + ACTIONS(3776), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148423,25 +149540,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49690] = 3, + [50449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 14, + ACTIONS(3774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3596), 28, + ACTIONS(3776), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148470,25 +149587,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49740] = 3, + [50499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 14, + ACTIONS(3774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3596), 28, + ACTIONS(3776), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148517,25 +149634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49790] = 3, + [50549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 14, + ACTIONS(3778), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3596), 28, + ACTIONS(3780), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148564,25 +149681,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49840] = 3, + [50599] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3450), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [50683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3778), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3716), 28, + ACTIONS(3780), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148611,72 +149792,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49890] = 3, + [50733] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3716), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, anon_sym_AMP_AMP, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, + anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3531), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 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(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [49940] = 3, + [50843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 14, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(1329), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3716), 28, + ACTIONS(1333), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148704,26 +149917,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [49990] = 3, + [50895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 14, + ACTIONS(3778), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3700), 28, + ACTIONS(3780), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148752,25 +149964,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50040] = 3, + [50945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 14, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3700), 28, + ACTIONS(3792), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148799,25 +150011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50090] = 3, + [50995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 14, + ACTIONS(1975), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3700), 28, + ACTIONS(1973), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148846,41 +150058,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50140] = 9, + [51045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, - anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3037), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3460), 2, - anon_sym_RPAREN, + ACTIONS(3330), 1, anon_sym_extends, - ACTIONS(4065), 2, + ACTIONS(3865), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3868), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2919), 12, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(2927), 25, + 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, @@ -148899,25 +150108,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [50202] = 3, + [51101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 14, + ACTIONS(3588), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3683), 28, + ACTIONS(3586), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148946,78 +150155,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50252] = 9, + [51151] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4068), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(4464), 1, - anon_sym_RPAREN, - ACTIONS(4071), 2, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4460), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4462), 2, - anon_sym_COMMA, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3537), 2, anon_sym_COLON, - ACTIONS(2919), 12, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4362), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 21, - 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(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [50314] = 3, + [51261] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4459), 1, + anon_sym_readonly, + STATE(2272), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [51345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 14, + ACTIONS(3638), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1971), 28, + ACTIONS(3640), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149046,84 +150343,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50364] = 4, + [51395] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4446), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 27, - sym__automatic_semicolon, + ACTIONS(3450), 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_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_BQUOTE, anon_sym_satisfies, - [50416] = 3, + [51469] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4480), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3637), 28, - sym__automatic_semicolon, + ACTIONS(3559), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - 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_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149137,40 +150459,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50466] = 3, + [51541] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4483), 1, anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3550), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3606), 28, - sym__automatic_semicolon, + ACTIONS(3552), 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_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149184,40 +150521,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, + [51619] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, anon_sym_satisfies, - anon_sym_extends, - [50516] = 3, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, + anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3548), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51729] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(4486), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3592), 28, - sym__automatic_semicolon, + ACTIONS(3543), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -149232,75 +150653,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50566] = 3, + [51797] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3539), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3544), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51907] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, anon_sym_AMP_AMP, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, anon_sym_CARET, + ACTIONS(4376), 1, + anon_sym_PIPE, + ACTIONS(4380), 1, anon_sym_PERCENT, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3564), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [50616] = 3, + [52017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 14, + ACTIONS(3642), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3544), 28, + ACTIONS(3644), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149329,25 +150855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50666] = 3, + [52067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 14, + ACTIONS(3798), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3536), 28, + ACTIONS(3800), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149376,25 +150902,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50716] = 3, + [52117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 14, + ACTIONS(3802), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3536), 28, + ACTIONS(3804), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149423,25 +150949,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50766] = 3, + [52167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 14, + ACTIONS(3806), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3536), 28, + ACTIONS(3808), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149470,25 +150996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50816] = 3, + [52217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 28, + ACTIONS(3444), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149517,25 +151043,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50866] = 3, + [52267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 28, + ACTIONS(3444), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149564,25 +151090,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50916] = 3, + [52317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 14, + ACTIONS(3442), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3424), 28, + ACTIONS(3444), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149611,25 +151137,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50966] = 3, + [52367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 14, + ACTIONS(3794), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3472), 28, + ACTIONS(3796), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149658,25 +151184,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51016] = 3, + [52417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 14, + ACTIONS(3794), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1979), 28, + ACTIONS(3796), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149705,27 +151231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51066] = 4, + [52467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3478), 14, + ACTIONS(3794), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 27, + ACTIONS(3796), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149753,25 +151277,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [51118] = 3, + anon_sym_extends, + [52517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 14, + ACTIONS(3786), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3440), 28, + ACTIONS(3788), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149800,29 +151325,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51168] = 6, + [52567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3438), 12, + ACTIONS(3786), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3440), 27, + ACTIONS(3788), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149850,25 +151371,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [51224] = 3, + anon_sym_extends, + [52617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 14, + ACTIONS(3786), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3436), 28, + ACTIONS(3788), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149897,25 +151419,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51274] = 3, + [52667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 14, + ACTIONS(3782), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2883), 28, + ACTIONS(3784), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149944,25 +151466,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51324] = 3, + [52717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 14, + ACTIONS(1971), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3432), 28, + ACTIONS(1969), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149991,175 +151513,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51374] = 3, + [52767] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3446), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4402), 1, anon_sym_GT_GT, + ACTIONS(4406), 1, anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3588), 28, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [52865] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, anon_sym_AMP_AMP, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, anon_sym_PERCENT, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + ACTIONS(4489), 1, + anon_sym_SEMI, + ACTIONS(4491), 1, + sym__automatic_semicolon, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51424] = 3, + [52977] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, anon_sym_GT_GT, + ACTIONS(4406), 1, anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3564), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3540), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53087] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3820), 1, anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, anon_sym_AMP_AMP, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, anon_sym_PERCENT, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51474] = 3, + [53197] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, + ACTIONS(3477), 1, anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4493), 1, + anon_sym_RPAREN, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3783), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53309] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3820), 1, anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, anon_sym_PERCENT, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3450), 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, - [51524] = 3, + [53409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 14, + ACTIONS(3578), 1, + anon_sym_LBRACK, + ACTIONS(3584), 1, + anon_sym_extends, + ACTIONS(4495), 1, + anon_sym_RPAREN, + ACTIONS(3574), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3581), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4313), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3572), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3540), 28, - sym__automatic_semicolon, + ACTIONS(3576), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150178,35 +152019,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51574] = 3, + [53471] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4498), 1, + anon_sym_RPAREN, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53583] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3040), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4158), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3783), 28, + ACTIONS(2927), 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, @@ -150225,26 +152148,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51624] = 3, + [53641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 14, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3432), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3787), 28, + ACTIONS(3434), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150272,73 +152198,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51674] = 3, + [53697] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 14, - anon_sym_STAR, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3446), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, anon_sym_GT_GT, + ACTIONS(4406), 1, anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3779), 28, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [53799] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4414), 1, anon_sym_PERCENT, + ACTIONS(4416), 1, anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3450), 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_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51724] = 3, + [53887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 14, + ACTIONS(3770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3787), 28, + ACTIONS(3772), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150367,25 +152384,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51774] = 3, + [53937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 14, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3770), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3779), 28, + ACTIONS(3772), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150413,26 +152434,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51824] = 3, + [53993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 14, + ACTIONS(3758), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3763), 28, + ACTIONS(3760), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150461,25 +152481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51874] = 3, + [54043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 14, + ACTIONS(2887), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3759), 28, + ACTIONS(2889), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150508,81 +152528,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51924] = 3, + [54093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 14, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4500), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3763), 28, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51974] = 3, + [54173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 14, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(3566), 1, + anon_sym_LBRACK, + ACTIONS(1977), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3569), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3759), 28, - sym__automatic_semicolon, + ACTIONS(1333), 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150601,26 +152641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52024] = 3, + [54231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 14, + ACTIONS(3754), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3755), 28, + ACTIONS(3756), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150649,25 +152688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52074] = 3, + [54281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 14, + ACTIONS(3750), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3751), 28, + ACTIONS(3752), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150696,25 +152735,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52124] = 3, + [54331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 14, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(3634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1963), 28, + ACTIONS(3636), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150743,102 +152783,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52174] = 33, + [54383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4467), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2517), 14, + ACTIONS(3738), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2519), 28, + ACTIONS(3740), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150867,25 +152830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52334] = 3, + [54433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 14, + ACTIONS(3742), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3747), 28, + ACTIONS(3744), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150914,26 +152877,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52384] = 4, + [54483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(3741), 13, + ACTIONS(3738), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3743), 28, + ACTIONS(3740), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150962,25 +152924,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52436] = 3, + [54533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 14, + ACTIONS(3734), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3735), 28, + ACTIONS(3736), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151009,25 +152971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52486] = 3, + [54583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 14, + ACTIONS(3730), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2725), 28, + ACTIONS(3732), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151056,25 +153018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52536] = 3, + [54633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 14, + ACTIONS(3734), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 28, + ACTIONS(3736), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151103,29 +153065,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52586] = 6, + [54683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3729), 12, + ACTIONS(3730), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3731), 27, + ACTIONS(3732), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151153,27 +153111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52642] = 4, + anon_sym_extends, + [54733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_DOT, - ACTIONS(3722), 14, + ACTIONS(3726), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3724), 27, + ACTIONS(3728), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151183,6 +153140,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, @@ -151201,25 +153159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52694] = 3, + [54783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 14, + ACTIONS(3722), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3720), 28, + ACTIONS(3724), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151248,25 +153206,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52744] = 3, + [54833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 14, + ACTIONS(3726), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3712), 28, + ACTIONS(3728), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151295,25 +153253,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52794] = 3, + [54883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 14, + ACTIONS(3722), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3696), 28, + ACTIONS(3724), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151342,38 +153300,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52844] = 6, + [54933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_extends, - ACTIONS(4004), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4007), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4000), 11, + ACTIONS(3718), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(4002), 25, + ACTIONS(3720), 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, @@ -151392,37 +153346,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52900] = 5, + anon_sym_extends, + [54983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3476), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(3714), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 25, + ACTIONS(3716), 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, @@ -151441,34 +153393,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [52954] = 5, + anon_sym_extends, + [55033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - STATE(2348), 1, - sym_arguments, - ACTIONS(2919), 14, + ACTIONS(1987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 26, + ACTIONS(1985), 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, @@ -151490,136 +153440,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [53008] = 20, + anon_sym_extends, + [55083] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4453), 1, - anon_sym_readonly, - STATE(2268), 1, - sym_override_modifier, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [53092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4368), 1, anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3446), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3689), 28, - sym__automatic_semicolon, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 8, 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, + [55179] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4503), 1, + anon_sym_RPAREN, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 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(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 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_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [53142] = 3, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 14, + ACTIONS(3606), 1, + anon_sym_extends, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(3604), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3646), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3679), 28, + ACTIONS(3648), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151628,7 +153621,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, @@ -151647,82 +153639,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53192] = 3, + [55347] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3675), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + ACTIONS(4507), 1, + anon_sym_RPAREN, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3467), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3471), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3475), 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(3481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3485), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [53242] = 3, + [55459] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1969), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_LBRACK, + ACTIONS(3584), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3581), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3572), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1967), 28, - sym__automatic_semicolon, + ACTIONS(3576), 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151741,43 +153768,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53292] = 9, + [55517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, + ACTIONS(3588), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3586), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3631), 22, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151794,572 +153815,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [53354] = 33, + [55571] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(3513), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4469), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53464] = 33, + [55681] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4509), 1, + anon_sym_SEMI, + ACTIONS(4511), 1, + sym__automatic_semicolon, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3633), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53574] = 33, + [55793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(3868), 2, anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3639), 2, + ACTIONS(3865), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3330), 4, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4370), 2, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2923), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + anon_sym_DASH_DASH, + ACTIONS(2927), 21, + 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(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53684] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [55849] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4513), 1, + anon_sym_RBRACK, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3653), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53794] = 17, + [55961] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, + ACTIONS(3448), 1, anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4471), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3557), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3561), 16, - sym__ternary_qmark, - 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, - [53872] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4515), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3574), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53982] = 34, + [56073] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4474), 1, + ACTIONS(4517), 1, anon_sym_RPAREN, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54094] = 12, + [56185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(4476), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3614), 13, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3509), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3616), 19, + ACTIONS(3511), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - 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, @@ -152374,94 +154304,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [54162] = 20, + [56241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(2525), 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, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(3200), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(2527), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3230), 1, anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4453), 1, - anon_sym_readonly, - STATE(2268), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [54246] = 6, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3769), 12, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(3999), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3771), 27, + ACTIONS(4003), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152489,127 +154401,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54302] = 33, + [56343] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4376), 1, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4500), 1, anon_sym_LT, - ACTIONS(4378), 1, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3450), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(4380), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + 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, + [56423] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4519), 1, + anon_sym_RPAREN, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3669), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54412] = 14, + [56535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4479), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3546), 12, + ACTIONS(3650), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 18, + anon_sym_DASH_DASH, + ACTIONS(3652), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - 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, @@ -152623,40 +154584,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_BQUOTE, anon_sym_satisfies, - [54484] = 7, + anon_sym_extends, + [56585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(3710), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 24, + ACTIONS(3712), 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, @@ -152675,38 +154634,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54542] = 6, + anon_sym_extends, + [56635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4068), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4071), 3, - anon_sym_GT, + ACTIONS(4430), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(3706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(2923), 25, + ACTIONS(3708), 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, @@ -152725,38 +154682,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [54598] = 4, + anon_sym_extends, + [56687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - sym_regex_flags, - ACTIONS(4482), 17, + ACTIONS(3702), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4484), 24, + ACTIONS(3704), 28, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152771,23 +154725,26 @@ 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_BQUOTE, - [54650] = 3, + anon_sym_satisfies, + anon_sym_extends, + [56737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2779), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, @@ -152820,25 +154777,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54700] = 3, + [56787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 14, + ACTIONS(3698), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3428), 28, + ACTIONS(3700), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152867,27 +154824,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54750] = 4, + [56837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, - anon_sym_LBRACK, - ACTIONS(3659), 14, + ACTIONS(4430), 1, + anon_sym_AMP, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(3698), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3661), 27, + ACTIONS(3700), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152896,6 +154855,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, @@ -152914,26 +154874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [54802] = 3, + [56893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 14, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3688), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3657), 28, + ACTIONS(3690), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152943,7 +154904,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, @@ -152962,108 +154922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54852] = 34, + [56945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3692), 1, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - ACTIONS(4490), 1, - anon_sym_SEMI, - ACTIONS(4492), 1, - sym__automatic_semicolon, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4370), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4402), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54964] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_extends, - ACTIONS(4488), 1, - anon_sym_LBRACK, - ACTIONS(3452), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3649), 12, + ACTIONS(3688), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3651), 26, + ACTIONS(3690), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153072,7 +154951,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -153090,29 +154969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [55020] = 6, + anon_sym_extends, + [56997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3645), 12, + ACTIONS(3684), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3647), 27, + ACTIONS(3686), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153140,25 +155016,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [55076] = 3, + anon_sym_extends, + [57047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 14, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(3654), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3643), 28, + ACTIONS(3656), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153167,7 +155046,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, @@ -153187,334 +155065,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55126] = 34, + [57099] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, + ACTIONS(4158), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4494), 1, - anon_sym_RBRACK, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(2923), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55238] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + anon_sym_DASH_DASH, + ACTIONS(2927), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4380), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3773), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55348] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + anon_sym_DASH_DASH, + ACTIONS(3660), 28, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4380), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3775), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4402), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55458] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [57207] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(3515), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55568] = 3, + [57317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 14, + ACTIONS(3680), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3627), 28, + ACTIONS(3682), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153543,25 +155287,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55618] = 3, + [57367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 14, + ACTIONS(3676), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3474), 28, + ACTIONS(3678), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153590,35 +155334,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55668] = 4, + [57417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, + ACTIONS(3640), 1, + anon_sym_extends, + ACTIONS(4166), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4169), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3621), 13, + anon_sym_PIPE, + ACTIONS(4047), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3623), 28, + ACTIONS(4049), 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, @@ -153637,35 +155384,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55720] = 3, + [57473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 14, + ACTIONS(3586), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3588), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3612), 28, + ACTIONS(2927), 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, @@ -153684,104 +155433,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55770] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4496), 1, - anon_sym_RBRACK, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55882] = 3, + [57527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3572), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3490), 28, + ACTIONS(3576), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153809,42 +155481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55932] = 9, + [57579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, - anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_QMARK, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3054), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3460), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 12, + ACTIONS(2729), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(2731), 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, @@ -153863,41 +155527,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [55994] = 9, + anon_sym_extends, + [57629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4068), 1, - anon_sym_LBRACK, - ACTIONS(4501), 1, - anon_sym_RPAREN, - ACTIONS(4071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4460), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4498), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2919), 12, + ACTIONS(3024), 1, + anon_sym_LPAREN, + STATE(2360), 1, + sym_arguments, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(2927), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -153916,40 +155577,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [56056] = 6, + [57683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, - anon_sym_COMMA, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(4062), 1, + anon_sym_QMARK_DOT, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 25, + ACTIONS(1483), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -153966,55 +155628,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [56112] = 20, + [57741] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3450), 11, + sym__ternary_qmark, + anon_sym_as, + 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, + [57829] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(3200), 1, - anon_sym_COMMA, ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, anon_sym_RBRACE, - ACTIONS(4443), 1, + ACTIONS(4449), 1, anon_sym_STAR, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4449), 1, + ACTIONS(4455), 1, anon_sym_async, - ACTIONS(4453), 1, + ACTIONS(4459), 1, anon_sym_readonly, - STATE(2268), 1, + STATE(2272), 1, sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(4457), 2, sym_number, sym_private_property_identifier, - ACTIONS(4455), 2, + ACTIONS(4461), 2, anon_sym_get, anon_sym_set, - STATE(2488), 3, + STATE(2507), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -154030,179 +155758,540 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [56196] = 33, + [57913] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4500), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3450), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [57987] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4446), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(3450), 15, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [58067] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(3513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3672), 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_DASH_DASH, - ACTIONS(3559), 1, + ACTIONS(3674), 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58227] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4334), 1, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58337] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3669), 2, + ACTIONS(3521), 2, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56306] = 33, + [58447] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4505), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56416] = 3, + ACTIONS(3450), 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, + [58539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 14, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_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_DASH_DASH, + ACTIONS(2927), 27, + 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 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_DASH_DASH, - ACTIONS(2523), 28, + ACTIONS(3668), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154231,27 +156320,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56466] = 4, + [58641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 1, - anon_sym_DOT, - ACTIONS(3598), 14, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3223), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4459), 1, + anon_sym_readonly, + STATE(2272), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [58725] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3600), 27, + ACTIONS(2927), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154261,6 +156414,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, @@ -154278,103 +156432,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56518] = 33, + [58777] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4348), 1, - anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4384), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3775), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56628] = 3, + ACTIONS(3450), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [58871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 14, + ACTIONS(3662), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1975), 28, + ACTIONS(3664), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154403,258 +156548,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56678] = 33, + [58921] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3789), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(3515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56788] = 33, + [59031] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, + ACTIONS(4523), 1, anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, - anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4348), 1, - anon_sym_PIPE, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3791), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56898] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, + ACTIONS(3559), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(4338), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, - anon_sym_AMP, - ACTIONS(4346), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4348), 1, - anon_sym_PIPE, - ACTIONS(4352), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3793), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4358), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4360), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57008] = 4, + anon_sym_satisfies, + [59103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(3941), 14, + ACTIONS(3610), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3945), 27, + ACTIONS(3612), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154682,550 +156729,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [57060] = 29, + anon_sym_extends, + [59153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(1983), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 6, + anon_sym_DASH_DASH, + ACTIONS(1981), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [57162] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3502), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 11, - sym__ternary_qmark, - anon_sym_as, - 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_BQUOTE, anon_sym_satisfies, - [57250] = 18, + anon_sym_extends, + [59203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4509), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 11, + ACTIONS(3350), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 15, + anon_sym_DASH_DASH, + ACTIONS(3352), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_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, - [57330] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [59253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(4505), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(3848), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, - sym__ternary_qmark, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(3791), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(3604), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + anon_sym_DASH_DASH, + ACTIONS(3606), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57440] = 33, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [59305] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3793), 2, + ACTIONS(4182), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57550] = 29, + [59415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3502), 1, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(1335), 1, + sym__automatic_semicolon, + ACTIONS(1325), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1329), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 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, + anon_sym_DASH_DASH, + ACTIONS(1333), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3810), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4380), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, anon_sym_STAR_STAR, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4370), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4402), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [57652] = 17, + [59471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(4169), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4166), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4509), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(3640), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4047), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 16, + anon_sym_DASH_DASH, + ACTIONS(4049), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - 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_BQUOTE, anon_sym_satisfies, - [57730] = 22, + [59527] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4394), 1, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1930), 2, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3502), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 11, + ACTIONS(3450), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155233,57 +157116,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [57818] = 18, + [59621] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4526), 1, anon_sym_LT, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 11, + ACTIONS(3550), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3500), 15, + ACTIONS(3552), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_SEMI, @@ -155293,46 +157172,124 @@ 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, - [57898] = 17, + [59699] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4394), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4418), 1, anon_sym_LT, - STATE(3304), 1, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(3548), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4404), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4422), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4424), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59809] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOT, + ACTIONS(3854), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3856), 1, + anon_sym_DASH_DASH, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4500), 1, + anon_sym_LT, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 10, + ACTIONS(3446), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -155343,7 +157300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 16, + ACTIONS(3450), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155360,330 +157317,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [57976] = 26, + [59887] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4382), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(3479), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4370), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + ACTIONS(4175), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [58072] = 26, + [59997] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4334), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, - anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4330), 2, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3533), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 8, + anon_sym_DASH_DASH, + ACTIONS(3535), 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, anon_sym_satisfies, - [58168] = 33, + [60059] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3797), 1, - anon_sym_as, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3667), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(3529), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58278] = 33, + [60169] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3804), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3848), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4380), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(4408), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3685), 2, + ACTIONS(3529), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4370), 2, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58388] = 4, + [60279] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3574), 1, anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(3578), 1, + anon_sym_LBRACK, + ACTIONS(3584), 1, + anon_sym_extends, + ACTIONS(3628), 1, + anon_sym_QMARK, + ACTIONS(4313), 1, + anon_sym_COLON, + ACTIONS(3581), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3572), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 27, + ACTIONS(3576), 21, 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, @@ -155702,1012 +157655,875 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [58440] = 25, + [60343] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4376), 1, + ACTIONS(4418), 1, anon_sym_LT, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4370), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3533), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 9, + anon_sym_DASH_DASH, + ACTIONS(3535), 22, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, anon_sym_satisfies, - [58534] = 25, + [60405] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, + anon_sym_STAR_STAR, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4340), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, + anon_sym_AMP_AMP, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4330), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + ACTIONS(4180), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [58628] = 24, + [60515] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4340), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4352), 1, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(3527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4356), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [58720] = 34, + [60625] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4515), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + ACTIONS(4529), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58832] = 18, + [60735] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4509), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4350), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 16, - sym__ternary_qmark, + ACTIONS(3812), 1, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [58912] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(3858), 1, + anon_sym_satisfies, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4340), 1, + ACTIONS(4400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4428), 1, + sym__ternary_qmark, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(3521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [59012] = 34, + [60845] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, + ACTIONS(3456), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(3469), 1, + anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_GT_GT, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_LT, + ACTIONS(3491), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(3493), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3501), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(3503), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4517), 1, + ACTIONS(4531), 1, anon_sym_RPAREN, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3467), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(3471), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(3475), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(3481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(3487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(3489), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(3485), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59124] = 34, + [60957] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4519), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3526), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3528), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + ACTIONS(4533), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3524), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59236] = 24, + [61067] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4382), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4394), 1, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(4418), 1, + anon_sym_LT, + STATE(3432), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4398), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 9, + ACTIONS(3450), 8, 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, - [59328] = 18, + [61163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3330), 1, + anon_sym_extends, + ACTIONS(3865), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(4539), 1, + anon_sym_RPAREN, + ACTIONS(3868), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4535), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2923), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4392), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 16, - sym__automatic_semicolon, + anon_sym_DASH_DASH, + ACTIONS(2927), 21, 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_BQUOTE, anon_sym_satisfies, - [59408] = 27, + [61225] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4340), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(3527), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [59506] = 34, + [61335] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3812), 1, + anon_sym_as, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(3576), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, + ACTIONS(4402), 1, + anon_sym_GT_GT, + ACTIONS(4406), 1, + anon_sym_AMP, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3582), 1, + ACTIONS(4414), 1, + anon_sym_PERCENT, + ACTIONS(4416), 1, + anon_sym_STAR_STAR, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4521), 1, - anon_sym_RPAREN, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(3531), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3504), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3512), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59618] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_LT, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 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(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [59692] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 7, + ACTIONS(4420), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61445] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4155), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3602), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2923), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 14, + anon_sym_DASH_DASH, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - 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_BQUOTE, anon_sym_satisfies, - [59776] = 6, + [61501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(1349), 1, - sym__automatic_semicolon, - ACTIONS(1339), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1343), 14, + ACTIONS(3596), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 24, + ACTIONS(3598), 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, @@ -156728,121 +158544,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [59832] = 15, + anon_sym_extends, + [61551] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(1977), 1, + anon_sym_extends, + ACTIONS(1979), 1, + anon_sym_QMARK, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4509), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, + ACTIONS(4321), 1, + anon_sym_COLON, + ACTIONS(3569), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1329), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 17, + anon_sym_DASH_DASH, + ACTIONS(1333), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - 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_BQUOTE, anon_sym_satisfies, - [59906] = 20, + [61615] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4382), 1, - anon_sym_GT_GT, - ACTIONS(4394), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(4446), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 7, + ACTIONS(3446), 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(3500), 14, - sym__automatic_semicolon, + ACTIONS(3450), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -156851,337 +158660,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [59990] = 33, + [61693] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(87), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, + ACTIONS(3812), 1, anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(3814), 1, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, - anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4348), 1, - anon_sym_PIPE, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3685), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4358), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4360), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60100] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3816), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3822), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3854), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3856), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3858), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4398), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4400), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4402), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4406), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4414), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4418), 1, + anon_sym_LT, + ACTIONS(4426), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4428), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3432), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3500), 1, sym_optional_chain, - ACTIONS(3667), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(3537), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4404), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4412), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60210] = 33, + [61803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, + ACTIONS(3600), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3653), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60320] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(3602), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, - anon_sym_AMP, - ACTIONS(4346), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4348), 1, - anon_sym_PIPE, - ACTIONS(4352), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3639), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4358), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4360), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60430] = 6, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [61853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_AMP, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(3702), 12, + ACTIONS(3328), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3704), 27, + ACTIONS(3330), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -157209,404 +158830,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [60486] = 20, + anon_sym_extends, + [61903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, + ACTIONS(3901), 14, anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4453), 1, - anon_sym_readonly, - STATE(2268), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [60570] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3502), 1, anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3844), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_AMP_AMP, - ACTIONS(4382), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PERCENT, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - STATE(3304), 1, - sym_type_arguments, - STATE(3563), 1, - sym_optional_chain, - ACTIONS(4370), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4384), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4392), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1930), 2, - sym_template_string, - sym_arguments, - ACTIONS(4398), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 7, + anon_sym_DASH_DASH, + ACTIONS(3903), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [60670] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, - anon_sym_AMP, - ACTIONS(4346), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4348), 1, - anon_sym_PIPE, - ACTIONS(4352), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3633), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4470), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4330), 2, + ACTIONS(2923), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60780] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(2927), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3264), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3506), 1, - anon_sym_LT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, anon_sym_AMP_AMP, - ACTIONS(3578), 1, anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, - anon_sym_COMMA, - ACTIONS(4523), 1, - anon_sym_RBRACK, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 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(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60892] = 27, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62005] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3806), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3844), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3846), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4376), 1, - anon_sym_LT, - ACTIONS(4382), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4386), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4390), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4396), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - STATE(3304), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4542), 1, + anon_sym_COLON, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4370), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4384), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4392), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4402), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4398), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [60990] = 9, + [62114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(4334), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, + ACTIONS(4047), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3631), 22, + ACTIONS(4049), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -157623,28 +159045,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [61052] = 4, + [62163] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3223), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(1343), 14, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [62240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 27, + ACTIONS(4053), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -157672,34 +159153,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61104] = 3, + [62289] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 14, + ACTIONS(3071), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3450), 28, - sym__automatic_semicolon, + ACTIONS(2927), 23, 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, @@ -157718,35 +159202,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61154] = 3, + anon_sym_implements, + [62346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 14, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(3063), 1, + anon_sym_COLON, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3602), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3382), 28, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -157765,36 +159254,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61204] = 4, + [62405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, - anon_sym_LBRACK, - ACTIONS(3452), 14, + ACTIONS(1505), 1, + sym__automatic_semicolon, + ACTIONS(1497), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1501), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3454), 27, - sym__automatic_semicolon, + ACTIONS(1503), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -157813,26 +159302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61256] = 3, + [62458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 14, + ACTIONS(4032), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3388), 28, + ACTIONS(4034), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -157860,26 +159348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61306] = 3, + [62507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 14, + ACTIONS(4028), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3460), 28, + ACTIONS(4030), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -157907,35 +159394,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61356] = 5, + [62556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - anon_sym_LPAREN, - STATE(1878), 1, - sym_arguments, - ACTIONS(3663), 14, + ACTIONS(4018), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3665), 26, + ACTIONS(3537), 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, @@ -157957,103 +159440,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61410] = 34, + [62605] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3506), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3510), 1, - anon_sym_GT_GT, - ACTIONS(3514), 1, - anon_sym_AMP, - ACTIONS(3516), 1, - anon_sym_CARET, - ACTIONS(3520), 1, - anon_sym_PERCENT, - ACTIONS(3522), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3576), 1, - anon_sym_AMP_AMP, - ACTIONS(3578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3584), 1, - sym__ternary_qmark, - ACTIONS(3706), 1, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, anon_sym_COMMA, - ACTIONS(4525), 1, + ACTIONS(3223), 1, anon_sym_RBRACE, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3498), 2, + ACTIONS(4449), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3512), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3528), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3524), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61522] = 3, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [62680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 14, + ACTIONS(4024), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3464), 28, + ACTIONS(4026), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158081,180 +159545,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61572] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3685), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61681] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [61780] = 5, + [62729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, - sym__automatic_semicolon, - ACTIONS(1453), 4, + ACTIONS(4552), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4554), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1457), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1459), 22, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158277,34 +159593,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61833] = 4, + [62782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1385), 14, + ACTIONS(4020), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 22, + ACTIONS(4022), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -158324,32 +159639,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61884] = 3, + [62831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4100), 14, + ACTIONS(1477), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4102), 27, + ACTIONS(1483), 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, @@ -158370,34 +159686,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61933] = 4, + [62882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 5, + ACTIONS(1551), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1409), 14, + ACTIONS(1543), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1547), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1411), 22, + ACTIONS(1549), 24, 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, @@ -158417,117 +159734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [61984] = 33, + [62935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3633), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, + ACTIONS(3588), 2, anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62093] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(4531), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, + ACTIONS(3586), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_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_DASH_DASH, - ACTIONS(3631), 21, + ACTIONS(2927), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158544,33 +159780,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [62154] = 3, + [62988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 14, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_of, + ACTIONS(4556), 1, + anon_sym_in, + ACTIONS(3999), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4096), 27, + ACTIONS(4003), 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, @@ -158591,32 +159831,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62203] = 3, + [63043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 14, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(4321), 1, + anon_sym_of, + ACTIONS(4559), 1, + anon_sym_in, + ACTIONS(1329), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4106), 27, + ACTIONS(1333), 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, @@ -158637,110 +159880,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62252] = 33, + [63098] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - ACTIONS(4565), 1, + ACTIONS(4562), 1, anon_sym_COLON, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62361] = 5, + [63207] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, sym__automatic_semicolon, - ACTIONS(1453), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1457), 14, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [63282] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_LBRACK, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [63359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1459), 24, + ACTIONS(4016), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -158761,36 +160121,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62414] = 5, + [63408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - sym__automatic_semicolon, - ACTIONS(1391), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1395), 14, + ACTIONS(3638), 1, + anon_sym_QMARK, + ACTIONS(3640), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4169), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4166), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4047), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1397), 24, + ACTIONS(4049), 21, 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, @@ -158809,36 +160171,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62467] = 5, + [63465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 1, - sym__automatic_semicolon, - ACTIONS(1563), 4, - anon_sym_COMMA, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4155), 3, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1567), 14, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1569), 22, + ACTIONS(2927), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158857,34 +160220,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62520] = 3, + [63520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 14, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(3063), 1, + anon_sym_COLON, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4564), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3685), 27, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158903,34 +160272,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62569] = 4, + [63581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1367), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1371), 14, + ACTIONS(4012), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1373), 22, + ACTIONS(3529), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -158950,39 +160318,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62620] = 8, + [63630] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3484), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(4224), 1, - anon_sym_COLON, - ACTIONS(3487), 2, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(3490), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3478), 12, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4568), 1, + anon_sym_COLON, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63739] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1541), 1, + sym__automatic_semicolon, + ACTIONS(1533), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 21, + ACTIONS(1539), 24, 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, @@ -159001,32 +160442,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62679] = 3, + [63792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(4313), 1, + anon_sym_of, + ACTIONS(4570), 1, + anon_sym_in, + ACTIONS(3572), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4117), 27, + ACTIONS(3576), 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, @@ -159047,39 +160491,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62728] = 8, + [63847] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(3067), 1, anon_sym_EQ, - ACTIONS(3492), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(4236), 1, - anon_sym_COLON, - ACTIONS(3495), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1975), 3, + ACTIONS(3602), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(1343), 12, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 21, + ACTIONS(2927), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159098,31 +160541,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62787] = 4, + [63904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, - anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(4082), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 26, + ACTIONS(4084), 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, @@ -159145,184 +160587,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [62838] = 33, + [63953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(4166), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3789), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, + ACTIONS(3640), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4169), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4047), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62947] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, + ACTIONS(4049), 24, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3791), 1, + anon_sym_LPAREN, anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4535), 1, anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63056] = 5, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 2, + ACTIONS(4347), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4462), 3, + ACTIONS(4349), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159345,25 +160684,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63109] = 3, + [64061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4121), 14, + ACTIONS(4041), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4123), 27, + ACTIONS(3539), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -159391,30 +160730,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63158] = 5, + [64110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 1, + ACTIONS(1525), 1, sym__automatic_semicolon, - ACTIONS(1531), 2, + ACTIONS(1517), 2, anon_sym_else, anon_sym_while, - ACTIONS(1535), 14, + ACTIONS(1521), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1537), 24, + ACTIONS(1523), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -159439,85 +160778,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63211] = 17, + [64163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(4043), 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, - ACTIONS(3200), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(4045), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3203), 1, anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4569), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [63288] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 14, + ACTIONS(4058), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4147), 27, + ACTIONS(4060), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -159545,169 +160870,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63337] = 33, + [64261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3639), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63446] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4575), 2, - anon_sym_get, - anon_sym_set, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [63521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1535), 14, + ACTIONS(4069), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1537), 22, + ACTIONS(4071), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -159727,515 +160916,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [63572] = 33, + [64310] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3793), 1, + ACTIONS(3527), 1, anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4535), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4541), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4543), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4545), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4549), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4553), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63681] = 29, + [64419] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4531), 1, + ACTIONS(4597), 1, anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63782] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(3533), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3502), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 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, - [63869] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4577), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 11, - anon_sym_STAR, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3500), 14, + anon_sym_DASH_DASH, + ACTIONS(3535), 21, sym__ternary_qmark, + anon_sym_as, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63948] = 33, + anon_sym_PLUS_PLUS, + anon_sym_satisfies, + [64480] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(3529), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - ACTIONS(4580), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64057] = 33, + [64589] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4161), 1, + anon_sym_of, + ACTIONS(4575), 1, + anon_sym_GT, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(3320), 1, + ACTIONS(4609), 1, + anon_sym_in, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64166] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4575), 2, - anon_sym_get, - anon_sym_set, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [64241] = 5, + [64700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, + ACTIONS(1381), 1, sym__automatic_semicolon, - ACTIONS(1381), 2, + ACTIONS(1373), 2, anon_sym_else, anon_sym_while, - ACTIONS(1385), 14, + ACTIONS(1377), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 24, + ACTIONS(1379), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -160260,35 +161245,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64294] = 5, + [64753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4498), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(3987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(3989), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160308,90 +161291,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64347] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4569), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [64424] = 5, + [64802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1463), 1, sym__automatic_semicolon, - ACTIONS(1405), 2, + ACTIONS(1455), 2, anon_sym_else, anon_sym_while, - ACTIONS(1409), 14, + ACTIONS(1459), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1411), 24, + ACTIONS(1461), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -160416,101 +161339,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64477] = 33, + [64855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(1577), 1, + sym__automatic_semicolon, + ACTIONS(1569), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1573), 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_DASH_DASH, + ACTIONS(1575), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3653), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, anon_sym_AMP_AMP, - ACTIONS(4535), 1, anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64586] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 14, + ACTIONS(4088), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1569), 27, + ACTIONS(4090), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160538,25 +161433,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64635] = 3, + [64957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 14, + ACTIONS(4092), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1373), 27, + ACTIONS(4094), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160584,116 +161479,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [64684] = 33, + [65006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3667), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(3995), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64793] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(3997), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3264), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4549), 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(4551), 1, anon_sym_STAR_STAR, - ACTIONS(4577), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 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_BQUOTE, + anon_sym_satisfies, + [65055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + sym__automatic_semicolon, + ACTIONS(1383), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1387), 14, anon_sym_STAR, - anon_sym_SLASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -160702,129 +161543,142 @@ 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(3500), 15, + anon_sym_DASH_DASH, + ACTIONS(1389), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [64870] = 33, + [65108] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - ACTIONS(4584), 1, + ACTIONS(4612), 1, anon_sym_COLON, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64979] = 5, + [65217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 2, + ACTIONS(3040), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4588), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(3091), 1, + anon_sym_in, + ACTIONS(3094), 1, + anon_sym_of, + ACTIONS(2923), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(2927), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160844,36 +161698,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65032] = 7, + [65272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, - anon_sym_LPAREN, - ACTIONS(4593), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_LT, - ACTIONS(4598), 1, - anon_sym_QMARK, - ACTIONS(2919), 13, + ACTIONS(1515), 1, + sym__automatic_semicolon, + ACTIONS(1507), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1511), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2923), 24, - sym__automatic_semicolon, + ACTIONS(1513), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -160894,35 +161746,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65089] = 5, + [65325] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4588), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(1495), 1, + sym__automatic_semicolon, + ACTIONS(1487), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1491), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(1493), 24, 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, @@ -160942,32 +161794,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65142] = 5, + [65378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 2, + ACTIONS(4535), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4602), 3, + ACTIONS(4537), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -160990,84 +161842,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65195] = 7, + [65431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(4614), 2, anon_sym_EQ, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3460), 2, + anon_sym_QMARK, + ACTIONS(4616), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1541), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1545), 14, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1547), 25, - sym__automatic_semicolon, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161087,274 +161890,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65303] = 33, + [65484] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(3521), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - ACTIONS(4604), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65412] = 3, + [65593] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4089), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3515), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, anon_sym_CARET, + ACTIONS(4589), 1, + anon_sym_PIPE, + ACTIONS(4593), 1, anon_sym_PERCENT, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4607), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4575), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65461] = 33, + [65702] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(3513), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - ACTIONS(4606), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65570] = 3, + [65811] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4618), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3912), 27, - sym__automatic_semicolon, + ACTIONS(3450), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [65619] = 5, + [65884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1415), 1, sym__automatic_semicolon, - ACTIONS(1479), 2, + ACTIONS(1407), 2, anon_sym_else, anon_sym_while, - ACTIONS(1483), 14, + ACTIONS(1411), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1485), 24, + ACTIONS(1413), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -161379,85 +162224,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65672] = 5, + [65937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3474), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2919), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, anon_sym_LT, - anon_sym_GT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 23, + ACTIONS(3450), 13, 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_BQUOTE, anon_sym_satisfies, - [65725] = 6, + [66020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4062), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2919), 12, + ACTIONS(3974), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 23, + ACTIONS(3976), 27, + 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, @@ -161476,34 +162333,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65780] = 4, + [66069] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4589), 1, + anon_sym_PIPE, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4575), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [66166] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4621), 1, + anon_sym_STAR, + ACTIONS(4623), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_async, + ACTIONS(4629), 1, + anon_sym_readonly, + STATE(2256), 1, + sym_statement_block, + STATE(2273), 1, + sym_override_modifier, + ACTIONS(4627), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4631), 2, + anon_sym_get, + anon_sym_set, + STATE(2442), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [66243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1483), 14, + ACTIONS(3909), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1485), 22, + ACTIONS(3911), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161523,25 +162509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65831] = 3, + [66292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 14, + ACTIONS(3905), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3789), 27, + ACTIONS(3907), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161569,175 +162555,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [65880] = 26, + [66341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4527), 2, + ACTIONS(1573), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 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, - [65975] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4537), 1, anon_sym_GT_GT, - ACTIONS(4541), 1, anon_sym_AMP, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 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, - [66068] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 1, - anon_sym_QMARK, - ACTIONS(3627), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4007), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4004), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4000), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4002), 21, + ACTIONS(1575), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -161756,33 +162601,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66125] = 3, + [66390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 14, + ACTIONS(1477), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3906), 27, - sym__automatic_semicolon, + ACTIONS(1483), 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, @@ -161802,34 +162648,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66174] = 4, + [66441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1545), 14, + ACTIONS(1459), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1547), 22, + ACTIONS(1461), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161849,25 +162694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66225] = 3, + [66490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 14, + ACTIONS(1377), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3775), 27, + ACTIONS(1379), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161895,25 +162740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66274] = 3, + [66539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 14, + ACTIONS(1501), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1449), 27, + ACTIONS(1503), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -161941,225 +162786,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66323] = 33, + [66588] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3775), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4541), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4543), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4545), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4549), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4597), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4553), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66432] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4610), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(3450), 6, 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_of, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [66485] = 33, + [66687] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3773), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4618), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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(4557), 2, + ACTIONS(3450), 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(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66594] = 3, + anon_sym_satisfies, + [66766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 14, + ACTIONS(3897), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3773), 27, + ACTIONS(3899), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162187,122 +162964,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66643] = 33, + [66815] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3669), 1, - anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4597), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4553), 3, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66752] = 12, + ACTIONS(3450), 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, + [66906] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(4612), 1, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1499), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4575), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3614), 13, + ACTIONS(4599), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [66999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1521), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3616), 18, + ACTIONS(1523), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162317,40 +163143,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [66819] = 8, + [67048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_COLON, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3460), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2919), 12, + ACTIONS(3893), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(3895), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162369,34 +163191,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66878] = 3, + [67097] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 14, + ACTIONS(3075), 1, + anon_sym_EQ, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4127), 27, + ACTIONS(2927), 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162415,21 +163241,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [66927] = 5, + [67154] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 1, - sym__automatic_semicolon, - ACTIONS(1521), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1525), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3446), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4575), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 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, + [67249] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4618), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, anon_sym_SLASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162437,59 +163354,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1527), 24, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - [66980] = 4, + [67326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(3184), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 26, + ACTIONS(3188), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -162510,83 +163416,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67031] = 8, + [67375] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, - anon_sym_EQ, - ACTIONS(3458), 1, - anon_sym_QMARK, - ACTIONS(4062), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3460), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2919), 12, - anon_sym_STAR, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4618), 1, anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(3450), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67090] = 3, + [67454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 14, + ACTIONS(4633), 1, + sym_regex_flags, + ACTIONS(4436), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_instanceof, anon_sym_DASH_DASH, - ACTIONS(3862), 27, + anon_sym_satisfies, + ACTIONS(4438), 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, @@ -162603,162 +163522,386 @@ 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_BQUOTE, - anon_sym_satisfies, - [67139] = 3, + [67505] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4575), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3446), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3949), 27, - sym__automatic_semicolon, + ACTIONS(3450), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [67592] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, anon_sym_AMP_AMP, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, + anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4635), 1, + anon_sym_COLON, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67701] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4577), 1, + anon_sym_AMP_AMP, + ACTIONS(4579), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, anon_sym_CARET, + ACTIONS(4589), 1, + anon_sym_PIPE, + ACTIONS(4593), 1, anon_sym_PERCENT, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4597), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4575), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, + ACTIONS(3450), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [67188] = 33, + [67802] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [67879] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(3523), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - ACTIONS(4615), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67297] = 4, + [67988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 1, - sym_regex_flags, - ACTIONS(4482), 18, + ACTIONS(4637), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4639), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4484), 22, - sym__automatic_semicolon, + ACTIONS(2927), 22, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162774,36 +163917,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - [67348] = 3, + anon_sym_satisfies, + [68041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 14, + ACTIONS(3600), 1, + anon_sym_QMARK, + ACTIONS(3602), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4155), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3858), 27, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162822,35 +163971,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67397] = 5, + [68098] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4610), 3, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3232), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(2919), 14, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(3919), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162870,30 +164076,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67450] = 5, + [68222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(1565), 1, sym__automatic_semicolon, - ACTIONS(1551), 2, + ACTIONS(1557), 2, anon_sym_else, anon_sym_while, - ACTIONS(1555), 14, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1557), 24, + ACTIONS(1563), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -162918,34 +164124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67503] = 5, + [68275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 1, - sym__automatic_semicolon, - ACTIONS(1465), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1469), 14, + ACTIONS(3875), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1471), 24, + ACTIONS(3877), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -162966,35 +164170,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67556] = 5, + [68324] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, - sym__automatic_semicolon, - ACTIONS(1391), 4, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, anon_sym_COMMA, + ACTIONS(3246), 1, anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1395), 14, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3873), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1397), 22, + ACTIONS(3513), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163014,150 +164275,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67609] = 6, + [68448] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4007), 3, - anon_sym_GT, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3525), 1, + anon_sym_of, + ACTIONS(4577), 1, + anon_sym_AMP_AMP, + ACTIONS(4579), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4000), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, anon_sym_LT, + ACTIONS(4605), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4607), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4575), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4002), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4603), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68557] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3531), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, anon_sym_CARET, + ACTIONS(4589), 1, + anon_sym_PIPE, + ACTIONS(4593), 1, anon_sym_PERCENT, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4607), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4575), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67664] = 33, + [68666] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(3574), 1, + ACTIONS(3537), 1, anon_sym_of, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4535), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4541), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4543), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4545), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4549), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4559), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4553), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67773] = 3, + [68775] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [68852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 14, + ACTIONS(3978), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4131), 27, + ACTIONS(3980), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -163185,235 +164609,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [67822] = 15, + [68901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4577), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 12, + ACTIONS(4102), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 16, + anon_sym_DASH_DASH, + ACTIONS(4104), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [67895] = 33, + [68950] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(4364), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4366), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4444), 1, sym__ternary_qmark, - ACTIONS(4621), 1, - anon_sym_RBRACK, - STATE(3320), 1, + ACTIONS(4641), 1, + anon_sym_COLON, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68004] = 20, + [69059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(3991), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 13, + anon_sym_DASH_DASH, + ACTIONS(3993), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [68087] = 7, + [69108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(3492), 1, - anon_sym_LBRACK, - ACTIONS(1975), 2, + ACTIONS(1557), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3495), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1343), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(1347), 23, - sym__automatic_semicolon, + ACTIONS(1563), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163432,33 +164824,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68144] = 3, + [69159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 14, + ACTIONS(4643), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4645), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3980), 27, - sym__automatic_semicolon, + ACTIONS(2927), 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, @@ -163478,38 +164872,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68193] = 7, + [69212] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, + ACTIONS(2998), 1, anon_sym_EQ, - ACTIONS(3484), 1, + ACTIONS(3600), 1, + anon_sym_QMARK, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3487), 3, - anon_sym_GT, + ACTIONS(4158), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3478), 11, + ACTIONS(3602), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(3482), 23, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163528,33 +164923,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68250] = 3, + [69271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 14, + ACTIONS(4643), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4645), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3633), 27, - sym__automatic_semicolon, + ACTIONS(2927), 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, @@ -163574,38 +164971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68299] = 7, + [69324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(4643), 2, anon_sym_EQ, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3460), 2, + anon_sym_QMARK, + ACTIONS(4645), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 23, - sym__automatic_semicolon, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163624,87 +165019,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68356] = 9, + [69377] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_COLON, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(4065), 2, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3539), 1, + anon_sym_of, + ACTIONS(4577), 1, + anon_sym_AMP_AMP, + ACTIONS(4579), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4623), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2919), 12, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4607), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4575), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 21, - 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(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68417] = 5, + [69486] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4610), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4647), 1, + anon_sym_LPAREN, + ACTIONS(4650), 1, anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(4652), 1, + anon_sym_LT, + ACTIONS(4655), 1, + anon_sym_QMARK, + ACTIONS(2923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(2927), 24, + 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, @@ -163724,25 +165145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68470] = 3, + [69543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 14, + ACTIONS(4008), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3984), 27, + ACTIONS(3531), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -163770,39 +165191,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68519] = 6, + [69592] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3388), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4071), 3, - anon_sym_GT, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3564), 1, + anon_sym_of, + ACTIONS(4577), 1, + anon_sym_AMP_AMP, + ACTIONS(4579), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4581), 1, + anon_sym_GT_GT, + ACTIONS(4585), 1, anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(4593), 1, + anon_sym_PERCENT, + ACTIONS(4595), 1, + anon_sym_STAR_STAR, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4607), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4575), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(4583), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4601), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4603), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4599), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69701] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4657), 1, anon_sym_LT, - anon_sym_SLASH, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 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, - anon_sym_DASH_DASH, - ACTIONS(2923), 24, + ACTIONS(3559), 17, 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, @@ -163816,37 +165323,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_BQUOTE, anon_sym_satisfies, - [68574] = 3, + [69772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 14, + ACTIONS(3865), 1, + anon_sym_LBRACK, + ACTIONS(3330), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3868), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 27, - sym__automatic_semicolon, + ACTIONS(2927), 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163865,40 +165373,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68623] = 7, + [69827] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(4630), 1, - anon_sym_COLON, - ACTIONS(4632), 1, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4660), 1, anon_sym_LT, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4133), 13, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3550), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4135), 24, - sym__automatic_semicolon, + ACTIONS(3552), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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, @@ -163912,54 +165433,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68680] = 16, + [69904] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, anon_sym_RBRACE, - ACTIONS(4443), 1, + ACTIONS(4449), 1, anon_sym_STAR, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4544), 1, anon_sym_LBRACK, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, + ACTIONS(4457), 2, sym_number, sym_private_property_identifier, - ACTIONS(4575), 2, + ACTIONS(4461), 2, anon_sym_get, anon_sym_set, - STATE(3015), 3, + STATE(2507), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -163974,32 +165493,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68755] = 5, + [69981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 1, - sym__automatic_semicolon, - ACTIONS(1521), 4, + ACTIONS(4663), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4665), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1525), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1527), 22, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -164022,172 +165541,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [68808] = 33, + [70034] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(3548), 1, + anon_sym_of, + ACTIONS(4577), 1, anon_sym_AMP_AMP, - ACTIONS(4338), 1, + ACTIONS(4579), 1, anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, + ACTIONS(4581), 1, anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4587), 1, anon_sym_CARET, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_PIPE, - ACTIONS(4352), 1, + ACTIONS(4593), 1, anon_sym_PERCENT, - ACTIONS(4354), 1, + ACTIONS(4595), 1, anon_sym_STAR_STAR, - ACTIONS(4362), 1, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4605), 1, anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, + ACTIONS(4607), 1, sym__ternary_qmark, - ACTIONS(4639), 1, - anon_sym_RBRACK, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 2, + ACTIONS(4575), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4342), 2, + ACTIONS(4583), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4350), 2, + ACTIONS(4591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + ACTIONS(4601), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + ACTIONS(4603), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4356), 3, + ACTIONS(4599), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68917] = 17, + [70143] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3220), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4569), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [68994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 14, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(4667), 1, + anon_sym_LT, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4110), 27, - sym__automatic_semicolon, + ACTIONS(3543), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_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, @@ -164202,104 +165671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69043] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, anon_sym_satisfies, - ACTIONS(4014), 1, - anon_sym_of, - ACTIONS(4529), 1, - anon_sym_GT, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4533), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4537), 1, - anon_sym_GT_GT, - ACTIONS(4541), 1, - anon_sym_AMP, - ACTIONS(4543), 1, - anon_sym_CARET, - ACTIONS(4545), 1, - anon_sym_PIPE, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4559), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4561), 1, - sym__ternary_qmark, - ACTIONS(4641), 1, - anon_sym_in, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4539), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4555), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4557), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4553), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69154] = 3, + [70210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 14, + ACTIONS(1491), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3953), 27, + ACTIONS(1493), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -164327,33 +165718,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69203] = 3, + [70259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 14, + ACTIONS(1487), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1491), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4012), 27, - sym__automatic_semicolon, + ACTIONS(1493), 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, @@ -164373,37 +165765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69252] = 6, + [70310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3460), 2, - anon_sym_COMMA, + ACTIONS(3640), 1, anon_sym_extends, - ACTIONS(4065), 3, - anon_sym_GT, + ACTIONS(4169), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(4166), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4047), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(2923), 24, + ACTIONS(4049), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164422,155 +165814,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69307] = 17, + [70365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(1507), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3227), 1, anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4569), 1, - anon_sym_LBRACK, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [69384] = 16, + ACTIONS(1511), 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_DASH_DASH, + ACTIONS(1513), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, + ACTIONS(4670), 1, + sym__automatic_semicolon, + ACTIONS(1543), 4, anon_sym_COMMA, - ACTIONS(3227), 1, anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4575), 2, - anon_sym_get, - anon_sym_set, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [69459] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3081), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(2919), 13, + ACTIONS(1547), 14, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2923), 25, - sym__automatic_semicolon, + ACTIONS(1549), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164590,25 +165909,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69514] = 3, + [70469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 14, + ACTIONS(1511), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4135), 27, + ACTIONS(1513), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -164636,111 +165955,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69563] = 33, + [70518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3578), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4334), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_AMP_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4340), 1, - anon_sym_GT_GT, - ACTIONS(4344), 1, + ACTIONS(3584), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3581), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4346), 1, - anon_sym_CARET, - ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4352), 1, - anon_sym_PERCENT, - ACTIONS(4354), 1, - anon_sym_STAR_STAR, - ACTIONS(4362), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4364), 1, - sym__ternary_qmark, - ACTIONS(4644), 1, - anon_sym_COLON, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4330), 2, + ACTIONS(3572), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4332), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4342), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4350), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4358), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 2, + anon_sym_DASH_DASH, + ACTIONS(3576), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4356), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69672] = 4, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 5, - sym__automatic_semicolon, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(3566), 1, + anon_sym_LBRACK, + ACTIONS(1977), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1447), 14, + anon_sym_extends, + ACTIONS(3569), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1449), 22, + ACTIONS(1333), 23, + 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, @@ -164759,35 +166055,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69723] = 4, + [70632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 5, - sym__automatic_semicolon, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(3602), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1555), 14, + anon_sym_extends, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1557), 22, + ACTIONS(2927), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164806,35 +166104,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69774] = 5, + [70687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4432), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(3913), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(3915), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164854,35 +166150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69827] = 4, + [70736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 1, - sym_regex_flags, - ACTIONS(4482), 17, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4484), 23, + ACTIONS(2927), 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, @@ -164899,36 +166193,37 @@ 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_BQUOTE, - [69878] = 4, + anon_sym_satisfies, + [70787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1469), 14, + ACTIONS(3921), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1471), 22, + ACTIONS(3923), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164948,37 +166243,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69929] = 6, + [70836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_extends, - ACTIONS(4007), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4004), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4000), 12, + ACTIONS(1411), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4002), 23, + ACTIONS(1413), 27, + 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, @@ -164997,104 +166289,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [69984] = 27, + [70885] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4537), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, anon_sym_GT_GT, - ACTIONS(4541), 1, + ACTIONS(4372), 1, anon_sym_AMP, - ACTIONS(4543), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4545), 1, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(4549), 1, + ACTIONS(4380), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4382), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4672), 1, + anon_sym_COLON, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4362), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4370), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, + ACTIONS(4390), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4553), 3, + ACTIONS(4386), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [70081] = 5, + [70994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 1, - sym__automatic_semicolon, - ACTIONS(1563), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1567), 14, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1569), 24, + ACTIONS(1483), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -165115,25 +166411,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70134] = 3, + [71043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 14, + ACTIONS(1387), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1537), 27, + ACTIONS(1389), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -165161,35 +166457,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70183] = 5, + [71092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4648), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(3925), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(3927), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165209,35 +166503,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70236] = 6, + [71141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(4236), 1, - anon_sym_of, - ACTIONS(4650), 1, - anon_sym_in, - ACTIONS(1343), 13, + ACTIONS(3929), 14, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(1347), 25, + ACTIONS(3523), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -165258,35 +166549,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70291] = 5, + [71190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, + ACTIONS(1533), 5, sym__automatic_semicolon, - ACTIONS(1443), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1447), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1449), 24, + ACTIONS(1539), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165306,36 +166596,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70344] = 6, + [71241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_of, - ACTIONS(4653), 1, - anon_sym_in, - ACTIONS(3941), 13, + ACTIONS(1517), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1521), 14, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3945), 25, - sym__automatic_semicolon, + ACTIONS(1523), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165355,32 +166643,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70399] = 3, + [71292] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 14, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, + anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, + anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4674), 1, + anon_sym_COLON, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3040), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4158), 27, + ACTIONS(2927), 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, @@ -165401,33 +166766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70448] = 3, + [71452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 14, + ACTIONS(4676), 1, + sym__automatic_semicolon, + ACTIONS(1497), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1501), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4162), 27, - sym__automatic_semicolon, + ACTIONS(1503), 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, @@ -165447,36 +166814,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70497] = 6, + [71505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(4224), 1, - anon_sym_of, - ACTIONS(4656), 1, - anon_sym_in, - ACTIONS(3478), 13, + ACTIONS(4678), 1, + sym__automatic_semicolon, + ACTIONS(1373), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1377), 14, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3482), 25, - sym__automatic_semicolon, + ACTIONS(1379), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165496,25 +166862,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70552] = 3, + [71558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 14, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4166), 27, + ACTIONS(2927), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -165542,33 +166908,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70601] = 3, + [71607] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACE, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [71682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 14, + ACTIONS(4680), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4682), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4170), 27, - sym__automatic_semicolon, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165588,33 +167015,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70650] = 3, + [71735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3176), 14, + ACTIONS(4680), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4682), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3180), 27, - sym__automatic_semicolon, + ACTIONS(2927), 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, @@ -165634,38 +167063,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70699] = 7, + [71788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, + ACTIONS(4680), 2, + anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3460), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4062), 3, + ACTIONS(4682), 3, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2919), 12, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -165684,49 +167111,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70756] = 14, + [71841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4659), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3546), 12, + ACTIONS(1561), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3548), 17, + anon_sym_DASH_DASH, + ACTIONS(1563), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -165740,26 +167154,28 @@ 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_BQUOTE, anon_sym_satisfies, - [70827] = 3, + [71890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 14, + ACTIONS(1547), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1471), 27, + ACTIONS(1549), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -165787,35 +167203,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [70876] = 5, + [71939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4664), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + ACTIONS(4633), 1, + sym_regex_flags, + ACTIONS(4436), 18, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(2923), 22, + anon_sym_satisfies, + ACTIONS(4438), 22, + 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, @@ -165831,208 +167248,27 @@ 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_BQUOTE, - anon_sym_satisfies, - [70929] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4575), 2, - anon_sym_get, - anon_sym_set, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [71004] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4668), 1, - anon_sym_LBRACE, - ACTIONS(4670), 1, - anon_sym_async, - ACTIONS(4674), 1, - anon_sym_readonly, - STATE(2246), 1, - sym_statement_block, - STATE(2272), 1, - sym_override_modifier, - ACTIONS(4672), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 2, - anon_sym_get, - anon_sym_set, - STATE(2428), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [71081] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4569), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [71158] = 3, + [71990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 14, + ACTIONS(1537), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3976), 27, + ACTIONS(1539), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166060,21 +167296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71207] = 3, + [72039] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3970), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, @@ -166106,25 +167342,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71256] = 3, + [72088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 14, + ACTIONS(4096), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3968), 27, + ACTIONS(4098), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166152,33 +167388,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71305] = 3, + [72137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 14, + ACTIONS(1455), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1459), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3793), 27, - sym__automatic_semicolon, + ACTIONS(1461), 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, @@ -166198,32 +167435,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71354] = 5, + [72188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4680), 3, + ACTIONS(1569), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1573), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(1575), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -166246,33 +167482,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71407] = 3, + [72239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 14, + ACTIONS(4684), 1, + sym__automatic_semicolon, + ACTIONS(1383), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1387), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1557), 27, - sym__automatic_semicolon, + ACTIONS(1389), 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, @@ -166292,37 +167530,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71456] = 7, + [72292] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - anon_sym_EQ, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, - anon_sym_COMMA, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(4065), 3, - anon_sym_GT, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, + anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4686), 1, + anon_sym_RBRACK, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 23, + ACTIONS(1413), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -166341,33 +167653,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [71513] = 3, + [72452] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 14, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_QMARK, + ACTIONS(3917), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1527), 27, + ACTIONS(3919), 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, @@ -166388,34 +167703,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71562] = 3, + [72509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_LBRACK, + ACTIONS(4313), 1, + anon_sym_COLON, + ACTIONS(3581), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3584), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3572), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1485), 27, - sym__automatic_semicolon, + ACTIONS(3576), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -166434,53 +167754,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71611] = 17, + [72568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4682), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3557), 11, + ACTIONS(4321), 1, + anon_sym_COLON, + ACTIONS(3569), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1977), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1329), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 15, + anon_sym_DASH_DASH, + ACTIONS(1333), 21, sym__ternary_qmark, - anon_sym_of, + 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, @@ -166494,173 +167802,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71688] = 3, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72627] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 14, - anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4368), 1, anon_sym_GT_GT, + ACTIONS(4372), 1, anon_sym_AMP, + ACTIONS(4374), 1, + anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_PERCENT, + ACTIONS(4382), 1, + anon_sym_STAR_STAR, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4442), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4444), 1, + sym__ternary_qmark, + ACTIONS(4698), 1, + anon_sym_RBRACK, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4362), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4370), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4378), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3962), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4390), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4386), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72736] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3280), 1, anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, anon_sym_AMP_AMP, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4708), 1, + anon_sym_GT_GT, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4714), 1, anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1545), 14, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(4700), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4702), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4710), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1547), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4726), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71786] = 5, + [72842] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 1, - sym__automatic_semicolon, - ACTIONS(1367), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1371), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1755), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1373), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72912] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 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_BQUOTE, - anon_sym_satisfies, - [71839] = 3, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 14, + ACTIONS(4440), 1, + sym_regex_flags, + ACTIONS(4436), 18, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_instanceof, anon_sym_DASH_DASH, - ACTIONS(4002), 27, - sym__automatic_semicolon, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4438), 21, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166676,38 +168111,38 @@ 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_BQUOTE, - anon_sym_satisfies, - [71888] = 3, + [73032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 14, + ACTIONS(3865), 1, + anon_sym_LBRACK, + ACTIONS(3330), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3868), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3939), 27, + ACTIONS(2927), 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -166726,34 +168161,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71937] = 3, + [73086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 14, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_extends, + ACTIONS(3578), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3581), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3572), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3927), 27, - sym__automatic_semicolon, + ACTIONS(3576), 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, @@ -166772,101 +168210,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [71986] = 24, + [73142] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4531), 1, - anon_sym_LT, - ACTIONS(4537), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4549), 1, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4714), 1, + anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4551), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4547), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4555), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4553), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [72077] = 3, + [73248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1409), 14, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(1977), 1, + anon_sym_extends, + ACTIONS(3566), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3569), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1329), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1411), 27, - sym__automatic_semicolon, + ACTIONS(1333), 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, @@ -166885,34 +168333,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72126] = 3, + [73304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 14, + ACTIONS(3588), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3586), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1387), 27, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -166931,36 +168380,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72175] = 5, + [73356] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 2, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4588), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73426] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3087), 1, + anon_sym_EQ, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(3602), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2919), 14, + anon_sym_extends, + ACTIONS(4158), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -166979,34 +168485,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72228] = 3, + [73482] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4459), 1, + anon_sym_readonly, + STATE(2272), 1, + sym_override_modifier, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4457), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [73558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4158), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1459), 27, + ACTIONS(2927), 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -167025,97 +168592,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72277] = 18, + [73612] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3223), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73682] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73752] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4549), 1, - anon_sym_PERCENT, - ACTIONS(4551), 1, - anon_sym_STAR_STAR, - ACTIONS(4577), 1, + ACTIONS(4736), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4527), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4547), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 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(3500), 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, - [72356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1395), 14, + ACTIONS(3541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1397), 27, - sym__automatic_semicolon, + ACTIONS(3543), 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, @@ -167130,33 +168757,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, anon_sym_satisfies, - [72405] = 4, + [73818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(2982), 1, anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(3105), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 25, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -167177,240 +168805,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [72455] = 32, + [73870] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_extends, + ACTIONS(4155), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4158), 2, anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, anon_sym_PIPE, - ACTIONS(4707), 1, - anon_sym_PERCENT, - ACTIONS(4709), 1, - anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(2923), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4687), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4705), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4711), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72561] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_GT_GT, - ACTIONS(4699), 1, - anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, - anon_sym_PERCENT, - ACTIONS(4709), 1, - anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, + ACTIONS(2927), 22, sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4685), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4687), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4705), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4711), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72667] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4707), 1, - anon_sym_PERCENT, - ACTIONS(4709), 1, - anon_sym_STAR_STAR, - ACTIONS(4721), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4685), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 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(3500), 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_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, anon_sym_satisfies, - [72745] = 6, + [73926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(4166), 1, anon_sym_LBRACK, - ACTIONS(3388), 2, + ACTIONS(3640), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4071), 3, + ACTIONS(4169), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(4047), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 23, + ACTIONS(4049), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -167434,197 +168902,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [72799] = 5, + [73980] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3474), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2919), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 21, - sym__ternary_qmark, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3448), 1, anon_sym_as, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4704), 1, anon_sym_AMP_AMP, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4708), 1, + anon_sym_GT_GT, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4714), 1, anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72851] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(3460), 1, - anon_sym_extends, - ACTIONS(4062), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 12, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3432), 1, + sym_type_arguments, + STATE(3500), 1, + sym_optional_chain, + ACTIONS(4700), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4702), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4710), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 22, - 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(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4726), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72907] = 28, + [74086] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4695), 1, + ACTIONS(4706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [73005] = 5, + [74192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(4001), 1, anon_sym_EQ, - ACTIONS(3090), 3, + ACTIONS(4331), 1, + anon_sym_COLON, + ACTIONS(4005), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(2919), 14, + ACTIONS(3999), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(4003), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -167647,48 +169098,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [73057] = 14, + [74246] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4724), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4739), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3546), 12, + ACTIONS(3550), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3548), 16, + ACTIONS(3552), 14, sym__ternary_qmark, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167702,37 +169157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [73127] = 6, + [74322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3460), 2, - anon_sym_COMMA, + ACTIONS(3328), 1, + anon_sym_QMARK, + ACTIONS(3330), 1, anon_sym_extends, - ACTIONS(4065), 3, - anon_sym_GT, + ACTIONS(3868), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2919), 11, + ACTIONS(3865), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + 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, anon_sym_DASH_DASH, - ACTIONS(2923), 23, - sym__automatic_semicolon, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -167751,747 +169206,807 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [73181] = 27, + [74378] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, + ACTIONS(4742), 1, anon_sym_LT, - ACTIONS(4695), 1, - anon_sym_GT_GT, - ACTIONS(4699), 1, - anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, - anon_sym_PERCENT, - ACTIONS(4709), 1, - anon_sym_STAR_STAR, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3557), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4687), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4705), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4711), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3500), 6, + ACTIONS(3559), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [73277] = 20, + [74448] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4747), 1, + anon_sym_static, + ACTIONS(4749), 1, + anon_sym_readonly, + ACTIONS(4751), 1, + anon_sym_abstract, + STATE(2264), 1, + sym_accessibility_modifier, + STATE(2307), 1, + sym_override_modifier, + ACTIONS(4745), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3162), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2690), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + 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, + [74522] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4695), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4707), 1, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4714), 1, + anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4697), 2, + ACTIONS(4702), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3502), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3500), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4726), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [73359] = 15, + [74628] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(4709), 1, - anon_sym_STAR_STAR, - ACTIONS(4721), 1, + ACTIONS(4724), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 12, + ACTIONS(3533), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3500), 15, + anon_sym_DASH_DASH, + ACTIONS(3535), 20, 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_satisfies, - [73431] = 32, + [74688] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, + ACTIONS(4734), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73537] = 32, + [74794] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, + ACTIONS(4734), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73643] = 32, + [74900] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, + ACTIONS(4734), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73749] = 32, + [75006] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, + ACTIONS(4734), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73855] = 32, + [75112] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3465), 1, anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, + ACTIONS(4734), 1, sym__ternary_qmark, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73961] = 29, + [75218] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3502), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [74061] = 22, + [75324] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4695), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4707), 1, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4714), 1, + anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1499), 2, + ACTIONS(4728), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4730), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3502), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3500), 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, - [74147] = 18, + [75430] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4721), 1, + ACTIONS(4753), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 11, + ACTIONS(3446), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3500), 13, + ACTIONS(3450), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168504,57 +170019,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74225] = 17, + anon_sym_satisfies, + [75502] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4707), 1, + ACTIONS(4708), 1, + anon_sym_GT_GT, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4721), 1, + ACTIONS(4724), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1499), 2, + ACTIONS(4710), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4718), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 10, + ACTIONS(3446), 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(3500), 14, + ACTIONS(3450), 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -168563,365 +170082,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [74301] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74371] = 26, + [75584] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4707), 1, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 6, + ACTIONS(3450), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [74465] = 25, + [75680] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4695), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4707), 1, + ACTIONS(4714), 1, + anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(3502), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [74557] = 24, + [75786] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4695), 1, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4707), 1, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4714), 1, + anon_sym_CARET, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4732), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4734), 1, + sym__ternary_qmark, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3502), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3500), 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, - [74647] = 32, + [75892] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74753] = 6, + ACTIONS(3450), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [75990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3071), 1, anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4149), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3941), 14, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3945), 22, + ACTIONS(2927), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -168942,814 +170414,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [74807] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74877] = 32, + anon_sym_implements, + [76040] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_GT_GT, - ACTIONS(4699), 1, - anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4753), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74983] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, - sym_regex_flags, - ACTIONS(4482), 18, - anon_sym_STAR, - anon_sym_as, + ACTIONS(3446), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4484), 21, + ACTIONS(3450), 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_BQUOTE, - [75033] = 32, + anon_sym_instanceof, + anon_sym_satisfies, + [76118] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4704), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4706), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, + ACTIONS(4716), 1, anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75139] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3220), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75209] = 32, + ACTIONS(3450), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [76218] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(3804), 1, - anon_sym_BANG, - ACTIONS(3806), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, - anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3304), 1, + ACTIONS(4724), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1930), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(3446), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75315] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4068), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2919), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(3450), 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_BQUOTE, anon_sym_satisfies, - [75371] = 7, + [76308] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(1975), 1, - anon_sym_extends, - ACTIONS(3492), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3495), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1343), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1347), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, + ACTIONS(3280), 1, + anon_sym_LBRACK, + ACTIONS(3282), 1, anon_sym_DOT, + ACTIONS(3454), 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(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(4708), 1, + anon_sym_GT_GT, + ACTIONS(4712), 1, + anon_sym_AMP, + ACTIONS(4720), 1, anon_sym_PERCENT, + ACTIONS(4722), 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_BQUOTE, - anon_sym_satisfies, - [75427] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75497] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4573), 2, - sym_number, - sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75567] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(4724), 1, anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_static, - ACTIONS(4731), 1, - anon_sym_readonly, - ACTIONS(4733), 1, - anon_sym_abstract, - STATE(2241), 1, - sym_accessibility_modifier, - STATE(2299), 1, - sym_override_modifier, - ACTIONS(4727), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3154), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2710), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + ACTIONS(3446), 2, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - 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, - [75641] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3490), 1, - anon_sym_extends, - ACTIONS(3484), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3487), 2, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3478), 12, + ACTIONS(4700), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4702), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4710), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3482), 22, + ACTIONS(4730), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(4726), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3450), 7, 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_BQUOTE, anon_sym_satisfies, - [75697] = 32, + [76400] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, + ACTIONS(4712), 1, anon_sym_AMP, - ACTIONS(4701), 1, + ACTIONS(4714), 1, anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(3446), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, + ACTIONS(4728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 2, + ACTIONS(4730), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75803] = 17, + ACTIONS(3450), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [76494] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4735), 1, + ACTIONS(4720), 1, + anon_sym_PERCENT, + ACTIONS(4722), 1, + anon_sym_STAR_STAR, + ACTIONS(4753), 1, anon_sym_LT, - STATE(3320), 1, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - STATE(1499), 2, + ACTIONS(4700), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(3557), 11, - anon_sym_STAR, + ACTIONS(3446), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169757,238 +170791,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 14, + ACTIONS(3450), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75879] = 32, + anon_sym_satisfies, + [76570] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3282), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3461), 1, anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, + ACTIONS(3463), 1, anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, - anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4708), 1, anon_sym_GT_GT, - ACTIONS(4699), 1, - anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_PERCENT, - ACTIONS(4709), 1, + ACTIONS(4722), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, + ACTIONS(4724), 1, + anon_sym_LT, + STATE(3428), 1, sym_type_arguments, - STATE(3550), 1, + STATE(3462), 1, sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(4700), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4687), 2, + ACTIONS(4702), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4710), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4705), 2, + ACTIONS(4718), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, + STATE(1409), 2, sym_template_string, sym_arguments, - ACTIONS(4711), 3, + ACTIONS(4726), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75985] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3629), 13, - anon_sym_STAR, + ACTIONS(3446), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3631), 20, + ACTIONS(3450), 9, 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_satisfies, - [76045] = 6, + [76656] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(3280), 1, anon_sym_LBRACK, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4007), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4000), 11, - anon_sym_STAR, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3448), 1, + anon_sym_as, + ACTIONS(3452), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3454), 1, + anon_sym_QMARK_DOT, + ACTIONS(3461), 1, + anon_sym_PLUS_PLUS, + ACTIONS(3463), 1, + anon_sym_DASH_DASH, + ACTIONS(3465), 1, + anon_sym_satisfies, + ACTIONS(4722), 1, + anon_sym_STAR_STAR, + ACTIONS(4753), 1, anon_sym_LT, - anon_sym_SLASH, + STATE(3428), 1, + sym_type_arguments, + STATE(3462), 1, + sym_optional_chain, + STATE(1409), 2, + sym_template_string, + sym_arguments, + ACTIONS(3446), 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, - anon_sym_DASH_DASH, - ACTIONS(4002), 23, - sym__automatic_semicolon, + ACTIONS(3450), 13, 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_BQUOTE, - anon_sym_satisfies, - [76099] = 17, + [76734] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, anon_sym_override, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4453), 1, - anon_sym_readonly, - STATE(2268), 1, - sym_override_modifier, - ACTIONS(3254), 2, - anon_sym_COMMA, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(4758), 1, anon_sym_RBRACE, - ACTIONS(4451), 2, + STATE(2269), 1, + sym_override_modifier, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(4455), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - STATE(2488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170004,119 +170991,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76175] = 32, + [76815] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(156), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3532), 1, - anon_sym_DASH_DASH, - ACTIONS(3559), 1, - anon_sym_as, - ACTIONS(3563), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_satisfies, - ACTIONS(4689), 1, + ACTIONS(4762), 1, + anon_sym_COMMA, + ACTIONS(4764), 1, + anon_sym_RBRACE, + STATE(3628), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4766), 2, + sym_number, + sym_private_property_identifier, + STATE(3654), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3951), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4760), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [76884] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_GT_GT, - ACTIONS(4699), 1, - anon_sym_AMP, - ACTIONS(4701), 1, - anon_sym_CARET, - ACTIONS(4703), 1, - anon_sym_PIPE, - ACTIONS(4707), 1, - anon_sym_PERCENT, - ACTIONS(4709), 1, - anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4719), 1, - sym__ternary_qmark, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - ACTIONS(4685), 2, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4687), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4705), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(4711), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76281] = 12, + STATE(2269), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [76965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_QMARK_DOT, - ACTIONS(4738), 1, - anon_sym_LT, - STATE(3320), 1, - sym_type_arguments, - STATE(3550), 1, - sym_optional_chain, - STATE(1499), 2, - sym_template_string, - sym_arguments, - ACTIONS(3614), 13, + ACTIONS(4768), 1, + sym_identifier, + ACTIONS(3184), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_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_DASH_DASH, - ACTIONS(3616), 17, + anon_sym_satisfies, + ACTIONS(3188), 21, + 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, @@ -170129,40 +171150,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_satisfies, - [76347] = 7, + anon_sym_BQUOTE, + [77014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_EQ, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3460), 2, + ACTIONS(1461), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4770), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(4773), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170181,29 +171197,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [76403] = 4, + [77063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1373), 3, + ACTIONS(1575), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4741), 14, + ACTIONS(4776), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4744), 22, + ACTIONS(4779), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -170226,89 +171242,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [76452] = 13, + [77112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_async, - ACTIONS(4755), 1, - anon_sym_abstract, - ACTIONS(4751), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4753), 2, - anon_sym_get, - anon_sym_set, - STATE(2425), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3051), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_extends, - ACTIONS(4068), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 12, + ACTIONS(3060), 1, + anon_sym_RBRACK, + ACTIONS(3098), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(2927), 22, 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, @@ -170327,52 +171289,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [76572] = 20, + [77165] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_readonly, - ACTIONS(1931), 1, + ACTIONS(1937), 1, anon_sym_override, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4759), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - STATE(2271), 1, + STATE(2269), 1, sym_override_modifier, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 15, + ACTIONS(1929), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170388,35 +171350,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76653] = 6, + [77246] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4544), 1, + anon_sym_LBRACK, + ACTIONS(4621), 1, + anon_sym_STAR, + ACTIONS(4625), 1, + anon_sym_async, + ACTIONS(4784), 1, + anon_sym_abstract, + ACTIONS(4627), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4631), 2, + anon_sym_get, + anon_sym_set, + STATE(2442), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4112), 1, - anon_sym_RBRACK, - ACTIONS(4224), 1, anon_sym_COMMA, - ACTIONS(3478), 14, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77313] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4158), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 22, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170435,38 +171452,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [76706] = 15, + [77368] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4786), 1, anon_sym_STAR, - ACTIONS(4763), 1, + ACTIONS(4788), 1, anon_sym_async, - ACTIONS(4767), 1, + ACTIONS(4792), 1, anon_sym_readonly, - STATE(2262), 1, + STATE(2275), 1, sym_override_modifier, - ACTIONS(4765), 2, + ACTIONS(4790), 2, sym_number, sym_private_property_identifier, - ACTIONS(4769), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(2494), 3, + STATE(2497), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -170475,7 +171492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170487,80 +171504,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_module, anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4771), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4774), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76826] = 6, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_RBRACK, - ACTIONS(4226), 1, + ACTIONS(1413), 3, anon_sym_COMMA, - ACTIONS(3941), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4796), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3945), 22, + ACTIONS(4799), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -170583,93 +171553,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [76879] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_COMMA, - ACTIONS(4781), 1, - anon_sym_RBRACE, - STATE(3479), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4783), 2, - sym_number, - sym_private_property_identifier, - STATE(3465), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4008), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4777), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76948] = 15, + [77488] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4785), 1, + ACTIONS(4802), 1, anon_sym_STAR, - ACTIONS(4787), 1, + ACTIONS(4804), 1, anon_sym_async, - ACTIONS(4791), 1, + ACTIONS(4808), 1, anon_sym_readonly, - STATE(2274), 1, + STATE(2279), 1, sym_override_modifier, - ACTIONS(4789), 2, + ACTIONS(4806), 2, sym_number, sym_private_property_identifier, - ACTIONS(4793), 2, + ACTIONS(4810), 2, anon_sym_get, anon_sym_set, - STATE(2479), 3, + STATE(2505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -170678,7 +171593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170694,47 +171609,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77019] = 15, + [77559] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4747), 1, + ACTIONS(4812), 1, anon_sym_STAR, - ACTIONS(4749), 1, + ACTIONS(4814), 1, anon_sym_async, - ACTIONS(4795), 1, + ACTIONS(4818), 1, anon_sym_readonly, - STATE(2265), 1, + STATE(2277), 1, sym_override_modifier, - ACTIONS(4751), 2, + ACTIONS(4816), 2, sym_number, sym_private_property_identifier, - ACTIONS(4753), 2, + ACTIONS(4820), 2, anon_sym_get, anon_sym_set, - STATE(2425), 3, + STATE(2481), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(3140), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170750,35 +171665,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77090] = 6, + [77630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_RBRACK, - ACTIONS(4236), 1, - anon_sym_COMMA, - ACTIONS(1343), 14, + ACTIONS(3330), 1, + anon_sym_extends, + ACTIONS(3865), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3868), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 22, + ACTIONS(2927), 22, 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, @@ -170797,89 +171712,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77143] = 14, + [77683] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1236), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_COMMA, - ACTIONS(4799), 1, - anon_sym_RBRACE, - STATE(3497), 1, + ACTIONS(4756), 1, + anon_sym_STAR, + STATE(2269), 1, + sym_override_modifier, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4783), 2, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(3482), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4008), 3, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4797), 20, + ACTIONS(1929), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77212] = 5, + [77764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LPAREN, - STATE(2478), 1, - sym_arguments, - ACTIONS(2919), 14, + ACTIONS(3865), 1, + anon_sym_LBRACK, + ACTIONS(3868), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3330), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 23, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170898,29 +171820,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77263] = 4, + [77817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 3, + ACTIONS(4104), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4801), 14, + ACTIONS(4822), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4804), 22, + ACTIONS(4825), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -170943,94 +171865,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77312] = 20, + [77866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4445), 1, + ACTIONS(3067), 1, anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(2923), 14, anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_RBRACE, - STATE(2271), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 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, + anon_sym_DASH_DASH, + ACTIONS(2927), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [77393] = 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 3, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4158), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3602), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4809), 14, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4812), 22, + ACTIONS(2927), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171049,96 +171957,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77442] = 20, + [77968] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4828), 1, anon_sym_STAR, - ACTIONS(4815), 1, - anon_sym_RBRACE, - STATE(2271), 1, + ACTIONS(4830), 1, + anon_sym_async, + ACTIONS(4834), 1, + anon_sym_readonly, + STATE(2278), 1, sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4832), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(4836), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + STATE(2476), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + ACTIONS(3140), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [78039] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_STAR, + ACTIONS(4830), 1, + anon_sym_async, + ACTIONS(4838), 1, + anon_sym_abstract, + ACTIONS(4832), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4836), 2, + anon_sym_get, + anon_sym_set, + STATE(2476), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 15, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77523] = 6, + [78106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, - anon_sym_LBRACK, - ACTIONS(4071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3388), 3, + ACTIONS(3972), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2919), 12, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4840), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(4843), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171157,33 +172112,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77576] = 4, + [78155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(2489), 1, + sym_arguments, + ACTIONS(2923), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 24, + ACTIONS(2927), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171202,88 +172158,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77625] = 15, + [78206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(3075), 1, + anon_sym_EQ, + ACTIONS(2923), 14, anon_sym_STAR, - ACTIONS(4819), 1, - anon_sym_async, - ACTIONS(4823), 1, - anon_sym_readonly, - STATE(2266), 1, - sym_override_modifier, - ACTIONS(4821), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4825), 2, - anon_sym_get, - anon_sym_set, - STATE(2491), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 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, + anon_sym_DASH_DASH, + ACTIONS(2927), 24, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [77696] = 6, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(4166), 1, anon_sym_LBRACK, - ACTIONS(4007), 2, + ACTIONS(4169), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3627), 3, + ACTIONS(3640), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4000), 12, + ACTIONS(4047), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4002), 21, + ACTIONS(4049), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -171305,105 +172250,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [77749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(2271), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [77830] = 14, + [78308] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4443), 1, + ACTIONS(4449), 1, anon_sym_STAR, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4449), 1, + ACTIONS(4455), 1, anon_sym_async, - ACTIONS(4569), 1, + ACTIONS(4544), 1, anon_sym_LBRACK, - ACTIONS(3254), 2, + ACTIONS(3260), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4451), 2, + ACTIONS(4457), 2, sym_number, sym_private_property_identifier, - ACTIONS(4455), 2, + ACTIONS(4461), 2, anon_sym_get, anon_sym_set, - STATE(2488), 3, + STATE(2507), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171420,82 +172304,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_number, anon_sym_boolean, anon_sym_string, - anon_sym_symbol, - [77899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(2919), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77948] = 7, + anon_sym_symbol, + [78377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(3460), 2, + ACTIONS(1539), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4065), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2919), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4846), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_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_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(4849), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171514,153 +172350,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78003] = 20, + [78426] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4445), 1, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - ACTIONS(4827), 1, + ACTIONS(3260), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2271), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4548), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(3025), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [78084] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(2271), 1, - sym_override_modifier, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78165] = 6, + [78493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(4090), 3, anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACK, - ACTIONS(3108), 1, - anon_sym_EQ, - ACTIONS(2919), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4852), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 22, + ACTIONS(4855), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -171683,75 +172449,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78218] = 4, + [78542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4858), 1, sym_identifier, - ACTIONS(3176), 17, + ACTIONS(3184), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(3180), 21, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_BQUOTE, - [78267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 1, - sym_identifier, - ACTIONS(3176), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_DASH_DASH, anon_sym_satisfies, - ACTIONS(3180), 21, + ACTIONS(3188), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -171773,74 +172494,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - [78316] = 4, + [78591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 3, + ACTIONS(3574), 1, + anon_sym_EQ, + ACTIONS(4055), 1, + anon_sym_RBRACK, + ACTIONS(4313), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4833), 14, + ACTIONS(3572), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(4836), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4839), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4842), 22, + ACTIONS(3576), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -171863,90 +172541,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78414] = 20, + [78644] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(156), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(2271), 1, - sym_override_modifier, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + ACTIONS(4762), 1, + anon_sym_COMMA, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(3580), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4766), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(3648), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3951), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 15, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4860), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78495] = 4, + [78713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 3, + ACTIONS(4094), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4845), 14, + ACTIONS(4864), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4848), 22, + ACTIONS(4867), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -171969,29 +172641,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78544] = 4, + [78762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 3, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_RBRACK, + ACTIONS(4331), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4851), 14, + ACTIONS(3999), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(4854), 22, + ACTIONS(4003), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -172014,35 +172688,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78593] = 6, + [78815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LBRACK, - ACTIONS(4065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3460), 3, - anon_sym_COMMA, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(3982), 1, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2919), 12, + ACTIONS(4321), 1, + anon_sym_COMMA, + ACTIONS(1329), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 21, + ACTIONS(1333), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172061,49 +172735,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [78646] = 13, + [78868] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(4870), 1, + anon_sym_RBRACE, + STATE(2269), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [78949] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4569), 1, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4670), 1, + ACTIONS(4872), 1, + anon_sym_RBRACE, + STATE(2269), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [79030] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(4857), 1, - anon_sym_abstract, - ACTIONS(4672), 2, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + STATE(2269), 1, + sym_override_modifier, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - STATE(2428), 3, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, + ACTIONS(1929), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [79111] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4451), 1, anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [79183] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(156), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, + anon_sym_LBRACK, + ACTIONS(4766), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4876), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + STATE(3873), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3951), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4007), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4874), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [79247] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -172115,46 +173076,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78713] = 13, + [79307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4440), 1, + sym_regex_flags, + ACTIONS(4436), 18, + 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_DASH_DASH, + anon_sym_satisfies, + ACTIONS(4438), 19, + 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_BQUOTE, + [79355] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(3254), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4573), 2, + ACTIONS(4878), 1, + anon_sym_STAR, + ACTIONS(4880), 1, + anon_sym_async, + ACTIONS(4882), 2, sym_number, sym_private_property_identifier, - ACTIONS(4575), 2, + ACTIONS(4884), 2, anon_sym_get, anon_sym_set, - STATE(3015), 3, + STATE(2458), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3226), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -172169,32 +173172,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78780] = 12, + [79419] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4859), 1, + ACTIONS(4812), 1, anon_sym_STAR, - ACTIONS(4861), 1, + ACTIONS(4814), 1, anon_sym_async, - ACTIONS(4863), 2, + ACTIONS(4816), 2, sym_number, sym_private_property_identifier, - ACTIONS(4865), 2, + ACTIONS(4820), 2, anon_sym_get, anon_sym_set, - STATE(2489), 3, + STATE(2481), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -172203,7 +173206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172221,38 +173224,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78844] = 12, + [79483] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1236), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(3282), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4783), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4869), 2, + ACTIONS(3260), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3711), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4008), 3, + ACTIONS(4548), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4072), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4867), 20, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172273,47 +173275,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78908] = 12, + [79545] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4785), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1638), 6, anon_sym_STAR, - ACTIONS(4787), 1, - anon_sym_async, - ACTIONS(4789), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4793), 2, - anon_sym_get, - anon_sym_set, - STATE(2479), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -172325,101 +173325,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78972] = 17, + [79605] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4815), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79046] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4761), 1, - anon_sym_STAR, - ACTIONS(4763), 1, anon_sym_async, - ACTIONS(4765), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4769), 2, - anon_sym_get, - anon_sym_set, - STATE(2494), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -172434,30 +173381,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79110] = 11, + [79677] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4802), 1, anon_sym_STAR, - ACTIONS(4871), 2, + ACTIONS(4886), 2, sym_number, sym_private_property_identifier, - ACTIONS(4873), 2, + ACTIONS(4888), 2, anon_sym_get, anon_sym_set, - STATE(2999), 3, + STATE(2894), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -172466,7 +173413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172485,30 +173432,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79172] = 11, + [79739] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4875), 1, + ACTIONS(4802), 1, anon_sym_STAR, - ACTIONS(4877), 2, + ACTIONS(4804), 1, + anon_sym_async, + ACTIONS(4806), 2, sym_number, sym_private_property_identifier, - ACTIONS(4879), 2, + ACTIONS(4810), 2, anon_sym_get, anon_sym_set, - STATE(2963), 3, + STATE(2505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -172517,11 +173466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -172536,166 +173484,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - anon_sym_EQ, - ACTIONS(3081), 1, - anon_sym_in, - ACTIONS(3084), 1, - anon_sym_of, - ACTIONS(2919), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2923), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, - sym_regex_flags, - ACTIONS(4482), 18, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - anon_sym_satisfies, - ACTIONS(4484), 19, - 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_BQUOTE, - [79334] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_of, - ACTIONS(4653), 1, - anon_sym_in, - ACTIONS(3941), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(3945), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79386] = 11, + [79803] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4881), 1, + ACTIONS(4828), 1, anon_sym_STAR, - ACTIONS(4883), 2, + ACTIONS(4890), 2, sym_number, sym_private_property_identifier, - ACTIONS(4885), 2, + ACTIONS(4892), 2, anon_sym_get, anon_sym_set, - STATE(2953), 3, + STATE(2982), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -172704,7 +173516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 18, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172723,32 +173535,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79448] = 12, + [79865] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4887), 1, + ACTIONS(4878), 1, anon_sym_STAR, - ACTIONS(4889), 1, - anon_sym_async, - ACTIONS(4891), 2, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - ACTIONS(4893), 2, + ACTIONS(4896), 2, anon_sym_get, anon_sym_set, - STATE(2444), 3, + STATE(2974), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -172757,10 +173567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -172775,46 +173586,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79512] = 17, + [79927] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1765), 1, + ACTIONS(1730), 1, anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172832,30 +173643,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79586] = 6, + [80001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(2996), 1, anon_sym_EQ, - ACTIONS(4236), 1, - anon_sym_of, - ACTIONS(4650), 1, + ACTIONS(3091), 1, anon_sym_in, - ACTIONS(1343), 13, + ACTIONS(3094), 1, + anon_sym_of, + ACTIONS(2923), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1347), 22, + ACTIONS(2927), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -172878,207 +173689,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [79638] = 16, + [80053] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79710] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4898), 1, anon_sym_STAR, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4900), 1, + anon_sym_async, + ACTIONS(4902), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(4904), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(2495), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79782] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3220), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1616), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1614), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79842] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3220), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -173090,99 +173741,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79902] = 16, + [80117] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4827), 1, + ACTIONS(4870), 1, anon_sym_RBRACE, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79974] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4895), 1, - anon_sym_STAR, - ACTIONS(4897), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4899), 2, - anon_sym_get, - anon_sym_set, - STATE(2879), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -173197,49 +173798,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80036] = 17, + [80191] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4759), 1, + ACTIONS(4870), 1, anon_sym_RBRACE, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -173254,48 +173854,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80110] = 16, + [80263] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 18, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -173310,32 +173911,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80182] = 12, + [80337] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, + ACTIONS(4906), 1, anon_sym_STAR, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_async, - ACTIONS(4903), 2, + ACTIONS(4910), 2, sym_number, sym_private_property_identifier, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_get, anon_sym_set, STATE(2490), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -173344,7 +173945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173362,44 +173963,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80246] = 16, + [80401] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4914), 1, anon_sym_STAR, - ACTIONS(4815), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4916), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(4918), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(3006), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 18, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173418,30 +174014,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80318] = 11, + [80463] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4907), 1, + ACTIONS(4906), 1, anon_sym_STAR, - ACTIONS(4909), 2, + ACTIONS(4920), 2, sym_number, sym_private_property_identifier, - ACTIONS(4911), 2, + ACTIONS(4922), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2970), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -173450,7 +174046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173469,44 +174065,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80380] = 16, + [80525] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, - STATE(3592), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173514,6 +174102,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, @@ -173525,30 +174115,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80452] = 5, + [80585] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1616), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4924), 1, + anon_sym_STAR, + ACTIONS(4926), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 10, + ACTIONS(4928), 2, + anon_sym_get, + anon_sym_set, + STATE(2941), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, 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_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1614), 21, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173556,8 +174155,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, @@ -173569,46 +174166,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [80502] = 10, + [80647] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4544), 1, + anon_sym_LBRACK, + ACTIONS(4786), 1, + anon_sym_STAR, + ACTIONS(4788), 1, + anon_sym_async, + ACTIONS(4790), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(2497), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -173620,52 +174218,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80562] = 17, + [80711] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1763), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3223), 1, anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -173677,39 +174268,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80636] = 11, + [80771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4887), 1, + ACTIONS(4786), 1, anon_sym_STAR, - ACTIONS(4913), 2, + ACTIONS(4930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4915), 2, + ACTIONS(4932), 2, anon_sym_get, anon_sym_set, - STATE(2899), 3, + STATE(2913), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173728,37 +174319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80698] = 11, + [80833] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(3254), 2, + ACTIONS(3220), 1, anon_sym_COMMA, + ACTIONS(3232), 1, anon_sym_RBRACE, - ACTIONS(4573), 2, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173779,39 +174369,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80760] = 11, + [80893] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4859), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4917), 2, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(4919), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - STATE(2976), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173830,44 +174425,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80822] = 16, + [80965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 10, + 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_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1636), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173875,6 +174456,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, @@ -173886,31 +174469,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80894] = 4, + anon_sym_abstract, + [81015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3574), 1, anon_sym_EQ, - ACTIONS(2919), 14, + ACTIONS(4313), 1, + anon_sym_of, + ACTIONS(4570), 1, + anon_sym_in, + ACTIONS(3572), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2923), 23, + ACTIONS(3576), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173930,46 +174516,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [80942] = 17, + [81067] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4934), 1, anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4936), 1, + anon_sym_async, + ACTIONS(4938), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(4940), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(2473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173987,36 +174568,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81016] = 10, + [81131] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(3249), 1, + ACTIONS(1730), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3592), 1, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1616), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1614), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174024,8 +174613,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, @@ -174037,32 +174624,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81076] = 12, + [81203] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4881), 1, + ACTIONS(4621), 1, anon_sym_STAR, - ACTIONS(4921), 1, - anon_sym_async, - ACTIONS(4923), 2, + ACTIONS(4942), 2, sym_number, sym_private_property_identifier, - ACTIONS(4925), 2, + ACTIONS(4944), 2, anon_sym_get, anon_sym_set, - STATE(2467), 3, + STATE(3016), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -174071,10 +174656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 17, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -174089,30 +174675,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81140] = 11, + [81265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4331), 1, + anon_sym_of, + ACTIONS(4556), 1, + anon_sym_in, + ACTIONS(3999), 13, + 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, - ACTIONS(1915), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_DASH, + ACTIONS(4003), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81317] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4927), 1, + ACTIONS(4946), 1, anon_sym_STAR, - ACTIONS(4929), 2, + ACTIONS(4948), 1, + anon_sym_async, + ACTIONS(4950), 2, sym_number, sym_private_property_identifier, - ACTIONS(4931), 2, + ACTIONS(4952), 2, anon_sym_get, anon_sym_set, - STATE(2982), 3, + STATE(2498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -174121,11 +174755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -174140,30 +174773,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81202] = 6, + [81381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, + ACTIONS(1331), 1, anon_sym_EQ, - ACTIONS(4224), 1, + ACTIONS(4321), 1, anon_sym_of, - ACTIONS(4656), 1, + ACTIONS(4559), 1, anon_sym_in, - ACTIONS(3478), 13, + ACTIONS(1329), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(3482), 22, + ACTIONS(1333), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174186,32 +174819,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_BQUOTE, anon_sym_satisfies, - [81254] = 12, + [81433] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4927), 1, + ACTIONS(4954), 1, anon_sym_STAR, - ACTIONS(4933), 1, + ACTIONS(4956), 1, anon_sym_async, - ACTIONS(4935), 2, + ACTIONS(4958), 2, sym_number, sym_private_property_identifier, - ACTIONS(4937), 2, + ACTIONS(4960), 2, anon_sym_get, anon_sym_set, - STATE(2471), 3, + STATE(2487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -174220,7 +174853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174238,36 +174871,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81318] = 10, + [81497] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4962), 1, + anon_sym_STAR, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(4966), 2, + anon_sym_get, + anon_sym_set, + STATE(2945), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174275,8 +174911,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, @@ -174288,45 +174922,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81378] = 10, + [81559] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(3230), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1773), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1616), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1614), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -174338,30 +174979,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81438] = 11, + [81633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4939), 1, + ACTIONS(4946), 1, anon_sym_STAR, - ACTIONS(4941), 2, + ACTIONS(4968), 2, sym_number, sym_private_property_identifier, - ACTIONS(4943), 2, + ACTIONS(4970), 2, anon_sym_get, anon_sym_set, - STATE(2942), 3, + STATE(2902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -174370,7 +175011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174389,87 +175030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81500] = 11, + [81695] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4747), 1, + ACTIONS(4812), 1, anon_sym_STAR, - ACTIONS(4945), 2, + ACTIONS(4972), 2, sym_number, sym_private_property_identifier, - ACTIONS(4947), 2, + ACTIONS(4974), 2, anon_sym_get, anon_sym_set, - STATE(2911), 3, + STATE(2989), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81562] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3203), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174477,8 +175070,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, @@ -174490,97 +175081,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81622] = 12, + [81757] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(4751), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4753), 2, - anon_sym_get, - anon_sym_set, - STATE(2425), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, + ACTIONS(4451), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81686] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(4782), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -174592,36 +175138,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81746] = 10, + [81831] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(3220), 1, anon_sym_COMMA, - ACTIONS(3203), 1, + ACTIONS(3223), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1616), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1614), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174642,45 +175188,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81806] = 10, + [81891] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1616), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_STAR, + ACTIONS(4830), 1, + anon_sym_async, + ACTIONS(4832), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(4836), 2, + anon_sym_get, + anon_sym_set, + STATE(2476), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1614), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -174692,39 +175240,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81866] = 11, + [81955] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4949), 2, sym_number, sym_private_property_identifier, - ACTIONS(4951), 2, - anon_sym_get, - anon_sym_set, - STATE(2955), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 6, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174732,6 +175277,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, @@ -174743,44 +175290,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81928] = 12, + [82015] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4939), 1, + ACTIONS(4934), 1, anon_sym_STAR, - ACTIONS(4953), 1, - anon_sym_async, - ACTIONS(4955), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - ACTIONS(4957), 2, + ACTIONS(4978), 2, anon_sym_get, anon_sym_set, - STATE(2485), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -174795,39 +175341,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81992] = 11, + [82077] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4785), 1, - anon_sym_STAR, - ACTIONS(4959), 2, sym_number, sym_private_property_identifier, - ACTIONS(4961), 2, - anon_sym_get, - anon_sym_set, - STATE(2918), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174835,6 +175378,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, @@ -174846,39 +175391,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82054] = 11, + [82137] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4963), 1, - anon_sym_STAR, - ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - ACTIONS(4967), 2, - anon_sym_get, - anon_sym_set, - STATE(2969), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 6, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174886,6 +175428,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, @@ -174897,46 +175441,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82116] = 17, + [82197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3087), 1, + anon_sym_EQ, + ACTIONS(2923), 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_DASH_DASH, + ACTIONS(2927), 23, + 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_BQUOTE, + anon_sym_satisfies, + [82245] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174954,30 +175542,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82190] = 11, + [82319] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4898), 1, anon_sym_STAR, - ACTIONS(4969), 2, + ACTIONS(4980), 2, sym_number, sym_private_property_identifier, - ACTIONS(4971), 2, + ACTIONS(4982), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -174986,7 +175574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 18, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175005,49 +175593,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82252] = 17, + [82381] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4954), 1, anon_sym_STAR, - ACTIONS(4827), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(4986), 2, anon_sym_get, anon_sym_set, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(2947), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -175062,44 +175644,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82326] = 12, + [82443] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4569), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(4819), 1, - anon_sym_async, - ACTIONS(4821), 2, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(4825), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - STATE(2491), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3132), 17, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -175114,39 +175700,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82390] = 14, + [82515] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4759), 1, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, anon_sym_RBRACE, - STATE(3609), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175167,34 +175750,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82457] = 9, + [82575] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4877), 2, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(4758), 1, + anon_sym_RBRACE, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(2963), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175202,8 +175795,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, @@ -175215,48 +175806,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82514] = 14, + [82647] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(4758), 1, + anon_sym_RBRACE, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175268,25 +175863,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82581] = 9, + [82721] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4941), 2, + ACTIONS(4930), 2, sym_number, sym_private_property_identifier, - STATE(2942), 3, + STATE(2913), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -175295,7 +175890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175316,34 +175911,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82638] = 9, + [82778] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4871), 2, + ACTIONS(4870), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(2999), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175364,39 +175964,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82695] = 14, + [82845] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(222), 1, + anon_sym_STAR, + ACTIONS(1624), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4992), 1, + anon_sym_async, + ACTIONS(4996), 1, + anon_sym_static, + ACTIONS(4998), 1, + anon_sym_readonly, + ACTIONS(5004), 1, + anon_sym_override, + STATE(2257), 1, + sym_accessibility_modifier, + STATE(2282), 1, + sym_override_modifier, + ACTIONS(4990), 2, anon_sym_COMMA, - ACTIONS(1751), 1, + anon_sym_RBRACE, + ACTIONS(4994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5000), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5002), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2800), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3875), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4988), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [82922] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4807), 1, + ACTIONS(4968), 2, + sym_number, + sym_private_property_identifier, + STATE(2902), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [82979] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(5006), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + STATE(2724), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + ACTIONS(3140), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [83036] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(5008), 2, + sym_number, + sym_private_property_identifier, + STATE(2711), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175417,25 +176166,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82762] = 9, + [83093] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4909), 2, + ACTIONS(4886), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2894), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -175444,7 +176193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175465,25 +176214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82819] = 9, + [83150] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4897), 2, + ACTIONS(4920), 2, sym_number, sym_private_property_identifier, - STATE(2879), 3, + STATE(2970), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -175492,7 +176241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175513,34 +176262,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82876] = 9, + [83207] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4973), 2, + ACTIONS(4972), 2, sym_number, sym_private_property_identifier, - STATE(2715), 3, + STATE(2989), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175561,39 +176310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82933] = 14, + [83264] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + ACTIONS(4758), 1, + anon_sym_RBRACE, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175614,82 +176363,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83000] = 9, + [83331] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4917), 2, + ACTIONS(4756), 1, + anon_sym_STAR, + STATE(2269), 1, + sym_override_modifier, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(2976), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5010), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83057] = 9, + [83404] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4975), 2, + ACTIONS(4980), 2, sym_number, sym_private_property_identifier, - STATE(2651), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175710,39 +176467,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83114] = 14, + [83461] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175763,34 +176520,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83181] = 9, + [83528] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4929), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - STATE(2982), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175811,19 +176568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83238] = 5, + [83585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1630), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 10, + ACTIONS(3226), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -175834,7 +176591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175855,34 +176612,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83287] = 9, + [83634] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4977), 2, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(2910), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175903,34 +176665,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83344] = 9, + [83701] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4979), 2, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(2905), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175951,25 +176718,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83401] = 9, + [83768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4913), 2, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - STATE(2899), 3, + STATE(2974), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -175978,7 +176745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175999,39 +176766,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83458] = 14, + [83825] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4815), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(5013), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(2892), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176052,25 +176814,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83525] = 9, + [83882] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4969), 2, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(2947), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -176079,7 +176841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176100,148 +176862,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83582] = 19, + [83939] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 1, - anon_sym_STAR, - ACTIONS(1620), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4985), 1, - anon_sym_async, - ACTIONS(4989), 1, - anon_sym_static, - ACTIONS(4991), 1, - anon_sym_readonly, - ACTIONS(4997), 1, - anon_sym_override, - STATE(2247), 1, - sym_accessibility_modifier, - STATE(2269), 1, - sym_override_modifier, - ACTIONS(4983), 2, + ACTIONS(228), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4987), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4993), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4995), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2803), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4981), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [83659] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(2271), 1, - sym_override_modifier, - ACTIONS(1919), 2, + ACTIONS(4872), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 15, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83732] = 9, + [84006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4945), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(2911), 3, + STATE(2945), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176262,39 +176963,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83789] = 14, + [84063] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1919), 2, + ACTIONS(4926), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, + STATE(2941), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3226), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176315,25 +177011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83856] = 9, + [84120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4883), 2, + ACTIONS(4890), 2, sym_number, sym_private_property_identifier, - STATE(2953), 3, + STATE(2982), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176342,7 +177038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176363,25 +177059,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83913] = 9, + [84177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4965), 2, + ACTIONS(5015), 2, sym_number, sym_private_property_identifier, - STATE(2969), 3, + STATE(2917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176390,7 +177086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176411,34 +177107,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83970] = 9, + [84234] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4959), 2, + ACTIONS(4942), 2, sym_number, sym_private_property_identifier, - STATE(2918), 3, + STATE(3016), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176459,25 +177155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84027] = 9, + [84291] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4949), 2, + ACTIONS(4916), 2, sym_number, sym_private_property_identifier, - STATE(2955), 3, + STATE(3006), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 8, + ACTIONS(3226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176486,7 +177182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176507,84 +177203,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84084] = 13, + [84348] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - ACTIONS(1919), 2, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [84148] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(5002), 1, - anon_sym_abstract, - ACTIONS(4975), 2, - sym_number, - sym_private_property_identifier, - STATE(2651), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176605,83 +177256,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84204] = 16, + [84415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_readonly, - ACTIONS(1931), 1, + ACTIONS(3164), 1, anon_sym_override, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - STATE(2271), 1, - sym_override_modifier, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [84274] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, + ACTIONS(5017), 1, anon_sym_readonly, - STATE(2284), 1, + STATE(2306), 1, sym_override_modifier, - ACTIONS(4975), 2, + ACTIONS(5006), 2, sym_number, sym_private_property_identifier, - STATE(2651), 3, + STATE(2724), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3226), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176689,7 +177286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 18, + ACTIONS(3140), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176708,29 +177305,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84334] = 11, + [84475] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, - anon_sym_readonly, - STATE(2277), 1, - sym_override_modifier, - ACTIONS(4973), 2, + ACTIONS(5019), 1, + anon_sym_abstract, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(2715), 3, + STATE(2711), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3226), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176738,44 +177331,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 18, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84394] = 9, + [84531] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_abstract, - ACTIONS(4973), 2, + ACTIONS(5021), 1, + anon_sym_readonly, + STATE(2300), 1, + sym_override_modifier, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(2715), 3, + STATE(2711), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3226), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176783,104 +177382,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(3140), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84450] = 14, + [84591] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(1933), 1, + anon_sym_readonly, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(1919), 2, + STATE(2269), 1, + sym_override_modifier, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(4999), 2, + ACTIONS(5023), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(1929), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84516] = 7, + [84661] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(3254), 2, + ACTIONS(3260), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1616), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, + ACTIONS(3226), 6, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1614), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176901,31 +177500,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84568] = 7, + [84713] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(3254), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(3206), 6, - sym__automatic_semicolon, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1628), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176933,8 +177540,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, @@ -176946,33 +177551,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84620] = 10, + [84777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4827), 1, + ACTIONS(3260), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176993,39 +177596,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84677] = 13, + [84829] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(4571), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - ACTIONS(5004), 2, + ACTIONS(5010), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 17, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177043,23 +177648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84740] = 8, + [84895] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5010), 2, + ACTIONS(4838), 1, + anon_sym_abstract, + ACTIONS(5006), 2, sym_number, sym_private_property_identifier, - STATE(2692), 3, + STATE(2724), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3206), 7, + ACTIONS(3226), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177067,7 +177674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177088,82 +177695,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84793] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_STAR, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [84854] = 10, + [84951] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4827), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177184,33 +177742,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84911] = 10, + [85008] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(5025), 2, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + STATE(2725), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177231,33 +177787,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84968] = 10, + [85061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_RBRACE, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1616), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(5027), 2, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + STATE(2743), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3226), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177278,33 +177832,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85025] = 10, + [85114] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177325,33 +177879,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85082] = 10, + [85171] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177372,33 +177926,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85139] = 10, + [85228] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4815), 1, + ACTIONS(1769), 1, anon_sym_RBRACE, - STATE(3592), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177419,33 +177973,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85196] = 10, + [85285] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4815), 1, - anon_sym_RBRACE, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177466,34 +178020,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85253] = 11, + [85342] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(4999), 2, + ACTIONS(5010), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177514,31 +178068,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85312] = 8, + [85401] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1297), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(5012), 2, sym_number, sym_private_property_identifier, - STATE(2729), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3206), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3132), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177559,33 +178115,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85365] = 10, + [85458] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4807), 1, + ACTIONS(4758), 1, anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177606,33 +178162,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85422] = 10, + [85515] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1763), 1, + ACTIONS(1773), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177653,33 +178209,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85479] = 10, + [85572] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, + ACTIONS(4758), 1, + anon_sym_RBRACE, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177700,33 +178256,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85536] = 10, + [85629] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1765), 1, + ACTIONS(1730), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177747,33 +178303,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85593] = 10, + [85686] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(1925), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85747] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3592), 1, + ACTIONS(4870), 1, + anon_sym_RBRACE, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177794,33 +178399,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85650] = 10, + [85804] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4807), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(3592), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1638), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177841,32 +178446,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85707] = 10, + [85861] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(1919), 2, + ACTIONS(4756), 1, + anon_sym_STAR, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(5004), 2, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5023), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85924] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177887,85 +178543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85763] = 22, + [85981] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1722), 1, - anon_sym_namespace, - ACTIONS(1728), 1, - anon_sym_import, - ACTIONS(1730), 1, - anon_sym_var, - ACTIONS(1732), 1, - anon_sym_let, - ACTIONS(1734), 1, - anon_sym_const, - ACTIONS(1745), 1, - anon_sym_class, - ACTIONS(1747), 1, - anon_sym_async, - ACTIONS(1749), 1, - anon_sym_function, - ACTIONS(1753), 1, - anon_sym_declare, + ACTIONS(228), 1, + anon_sym_COMMA, ACTIONS(1755), 1, - anon_sym_module, - ACTIONS(1757), 1, - anon_sym_abstract, - ACTIONS(1759), 1, - anon_sym_interface, - ACTIONS(1761), 1, - anon_sym_enum, - ACTIONS(1879), 1, - anon_sym_type, - ACTIONS(5014), 1, - anon_sym_default, - STATE(724), 1, - sym_declaration, - STATE(738), 1, - sym_internal_module, - STATE(1155), 1, - sym_decorator, - STATE(3192), 1, - aux_sym_export_statement_repeat1, - STATE(669), 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, - [85842] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4999), 2, - anon_sym_COMMA, + ACTIONS(4870), 1, anon_sym_RBRACE, - ACTIONS(3206), 3, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(1642), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177986,28 +178590,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85891] = 7, + [86038] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4999), 2, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(1925), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1628), 20, + STATE(3030), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178028,100 +178636,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85940] = 15, + [86094] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(1931), 1, - anon_sym_override, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5016), 1, - anon_sym_STAR, - ACTIONS(5018), 1, - anon_sym_async, - ACTIONS(5022), 1, - anon_sym_readonly, - STATE(2273), 1, - sym_override_modifier, - ACTIONS(3206), 2, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5020), 2, + ACTIONS(1638), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5024), 2, - anon_sym_get, - anon_sym_set, - STATE(3001), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 15, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86005] = 22, + [86143] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1933), 1, - anon_sym_type, - ACTIONS(1935), 1, + ACTIONS(1726), 1, anon_sym_namespace, - ACTIONS(1937), 1, + ACTIONS(1732), 1, anon_sym_import, - ACTIONS(1939), 1, + ACTIONS(1734), 1, anon_sym_var, - ACTIONS(1941), 1, + ACTIONS(1736), 1, anon_sym_let, - ACTIONS(1943), 1, + ACTIONS(1738), 1, anon_sym_const, - ACTIONS(1945), 1, + ACTIONS(1746), 1, anon_sym_class, - ACTIONS(1947), 1, + ACTIONS(1748), 1, anon_sym_async, - ACTIONS(1949), 1, + ACTIONS(1750), 1, anon_sym_function, - ACTIONS(1951), 1, + ACTIONS(1757), 1, anon_sym_declare, - ACTIONS(1953), 1, + ACTIONS(1759), 1, anon_sym_module, - ACTIONS(1955), 1, + ACTIONS(1761), 1, anon_sym_abstract, - ACTIONS(1957), 1, - anon_sym_global, - ACTIONS(1959), 1, + ACTIONS(1763), 1, anon_sym_interface, - ACTIONS(1961), 1, + ACTIONS(1765), 1, anon_sym_enum, - STATE(1155), 1, - sym_decorator, - STATE(3105), 1, + ACTIONS(1885), 1, + anon_sym_type, + ACTIONS(5029), 1, + anon_sym_default, + STATE(643), 1, sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3170), 1, + STATE(727), 1, sym_declaration, - STATE(3095), 13, + STATE(1163), 1, + sym_decorator, + STATE(3056), 1, + aux_sym_export_statement_repeat1, + STATE(657), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -178135,91 +178735,107 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86084] = 6, + [86222] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LPAREN, - ACTIONS(5028), 1, - anon_sym_DOT, - STATE(2252), 1, - sym_arguments, - ACTIONS(3102), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, + ACTIONS(95), 1, anon_sym_AT, - ACTIONS(3100), 22, - anon_sym_export, - anon_sym_type, + ACTIONS(1726), 1, anon_sym_namespace, + ACTIONS(1732), 1, + anon_sym_import, + ACTIONS(1734), 1, + anon_sym_var, + ACTIONS(1736), 1, + anon_sym_let, + ACTIONS(1738), 1, + anon_sym_const, + ACTIONS(1746), 1, + anon_sym_class, + ACTIONS(1748), 1, anon_sym_async, - anon_sym_DASH, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(1750), 1, + anon_sym_function, + ACTIONS(1757), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(1761), 1, anon_sym_abstract, - [86131] = 22, + ACTIONS(1763), 1, + anon_sym_interface, + ACTIONS(1765), 1, + anon_sym_enum, + ACTIONS(1885), 1, + anon_sym_type, + ACTIONS(1889), 1, + anon_sym_module, + ACTIONS(1891), 1, + anon_sym_global, + STATE(643), 1, + sym_internal_module, + STATE(694), 1, + sym_declaration, + STATE(1163), 1, + sym_decorator, + STATE(3056), 1, + aux_sym_export_statement_repeat1, + STATE(657), 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, + [86301] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1933), 1, - anon_sym_type, - ACTIONS(1935), 1, + ACTIONS(1726), 1, anon_sym_namespace, - ACTIONS(1937), 1, + ACTIONS(1732), 1, anon_sym_import, - ACTIONS(1939), 1, + ACTIONS(1734), 1, anon_sym_var, - ACTIONS(1941), 1, + ACTIONS(1736), 1, anon_sym_let, - ACTIONS(1943), 1, + ACTIONS(1738), 1, anon_sym_const, - ACTIONS(1945), 1, + ACTIONS(1746), 1, anon_sym_class, - ACTIONS(1947), 1, + ACTIONS(1748), 1, anon_sym_async, - ACTIONS(1949), 1, + ACTIONS(1750), 1, anon_sym_function, - ACTIONS(1951), 1, + ACTIONS(1757), 1, anon_sym_declare, - ACTIONS(1955), 1, + ACTIONS(1759), 1, + anon_sym_module, + ACTIONS(1761), 1, anon_sym_abstract, - ACTIONS(1959), 1, + ACTIONS(1763), 1, anon_sym_interface, - ACTIONS(1961), 1, + ACTIONS(1765), 1, anon_sym_enum, - ACTIONS(3208), 1, - anon_sym_module, - ACTIONS(5030), 1, + ACTIONS(1885), 1, + anon_sym_type, + ACTIONS(5031), 1, anon_sym_default, - STATE(1155), 1, - sym_decorator, - STATE(3105), 1, + STATE(643), 1, sym_internal_module, - STATE(3121), 1, - aux_sym_export_statement_repeat1, - STATE(3215), 1, + STATE(727), 1, sym_declaration, - STATE(3095), 13, + STATE(1163), 1, + sym_decorator, + STATE(3056), 1, + aux_sym_export_statement_repeat1, + STATE(657), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -178233,50 +178849,92 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86210] = 22, + [86380] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1640), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86429] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1722), 1, + ACTIONS(1939), 1, + anon_sym_type, + ACTIONS(1941), 1, anon_sym_namespace, - ACTIONS(1728), 1, + ACTIONS(1943), 1, anon_sym_import, - ACTIONS(1730), 1, + ACTIONS(1945), 1, anon_sym_var, - ACTIONS(1732), 1, + ACTIONS(1947), 1, anon_sym_let, - ACTIONS(1734), 1, + ACTIONS(1949), 1, anon_sym_const, - ACTIONS(1745), 1, + ACTIONS(1951), 1, anon_sym_class, - ACTIONS(1747), 1, + ACTIONS(1953), 1, anon_sym_async, - ACTIONS(1749), 1, + ACTIONS(1955), 1, anon_sym_function, - ACTIONS(1753), 1, + ACTIONS(1957), 1, anon_sym_declare, - ACTIONS(1755), 1, - anon_sym_module, - ACTIONS(1757), 1, + ACTIONS(1961), 1, anon_sym_abstract, - ACTIONS(1759), 1, + ACTIONS(1965), 1, anon_sym_interface, - ACTIONS(1761), 1, + ACTIONS(1967), 1, anon_sym_enum, - ACTIONS(1879), 1, - anon_sym_type, - ACTIONS(5032), 1, + ACTIONS(3228), 1, + anon_sym_module, + ACTIONS(5033), 1, anon_sym_default, - STATE(724), 1, - sym_declaration, - STATE(738), 1, - sym_internal_module, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(3192), 1, + STATE(3139), 1, + sym_declaration, + STATE(3148), 1, aux_sym_export_statement_repeat1, - STATE(669), 13, + STATE(3217), 1, + sym_internal_module, + STATE(3223), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -178290,50 +178948,100 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86289] = 22, + [86508] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(1937), 1, + anon_sym_override, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5035), 1, + anon_sym_STAR, + ACTIONS(5037), 1, + anon_sym_async, + ACTIONS(5041), 1, + anon_sym_readonly, + STATE(2270), 1, + sym_override_modifier, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5039), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5043), 2, + anon_sym_get, + anon_sym_set, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [86573] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1722), 1, + ACTIONS(1939), 1, + anon_sym_type, + ACTIONS(1941), 1, anon_sym_namespace, - ACTIONS(1728), 1, + ACTIONS(1943), 1, anon_sym_import, - ACTIONS(1730), 1, + ACTIONS(1945), 1, anon_sym_var, - ACTIONS(1732), 1, + ACTIONS(1947), 1, anon_sym_let, - ACTIONS(1734), 1, + ACTIONS(1949), 1, anon_sym_const, - ACTIONS(1745), 1, + ACTIONS(1951), 1, anon_sym_class, - ACTIONS(1747), 1, + ACTIONS(1953), 1, anon_sym_async, - ACTIONS(1749), 1, + ACTIONS(1955), 1, anon_sym_function, - ACTIONS(1753), 1, + ACTIONS(1957), 1, anon_sym_declare, - ACTIONS(1757), 1, + ACTIONS(1959), 1, + anon_sym_module, + ACTIONS(1961), 1, anon_sym_abstract, - ACTIONS(1759), 1, + ACTIONS(1963), 1, + anon_sym_global, + ACTIONS(1965), 1, anon_sym_interface, - ACTIONS(1761), 1, + ACTIONS(1967), 1, anon_sym_enum, - ACTIONS(1879), 1, - anon_sym_type, - ACTIONS(1883), 1, - anon_sym_module, - ACTIONS(1885), 1, - anon_sym_global, - STATE(678), 1, - sym_declaration, - STATE(738), 1, - sym_internal_module, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - STATE(3192), 1, + STATE(3148), 1, aux_sym_export_statement_repeat1, - STATE(669), 13, + STATE(3206), 1, + sym_declaration, + STATE(3217), 1, + sym_internal_module, + STATE(3223), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -178347,21 +179055,25 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86368] = 3, + [86652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 10, - sym__automatic_semicolon, + ACTIONS(5045), 1, + anon_sym_LPAREN, + ACTIONS(5047), 1, + anon_sym_DOT, + STATE(2260), 1, + sym_arguments, + ACTIONS(3110), 8, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5034), 22, + ACTIONS(3108), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178384,22 +179096,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86408] = 4, + [86699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 2, + ACTIONS(5049), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5040), 8, + ACTIONS(1325), 9, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5038), 22, + ACTIONS(1327), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178422,10 +179134,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86450] = 3, + [86741] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_STAR, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5053), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5055), 2, + anon_sym_get, + anon_sym_set, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 10, + ACTIONS(5059), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -178436,7 +179193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5044), 22, + ACTIONS(5057), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178459,30 +179216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86490] = 6, + [86837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(5004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1616), 6, + ACTIONS(5063), 10, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1614), 20, + anon_sym_AT, + ACTIONS(5061), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -178499,10 +179252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86536] = 3, + anon_sym_abstract, + [86877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 10, + ACTIONS(5067), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -178513,7 +179267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5048), 22, + ACTIONS(5065), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178536,41 +179290,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86576] = 12, + [86917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(5071), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5016), 1, - anon_sym_STAR, - ACTIONS(5018), 1, - anon_sym_async, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5020), 2, sym_number, sym_private_property_identifier, - ACTIONS(5024), 2, - anon_sym_get, - anon_sym_set, - STATE(3001), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 17, + anon_sym_AT, + ACTIONS(5069), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -178582,40 +179326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86634] = 11, + anon_sym_abstract, + [86957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(5075), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5016), 1, - anon_sym_STAR, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5020), 2, sym_number, sym_private_property_identifier, - ACTIONS(5024), 2, - anon_sym_get, - anon_sym_set, - STATE(3001), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, + anon_sym_AT, + ACTIONS(5073), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -178627,41 +179363,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86690] = 12, + anon_sym_abstract, + [86997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1445), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_STAR, - ACTIONS(5054), 1, - anon_sym_async, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5056), 2, sym_number, sym_private_property_identifier, - ACTIONS(5058), 2, - anon_sym_get, - anon_sym_set, - STATE(2928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 17, + anon_sym_AT, + ACTIONS(1447), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -178673,37 +179400,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86748] = 11, + anon_sym_abstract, + [87037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5035), 1, anon_sym_STAR, - ACTIONS(3206), 2, + ACTIONS(5037), 1, + anon_sym_async, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5056), 2, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - ACTIONS(5058), 2, + ACTIONS(5043), 2, anon_sym_get, anon_sym_set, - STATE(2928), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 18, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -178718,26 +179447,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86804] = 3, + [87095] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5077), 1, + anon_sym_EQ_GT, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5060), 22, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -178754,11 +179491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [86844] = 3, + [87149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 10, + ACTIONS(5081), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -178769,7 +179505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5064), 22, + ACTIONS(5079), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178792,34 +179528,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86884] = 10, + [87189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(5085), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5083), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [87229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5089), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5068), 1, - anon_sym_EQ_GT, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5020), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3001), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + anon_sym_AT, + ACTIONS(5087), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -178836,10 +179601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86938] = 3, + anon_sym_abstract, + [87269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 10, + ACTIONS(5093), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -178850,7 +179616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5044), 22, + ACTIONS(5091), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178873,33 +179639,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86978] = 11, + [87309] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5070), 1, + ACTIONS(5095), 1, anon_sym_STAR, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5072), 2, + ACTIONS(5097), 2, sym_number, sym_private_property_identifier, - ACTIONS(5074), 2, + ACTIONS(5099), 2, anon_sym_get, anon_sym_set, - STATE(2933), 3, + STATE(3013), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 18, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178918,26 +179684,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87034] = 3, + [87365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 10, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(5023), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1642), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5076), 22, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -178954,32 +179724,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87074] = 3, + [87411] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5095), 1, + anon_sym_STAR, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5097), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1437), 22, + ACTIONS(5099), 2, + anon_sym_get, + anon_sym_set, + STATE(3013), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -178991,27 +179770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87114] = 3, + [87469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 10, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(5023), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1638), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5080), 22, + ACTIONS(1636), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -179028,32 +179810,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87154] = 3, + [87515] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5035), 1, + anon_sym_STAR, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5084), 22, + ACTIONS(5043), 2, + anon_sym_get, + anon_sym_set, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -179065,11 +179855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87194] = 3, + [87571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 10, + ACTIONS(5081), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179080,7 +179869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5088), 22, + ACTIONS(5079), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179103,10 +179892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87234] = 3, + [87611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 10, + ACTIONS(5105), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179117,7 +179906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5092), 22, + ACTIONS(5103), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179140,10 +179929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87274] = 3, + [87651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 10, + ACTIONS(5109), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179154,7 +179943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5084), 22, + ACTIONS(5107), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179177,10 +179966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87314] = 3, + [87691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 10, + ACTIONS(5063), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179191,7 +179980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5096), 22, + ACTIONS(5061), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179214,10 +180003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87354] = 3, + [87731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 10, + ACTIONS(5085), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179228,7 +180017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5100), 22, + ACTIONS(5083), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179251,10 +180040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87394] = 3, + [87771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 10, + ACTIONS(5113), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179265,7 +180054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5096), 22, + ACTIONS(5111), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179288,31 +180077,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87434] = 3, + [87811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5115), 1, + anon_sym_STAR, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5060), 22, + ACTIONS(5119), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -179324,11 +180122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87474] = 3, + [87867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 10, + ACTIONS(5089), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179339,7 +180136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5064), 22, + ACTIONS(5087), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179362,31 +180159,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87514] = 3, + [87907] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 10, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_STAR, + ACTIONS(5121), 1, + anon_sym_async, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(5053), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5104), 22, + ACTIONS(5055), 2, + anon_sym_get, + anon_sym_set, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -179398,11 +180205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87554] = 3, + [87965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 10, + ACTIONS(5125), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179413,7 +180219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5104), 22, + ACTIONS(5123), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179436,10 +180242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87594] = 3, + [88005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 10, + ACTIONS(5125), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179450,7 +180256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5108), 22, + ACTIONS(5123), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179473,41 +180279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87634] = 12, + [88045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(5127), 1, + sym__automatic_semicolon, + ACTIONS(1469), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5112), 1, - anon_sym_STAR, - ACTIONS(5114), 1, - anon_sym_async, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5116), 2, sym_number, sym_private_property_identifier, - ACTIONS(5118), 2, - anon_sym_get, - anon_sym_set, - STATE(2878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 17, + anon_sym_AT, + ACTIONS(1471), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -179519,12 +180316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87692] = 4, + anon_sym_abstract, + [88087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5131), 10, sym__automatic_semicolon, - ACTIONS(1489), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -179534,7 +180331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1491), 22, + ACTIONS(5129), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179557,30 +180354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87734] = 6, + [88127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(5004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1630), 6, + ACTIONS(5105), 10, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + anon_sym_AT, + ACTIONS(5103), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -179597,40 +180390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87780] = 11, + anon_sym_abstract, + [88167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1469), 10, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5112), 1, - anon_sym_STAR, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5116), 2, sym_number, sym_private_property_identifier, - ACTIONS(5118), 2, - anon_sym_get, - anon_sym_set, - STATE(2878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 18, + anon_sym_AT, + ACTIONS(1471), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -179642,21 +180427,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87836] = 3, + anon_sym_abstract, + [88207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 10, + ACTIONS(5137), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5135), 8, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5108), 22, + ACTIONS(5133), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179679,24 +180466,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87876] = 3, + [88249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 9, + ACTIONS(5113), 10, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3115), 23, + ACTIONS(5111), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_DOT, anon_sym_async, anon_sym_DASH, sym_identifier, @@ -179716,24 +180503,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87916] = 3, + [88289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 10, - sym__automatic_semicolon, + ACTIONS(3128), 9, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5048), 22, + ACTIONS(3126), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_DOT, anon_sym_async, anon_sym_DASH, sym_identifier, @@ -179753,10 +180540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87956] = 3, + [88329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 10, + ACTIONS(5093), 10, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -179767,7 +180554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1491), 22, + ACTIONS(5091), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179790,27 +180577,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87996] = 4, + [88369] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, - sym__automatic_semicolon, - ACTIONS(1339), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1341), 22, + STATE(2974), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -179827,29 +180619,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [88038] = 9, + [88420] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4871), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(2999), 3, + STATE(2945), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179870,28 +180661,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88089] = 9, + [88471] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4877), 2, + ACTIONS(5139), 2, sym_number, sym_private_property_identifier, - STATE(2963), 3, + STATE(2933), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179912,28 +180703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88140] = 9, + [88522] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5020), 2, + ACTIONS(5053), 2, sym_number, sym_private_property_identifier, - STATE(3001), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179954,70 +180745,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88191] = 9, + [88573] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5056), 2, + ACTIONS(4621), 1, + anon_sym_STAR, + ACTIONS(4625), 1, + anon_sym_async, + ACTIONS(5141), 1, + anon_sym_static, + ACTIONS(5143), 1, + anon_sym_readonly, + ACTIONS(5145), 1, + anon_sym_abstract, + STATE(2273), 1, + sym_override_modifier, + ACTIONS(4627), 2, sym_number, sym_private_property_identifier, - STATE(2928), 3, + ACTIONS(4631), 2, + anon_sym_get, + anon_sym_set, + STATE(2442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88242] = 9, + [88636] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5124), 2, + ACTIONS(4926), 2, sym_number, sym_private_property_identifier, - STATE(2962), 3, + STATE(2941), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180038,28 +180835,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88293] = 9, + [88687] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5126), 2, + ACTIONS(5147), 2, sym_number, sym_private_property_identifier, - STATE(2973), 3, + STATE(2921), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180080,28 +180877,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88344] = 9, + [88738] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5128), 2, + ACTIONS(4886), 2, sym_number, sym_private_property_identifier, - STATE(3008), 3, + STATE(2894), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180122,26 +180919,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88395] = 4, + [88789] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, - sym__automatic_semicolon, - ACTIONS(1489), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, + ACTIONS(1923), 1, anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(4916), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1491), 22, + STATE(3006), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -180158,33 +180961,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [88436] = 9, + [88840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(5149), 1, + sym__automatic_semicolon, + ACTIONS(1325), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1917), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(5116), 2, sym_number, sym_private_property_identifier, - STATE(2878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + anon_sym_AT, + ACTIONS(1327), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -180201,12 +180997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88487] = 4, + anon_sym_abstract, + [88881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5151), 1, sym__automatic_semicolon, - ACTIONS(1339), 8, + ACTIONS(1469), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -180215,7 +181012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1341), 22, + ACTIONS(1471), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180238,28 +181035,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [88528] = 9, + [88922] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5072), 2, + ACTIONS(5153), 2, sym_number, sym_private_property_identifier, - STATE(2933), 3, + STATE(2901), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180280,28 +181077,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88579] = 9, + [88973] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(5134), 2, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - STATE(3019), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180322,28 +181119,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88630] = 9, + [89024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4959), 2, + ACTIONS(5155), 2, sym_number, sym_private_property_identifier, - STATE(2918), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180364,28 +181161,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88681] = 9, + [89075] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4897), 2, + ACTIONS(4968), 2, sym_number, sym_private_property_identifier, - STATE(2879), 3, + STATE(2902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180406,28 +181203,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88732] = 9, + [89126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4909), 2, + ACTIONS(4890), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2982), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180448,28 +181245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88783] = 9, + [89177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4941), 2, + ACTIONS(4920), 2, sym_number, sym_private_property_identifier, - STATE(2942), 3, + STATE(2970), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180490,76 +181287,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88834] = 15, + [89228] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4670), 1, - anon_sym_async, - ACTIONS(5136), 1, - anon_sym_static, - ACTIONS(5138), 1, - anon_sym_readonly, - ACTIONS(5140), 1, - anon_sym_abstract, - STATE(2272), 1, - sym_override_modifier, - ACTIONS(4672), 2, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(4972), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 2, - anon_sym_get, - anon_sym_set, - STATE(2428), 3, + STATE(2989), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 14, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88897] = 9, + [89279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4965), 2, + ACTIONS(5097), 2, sym_number, sym_private_property_identifier, - STATE(2969), 3, + STATE(3013), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180580,28 +181371,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88948] = 9, + [89330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4917), 2, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - STATE(2976), 3, + STATE(2947), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180622,28 +181413,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88999] = 9, + [89381] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4929), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - STATE(2982), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180664,28 +181455,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89050] = 9, + [89432] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4883), 2, + ACTIONS(4980), 2, sym_number, sym_private_property_identifier, - STATE(2953), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180706,28 +181497,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89101] = 9, + [89483] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, + ACTIONS(3226), 2, anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(4913), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - STATE(2899), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180748,28 +181539,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89152] = 9, + [89534] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1915), 1, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(4945), 2, + ACTIONS(5157), 1, + anon_sym_RBRACE, + STATE(3746), 1, + sym_enum_assignment, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - STATE(2911), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180790,10 +181580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89203] = 3, + [89584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 8, + ACTIONS(3110), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -180802,7 +181592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2525), 22, + ACTIONS(3108), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180825,10 +181615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [89241] = 3, + [89622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 8, + ACTIONS(2531), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -180837,7 +181627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2517), 22, + ACTIONS(2529), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180860,27 +181650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [89279] = 9, + [89660] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5161), 1, anon_sym_RBRACE, - STATE(3667), 1, + STATE(3746), 1, sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180901,70 +181691,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89329] = 14, + [89710] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_STAR, - ACTIONS(4819), 1, - anon_sym_async, - ACTIONS(4823), 1, - anon_sym_readonly, - ACTIONS(5146), 1, - anon_sym_static, - STATE(2266), 1, - sym_override_modifier, - ACTIONS(4821), 2, + ACTIONS(5163), 1, + anon_sym_RBRACE, + STATE(3746), 1, + sym_enum_assignment, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - ACTIONS(4825), 2, - anon_sym_get, - anon_sym_set, - STATE(2491), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [89389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3102), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3100), 22, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -180981,55 +181732,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89427] = 12, + [89760] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5148), 1, - anon_sym_static, - ACTIONS(5150), 1, - anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_abstract, - STATE(2277), 1, - sym_override_modifier, - ACTIONS(4973), 2, + ACTIONS(5165), 1, + anon_sym_RBRACE, + STATE(3582), 1, + sym_enum_assignment, + ACTIONS(5167), 2, sym_number, sym_private_property_identifier, - STATE(2715), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 17, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89483] = 3, + [89810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 8, + ACTIONS(1469), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -181038,7 +181785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2521), 22, + ACTIONS(1471), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181061,27 +181808,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [89521] = 9, + [89848] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5169), 1, anon_sym_RBRACE, - STATE(3667), 1, + STATE(3746), 1, sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181102,66 +181849,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89571] = 3, + [89898] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4449), 1, + anon_sym_STAR, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_async, + ACTIONS(4459), 1, + anon_sym_readonly, + ACTIONS(5171), 1, + anon_sym_static, + STATE(2272), 1, + sym_override_modifier, + ACTIONS(4457), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1437), 22, + ACTIONS(4461), 2, + anon_sym_get, + anon_sym_set, + STATE(2507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3140), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, - anon_sym_DASH, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89609] = 9, + [89958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(4261), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_RBRACE, - STATE(3603), 1, - sym_enum_assignment, - ACTIONS(5158), 2, sym_number, sym_private_property_identifier, - STATE(3262), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + anon_sym_AT, + ACTIONS(5173), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181178,10 +181929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89659] = 3, + anon_sym_abstract, + [89996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 8, + ACTIONS(5177), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -181190,7 +181942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5160), 22, + ACTIONS(5175), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181213,38 +181965,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [89697] = 14, + [90034] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_readonly, - ACTIONS(1931), 1, + ACTIONS(1937), 1, anon_sym_override, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(5164), 1, + ACTIONS(5179), 1, anon_sym_static, - STATE(2271), 1, + STATE(2269), 1, sym_override_modifier, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 14, + ACTIONS(1929), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181259,27 +182011,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89757] = 9, + [90094] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5166), 1, + ACTIONS(5181), 1, anon_sym_RBRACE, - STATE(3667), 1, + STATE(3474), 1, + sym_enum_assignment, + ACTIONS(5183), 2, + sym_number, + sym_private_property_identifier, + STATE(3232), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [90144] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5185), 1, + anon_sym_RBRACE, + STATE(3746), 1, sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181300,31 +182093,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89807] = 9, + [90194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(3134), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5168), 1, - anon_sym_RBRACE, - STATE(3667), 1, - sym_enum_assignment, - ACTIONS(5144), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + anon_sym_AT, + ACTIONS(3132), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181341,27 +182127,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89857] = 9, + anon_sym_abstract, + [90232] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5170), 1, + ACTIONS(5187), 1, anon_sym_RBRACE, - STATE(3441), 1, + STATE(3746), 1, sym_enum_assignment, - ACTIONS(5172), 2, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - STATE(3072), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181382,10 +182169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89907] = 3, + [90282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 8, + ACTIONS(1445), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -181394,7 +182181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5174), 22, + ACTIONS(1447), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181417,153 +182204,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [89945] = 3, + [90320] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4786), 1, + anon_sym_STAR, + ACTIONS(4788), 1, + anon_sym_async, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(5189), 1, + anon_sym_static, + STATE(2275), 1, + sym_override_modifier, + ACTIONS(4790), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3128), 22, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(2497), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3140), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, - anon_sym_DASH, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [89983] = 9, + [90380] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(3164), 1, + anon_sym_override, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5176), 1, - anon_sym_RBRACE, - STATE(3667), 1, - sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(5191), 1, + anon_sym_static, + ACTIONS(5193), 1, + anon_sym_readonly, + ACTIONS(5195), 1, + anon_sym_abstract, + STATE(2306), 1, + sym_override_modifier, + ACTIONS(5006), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(2724), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90033] = 14, + [90436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(3156), 1, - anon_sym_override, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, - ACTIONS(4453), 1, - anon_sym_readonly, - ACTIONS(5178), 1, - anon_sym_static, - STATE(2268), 1, - sym_override_modifier, - ACTIONS(4451), 2, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(3746), 1, + sym_enum_assignment, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - ACTIONS(4455), 2, - anon_sym_get, - anon_sym_set, - STATE(2488), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 14, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90093] = 9, + [90486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(2527), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5180), 1, - anon_sym_RBRACE, - STATE(3667), 1, - sym_enum_assignment, - ACTIONS(5144), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + anon_sym_AT, + ACTIONS(2525), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + anon_sym_DASH, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -181580,27 +182369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90143] = 9, + anon_sym_abstract, + [90524] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5199), 1, anon_sym_RBRACE, - STATE(3667), 1, + STATE(3746), 1, sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181621,10 +182411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90193] = 3, + [90574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 8, + ACTIONS(2535), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -181633,7 +182423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1491), 22, + ACTIONS(2533), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181656,36 +182446,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [90231] = 9, + [90612] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_RBRACE, - STATE(3667), 1, - sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(5035), 1, + anon_sym_STAR, + ACTIONS(5037), 1, + anon_sym_async, + ACTIONS(5041), 1, + anon_sym_readonly, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + ACTIONS(5043), 2, + anon_sym_get, + anon_sym_set, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, 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, + [90665] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_STAR, + ACTIONS(5121), 1, + anon_sym_async, + ACTIONS(5201), 1, anon_sym_readonly, + ACTIONS(5053), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5055), 2, anon_sym_get, anon_sym_set, + STATE(2999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1929), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181697,30 +182530,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90281] = 10, + [90718] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5186), 1, - anon_sym_STAR, - ACTIONS(5190), 1, + ACTIONS(5017), 1, anon_sym_readonly, - ACTIONS(5188), 2, + ACTIONS(5203), 1, + anon_sym_STAR, + ACTIONS(5205), 2, sym_number, sym_private_property_identifier, - ACTIONS(5192), 2, + ACTIONS(5207), 2, anon_sym_get, anon_sym_set, - STATE(2424), 3, + STATE(2412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 17, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181738,32 +182571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90332] = 11, + [90769] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, + ACTIONS(4812), 1, anon_sym_STAR, - ACTIONS(4670), 1, + ACTIONS(4814), 1, anon_sym_async, - ACTIONS(4674), 1, + ACTIONS(4818), 1, anon_sym_readonly, - ACTIONS(4672), 2, + ACTIONS(4816), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 2, + ACTIONS(4820), 2, anon_sym_get, anon_sym_set, - STATE(2428), 3, + STATE(2481), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181780,25 +182613,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90385] = 8, + [90822] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - STATE(3667), 1, - sym_enum_assignment, - ACTIONS(5144), 2, + ACTIONS(4828), 1, + anon_sym_STAR, + ACTIONS(4830), 1, + anon_sym_async, + ACTIONS(4834), 1, + anon_sym_readonly, + ACTIONS(4832), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + ACTIONS(4836), 2, + anon_sym_get, + anon_sym_set, + STATE(2476), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [90875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + ACTIONS(1642), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1640), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181819,32 +182691,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90432] = 11, + [90916] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4927), 1, + ACTIONS(4802), 1, anon_sym_STAR, - ACTIONS(4933), 1, + ACTIONS(4804), 1, anon_sym_async, - ACTIONS(5194), 1, + ACTIONS(4808), 1, anon_sym_readonly, - ACTIONS(4935), 2, + ACTIONS(4806), 2, sym_number, sym_private_property_identifier, - ACTIONS(4937), 2, + ACTIONS(4810), 2, anon_sym_get, anon_sym_set, - STATE(2471), 3, + STATE(2505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181861,35 +182733,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90485] = 11, + [90969] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4443), 1, - anon_sym_STAR, - ACTIONS(4447), 1, - anon_sym_LBRACK, - ACTIONS(4449), 1, - anon_sym_async, ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(5209), 1, + anon_sym_STAR, + ACTIONS(5213), 1, anon_sym_readonly, - ACTIONS(4451), 2, + ACTIONS(5211), 2, sym_number, sym_private_property_identifier, - ACTIONS(4455), 2, + ACTIONS(5215), 2, anon_sym_get, anon_sym_set, - STATE(2488), 3, + STATE(2434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -181903,31 +182774,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90538] = 5, + [91020] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - ACTIONS(1630), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1287), 1, anon_sym_DQUOTE, + ACTIONS(1289), 1, anon_sym_SQUOTE, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4898), 1, + anon_sym_STAR, + ACTIONS(4900), 1, + anon_sym_async, + ACTIONS(5217), 1, + anon_sym_readonly, + ACTIONS(4902), 2, sym_number, sym_private_property_identifier, - ACTIONS(1628), 20, + ACTIONS(4904), 2, + anon_sym_get, + anon_sym_set, + STATE(2495), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -181939,32 +182816,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90579] = 11, + [91073] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4887), 1, + ACTIONS(4878), 1, anon_sym_STAR, - ACTIONS(4889), 1, + ACTIONS(4880), 1, anon_sym_async, - ACTIONS(5196), 1, + ACTIONS(5219), 1, anon_sym_readonly, - ACTIONS(4891), 2, + ACTIONS(4882), 2, sym_number, sym_private_property_identifier, - ACTIONS(4893), 2, + ACTIONS(4884), 2, anon_sym_get, anon_sym_set, - STATE(2444), 3, + STATE(2458), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181981,32 +182858,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90632] = 11, + [91126] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4785), 1, + ACTIONS(4946), 1, anon_sym_STAR, - ACTIONS(4787), 1, + ACTIONS(4948), 1, anon_sym_async, - ACTIONS(4791), 1, + ACTIONS(5221), 1, anon_sym_readonly, - ACTIONS(4789), 2, + ACTIONS(4950), 2, sym_number, sym_private_property_identifier, - ACTIONS(4793), 2, + ACTIONS(4952), 2, anon_sym_get, anon_sym_set, - STATE(2479), 3, + STATE(2498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182023,36 +182900,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90685] = 10, + [91179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, - anon_sym_readonly, - ACTIONS(5198), 1, - anon_sym_STAR, - ACTIONS(5200), 2, + STATE(3746), 1, + sym_enum_assignment, + ACTIONS(5159), 2, sym_number, sym_private_property_identifier, - ACTIONS(5202), 2, - anon_sym_get, - anon_sym_set, - STATE(2468), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 17, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -182064,32 +182939,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90736] = 11, + [91226] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4786), 1, anon_sym_STAR, - ACTIONS(4763), 1, + ACTIONS(4788), 1, anon_sym_async, - ACTIONS(4767), 1, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4765), 2, + ACTIONS(4790), 2, sym_number, sym_private_property_identifier, - ACTIONS(4769), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(2494), 3, + STATE(2497), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182106,32 +182981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90789] = 11, + [91279] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(1925), 1, + ACTIONS(1931), 1, anon_sym_async, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_readonly, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, + ACTIONS(4756), 1, anon_sym_STAR, - ACTIONS(1919), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1935), 2, anon_sym_get, anon_sym_set, - STATE(2948), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 16, + ACTIONS(1929), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182148,32 +183023,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90842] = 11, + [91332] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4621), 1, anon_sym_STAR, - ACTIONS(4819), 1, + ACTIONS(4625), 1, anon_sym_async, - ACTIONS(4823), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4821), 2, + ACTIONS(4627), 2, sym_number, sym_private_property_identifier, - ACTIONS(4825), 2, + ACTIONS(4631), 2, anon_sym_get, anon_sym_set, - STATE(2491), 3, + STATE(2442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182190,32 +183065,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90895] = 11, + [91385] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(5016), 1, + ACTIONS(4449), 1, anon_sym_STAR, - ACTIONS(5018), 1, + ACTIONS(4453), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, anon_sym_async, - ACTIONS(5022), 1, + ACTIONS(4459), 1, anon_sym_readonly, - ACTIONS(5020), 2, + ACTIONS(4457), 2, sym_number, sym_private_property_identifier, - ACTIONS(5024), 2, + ACTIONS(4461), 2, anon_sym_get, anon_sym_set, - STATE(3001), 3, + STATE(2507), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 16, + ACTIONS(3140), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182232,37 +183107,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90948] = 11, + [91438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_async, - ACTIONS(4795), 1, - anon_sym_readonly, - ACTIONS(4751), 2, + ACTIONS(5015), 2, sym_number, sym_private_property_identifier, - ACTIONS(4753), 2, - anon_sym_get, - anon_sym_set, - STATE(2425), 3, + STATE(2917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -182274,37 +183144,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91001] = 11, + [91482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_STAR, - ACTIONS(5054), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5056), 2, + ACTIONS(4980), 2, sym_number, sym_private_property_identifier, - ACTIONS(5058), 2, - anon_sym_get, - anon_sym_set, - STATE(2928), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 16, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -182316,37 +183181,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91054] = 11, + [91526] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, - anon_sym_STAR, - ACTIONS(4901), 1, - anon_sym_async, - ACTIONS(5206), 1, - anon_sym_readonly, - ACTIONS(4903), 2, + ACTIONS(4548), 2, sym_number, sym_private_property_identifier, - ACTIONS(4905), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, + STATE(3025), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 16, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -182358,23 +183218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91107] = 7, + [91570] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5056), 2, + ACTIONS(5139), 2, sym_number, sym_private_property_identifier, - STATE(2928), 3, + STATE(2933), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182395,23 +183255,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91151] = 7, + [91614] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4897), 2, + ACTIONS(5153), 2, sym_number, sym_private_property_identifier, - STATE(2879), 3, + STATE(2901), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182432,61 +183292,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91195] = 8, + [91658] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_readonly, - ACTIONS(4975), 2, + ACTIONS(4926), 2, sym_number, sym_private_property_identifier, - STATE(2651), 3, + STATE(2941), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91241] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(1919), 2, - sym_number, - sym_private_property_identifier, - STATE(2948), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182507,23 +183329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91285] = 7, + [91702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5124), 2, + ACTIONS(1925), 2, sym_number, sym_private_property_identifier, - STATE(2962), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182544,23 +183366,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91329] = 7, + [91746] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4975), 2, + ACTIONS(4968), 2, sym_number, sym_private_property_identifier, - STATE(2651), 3, + STATE(2902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182581,23 +183403,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91373] = 7, + [91790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5020), 2, + ACTIONS(5053), 2, sym_number, sym_private_property_identifier, - STATE(3001), 3, + STATE(2999), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182618,23 +183440,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91417] = 7, + [91834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5012), 2, + ACTIONS(4890), 2, sym_number, sym_private_property_identifier, - STATE(2729), 3, + STATE(2982), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182655,23 +183477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91461] = 7, + [91878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4877), 2, + ACTIONS(5013), 2, sym_number, sym_private_property_identifier, - STATE(2963), 3, + STATE(2892), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182692,61 +183514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91505] = 8, + [91922] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - anon_sym_readonly, - ACTIONS(5012), 2, + ACTIONS(4920), 2, sym_number, sym_private_property_identifier, - STATE(2729), 3, + STATE(2970), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91551] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4871), 2, - sym_number, - sym_private_property_identifier, - STATE(2999), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182767,23 +183551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91595] = 7, + [91966] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4969), 2, + ACTIONS(4972), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(2989), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182804,23 +183588,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91639] = 7, + [92010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4959), 2, + ACTIONS(4942), 2, sym_number, sym_private_property_identifier, - STATE(2918), 3, + STATE(3016), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182841,23 +183625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91683] = 7, + [92054] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5128), 2, + ACTIONS(5027), 2, sym_number, sym_private_property_identifier, - STATE(3008), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182878,67 +183662,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91727] = 7, + [92098] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4977), 2, - sym_number, - sym_private_property_identifier, - STATE(2910), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1923), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(5223), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91771] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(4571), 1, - anon_sym_LBRACK, - ACTIONS(4883), 2, + ACTIONS(5027), 2, sym_number, sym_private_property_identifier, - STATE(2953), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -182952,23 +183700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91815] = 7, + [92144] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4913), 2, + ACTIONS(5006), 2, sym_number, sym_private_property_identifier, - STATE(2899), 3, + STATE(2724), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182989,23 +183737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91859] = 7, + [92188] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4949), 2, + ACTIONS(5147), 2, sym_number, sym_private_property_identifier, - STATE(2955), 3, + STATE(2921), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183026,23 +183774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91903] = 7, + [92232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4979), 2, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(2905), 3, + STATE(2711), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183063,23 +183811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91947] = 7, + [92276] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5126), 2, + ACTIONS(4930), 2, sym_number, sym_private_property_identifier, - STATE(2973), 3, + STATE(2913), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183100,23 +183848,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91991] = 7, + [92320] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5072), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - STATE(2933), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183137,30 +183885,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92035] = 7, + [92364] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(4909), 2, + ACTIONS(5021), 1, + anon_sym_readonly, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2711), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -183174,30 +183923,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92079] = 7, + [92410] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4453), 1, anon_sym_LBRACK, - ACTIONS(5134), 2, + ACTIONS(5017), 1, + anon_sym_readonly, + ACTIONS(5006), 2, sym_number, sym_private_property_identifier, - STATE(3019), 3, + STATE(2724), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(3140), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -183211,23 +183961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92123] = 7, + [92456] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5116), 2, + ACTIONS(4894), 2, sym_number, sym_private_property_identifier, - STATE(2878), 3, + STATE(2974), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183248,31 +183998,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92167] = 8, + [92500] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, - anon_sym_readonly, - ACTIONS(4973), 2, + ACTIONS(4916), 2, sym_number, sym_private_property_identifier, - STATE(2715), 3, + STATE(3006), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 19, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -183286,23 +184035,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92213] = 7, + [92544] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4929), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - STATE(2982), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183323,23 +184072,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92257] = 7, + [92588] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4573), 2, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - STATE(3015), 3, + STATE(2947), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183360,23 +184109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92301] = 7, + [92632] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4941), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(2942), 3, + STATE(2945), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183397,23 +184146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92345] = 7, + [92676] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4945), 2, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - STATE(2911), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183434,23 +184183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92389] = 7, + [92720] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4917), 2, + ACTIONS(5097), 2, sym_number, sym_private_property_identifier, - STATE(2976), 3, + STATE(3013), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183471,23 +184220,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92433] = 7, + [92764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4447), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4973), 2, + ACTIONS(4886), 2, sym_number, sym_private_property_identifier, - STATE(2715), 3, + STATE(2894), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3132), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183508,23 +184257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92477] = 7, + [92808] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(4571), 1, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4965), 2, + ACTIONS(5155), 2, sym_number, sym_private_property_identifier, - STATE(2969), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1923), 20, + ACTIONS(1929), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183545,14 +184294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92521] = 4, + [92852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(5225), 1, sym_identifier, - STATE(4188), 1, + STATE(4196), 1, sym_mapped_type_clause, - ACTIONS(5212), 19, + ACTIONS(5227), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183572,13 +184321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92552] = 3, + [92883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3782), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3544), 16, + ACTIONS(3784), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183595,40 +184344,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92578] = 7, + [92909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOT, - ACTIONS(5216), 1, - anon_sym_QMARK_DOT, - STATE(2346), 1, - sym_arguments, - ACTIONS(3298), 2, + ACTIONS(3794), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3300), 12, + ACTIONS(3796), 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_extends, - [92612] = 3, + [92935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 2, + ACTIONS(3442), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3787), 16, + ACTIONS(3444), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183645,13 +184390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92638] = 3, + [92961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3730), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3544), 16, + ACTIONS(3732), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183668,13 +184413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92664] = 3, + [92987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 2, + ACTIONS(3734), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3700), 16, + ACTIONS(3736), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183691,13 +184436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92690] = 3, + [93013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 2, + ACTIONS(3738), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3787), 16, + ACTIONS(3740), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183714,13 +184459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92716] = 3, + [93039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 2, + ACTIONS(3742), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3779), 16, + ACTIONS(3744), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183737,36 +184482,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92742] = 3, + [93065] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 2, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + STATE(2360), 1, + sym_arguments, + ACTIONS(2994), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3763), 16, - anon_sym_as, + ACTIONS(2984), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92768] = 3, + [93099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 2, + ACTIONS(3738), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3779), 16, + ACTIONS(3740), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183783,13 +184532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92794] = 3, + [93125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 2, + ACTIONS(3742), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3536), 16, + ACTIONS(3744), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183806,13 +184555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92820] = 3, + [93151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 2, + ACTIONS(3442), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3536), 16, + ACTIONS(3444), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183829,13 +184578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92846] = 3, + [93177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 2, + ACTIONS(3442), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3536), 16, + ACTIONS(3444), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183852,13 +184601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92872] = 3, + [93203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3714), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3424), 16, + ACTIONS(3716), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183875,13 +184624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92898] = 3, + [93229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3766), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3424), 16, + ACTIONS(3768), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183898,13 +184647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92924] = 3, + [93255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 2, + ACTIONS(3766), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3716), 16, + ACTIONS(3768), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183921,13 +184670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92950] = 3, + [93281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 2, + ACTIONS(3766), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3716), 16, + ACTIONS(3768), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183944,13 +184693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [92976] = 3, + [93307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3718), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3424), 16, + ACTIONS(3720), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183967,13 +184716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93002] = 3, + [93333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3790), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3472), 16, + ACTIONS(3792), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -183990,40 +184739,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93028] = 7, + [93359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3778), 2, anon_sym_EQ, - ACTIONS(5218), 1, - anon_sym_LT, - ACTIONS(5220), 1, - anon_sym_DOT, - ACTIONS(5222), 1, - anon_sym_is, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(3002), 13, + anon_sym_QMARK, + ACTIONS(3780), 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_QMARK, anon_sym_extends, - [93062] = 3, + [93385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 2, + ACTIONS(3778), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3759), 16, + ACTIONS(3780), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184040,13 +184785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93088] = 3, + [93411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 2, + ACTIONS(3726), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3763), 16, + ACTIONS(3728), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184063,13 +184808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93114] = 3, + [93437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 2, + ACTIONS(3794), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3716), 16, + ACTIONS(3796), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184086,13 +184831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93140] = 3, + [93463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 2, + ACTIONS(3778), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3596), 16, + ACTIONS(3780), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184109,13 +184854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93166] = 3, + [93489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 2, + ACTIONS(3730), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3759), 16, + ACTIONS(3732), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184132,13 +184877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93192] = 3, + [93515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 2, + ACTIONS(3794), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3683), 16, + ACTIONS(3796), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184155,13 +184900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93218] = 3, + [93541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3774), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3755), 16, + ACTIONS(3776), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184178,36 +184923,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93244] = 3, + [93567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 2, + ACTIONS(3266), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3596), 16, - anon_sym_as, + ACTIONS(5229), 1, + anon_sym_DOT, + ACTIONS(5231), 1, + anon_sym_LT, + ACTIONS(5233), 1, + anon_sym_is, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3022), 13, 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_extends, - [93270] = 3, + [93601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 2, + ACTIONS(3722), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3751), 16, + ACTIONS(3724), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184224,13 +184973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93296] = 3, + [93627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 2, + ACTIONS(3786), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3700), 16, + ACTIONS(3788), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184247,13 +184996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93322] = 3, + [93653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 2, + ACTIONS(3786), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3596), 16, + ACTIONS(3788), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184270,21 +185019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93348] = 7, + [93679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(3024), 1, anon_sym_LPAREN, - ACTIONS(5224), 1, + ACTIONS(5235), 1, anon_sym_DOT, - ACTIONS(5226), 1, + ACTIONS(5237), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, + STATE(2358), 1, sym_arguments, - ACTIONS(3304), 2, + ACTIONS(3426), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3306), 12, + ACTIONS(3428), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -184297,40 +185046,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93382] = 7, + [93713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - STATE(2348), 1, - sym_arguments, - ACTIONS(2982), 2, + ACTIONS(3734), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(2978), 12, + ACTIONS(3736), 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_extends, - [93416] = 3, + [93739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 2, + ACTIONS(3786), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3700), 16, + ACTIONS(3788), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184347,36 +185092,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93442] = 3, + [93765] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 2, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(5239), 1, + anon_sym_DOT, + ACTIONS(5241), 1, + anon_sym_QMARK_DOT, + STATE(2362), 1, + sym_arguments, + ACTIONS(3320), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3783), 16, - anon_sym_as, + ACTIONS(3322), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93468] = 3, + [93799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3726), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3544), 16, + ACTIONS(3728), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184393,13 +185142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93494] = 3, + [93825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3774), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3540), 16, + ACTIONS(3776), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184416,13 +185165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93520] = 3, + [93851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 2, + ACTIONS(3722), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3783), 16, + ACTIONS(3724), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184439,13 +185188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93546] = 3, + [93877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3774), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3540), 16, + ACTIONS(3776), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184462,13 +185211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93572] = 3, + [93903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 2, + ACTIONS(1397), 1, + anon_sym_DOT, + ACTIONS(3688), 2, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3689), 15, + anon_sym_LT, + ACTIONS(3690), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184478,21 +185229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [93597] = 4, + [93930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(3722), 2, + ACTIONS(3688), 2, anon_sym_EQ, anon_sym_LT, - ACTIONS(3724), 14, + ACTIONS(3690), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184507,13 +185257,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93624] = 3, + [93957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 2, + ACTIONS(3672), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3675), 15, + ACTIONS(3674), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184529,17 +185279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93649] = 5, + [93982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(5243), 1, anon_sym_DOT, - ACTIONS(5230), 1, + ACTIONS(5245), 1, anon_sym_QMARK_DOT, - ACTIONS(3598), 2, + ACTIONS(3622), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3600), 13, + ACTIONS(3624), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184553,18 +185303,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93678] = 6, + [94011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3662), 2, anon_sym_EQ, - ACTIONS(5218), 1, - anon_sym_LT, - ACTIONS(5220), 1, + anon_sym_QMARK, + ACTIONS(3664), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [94036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_DOT, - STATE(2365), 1, + ACTIONS(5231), 1, + anon_sym_LT, + STATE(2404), 1, sym_type_arguments, - ACTIONS(3002), 13, + ACTIONS(3022), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -184578,13 +185350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93709] = 3, + [94067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 2, + ACTIONS(3666), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3679), 15, + ACTIONS(3668), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184600,13 +185372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93734] = 3, + [94092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 2, - anon_sym_LT, + ACTIONS(1529), 2, anon_sym_PIPE, - ACTIONS(1475), 14, + anon_sym_LT, + ACTIONS(1527), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -184621,13 +185393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93758] = 3, + [94116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 2, - anon_sym_LT, + ACTIONS(1419), 2, anon_sym_PIPE, - ACTIONS(1415), 14, + anon_sym_LT, + ACTIONS(1417), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -184642,12 +185414,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93782] = 3, + [94140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_LT, + STATE(2391), 1, + sym_type_arguments, + ACTIONS(3352), 13, + 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, + [94168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(1405), 1, anon_sym_EQ, - ACTIONS(1377), 15, + ACTIONS(1403), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184663,16 +185458,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_is, - [93806] = 5, + [94192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(5247), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [94213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3328), 1, anon_sym_EQ, - ACTIONS(5218), 1, - anon_sym_LT, - STATE(2398), 1, - sym_type_arguments, - ACTIONS(3382), 13, + ACTIONS(3330), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -184686,12 +185497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93834] = 3, + [94236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 1, + ACTIONS(3600), 1, anon_sym_EQ, - ACTIONS(3637), 14, + ACTIONS(3602), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184706,12 +185517,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93857] = 3, + [94259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(5249), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [94280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, anon_sym_EQ, - ACTIONS(3747), 14, + ACTIONS(3612), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184726,12 +185556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93880] = 3, + [94303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3350), 1, anon_sym_EQ, - ACTIONS(3735), 14, + ACTIONS(3352), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184746,20 +185576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93903] = 4, + [94326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(5232), 1, - anon_sym_LBRACK, - ACTIONS(3661), 13, + ACTIONS(3598), 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, @@ -184767,19 +185596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93928] = 3, + [94349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 1, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(3657), 14, + ACTIONS(5251), 1, + anon_sym_LBRACK, + ACTIONS(3606), 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, @@ -184787,34 +185617,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [93951] = 5, + [94374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3684), 1, anon_sym_EQ, - ACTIONS(5232), 1, - anon_sym_LBRACK, - ACTIONS(3454), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3651), 10, + ACTIONS(3686), 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, - [93978] = 3, + anon_sym_extends, + [94397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3770), 1, anon_sym_EQ, - ACTIONS(3490), 14, + ACTIONS(3772), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184829,12 +185657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94001] = 3, + [94420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(3758), 1, anon_sym_EQ, - ACTIONS(3712), 14, + ACTIONS(3760), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184849,12 +185677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94024] = 3, + [94443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, + ACTIONS(3676), 1, anon_sym_EQ, - ACTIONS(3696), 14, + ACTIONS(3678), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184869,12 +185697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94047] = 3, + [94466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(3698), 1, anon_sym_EQ, - ACTIONS(3643), 14, + ACTIONS(3700), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184889,31 +185717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94070] = 2, + [94489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [94091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, + ACTIONS(3754), 1, anon_sym_EQ, - ACTIONS(3450), 14, + ACTIONS(3756), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184928,12 +185737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94114] = 3, + [94512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3702), 1, anon_sym_EQ, - ACTIONS(3382), 14, + ACTIONS(3704), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184948,12 +185757,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94137] = 3, + [94535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(5253), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [94556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [94577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3710), 1, anon_sym_EQ, - ACTIONS(3440), 14, + ACTIONS(3712), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -184968,20 +185815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94160] = 4, + [94600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3680), 1, anon_sym_EQ, - ACTIONS(5232), 1, - anon_sym_LBRACK, - ACTIONS(3454), 13, + ACTIONS(3682), 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, @@ -184989,10 +185835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94185] = 2, + [94623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 15, + ACTIONS(5257), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185008,30 +185854,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [94206] = 3, + [94644] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(3426), 1, + anon_sym_PIPE, + ACTIONS(5259), 1, + anon_sym_DOT, + ACTIONS(5261), 1, + anon_sym_QMARK_DOT, + STATE(2482), 1, + sym_arguments, + ACTIONS(3428), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3739), 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_extends, + anon_sym_PIPE_RBRACE, + [94675] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(5263), 1, + anon_sym_DOT, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5267), 1, + anon_sym_is, + STATE(2603), 1, + sym_type_arguments, + ACTIONS(3022), 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, - [94229] = 2, + anon_sym_PIPE_RBRACE, + [94706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 15, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2988), 1, + anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_QMARK_DOT, + ACTIONS(2994), 1, + anon_sym_PIPE, + STATE(2489), 1, + sym_arguments, + ACTIONS(2984), 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, + [94737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185047,12 +185945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [94250] = 3, + [94758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(3592), 14, + ACTIONS(3660), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185067,19 +185965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94273] = 3, + [94781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3654), 1, anon_sym_EQ, - ACTIONS(3731), 14, + ACTIONS(5251), 1, + anon_sym_LBRACK, + ACTIONS(3656), 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, @@ -185087,10 +185986,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94296] = 2, + [94806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 15, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_DOT, + ACTIONS(5273), 1, + anon_sym_QMARK_DOT, + STATE(2485), 1, + sym_arguments, + ACTIONS(3322), 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, + [94837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5275), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185106,12 +186029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [94317] = 3, + [94858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3798), 1, anon_sym_EQ, - ACTIONS(3720), 14, + ACTIONS(3800), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185126,12 +186049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94340] = 3, + [94881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3802), 1, anon_sym_EQ, - ACTIONS(3388), 14, + ACTIONS(3804), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185146,12 +186069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94363] = 3, + [94904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3806), 1, anon_sym_EQ, - ACTIONS(3588), 14, + ACTIONS(3808), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185166,12 +186089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94386] = 3, + [94927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, + ACTIONS(3650), 1, anon_sym_EQ, - ACTIONS(3460), 14, + ACTIONS(3652), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185186,12 +186109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94409] = 3, + [94950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 1, + ACTIONS(3750), 1, anon_sym_EQ, - ACTIONS(3606), 14, + ACTIONS(3752), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185206,13 +186129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94432] = 3, + [94973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3328), 1, anon_sym_EQ, - ACTIONS(3436), 14, - anon_sym_as, + ACTIONS(5233), 1, + anon_sym_is, + ACTIONS(3330), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -185226,117 +186150,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5242), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [94476] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3272), 1, - anon_sym_PIPE, - ACTIONS(5244), 1, - anon_sym_LT, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_is, - STATE(2561), 1, - sym_type_arguments, - ACTIONS(3002), 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, - [94507] = 3, + [94998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3612), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5251), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(3606), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [94530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_EQ, - ACTIONS(5250), 1, - anon_sym_is, - ACTIONS(3382), 13, + ACTIONS(3648), 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, - [94555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5252), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [94576] = 4, + [95025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3350), 1, anon_sym_EQ, - ACTIONS(5222), 1, + ACTIONS(5277), 1, anon_sym_is, - ACTIONS(3388), 13, + ACTIONS(3352), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -185350,34 +186193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94601] = 7, + [95050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3298), 1, - anon_sym_PIPE, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5256), 1, - anon_sym_QMARK_DOT, - STATE(2495), 1, - sym_arguments, - ACTIONS(3300), 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, - [94632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5258), 15, + ACTIONS(5279), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185393,12 +186212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [94653] = 3, + [95071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(3627), 14, + ACTIONS(3644), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185413,60 +186232,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94676] = 7, + [95094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3304), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_DOT, - ACTIONS(5262), 1, - anon_sym_QMARK_DOT, - STATE(2476), 1, - sym_arguments, - ACTIONS(3306), 10, - sym__automatic_semicolon, + ACTIONS(3638), 1, anon_sym_EQ, + ACTIONS(3640), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94707] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3006), 1, - anon_sym_DOT, - ACTIONS(3008), 1, - anon_sym_QMARK_DOT, - STATE(2478), 1, - sym_arguments, - ACTIONS(2978), 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_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94738] = 3, + [95117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(3588), 1, anon_sym_EQ, - ACTIONS(3464), 14, + ACTIONS(3586), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185481,12 +186272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94761] = 3, + [95140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3762), 1, anon_sym_EQ, - ACTIONS(3432), 14, + ACTIONS(3764), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185501,31 +186292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5264), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [94805] = 3, + [95163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3630), 1, anon_sym_EQ, - ACTIONS(3474), 14, + ACTIONS(3632), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185540,12 +186312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94828] = 3, + [95186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(3428), 14, + ACTIONS(3584), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -185560,34 +186332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [94851] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5268), 1, - sym_number, - STATE(4070), 2, - sym_string, - sym_predefined_type, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [94879] = 3, + [95209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 1, + ACTIONS(3722), 1, anon_sym_PIPE, - ACTIONS(3779), 13, + ACTIONS(3724), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185601,42 +186351,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94901] = 6, + [95231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5270), 1, - sym_number, - STATE(3966), 2, - sym_string, - sym_predefined_type, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [94929] = 7, + ACTIONS(3266), 1, + anon_sym_PIPE, + ACTIONS(5263), 1, + anon_sym_DOT, + ACTIONS(5265), 1, + anon_sym_LT, + STATE(2603), 1, + sym_type_arguments, + ACTIONS(3022), 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, + [95259] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(3090), 1, + sym_type_annotation, + STATE(3615), 1, + sym__call_signature, + STATE(3621), 1, + sym__initializer, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5283), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [95301] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5272), 1, + ACTIONS(5293), 1, sym_number, - STATE(4105), 1, - sym_predefined_type, - STATE(4106), 1, + STATE(4021), 1, sym_string, - ACTIONS(5266), 9, + STATE(4022), 1, + sym_predefined_type, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -185646,20 +186425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [94959] = 7, + [95331] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5274), 1, + ACTIONS(5295), 1, sym_number, - STATE(3970), 1, + STATE(4024), 1, sym_string, - STATE(3971), 1, + STATE(4025), 1, sym_predefined_type, - ACTIONS(5266), 9, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -185669,79 +186448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [94989] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5280), 1, - anon_sym_BANG, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_QMARK, - STATE(2657), 1, - sym_formal_parameters, - STATE(2949), 1, - sym__call_signature, - STATE(3224), 1, - sym_type_annotation, - STATE(3557), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5278), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [95031] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(3178), 1, - anon_sym_LBRACE, - ACTIONS(5288), 1, - sym_identifier, - ACTIONS(5290), 1, - anon_sym_STAR, - ACTIONS(5292), 1, - anon_sym_type, - ACTIONS(5294), 1, - anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_from, - STATE(3662), 1, - sym_import_clause, - STATE(3666), 1, - sym_string, - STATE(3698), 1, - sym_import_require_clause, - STATE(3799), 1, - sym__import_identifier, - STATE(4173), 2, - sym_namespace_import, - sym_named_imports, - [95075] = 7, + [95361] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5297), 1, sym_number, - STATE(4028), 1, - sym_predefined_type, - STATE(4111), 1, + STATE(4252), 1, sym_string, - ACTIONS(5266), 9, + STATE(4253), 1, + sym_predefined_type, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -185751,19 +186471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [95105] = 6, + [95391] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5300), 1, + ACTIONS(5299), 1, sym_number, - STATE(4155), 2, + STATE(4235), 1, sym_string, + STATE(4237), 1, sym_predefined_type, - ACTIONS(5266), 9, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -185773,61 +186494,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [95133] = 4, + [95421] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5303), 1, + anon_sym_BANG, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5307), 1, + anon_sym_QMARK, + STATE(2713), 1, + sym_formal_parameters, + STATE(2998), 1, + sym__call_signature, + STATE(3218), 1, + sym_type_annotation, + STATE(3443), 1, + sym__initializer, + STATE(3673), 1, + sym_type_parameters, + ACTIONS(5301), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [95463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3714), 1, + anon_sym_PIPE, + ACTIONS(3716), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(3623), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [95157] = 5, + anon_sym_PIPE_RBRACE, + [95485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_EQ, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(3718), 1, anon_sym_PIPE, - ACTIONS(3767), 11, + ACTIONS(3720), 13, + 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [95183] = 7, + anon_sym_PIPE_RBRACE, + [95507] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5306), 1, + ACTIONS(5309), 1, sym_number, - STATE(4152), 1, - sym_predefined_type, - STATE(4153), 1, + STATE(4220), 2, sym_string, - ACTIONS(5266), 9, + sym_predefined_type, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -185837,35 +186583,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [95213] = 7, + [95535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5308), 1, - sym_number, - STATE(3978), 1, - sym_string, - STATE(3979), 1, - sym_predefined_type, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [95243] = 3, + ACTIONS(3726), 1, + anon_sym_PIPE, + ACTIONS(3728), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [95557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, + ACTIONS(3722), 1, anon_sym_PIPE, - ACTIONS(3472), 13, + ACTIONS(3724), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185879,12 +186621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95265] = 3, + [95579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3726), 1, anon_sym_PIPE, - ACTIONS(3424), 13, + ACTIONS(3728), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185898,12 +186640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95287] = 3, + [95601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3730), 1, anon_sym_PIPE, - ACTIONS(3424), 13, + ACTIONS(3732), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185917,12 +186659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95309] = 3, + [95623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3734), 1, anon_sym_PIPE, - ACTIONS(3424), 13, + ACTIONS(3736), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185936,12 +186678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95331] = 3, + [95645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 1, + ACTIONS(3730), 1, anon_sym_PIPE, - ACTIONS(3536), 13, + ACTIONS(3732), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185955,12 +186697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95353] = 3, + [95667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 1, + ACTIONS(3734), 1, anon_sym_PIPE, - ACTIONS(3536), 13, + ACTIONS(3736), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185974,12 +186716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95375] = 3, + [95689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 1, + ACTIONS(3738), 1, anon_sym_PIPE, - ACTIONS(3536), 13, + ACTIONS(3740), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -185993,12 +186735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95397] = 3, + [95711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3742), 1, anon_sym_PIPE, - ACTIONS(3544), 13, + ACTIONS(3744), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186012,12 +186754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95419] = 3, + [95733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3738), 1, anon_sym_PIPE, - ACTIONS(3544), 13, + ACTIONS(3740), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186031,12 +186773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95441] = 3, + [95755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3742), 1, anon_sym_PIPE, - ACTIONS(3544), 13, + ACTIONS(3744), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186050,20 +186792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95463] = 7, + [95777] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5310), 1, + ACTIONS(5311), 1, sym_number, - STATE(3955), 1, - sym_predefined_type, - STATE(3986), 1, + STATE(4028), 1, sym_string, - ACTIONS(5266), 9, + STATE(4032), 1, + sym_predefined_type, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -186073,120 +186815,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [95493] = 6, + [95807] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, - anon_sym_PIPE, - ACTIONS(5244), 1, - anon_sym_LT, - ACTIONS(5246), 1, - anon_sym_DOT, - STATE(2561), 1, - sym_type_arguments, - ACTIONS(3002), 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, - [95521] = 13, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5313), 1, + sym_number, + STATE(4208), 1, + sym_string, + STATE(4214), 1, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95837] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5314), 1, + ACTIONS(5317), 1, anon_sym_BANG, - ACTIONS(5316), 1, + ACTIONS(5319), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3194), 1, + STATE(3184), 1, sym_type_annotation, - STATE(3564), 1, - sym__initializer, - STATE(3566), 1, + STATE(3466), 1, sym__call_signature, - STATE(3849), 1, + STATE(3486), 1, + sym__initializer, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5312), 3, + ACTIONS(5315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [95563] = 13, + [95879] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5320), 1, - anon_sym_BANG, - ACTIONS(5322), 1, - anon_sym_QMARK, - STATE(2657), 1, - sym_formal_parameters, - STATE(2903), 1, - sym__call_signature, - STATE(3189), 1, - sym_type_annotation, - STATE(3568), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5318), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [95605] = 6, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5321), 1, + sym_number, + STATE(3944), 1, + sym_predefined_type, + STATE(3946), 1, + sym_string, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, - anon_sym_EQ, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(3555), 10, - 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, - [95633] = 6, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5323), 1, + sym_number, + STATE(4149), 1, + sym_string, + STATE(4150), 1, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95939] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5325), 1, + sym_number, + STATE(3941), 1, + sym_string, + STATE(3943), 1, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95969] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5327), 1, + sym_number, + STATE(3950), 1, + sym_predefined_type, + STATE(3953), 1, + sym_string, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95999] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5329), 1, + sym_number, + STATE(3961), 2, + sym_string, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, + ACTIONS(3706), 1, anon_sym_EQ, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(3647), 10, + ACTIONS(3708), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -186196,42 +186998,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_QMARK, - [95661] = 13, + anon_sym_extends, + [96051] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5333), 1, + sym_number, + STATE(4204), 1, + sym_string, + STATE(4205), 1, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96081] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5314), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5317), 1, anon_sym_BANG, - ACTIONS(5326), 1, + ACTIONS(5335), 1, anon_sym_QMARK, - STATE(2657), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(2909), 1, + STATE(2950), 1, sym__call_signature, - STATE(3194), 1, + STATE(3184), 1, sym_type_annotation, - STATE(3574), 1, + STATE(3484), 1, sym__initializer, - STATE(3774), 1, + STATE(3673), 1, sym_type_parameters, - ACTIONS(5312), 3, + ACTIONS(5315), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96123] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5337), 1, + sym_number, + STATE(4146), 1, + sym_string, + STATE(4147), 1, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96153] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5339), 1, + sym_number, + STATE(4247), 1, + sym_string, + STATE(4248), 1, + sym_predefined_type, + ACTIONS(5291), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [96183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 1, + anon_sym_PIPE, + ACTIONS(3784), 13, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [95703] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [96205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3786), 1, anon_sym_PIPE, - ACTIONS(3683), 13, + ACTIONS(3788), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186245,12 +187137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95725] = 3, + [96227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(3786), 1, anon_sym_PIPE, - ACTIONS(3700), 13, + ACTIONS(3788), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186264,12 +187156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95747] = 3, + [96249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(3786), 1, anon_sym_PIPE, - ACTIONS(3700), 13, + ACTIONS(3788), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186283,12 +187175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95769] = 3, + [96271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(3794), 1, anon_sym_PIPE, - ACTIONS(3700), 13, + ACTIONS(3796), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186302,12 +187194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95791] = 3, + [96293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3794), 1, anon_sym_PIPE, - ACTIONS(3716), 13, + ACTIONS(3796), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186321,12 +187213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95813] = 3, + [96315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3794), 1, anon_sym_PIPE, - ACTIONS(3716), 13, + ACTIONS(3796), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186340,12 +187232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95835] = 3, + [96337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3442), 1, anon_sym_PIPE, - ACTIONS(3716), 13, + ACTIONS(3444), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186359,12 +187251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95857] = 3, + [96359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, + ACTIONS(3442), 1, anon_sym_PIPE, - ACTIONS(3596), 13, + ACTIONS(3444), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186378,12 +187270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95879] = 3, + [96381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, + ACTIONS(3442), 1, anon_sym_PIPE, - ACTIONS(3596), 13, + ACTIONS(3444), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186397,37 +187289,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95901] = 3, + [96403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, - anon_sym_PIPE, - ACTIONS(3596), 13, - sym__automatic_semicolon, + ACTIONS(3618), 1, anon_sym_EQ, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(3620), 10, 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, + [96431] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_EQ, + ACTIONS(5331), 1, anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95923] = 6, + ACTIONS(3616), 10, + 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, + [96459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3698), 1, anon_sym_EQ, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(3440), 10, + ACTIONS(3700), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -186438,19 +187355,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [95951] = 6, + [96487] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5347), 1, + anon_sym_BANG, + ACTIONS(5349), 1, + anon_sym_QMARK, + STATE(2713), 1, + sym_formal_parameters, + STATE(3039), 1, + sym__call_signature, + STATE(3186), 1, + sym_type_annotation, + STATE(3479), 1, + sym__initializer, + STATE(3673), 1, + sym_type_parameters, + ACTIONS(5345), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96529] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5328), 1, + ACTIONS(5351), 1, sym_number, - STATE(4235), 2, + STATE(4120), 1, sym_string, + STATE(4125), 1, sym_predefined_type, - ACTIONS(5266), 9, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -186460,20 +187407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [95979] = 7, + [96559] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5330), 1, + ACTIONS(5353), 1, sym_number, - STATE(4074), 1, + STATE(4019), 2, sym_string, - STATE(4077), 1, sym_predefined_type, - ACTIONS(5266), 9, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -186483,12 +187429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96009] = 3, + [96587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3790), 1, anon_sym_PIPE, - ACTIONS(3540), 13, + ACTIONS(3792), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186502,12 +187448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96031] = 3, + [96609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 1, + ACTIONS(3778), 1, anon_sym_PIPE, - ACTIONS(3783), 13, + ACTIONS(3780), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186521,41 +187467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96053] = 13, + [96631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_BANG, - ACTIONS(5336), 1, - anon_sym_QMARK, - STATE(2657), 1, - sym_formal_parameters, - STATE(2959), 1, - sym__call_signature, - STATE(3209), 1, - sym_type_annotation, - STATE(3545), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5332), 3, + ACTIONS(3778), 1, + anon_sym_PIPE, + ACTIONS(3780), 13, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [96095] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [96653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3778), 1, anon_sym_PIPE, - ACTIONS(3540), 13, + ACTIONS(3780), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186569,12 +187505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96117] = 3, + [96675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 1, + ACTIONS(3774), 1, anon_sym_PIPE, - ACTIONS(3783), 13, + ACTIONS(3776), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186588,12 +187524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96139] = 3, + [96697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3774), 1, anon_sym_PIPE, - ACTIONS(3787), 13, + ACTIONS(3776), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186607,58 +187543,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96161] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5338), 1, - sym_number, - STATE(4148), 1, - sym_predefined_type, - STATE(4150), 1, - sym_string, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96191] = 7, + [96719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5340), 1, - sym_number, - STATE(4115), 1, - sym_predefined_type, - STATE(4116), 1, - sym_string, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96221] = 3, + ACTIONS(3774), 1, + anon_sym_PIPE, + ACTIONS(3776), 13, + 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_extends, + anon_sym_PIPE_RBRACE, + [96741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3766), 1, anon_sym_PIPE, - ACTIONS(3787), 13, + ACTIONS(3768), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186672,12 +187581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96243] = 3, + [96763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 1, + ACTIONS(3766), 1, anon_sym_PIPE, - ACTIONS(3779), 13, + ACTIONS(3768), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186691,12 +187600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96265] = 3, + [96785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3766), 1, anon_sym_PIPE, - ACTIONS(3763), 13, + ACTIONS(3768), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -186710,20 +187619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96287] = 7, + [96807] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5342), 1, + ACTIONS(5355), 1, sym_number, - STATE(4227), 1, - sym_predefined_type, - STATE(4230), 1, + STATE(4198), 2, sym_string, - ACTIONS(5266), 9, + sym_predefined_type, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -186733,20 +187641,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96317] = 7, + [96835] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_EQ, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(3748), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_extends, + [96861] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5359), 1, + anon_sym_BANG, + ACTIONS(5361), 1, + anon_sym_QMARK, + STATE(2713), 1, + sym_formal_parameters, + STATE(2979), 1, + sym__call_signature, + STATE(3100), 1, + sym_type_annotation, + STATE(3525), 1, + sym__initializer, + STATE(3673), 1, + sym_type_parameters, + ACTIONS(5357), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96903] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5344), 1, + ACTIONS(5363), 1, sym_number, - STATE(4218), 1, + STATE(4202), 1, sym_predefined_type, - STATE(4220), 1, + STATE(4218), 1, sym_string, - ACTIONS(5266), 9, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -186756,20 +187714,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96347] = 7, + [96933] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(3186), 1, + anon_sym_LBRACE, + ACTIONS(5365), 1, + sym_identifier, + ACTIONS(5367), 1, + anon_sym_STAR, + ACTIONS(5369), 1, + anon_sym_type, + ACTIONS(5371), 1, + anon_sym_COMMA, + ACTIONS(5373), 1, + anon_sym_from, + STATE(3753), 1, + sym__import_identifier, + STATE(3926), 1, + sym_import_clause, + STATE(3930), 1, + sym_string, + STATE(3937), 1, + sym_import_require_clause, + STATE(4184), 2, + sym_namespace_import, + sym_named_imports, + [96977] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5375), 1, + anon_sym_QMARK, + STATE(2713), 1, + sym_formal_parameters, + STATE(2961), 1, + sym__call_signature, + STATE(3090), 1, + sym_type_annotation, + STATE(3589), 1, + sym__initializer, + STATE(3673), 1, + sym_type_parameters, + ACTIONS(5283), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97019] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5346), 1, + ACTIONS(5377), 1, sym_number, - STATE(4212), 1, - sym_predefined_type, - STATE(4213), 1, + STATE(4115), 2, sym_string, - ACTIONS(5266), 9, + sym_predefined_type, + ACTIONS(5291), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -186779,14 +187795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [96377] = 4, + [97047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(3743), 12, + ACTIONS(3636), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -186799,59 +187815,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [96401] = 3, + [97071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 1, - anon_sym_PIPE, - ACTIONS(3759), 13, - sym__automatic_semicolon, + ACTIONS(3432), 1, anon_sym_EQ, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(3434), 10, 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, + [97099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3770), 1, + anon_sym_EQ, + ACTIONS(5331), 1, anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96423] = 6, + ACTIONS(3772), 10, + 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, + [97127] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5348), 1, - sym_number, - STATE(4128), 2, - sym_string, - sym_predefined_type, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96451] = 3, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5381), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(2818), 1, + sym__call_signature, + STATE(3071), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5379), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3672), 1, anon_sym_PIPE, - ACTIONS(3763), 13, + ACTIONS(3674), 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, @@ -186859,37 +187902,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96473] = 3, + [97183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3759), 13, + ACTIONS(5265), 1, + anon_sym_LT, + STATE(2584), 1, + sym_type_arguments, + ACTIONS(3352), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96495] = 3, + [97208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 1, + ACTIONS(2525), 1, anon_sym_PIPE, - ACTIONS(3755), 13, + ACTIONS(2527), 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, @@ -186897,18 +187940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96517] = 3, + [97229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, + ACTIONS(3666), 1, anon_sym_PIPE, - ACTIONS(3751), 13, + ACTIONS(3668), 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, @@ -186916,186 +187958,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96539] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5350), 1, - sym_number, - STATE(4141), 1, - sym_predefined_type, - STATE(4146), 1, - sym_string, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96569] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5352), 1, - sym_number, - STATE(4101), 1, - sym_string, - STATE(4104), 1, - sym_predefined_type, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96599] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5354), 1, - sym_number, - STATE(4078), 1, - sym_string, - STATE(4095), 1, - sym_predefined_type, - ACTIONS(5266), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [96629] = 6, + [97250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_EQ, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(3731), 10, + ACTIONS(5383), 1, + anon_sym_DOT, + ACTIONS(5385), 1, + anon_sym_LT, + ACTIONS(5387), 1, + anon_sym_is, + STATE(2669), 1, + sym_type_arguments, + ACTIONS(3022), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [96657] = 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [97277] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5358), 1, - anon_sym_BANG, - ACTIONS(5360), 1, + ACTIONS(5391), 1, anon_sym_QMARK, - STATE(2657), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2972), 1, + STATE(2825), 1, sym__call_signature, - STATE(3165), 1, + STATE(3196), 1, sym_type_annotation, - STATE(3513), 1, - sym__initializer, - STATE(3774), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5356), 3, + ACTIONS(5389), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [96699] = 13, + anon_sym_PIPE_RBRACE, + [97312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1397), 1, + anon_sym_DOT, + ACTIONS(3688), 2, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, + ACTIONS(3690), 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, + [97335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3664), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5284), 1, + 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, + [97356] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5320), 1, - anon_sym_BANG, - ACTIONS(5362), 1, + ACTIONS(5393), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3189), 1, - sym_type_annotation, - STATE(3579), 1, + STATE(3195), 1, sym__call_signature, - STATE(3580), 1, - sym__initializer, - STATE(3849), 1, + STATE(3196), 1, + sym_type_annotation, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5318), 3, + ACTIONS(5389), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [96741] = 6, + anon_sym_PIPE_RBRACE, + [97391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, - anon_sym_EQ, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(2533), 1, anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(3572), 10, + ACTIONS(2535), 12, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [96769] = 4, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [97412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 1, - anon_sym_DOT, - ACTIONS(3722), 2, - anon_sym_LT, + ACTIONS(3622), 1, anon_sym_PIPE, - ACTIONS(3724), 10, + ACTIONS(5395), 1, + anon_sym_DOT, + ACTIONS(5397), 1, + anon_sym_QMARK_DOT, + ACTIONS(3624), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187106,163 +188104,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96792] = 10, + [97437] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2914), 1, + sym_type_predicate, + STATE(3995), 1, + sym_predefined_type, + ACTIONS(5399), 2, + sym_identifier, + sym_this, + ACTIONS(207), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [97462] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5403), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(3264), 1, + sym__call_signature, + STATE(3265), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5401), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97497] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5366), 1, + ACTIONS(5407), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2808), 1, + STATE(2865), 1, sym__call_signature, - STATE(3236), 1, + STATE(3242), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5364), 5, + ACTIONS(5405), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96827] = 11, + [97532] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3929), 1, + sym_type_predicate, + STATE(3954), 1, + sym_predefined_type, + ACTIONS(5409), 2, + sym_identifier, + sym_this, + ACTIONS(207), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [97557] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5220), 1, - anon_sym_DOT, - ACTIONS(5368), 1, - anon_sym_EQ, - ACTIONS(5373), 1, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5375), 1, - anon_sym_extends, - STATE(2365), 1, - sym_type_arguments, - STATE(3398), 1, - sym_constraint, - STATE(3917), 1, - sym_default_type, - ACTIONS(5370), 2, + ACTIONS(5413), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(3300), 1, + sym_type_annotation, + STATE(3302), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5411), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3002), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [96864] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97592] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5380), 1, - anon_sym_DOT, - ACTIONS(5382), 1, - anon_sym_QMARK_DOT, - STATE(2574), 1, - sym_arguments, - ACTIONS(3300), 9, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5415), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(3241), 1, + sym__call_signature, + STATE(3242), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5405), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96891] = 10, + anon_sym_PIPE_RBRACE, + [97627] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5386), 1, + ACTIONS(5417), 1, anon_sym_COLON, - ACTIONS(5388), 1, + ACTIONS(5419), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2855), 1, + STATE(2837), 1, sym__call_signature, - STATE(3168), 1, + STATE(3265), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5384), 5, + ACTIONS(5401), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96926] = 3, + [97662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, - anon_sym_PIPE, - ACTIONS(2527), 12, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5423), 1, + anon_sym_DOT, + ACTIONS(5425), 1, + anon_sym_QMARK_DOT, + STATE(2595), 1, + sym_arguments, + ACTIONS(2984), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96947] = 3, + [97689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, - anon_sym_PIPE, - ACTIONS(3679), 12, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOT, + ACTIONS(5429), 1, + anon_sym_QMARK_DOT, + STATE(2612), 1, + sym_arguments, + ACTIONS(3322), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96968] = 3, + [97716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 1, - anon_sym_PIPE, - ACTIONS(2519), 12, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, + anon_sym_QMARK_DOT, + STATE(2613), 1, + sym_arguments, + ACTIONS(3428), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96989] = 3, + [97743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(3675), 12, + ACTIONS(2531), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187275,128 +188350,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97010] = 10, + [97764] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(5229), 1, + anon_sym_DOT, + ACTIONS(5231), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5435), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_COLON, - ACTIONS(5392), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3063), 1, - sym__call_signature, - STATE(3069), 1, - sym_type_annotation, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5390), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [97045] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5378), 1, - anon_sym_LPAREN, - ACTIONS(5394), 1, - anon_sym_DOT, - ACTIONS(5396), 1, - anon_sym_QMARK_DOT, - STATE(2572), 1, - sym_arguments, - ACTIONS(2978), 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(5442), 1, anon_sym_extends, - [97072] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5398), 1, - anon_sym_LT, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_is, - STATE(2683), 1, + STATE(2404), 1, sym_type_arguments, - ACTIONS(3002), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(3431), 1, + sym_constraint, + STATE(3815), 1, + sym_default_type, + ACTIONS(5437), 2, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_GT, + ACTIONS(3022), 3, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [97099] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2884), 1, - sym_type_predicate, - STATE(3945), 1, - sym_predefined_type, - ACTIONS(5404), 2, - sym_identifier, - sym_this, - ACTIONS(207), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97124] = 10, + [97801] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5406), 1, + ACTIONS(5445), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3166), 1, - sym__call_signature, - STATE(3168), 1, + STATE(3071), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3074), 1, + sym__call_signature, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5384), 5, + ACTIONS(5379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97159] = 5, + [97836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(3688), 2, anon_sym_PIPE, - ACTIONS(5244), 1, anon_sym_LT, - STATE(2566), 1, - sym_type_arguments, - ACTIONS(3382), 10, + ACTIONS(3690), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -187407,39 +188420,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97184] = 10, + [97859] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5410), 1, + ACTIONS(5447), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3110), 1, + STATE(2851), 1, sym__call_signature, - STATE(3178), 1, + STATE(3300), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5408), 5, + ACTIONS(5411), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97219] = 5, + [97894] = 5, ACTIONS(3), 1, sym_comment, - STATE(3719), 1, + STATE(3304), 1, sym_type_predicate, - STATE(4014), 1, + STATE(3998), 1, sym_predefined_type, - ACTIONS(5412), 2, + ACTIONS(5449), 2, sym_identifier, sym_this, ACTIONS(207), 9, @@ -187452,232 +188465,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [97244] = 3, + [97919] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, - anon_sym_PIPE, - ACTIONS(2523), 12, - sym__automatic_semicolon, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [97949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3728), 12, + 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_extends, - anon_sym_PIPE_RBRACE, - [97265] = 10, + [97967] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5416), 1, - anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2861), 1, + STATE(2849), 1, sym__call_signature, - STATE(3247), 1, + STATE(3263), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5414), 5, + ACTIONS(5451), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97300] = 10, + [97999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(5383), 1, + anon_sym_DOT, + ACTIONS(5385), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5418), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(2797), 1, - sym__call_signature, - STATE(3178), 1, - sym_type_annotation, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5408), 5, + STATE(2669), 1, + sym_type_arguments, + ACTIONS(3022), 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, + [98023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3328), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_is, + ACTIONS(3330), 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, - [97335] = 10, + [98045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5420), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3236), 1, - sym_type_annotation, - STATE(3239), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5364), 5, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(5453), 1, + anon_sym_is, + ACTIONS(3352), 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, - [97370] = 10, + [98067] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5422), 1, - anon_sym_QMARK, - STATE(2628), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, sym_formal_parameters, - STATE(3247), 1, - sym_type_annotation, - STATE(3250), 1, + STATE(2923), 1, sym__call_signature, - STATE(3849), 1, + STATE(3315), 1, + sym_type_annotation, + STATE(3602), 1, + sym__initializer, + STATE(3673), 1, sym_type_parameters, - ACTIONS(5414), 5, + ACTIONS(5455), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [97405] = 5, + [98103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_PIPE, - ACTIONS(5424), 1, - anon_sym_DOT, - ACTIONS(5426), 1, - anon_sym_QMARK_DOT, - ACTIONS(3600), 10, + ACTIONS(3716), 12, 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_extends, - anon_sym_PIPE_RBRACE, - [97430] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3298), 1, - sym_type_predicate, - STATE(4047), 1, - sym_predefined_type, - ACTIONS(5428), 2, - sym_identifier, - sym_this, - ACTIONS(207), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [97455] = 10, + [98121] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5430), 1, - anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2832), 1, - sym__call_signature, - STATE(3069), 1, + STATE(3240), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3287), 1, + sym__call_signature, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5390), 5, + ACTIONS(5457), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97490] = 3, + [98153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - anon_sym_PIPE, - ACTIONS(3689), 12, + ACTIONS(3720), 12, 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_extends, - anon_sym_PIPE_RBRACE, - [97511] = 6, + [98171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, - anon_sym_LPAREN, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_QMARK_DOT, - STATE(2571), 1, - sym_arguments, - ACTIONS(3306), 9, + ACTIONS(3724), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97538] = 2, + [98189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 12, + ACTIONS(3724), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187690,10 +188693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97556] = 2, + [98207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 12, + ACTIONS(3728), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187706,58 +188709,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97574] = 9, + [98225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3079), 1, + STATE(3175), 1, sym_type_annotation, - STATE(3080), 1, + STATE(3459), 1, sym__call_signature, - STATE(3849), 1, + STATE(3460), 1, + sym__initializer, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5436), 5, + ACTIONS(5459), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [97606] = 11, + [98261] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2657), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2954), 1, - sym__call_signature, - STATE(3217), 1, + STATE(3063), 1, sym_type_annotation, - STATE(3549), 1, - sym__initializer, - STATE(3774), 1, + STATE(3067), 1, + sym__call_signature, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5438), 3, + ACTIONS(5461), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [97642] = 2, + anon_sym_PIPE_RBRACE, + [98293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3779), 12, + ACTIONS(3732), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187770,10 +188773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97660] = 2, + [98311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 12, + ACTIONS(3736), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187786,10 +188789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97678] = 2, + [98329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3779), 12, + ACTIONS(3732), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187802,95 +188805,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97696] = 8, + [98347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(3736), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98419] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, anon_sym_COLON, - anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(2822), 1, + sym__call_signature, + STATE(3269), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5463), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97726] = 3, + [98451] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(1475), 11, - anon_sym_as, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(2645), 1, + sym_formal_parameters, + STATE(2872), 1, + sym__call_signature, + STATE(3240), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5457), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [98483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [97746] = 9, + [98501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2829), 1, - sym__call_signature, - STATE(3108), 1, + STATE(3263), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3267), 1, + sym__call_signature, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5440), 5, + ACTIONS(5451), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97778] = 9, + [98533] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, sym_formal_parameters, - STATE(2799), 1, + STATE(3027), 1, sym__call_signature, - STATE(3182), 1, + STATE(3076), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3671), 1, + sym__initializer, + STATE(3673), 1, sym_type_parameters, - ACTIONS(5442), 5, + ACTIONS(5465), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [98569] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3223), 1, anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [97810] = 2, + [98599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 12, + ACTIONS(3784), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187903,10 +189017,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97828] = 2, + [98617] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [98647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 12, + ACTIONS(3788), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187919,10 +189055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97846] = 2, + [98665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 12, + ACTIONS(3788), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187935,43 +189071,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97864] = 3, + [98683] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_PIPE, - ACTIONS(1377), 11, - sym__automatic_semicolon, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5281), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(2645), 1, + sym_formal_parameters, + STATE(3088), 1, + sym_type_annotation, + STATE(3604), 1, + sym__call_signature, + STATE(3605), 1, + sym__initializer, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5467), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [98719] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(5229), 1, + anon_sym_DOT, + ACTIONS(5231), 1, + anon_sym_LT, + ACTIONS(5469), 1, + anon_sym_QMARK, + STATE(2404), 1, + sym_type_arguments, + STATE(3870), 1, + sym_type_annotation, + ACTIONS(3022), 6, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_is, + [98749] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(2645), 1, + sym_formal_parameters, + STATE(3190), 1, + sym__call_signature, + STATE(3193), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5472), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97884] = 2, + [98781] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 12, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3036), 1, + sym__call_signature, + STATE(3175), 1, + sym_type_annotation, + STATE(3483), 1, + sym__initializer, + STATE(3673), 1, + sym_type_parameters, + ACTIONS(5459), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, + [98817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1529), 1, + anon_sym_LT, + ACTIONS(1527), 11, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [97902] = 2, + [98837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 12, + ACTIONS(3788), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -187984,10 +189199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97920] = 2, + [98855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 12, + ACTIONS(3796), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188000,49 +189215,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97938] = 9, + [98873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3182), 1, - sym_type_annotation, - STATE(3183), 1, + STATE(2828), 1, sym__call_signature, - STATE(3849), 1, + STATE(3193), 1, + sym_type_annotation, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5442), 5, + ACTIONS(5472), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [97970] = 2, + [98905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 12, + ACTIONS(1405), 1, + anon_sym_PIPE, + ACTIONS(1403), 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_extends, - [97988] = 2, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [98925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3751), 12, + ACTIONS(3796), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188055,100 +189271,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98006] = 11, + [98943] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2628), 1, - sym_formal_parameters, - STATE(3217), 1, - sym_type_annotation, - STATE(3536), 1, - sym__initializer, - STATE(3537), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5438), 3, - sym__automatic_semicolon, + ACTIONS(3220), 1, anon_sym_COMMA, - anon_sym_SEMI, - [98042] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5398), 1, - anon_sym_LT, - ACTIONS(5400), 1, - anon_sym_DOT, - STATE(2683), 1, - sym_type_arguments, - ACTIONS(3002), 9, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 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, - [98066] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2628), 1, - sym_formal_parameters, - STATE(2793), 1, - sym__call_signature, - STATE(3079), 1, - sym_type_annotation, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5436), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [98098] = 9, + [98973] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3107), 1, - sym__call_signature, - STATE(3108), 1, + STATE(3269), 1, sym_type_annotation, - STATE(3849), 1, + STATE(3272), 1, + sym__call_signature, + STATE(3927), 1, sym_type_parameters, - ACTIONS(5440), 5, + ACTIONS(5463), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98130] = 2, + [99005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 12, + ACTIONS(3796), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188161,26 +189332,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98148] = 2, + [99023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(1419), 1, + anon_sym_LT, + ACTIONS(1417), 11, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [98166] = 2, + [99043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 12, + ACTIONS(3444), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188193,10 +189365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98184] = 2, + [99061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 12, + ACTIONS(3444), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188209,10 +189381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98202] = 2, + [99079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 12, + ACTIONS(3444), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188225,32 +189397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98220] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(5218), 1, - anon_sym_LT, - ACTIONS(5220), 1, - anon_sym_DOT, - ACTIONS(5444), 1, - anon_sym_QMARK, - STATE(2365), 1, - sym_type_arguments, - STATE(3782), 1, - sym_type_annotation, - ACTIONS(3002), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [98250] = 2, + [99097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 12, + ACTIONS(3792), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188263,10 +189413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98268] = 2, + [99115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 12, + ACTIONS(3780), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188279,10 +189429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98286] = 2, + [99133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 12, + ACTIONS(3780), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188295,10 +189445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98304] = 2, + [99151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 12, + ACTIONS(3780), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188311,10 +189461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98322] = 2, + [99169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 12, + ACTIONS(3776), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188327,10 +189477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98340] = 2, + [99187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 12, + ACTIONS(3776), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188343,58 +189493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98358] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2628), 1, - sym_formal_parameters, - STATE(2811), 1, - sym__call_signature, - STATE(3240), 1, - sym_type_annotation, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5447), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98390] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2657), 1, - sym_formal_parameters, - STATE(3020), 1, - sym__call_signature, - STATE(3059), 1, - sym_type_annotation, - STATE(3470), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98426] = 2, + [99205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 12, + ACTIONS(3776), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188407,75 +189509,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98444] = 11, + [99223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, sym_formal_parameters, - STATE(3190), 1, - sym_type_annotation, - STATE(3576), 1, + STATE(2948), 1, sym__call_signature, - STATE(3577), 1, + STATE(3088), 1, + sym_type_annotation, + STATE(3595), 1, sym__initializer, - STATE(3849), 1, + STATE(3673), 1, sym_type_parameters, - ACTIONS(5451), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98480] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, + ACTIONS(5467), 3, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [98510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_PIPE, - ACTIONS(5453), 1, - anon_sym_is, - ACTIONS(3382), 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, - [98532] = 2, + [99259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 12, + ACTIONS(3768), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188488,50 +189550,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_PIPE, - ACTIONS(5248), 1, - anon_sym_is, - ACTIONS(3388), 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, - [98572] = 8, + [99277] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(3200), 1, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(2645), 1, + sym_formal_parameters, + STATE(2831), 1, + sym__call_signature, + STATE(3063), 1, + sym_type_annotation, + STATE(3927), 1, + sym_type_parameters, + ACTIONS(5461), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3220), 1, anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [98602] = 2, + [99309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 12, + ACTIONS(3768), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188544,58 +189589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98620] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2628), 1, - sym_formal_parameters, - STATE(3203), 1, - sym__call_signature, - STATE(3229), 1, - sym_type_annotation, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5455), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98652] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2657), 1, - sym_formal_parameters, - STATE(2970), 1, - sym__call_signature, - STATE(3171), 1, - sym_type_annotation, - STATE(3516), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5457), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98688] = 2, + [99327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 12, + ACTIONS(3768), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -188608,175 +189605,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98706] = 12, + [99345] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(3178), 1, + ACTIONS(3186), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, + ACTIONS(5365), 1, sym_identifier, - ACTIONS(5290), 1, + ACTIONS(5367), 1, anon_sym_STAR, - ACTIONS(5292), 1, + ACTIONS(5369), 1, anon_sym_type, - STATE(3662), 1, + STATE(3753), 1, + sym__import_identifier, + STATE(3926), 1, sym_import_clause, - STATE(3666), 1, + STATE(3930), 1, sym_string, - STATE(3698), 1, + STATE(3937), 1, sym_import_require_clause, - STATE(3799), 1, - sym__import_identifier, - STATE(4173), 2, + STATE(4184), 2, sym_namespace_import, sym_named_imports, - [98744] = 9, + [99383] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2628), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, sym_formal_parameters, - STATE(3240), 1, - sym_type_annotation, - STATE(3243), 1, + STATE(2903), 1, sym__call_signature, - STATE(3849), 1, + STATE(3270), 1, + sym_type_annotation, + STATE(3578), 1, + sym__initializer, + STATE(3673), 1, sym_type_parameters, - ACTIONS(5447), 5, + ACTIONS(5474), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98776] = 2, + [99419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3220), 1, anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 6, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [98794] = 2, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [99449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 12, + ACTIONS(2779), 1, + anon_sym_PIPE, + ACTIONS(2781), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [98812] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2657), 1, - sym_formal_parameters, - STATE(2896), 1, - sym__call_signature, - STATE(3149), 1, - sym_type_annotation, - STATE(3555), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98848] = 2, + anon_sym_PIPE_RBRACE, + [99468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 12, + ACTIONS(1971), 1, + anon_sym_PIPE, + ACTIONS(1969), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [98866] = 2, + anon_sym_PIPE_RBRACE, + [99487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 12, + ACTIONS(2887), 1, + anon_sym_PIPE, + ACTIONS(2889), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [98884] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [98914] = 2, + [99506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 12, + ACTIONS(2531), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -188784,115 +189741,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98932] = 2, + [99523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 12, + ACTIONS(3762), 1, + anon_sym_PIPE, + ACTIONS(3764), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [98950] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 6, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [98980] = 3, + [99542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - anon_sym_LT, - ACTIONS(1415), 11, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, + ACTIONS(1979), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [99000] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2628), 1, - sym_formal_parameters, - STATE(2860), 1, - sym__call_signature, - STATE(3229), 1, - sym_type_annotation, - STATE(3849), 1, - sym_type_parameters, - ACTIONS(5455), 5, + ACTIONS(1977), 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, - [99032] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(2657), 1, - sym_formal_parameters, - STATE(2906), 1, - sym__call_signature, - STATE(3190), 1, - sym_type_annotation, - STATE(3571), 1, - sym__initializer, - STATE(3774), 1, - sym_type_parameters, - ACTIONS(5451), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99068] = 3, + [99561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(1983), 1, anon_sym_PIPE, - ACTIONS(3643), 10, + ACTIONS(1981), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188903,12 +189789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99087] = 3, + [99580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 1, + ACTIONS(1975), 1, anon_sym_PIPE, - ACTIONS(3637), 10, + ACTIONS(1973), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188919,52 +189805,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99106] = 3, + [99599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE, - ACTIONS(2725), 10, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3226), 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_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [99125] = 11, + [99618] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(5461), 1, + ACTIONS(5476), 1, sym_identifier, - ACTIONS(5463), 1, + ACTIONS(5478), 1, anon_sym_type, - ACTIONS(5465), 1, + ACTIONS(5480), 1, anon_sym_COMMA, - ACTIONS(5467), 1, + ACTIONS(5482), 1, anon_sym_RBRACE, - ACTIONS(5469), 1, + ACTIONS(5484), 1, anon_sym_typeof, - STATE(3616), 1, + STATE(3497), 1, sym_import_specifier, - STATE(3716), 1, + STATE(3939), 1, sym__import_identifier, - STATE(4016), 2, + STATE(3945), 2, sym__module_export_name, sym_string, - [99160] = 3, + [99653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3702), 1, anon_sym_PIPE, - ACTIONS(3440), 10, + ACTIONS(3704), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188975,12 +189861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99179] = 3, + [99672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3658), 1, anon_sym_PIPE, - ACTIONS(3428), 10, + ACTIONS(3660), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -188991,62 +189877,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99198] = 4, + [99691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3650), 1, anon_sym_PIPE, - ACTIONS(5471), 1, - anon_sym_LBRACK, - ACTIONS(3454), 9, + ACTIONS(3652), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [99219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, - anon_sym_PIPE, - ACTIONS(5471), 1, anon_sym_LBRACK, - ACTIONS(3661), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99240] = 3, + [99710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3654), 1, anon_sym_PIPE, - ACTIONS(3382), 10, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(3656), 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, - [99259] = 3, + [99731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3610), 1, anon_sym_PIPE, - ACTIONS(3450), 10, + ACTIONS(3612), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189057,92 +189926,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3679), 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, - [99295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 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, - [99312] = 2, + [99750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(3604), 1, anon_sym_PIPE, - anon_sym_extends, - [99329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [99346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 1, - anon_sym_PIPE, - ACTIONS(3712), 10, + ACTIONS(3606), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(3648), 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, - [99365] = 5, + [99773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, + ACTIONS(5488), 1, anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(5477), 1, + ACTIONS(5492), 1, anon_sym_extends, - ACTIONS(3440), 8, + ACTIONS(3434), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189151,12 +189962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [99388] = 3, + [99796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3657), 10, + ACTIONS(3352), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189167,34 +189978,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99407] = 5, + [99815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(1987), 1, anon_sym_PIPE, - ACTIONS(5471), 1, - anon_sym_LBRACK, - ACTIONS(3454), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(3651), 7, + ACTIONS(1985), 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, - [99430] = 5, + [99834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(3638), 1, anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(3647), 8, + ACTIONS(3640), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189202,13 +190007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [99453] = 3, + [99853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3588), 1, anon_sym_PIPE, - ACTIONS(3436), 10, + ACTIONS(3586), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189219,28 +190026,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99472] = 3, + [99872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3604), 1, anon_sym_PIPE, - ACTIONS(3627), 10, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(3606), 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, - [99491] = 3, + [99893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 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, + [99910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3798), 1, anon_sym_PIPE, - ACTIONS(3474), 10, + ACTIONS(3800), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189251,14 +190074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99510] = 4, + [99929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3802), 1, anon_sym_PIPE, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(3623), 9, + ACTIONS(3804), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189266,16 +190087,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, - [99531] = 4, + [99948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 1, + ACTIONS(5494), 1, anon_sym_DOT, - ACTIONS(3722), 1, - anon_sym_LT, - ACTIONS(3724), 9, + ACTIONS(5496), 1, + anon_sym_QMARK_DOT, + ACTIONS(3624), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -189285,12 +190107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99552] = 3, + [99969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3328), 1, anon_sym_PIPE, - ACTIONS(3612), 10, + ACTIONS(3330), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189301,31 +190123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2527), 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, - [99588] = 5, + [99988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(3600), 1, anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(3572), 8, + ACTIONS(3602), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189333,13 +190136,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, - [99611] = 3, + [100007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(2781), 10, + ACTIONS(3748), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189347,15 +190154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99630] = 3, + [100028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3628), 1, anon_sym_PIPE, - ACTIONS(3720), 10, + ACTIONS(3584), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189366,16 +190172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99649] = 5, + [100047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(3642), 1, anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(3731), 8, + ACTIONS(3644), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189383,13 +190185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [99672] = 3, + [100066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3750), 1, anon_sym_PIPE, - ACTIONS(3731), 10, + ACTIONS(3752), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189400,12 +190204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99691] = 3, + [100085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3710), 1, anon_sym_PIPE, - ACTIONS(3490), 10, + ACTIONS(3712), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189416,12 +190220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99710] = 3, + [100104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(3806), 1, anon_sym_PIPE, - ACTIONS(1967), 10, + ACTIONS(3808), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189432,33 +190236,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99729] = 4, + [100123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, - anon_sym_DOT, - ACTIONS(5481), 1, - anon_sym_QMARK_DOT, - ACTIONS(3600), 9, + ACTIONS(2535), 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, - [99750] = 5, + [100140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(3754), 1, anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(3555), 8, + ACTIONS(3756), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189466,29 +190264,31 @@ 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, - [99773] = 3, + [100159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(3206), 10, + ACTIONS(3676), 1, + anon_sym_PIPE, + ACTIONS(3678), 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_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [99792] = 3, + [100178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3680), 1, anon_sym_PIPE, - ACTIONS(3735), 10, + ACTIONS(3682), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189499,12 +190299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99811] = 3, + [100197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, + ACTIONS(3596), 1, anon_sym_PIPE, - ACTIONS(3696), 10, + ACTIONS(3598), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189515,30 +190315,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99830] = 3, + [100216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, + ACTIONS(3668), 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, - ACTIONS(1979), 10, + anon_sym_extends, + [100233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3674), 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, + [100250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 1, + anon_sym_LT, + ACTIONS(4691), 10, + 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_QMARK, anon_sym_PIPE_RBRACE, - [99849] = 4, + [100269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3634), 1, anon_sym_PIPE, - ACTIONS(5473), 1, + ACTIONS(5488), 1, anon_sym_AMP, - ACTIONS(3743), 9, + ACTIONS(3636), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189548,12 +190378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99870] = 3, + [100290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3630), 1, anon_sym_PIPE, - ACTIONS(3592), 10, + ACTIONS(3632), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189564,12 +190394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99889] = 3, + [100309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 1, + ACTIONS(3684), 1, anon_sym_PIPE, - ACTIONS(3606), 10, + ACTIONS(3686), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189580,12 +190410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99908] = 3, + [100328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 1, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(2883), 10, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(3616), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189593,15 +190427,13 @@ 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, - [99927] = 3, + [100351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(2729), 1, anon_sym_PIPE, - ACTIONS(3464), 10, + ACTIONS(2731), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189612,12 +190444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99946] = 3, + [100370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3706), 1, anon_sym_PIPE, - ACTIONS(3432), 10, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(3708), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189625,17 +190459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99965] = 4, + [100391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, + ACTIONS(5385), 1, anon_sym_LT, - STATE(2669), 1, + STATE(2665), 1, sym_type_arguments, - ACTIONS(3382), 9, + ACTIONS(3352), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -189645,12 +190478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99986] = 3, + [100412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(3588), 10, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(3700), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189658,15 +190495,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, - [100005] = 3, + [100435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 1, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(1971), 10, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(3620), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189674,15 +190513,13 @@ 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, - [100024] = 3, + [100458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(3739), 10, + ACTIONS(3772), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189693,30 +190530,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100043] = 3, + [100477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 1, - anon_sym_PIPE, - ACTIONS(1975), 10, + ACTIONS(2527), 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, - [100062] = 4, + [100494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, + ACTIONS(5488), 1, anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(3767), 9, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(3772), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189724,30 +190562,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [100083] = 3, + [100517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 1, - anon_sym_PIPE, - ACTIONS(3747), 10, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(3688), 1, + anon_sym_LT, + ACTIONS(3690), 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, - [100102] = 3, + [100538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3460), 10, + ACTIONS(3760), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189758,43 +190596,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100121] = 2, + [100557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 11, + ACTIONS(1397), 1, + anon_sym_DOT, + ACTIONS(3688), 1, + anon_sym_LT, + ACTIONS(3690), 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, - [100138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - anon_sym_LT, - ACTIONS(4630), 10, - 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_QMARK, - anon_sym_PIPE_RBRACE, - [100157] = 3, + [100578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3698), 1, anon_sym_PIPE, - ACTIONS(3388), 10, + ACTIONS(3700), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -189805,179 +190629,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100176] = 3, + [100597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 1, - anon_sym_PIPE, - ACTIONS(1963), 10, + ACTIONS(5498), 1, + anon_sym_is, + ACTIONS(3352), 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, - [100195] = 11, + [100615] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5483), 1, + ACTIONS(5500), 1, sym_identifier, - ACTIONS(5485), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - STATE(1473), 1, + STATE(1418), 1, sym_class_body, - STATE(2864), 1, + STATE(2862), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3780), 1, + STATE(3794), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100229] = 11, + [100649] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5491), 1, + ACTIONS(5508), 1, sym_identifier, - ACTIONS(5493), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(1950), 1, + STATE(1809), 1, sym_class_body, - STATE(2810), 1, + STATE(2776), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3881), 1, + STATE(3789), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100263] = 8, + [100683] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5497), 1, - anon_sym_BANG, - STATE(3067), 1, - sym_type_annotation, - STATE(3587), 1, - sym__initializer, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100291] = 9, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_extends, + ACTIONS(5506), 1, + anon_sym_implements, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5512), 1, + sym_identifier, + STATE(1962), 1, + sym_class_body, + STATE(2798), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3734), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [100717] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_extends, + ACTIONS(5506), 1, + anon_sym_implements, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5514), 1, + sym_identifier, + STATE(1809), 1, + sym_class_body, + STATE(2776), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3789), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [100751] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(5501), 1, + ACTIONS(5476), 1, sym_identifier, - ACTIONS(5505), 1, - anon_sym_COMMA, - ACTIONS(5507), 1, - anon_sym_RBRACE, - STATE(3604), 1, - sym_export_specifier, - ACTIONS(5503), 2, + ACTIONS(5478), 1, anon_sym_type, + ACTIONS(5484), 1, anon_sym_typeof, - STATE(3605), 2, + ACTIONS(5516), 1, + anon_sym_RBRACE, + STATE(3849), 1, + sym_import_specifier, + STATE(3939), 1, + sym__import_identifier, + STATE(3945), 2, sym__module_export_name, sym_string, - [100321] = 11, + [100783] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5493), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5509), 1, + ACTIONS(5518), 1, sym_identifier, - STATE(1870), 1, + STATE(1962), 1, sym_class_body, - STATE(2859), 1, + STATE(2798), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3772), 1, + STATE(3734), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100355] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5497), 1, - anon_sym_BANG, - ACTIONS(5511), 1, - anon_sym_EQ, - STATE(3067), 1, - sym_type_annotation, - STATE(3292), 1, - sym__initializer, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100383] = 11, + [100817] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5485), 1, - anon_sym_LBRACE, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5513), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5520), 1, sym_identifier, - STATE(2045), 1, + STATE(1962), 1, sym_class_body, - STATE(2804), 1, + STATE(2798), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3814), 1, + STATE(3734), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100417] = 2, + [100851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1377), 10, + ACTIONS(1403), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -189988,423 +190818,469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_is, - [100433] = 5, + [100867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(3254), 2, + ACTIONS(5387), 1, + anon_sym_is, + ACTIONS(3330), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [100885] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5522), 1, + anon_sym_EQ, + ACTIONS(5526), 1, + anon_sym_BANG, + STATE(3044), 1, + sym__initializer, + STATE(3179), 1, + sym_type_annotation, + ACTIONS(5528), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5524), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + [100913] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [100455] = 11, + ACTIONS(5526), 1, + anon_sym_BANG, + STATE(3179), 1, + sym_type_annotation, + STATE(3487), 1, + sym__initializer, + ACTIONS(5528), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [100941] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5493), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5515), 1, + ACTIONS(5530), 1, sym_identifier, - STATE(1950), 1, + STATE(1809), 1, sym_class_body, - STATE(2810), 1, + STATE(2776), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3881), 1, + STATE(3789), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100489] = 4, + [100975] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5229), 1, + anon_sym_DOT, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5534), 1, + anon_sym_is, + STATE(2404), 1, + sym_type_arguments, + ACTIONS(3022), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [100999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(5538), 1, anon_sym_COLON, - STATE(2997), 3, + STATE(2964), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(5517), 6, + ACTIONS(5536), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100509] = 11, + [101019] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5502), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5521), 1, + ACTIONS(5540), 1, sym_identifier, - STATE(1870), 1, + STATE(2045), 1, sym_class_body, - STATE(2859), 1, + STATE(2882), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3772), 1, + STATE(3713), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100543] = 10, + [101053] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1921), 1, anon_sym_DQUOTE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, anon_sym_SQUOTE, - ACTIONS(5461), 1, + ACTIONS(5476), 1, sym_identifier, - ACTIONS(5463), 1, + ACTIONS(5542), 1, anon_sym_type, - ACTIONS(5469), 1, - anon_sym_typeof, - ACTIONS(5523), 1, - anon_sym_RBRACE, - STATE(3665), 1, - sym_import_specifier, - STATE(3716), 1, + ACTIONS(5544), 1, + anon_sym_as, + STATE(3696), 1, sym__import_identifier, - STATE(4016), 2, + ACTIONS(5371), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4271), 2, sym__module_export_name, sym_string, - [100575] = 11, + [101083] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5485), 1, - anon_sym_LBRACE, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5525), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5546), 1, sym_identifier, - STATE(1409), 1, + STATE(1962), 1, sym_class_body, - STATE(2824), 1, + STATE(2798), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3738), 1, + STATE(3734), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100609] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5461), 1, - sym_identifier, - ACTIONS(5463), 1, - anon_sym_type, - ACTIONS(5469), 1, - anon_sym_typeof, - ACTIONS(5527), 1, - anon_sym_RBRACE, - STATE(3665), 1, - sym_import_specifier, - STATE(3716), 1, - sym__import_identifier, - STATE(4016), 2, - sym__module_export_name, - sym_string, - [100641] = 5, + [101117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5475), 1, - anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(5529), 7, - sym__automatic_semicolon, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3260), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3226), 6, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [100663] = 3, + [101139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 1, - anon_sym_is, - ACTIONS(3382), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3026), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_QMARK_DOT, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(2360), 1, + sym_arguments, + ACTIONS(2984), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100681] = 11, + [101163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + ACTIONS(5241), 1, + anon_sym_QMARK_DOT, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(2362), 1, + sym_arguments, + ACTIONS(3322), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5489), 1, - anon_sym_implements, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5533), 1, + [101187] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, sym_identifier, - STATE(1950), 1, - sym_class_body, - STATE(2810), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3881), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [100715] = 11, + ACTIONS(5554), 1, + anon_sym_COMMA, + ACTIONS(5556), 1, + anon_sym_RBRACE, + STATE(3634), 1, + sym_export_specifier, + ACTIONS(5552), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3637), 2, + sym__module_export_name, + sym_string, + [101217] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5476), 1, + sym_identifier, + ACTIONS(5478), 1, + anon_sym_type, + ACTIONS(5484), 1, + anon_sym_typeof, + ACTIONS(5558), 1, + anon_sym_RBRACE, + STATE(3849), 1, + sym_import_specifier, + STATE(3939), 1, + sym__import_identifier, + STATE(3945), 2, + sym__module_export_name, + sym_string, + [101249] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5493), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, + ACTIONS(5560), 1, sym_identifier, - STATE(1870), 1, + STATE(1809), 1, sym_class_body, - STATE(2859), 1, + STATE(2776), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3772), 1, + STATE(3789), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100749] = 6, + [101283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, + ACTIONS(5235), 1, anon_sym_DOT, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_is, - STATE(2365), 1, - sym_type_arguments, - ACTIONS(3002), 6, + ACTIONS(5237), 1, + anon_sym_QMARK_DOT, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(2358), 1, + sym_arguments, + ACTIONS(3428), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100773] = 4, + [101307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(5562), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(5538), 1, anon_sym_COLON, - STATE(2957), 3, + STATE(3037), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(5541), 6, + ACTIONS(5564), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100793] = 11, + [101349] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5487), 1, + ACTIONS(5502), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, anon_sym_extends, - ACTIONS(5489), 1, + ACTIONS(5506), 1, anon_sym_implements, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5543), 1, + ACTIONS(5566), 1, sym_identifier, - STATE(1870), 1, + STATE(1389), 1, sym_class_body, - STATE(2859), 1, + STATE(2866), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3772), 1, + STATE(3835), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [100827] = 9, + [101383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5461), 1, - sym_identifier, - ACTIONS(5545), 1, - anon_sym_type, - ACTIONS(5547), 1, - anon_sym_as, - STATE(3847), 1, - sym__import_identifier, - ACTIONS(5294), 2, + ACTIONS(1969), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3960), 2, - sym__module_export_name, - sym_string, - [100857] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5214), 1, - anon_sym_DOT, - ACTIONS(5216), 1, - anon_sym_QMARK_DOT, - ACTIONS(5549), 1, - anon_sym_LPAREN, - STATE(2346), 1, - sym_arguments, - ACTIONS(3300), 6, - anon_sym_as, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100881] = 11, + [101398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5487), 1, - anon_sym_extends, - ACTIONS(5489), 1, - anon_sym_implements, - ACTIONS(5493), 1, + ACTIONS(3760), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5551), 1, - sym_identifier, - STATE(1950), 1, - sym_class_body, - STATE(2810), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3881), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [100915] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5224), 1, - anon_sym_DOT, - ACTIONS(5226), 1, - anon_sym_QMARK_DOT, - ACTIONS(5549), 1, - anon_sym_LPAREN, - STATE(2351), 1, - sym_arguments, - ACTIONS(3306), 6, - anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100939] = 6, + [101413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2988), 1, - anon_sym_QMARK_DOT, - ACTIONS(5549), 1, - anon_sym_LPAREN, - STATE(2348), 1, - sym_arguments, - ACTIONS(2978), 6, - anon_sym_as, + ACTIONS(5568), 1, + anon_sym_LBRACK, + ACTIONS(3606), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(3648), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [101432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3652), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100963] = 3, + [101447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5402), 1, - anon_sym_is, - ACTIONS(3388), 9, + ACTIONS(5568), 1, + anon_sym_LBRACK, + ACTIONS(3656), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100981] = 8, + [101464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4815), 1, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + sym_identifier, + ACTIONS(5570), 1, anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101008] = 2, + STATE(3933), 1, + sym_export_specifier, + ACTIONS(5552), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3637), 2, + sym__module_export_name, + sym_string, + [101491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 9, + ACTIONS(3660), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190414,89 +191290,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101023] = 10, + [101506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(2729), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1862), 1, - sym_class_body, - STATE(2807), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3859), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [101054] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, + ACTIONS(2731), 8, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4807), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101081] = 10, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [101523] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5553), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(615), 1, + STATE(1947), 1, sym_class_body, - STATE(2763), 1, + STATE(2869), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3871), 1, + STATE(3886), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101112] = 7, + [101554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5576), 9, anon_sym_EQ, - ACTIONS(5284), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(3209), 1, - sym_type_annotation, - STATE(3544), 1, - sym__initializer, - ACTIONS(5334), 2, - anon_sym_BANG, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(5332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101137] = 2, + [101569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 9, + ACTIONS(3644), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190506,31 +191351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101152] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5559), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_class_body, - STATE(2762), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3741), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [101183] = 2, + [101584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 9, + ACTIONS(3640), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190540,91 +191364,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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, - [101213] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4827), 1, - anon_sym_RBRACE, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101240] = 4, + [101599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - STATE(3266), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5517), 5, + ACTIONS(3586), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 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, - [101274] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101614] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5485), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1400), 1, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(613), 1, sym_class_body, - STATE(2821), 1, + STATE(2796), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3756), 1, + STATE(3907), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101305] = 2, + [101645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 9, + ACTIONS(5580), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -190634,124 +191411,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [101320] = 2, + [101660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 9, + ACTIONS(5582), 1, + anon_sym_AMP, + ACTIONS(3636), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101335] = 10, + [101677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5559), 1, + ACTIONS(3632), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(693), 1, - sym_class_body, - STATE(2766), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3806), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [101366] = 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(1981), 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(5304), 1, anon_sym_PIPE, - ACTIONS(5324), 1, anon_sym_extends, - ACTIONS(5569), 1, - anon_sym_EQ, - ACTIONS(5529), 5, + [101707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3584), 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, - [101389] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101722] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5485), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1450), 1, + STATE(1444), 1, sym_class_body, - STATE(2809), 1, + STATE(2781), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3873), 1, + STATE(3903), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101420] = 10, + [101753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(1977), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2814), 1, - sym_type_parameters, - STATE(3042), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3892), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [101451] = 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101768] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5476), 1, + sym_identifier, + ACTIONS(5478), 1, + anon_sym_type, + ACTIONS(5484), 1, + anon_sym_typeof, + STATE(3849), 1, + sym_import_specifier, + STATE(3939), 1, + sym__import_identifier, + STATE(3945), 2, + sym__module_export_name, + sym_string, + [101797] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1851), 1, + ACTIONS(5584), 1, + anon_sym_LBRACE, + STATE(164), 1, sym_class_body, - STATE(2815), 1, + STATE(2860), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3897), 1, + STATE(3876), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101482] = 2, + [101828] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1769), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [101855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 9, + ACTIONS(1527), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190761,10 +191571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101497] = 2, + [101870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 9, + ACTIONS(2731), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190774,10 +191584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101512] = 2, + [101885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 9, + ACTIONS(3678), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190787,10 +191597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101527] = 2, + [101900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 9, + ACTIONS(3682), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190800,40 +191610,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101542] = 3, + [101915] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, - anon_sym_LBRACK, - ACTIONS(3661), 8, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1913), 1, + sym_class_body, + STATE(2878), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3910), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [101946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 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, - [101559] = 5, + [101961] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1834), 1, + sym_class_body, + STATE(2782), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3883), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [101992] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3184), 1, + sym_type_annotation, + STATE(3455), 1, + sym__initializer, + ACTIONS(5317), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5315), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 1, anon_sym_AMP, - ACTIONS(5575), 1, + ACTIONS(5586), 1, anon_sym_PIPE, - ACTIONS(5577), 1, + ACTIONS(5588), 1, anon_sym_extends, - ACTIONS(3731), 6, + ACTIONS(3700), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [101580] = 2, + [102038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 9, + ACTIONS(3700), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190843,12 +191712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101595] = 3, + [102053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2779), 1, anon_sym_LBRACE, - ACTIONS(2725), 8, + ACTIONS(2781), 8, anon_sym_as, anon_sym_COMMA, anon_sym_LBRACK, @@ -190857,10 +191726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [101612] = 2, + [102070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 9, + ACTIONS(3704), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190870,12 +191739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101627] = 3, + [102085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, + ACTIONS(5582), 1, anon_sym_AMP, - ACTIONS(3743), 8, + ACTIONS(3708), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190884,10 +191753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [101644] = 2, + [102102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 9, + ACTIONS(3712), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190897,31 +191766,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101659] = 10, + [102117] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4758), 1, + anon_sym_RBRACE, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [102144] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1925), 1, + STATE(1901), 1, sym_class_body, - STATE(2839), 1, + STATE(2792), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3788), 1, + STATE(3809), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101690] = 2, + [102175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 9, + ACTIONS(1985), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190931,25 +191819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101705] = 4, + [102190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, - anon_sym_LBRACK, - ACTIONS(3454), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3651), 5, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5522), 1, + anon_sym_EQ, + STATE(3043), 1, + sym__initializer, + STATE(3179), 1, + sym_type_annotation, + ACTIONS(5528), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5524), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101724] = 2, + [102215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 9, + ACTIONS(3612), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190959,26 +191850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101739] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - ACTIONS(5575), 1, - anon_sym_PIPE, - ACTIONS(5577), 1, - anon_sym_extends, - ACTIONS(3647), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [101760] = 2, + [102230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 9, + ACTIONS(3352), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -190988,92 +191863,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101775] = 2, + [102245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 9, + ACTIONS(5568), 1, + anon_sym_LBRACK, + ACTIONS(3606), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101790] = 10, + [102262] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5579), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(143), 1, + STATE(614), 1, sym_class_body, - STATE(2816), 1, + STATE(2795), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3902), 1, + STATE(3708), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101821] = 10, + [102293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5582), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1948), 1, - sym_class_body, - STATE(2782), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3680), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [101852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3474), 9, + ACTIONS(3434), 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, - [101867] = 3, + [102314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - ACTIONS(3623), 8, + ACTIONS(3330), 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, - [101884] = 2, + [102329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 9, + ACTIONS(3602), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191083,115 +191940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101899] = 10, + [102344] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(598), 1, - sym_class_body, - STATE(2784), 1, + STATE(2777), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3266), 1, + sym_class_body, + STATE(3480), 1, sym_extends_clause, - STATE(3705), 1, + STATE(3889), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [101930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3490), 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, - [101945] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3047), 1, - sym_type_annotation, - STATE(3466), 1, - sym__initializer, - ACTIONS(5583), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5581), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101970] = 10, + [102375] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1914), 1, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(629), 1, sym_class_body, - STATE(2785), 1, + STATE(2811), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3714), 1, + STATE(3775), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [102001] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3609), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [102028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5585), 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, - [102043] = 2, + [102406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 9, + ACTIONS(3598), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191201,117 +191995,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102058] = 2, + [102421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 9, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3186), 1, + sym_type_annotation, + STATE(3463), 1, + sym__initializer, + ACTIONS(5347), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5345), 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, - [102073] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5501), 1, - sym_identifier, - ACTIONS(5587), 1, - anon_sym_RBRACE, - STATE(3712), 1, - sym_export_specifier, - ACTIONS(5503), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3605), 2, - sym__module_export_name, - sym_string, - [102100] = 7, + [102446] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5511), 1, + ACTIONS(5281), 1, anon_sym_EQ, - STATE(3067), 1, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3179), 1, sym_type_annotation, - STATE(3235), 1, + STATE(3450), 1, sym__initializer, - ACTIONS(5499), 2, + ACTIONS(5528), 2, anon_sym_in, anon_sym_of, - ACTIONS(5495), 3, + ACTIONS(5524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_LBRACE, - ACTIONS(2883), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [102142] = 2, + [102471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 9, + ACTIONS(5592), 1, + anon_sym_COLON, + STATE(3198), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5536), 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, - [102157] = 5, + [102490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - ACTIONS(5575), 1, - anon_sym_PIPE, - ACTIONS(5577), 1, - anon_sym_extends, - ACTIONS(3440), 6, + ACTIONS(3752), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [102178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2779), 1, - anon_sym_LBRACE, - ACTIONS(2781), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [102195] = 2, + [102505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 9, + ACTIONS(3756), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191321,141 +192072,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102210] = 10, + [102520] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5553), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(2817), 1, - sym_type_parameters, - STATE(3147), 1, + STATE(1961), 1, sym_class_body, - STATE(3541), 1, + STATE(2834), 1, + sym_type_parameters, + STATE(3480), 1, sym_extends_clause, - STATE(3906), 1, + STATE(3869), 1, sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [102241] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1765), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [102268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 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, - [102283] = 10, + STATE(4145), 1, + sym_implements_clause, + [102551] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(2806), 1, + STATE(2809), 1, sym_type_parameters, - STATE(3114), 1, + STATE(3099), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3856), 1, + STATE(3919), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [102314] = 7, + [102582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3067), 1, - sym_type_annotation, - STATE(3586), 1, - sym__initializer, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5495), 3, - sym__automatic_semicolon, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [102339] = 7, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [102599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3194), 1, - sym_type_annotation, - STATE(3570), 1, - sym__initializer, - ACTIONS(5314), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5312), 3, + ACTIONS(5582), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, + anon_sym_extends, + ACTIONS(3616), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [102364] = 10, + anon_sym_LBRACK, + [102620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5553), 1, + ACTIONS(5582), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(3772), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2823), 1, - sym_type_parameters, - STATE(3244), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3753), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [102395] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [102641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 9, + ACTIONS(3772), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191465,115 +192173,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102410] = 8, + [102656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(5582), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, + anon_sym_extends, + ACTIONS(3620), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + [102677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5594), 9, anon_sym_EQ, - STATE(3592), 1, - aux_sym_object_repeat1, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - [102437] = 2, + [102692] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 9, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3090), 1, + sym_type_annotation, + STATE(3599), 1, + sym__initializer, + ACTIONS(5285), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5283), 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, - [102452] = 7, + [102717] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(3189), 1, + STATE(3297), 1, sym_type_annotation, - STATE(3573), 1, + STATE(3649), 1, sym__initializer, - ACTIONS(5320), 2, + ACTIONS(5598), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5318), 3, + ACTIONS(5596), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102477] = 10, + [102742] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1854), 1, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(659), 1, sym_class_body, - STATE(2778), 1, + STATE(2877), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3664), 1, + STATE(3925), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [102508] = 10, + [102773] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + sym_identifier, + ACTIONS(5600), 1, + anon_sym_RBRACE, + STATE(3933), 1, + sym_export_specifier, + ACTIONS(5552), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3637), 2, + sym__module_export_name, + sym_string, + [102800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 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, + [102815] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5485), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(2019), 1, - sym_class_body, - STATE(2779), 1, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(2845), 1, sym_type_parameters, - STATE(3541), 1, + STATE(3042), 1, + sym_class_body, + STATE(3480), 1, sym_extends_clause, - STATE(3659), 1, + STATE(3848), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [102539] = 2, + [102846] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3592), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(228), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [102554] = 2, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [102873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 9, + ACTIONS(2781), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191583,112 +192344,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102569] = 2, + [102888] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(228), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [102584] = 8, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [102915] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(228), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4445), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(3609), 1, + STATE(3499), 1, aux_sym_object_repeat1, - STATE(3610), 1, + STATE(3658), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3206), 3, + ACTIONS(3226), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_QMARK, - [102611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 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, - [102626] = 5, + [102942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, + ACTIONS(5229), 1, anon_sym_DOT, - ACTIONS(5537), 1, + ACTIONS(5532), 1, anon_sym_LT, - STATE(2365), 1, + STATE(2404), 1, sym_type_arguments, - ACTIONS(3002), 6, + ACTIONS(3022), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102647] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5579), 1, - anon_sym_LBRACE, - STATE(148), 1, - sym_class_body, - STATE(2786), 1, - sym_type_parameters, - STATE(3541), 1, - sym_extends_clause, - STATE(3717), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [102678] = 9, + [102963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5461), 1, - sym_identifier, - ACTIONS(5463), 1, - anon_sym_type, - ACTIONS(5469), 1, - anon_sym_typeof, - STATE(3665), 1, - sym_import_specifier, - STATE(3716), 1, - sym__import_identifier, - STATE(4016), 2, - sym__module_export_name, - sym_string, - [102707] = 2, + ACTIONS(5604), 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, + [102978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 9, + ACTIONS(3808), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191698,10 +192424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102722] = 2, + [102993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 9, + ACTIONS(3804), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191711,61 +192437,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102737] = 3, + [103008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, - anon_sym_LBRACK, - ACTIONS(3454), 8, + ACTIONS(3800), 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, - [102754] = 7, + [103023] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(4870), 1, + anon_sym_RBRACE, + STATE(3499), 1, + aux_sym_object_repeat1, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, anon_sym_COLON, - STATE(3165), 1, - sym_type_annotation, - STATE(3514), 1, - sym__initializer, - ACTIONS(5358), 2, - anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5356), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102779] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5501), 1, - sym_identifier, - ACTIONS(5589), 1, - anon_sym_RBRACE, - STATE(3712), 1, - sym_export_specifier, - ACTIONS(5503), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3605), 2, - sym__module_export_name, - sym_string, - [102806] = 2, + [103050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 9, + ACTIONS(1973), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191775,10 +192482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102821] = 2, + [103065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 9, + ACTIONS(2889), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191788,95 +192495,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102836] = 2, + [103080] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5502), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5572), 1, anon_sym_extends, - [102851] = 2, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1393), 1, + sym_class_body, + STATE(2858), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3850), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [103111] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 9, + ACTIONS(5281), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(5287), 1, anon_sym_COLON, - anon_sym_RBRACK, + STATE(3100), 1, + sym_type_annotation, + STATE(3618), 1, + sym__initializer, + ACTIONS(5359), 2, + anon_sym_BANG, anon_sym_QMARK, - [102866] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - ACTIONS(5575), 1, - anon_sym_PIPE, - ACTIONS(3767), 7, + ACTIONS(5357), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - [102885] = 4, + [103136] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(4451), 1, + anon_sym_EQ, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + STATE(3659), 1, + aux_sym_object_repeat1, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [103163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5592), 1, anon_sym_COLON, - STATE(3283), 3, + STATE(3116), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(5541), 5, + ACTIONS(5564), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [102904] = 2, + [103182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5331), 1, anon_sym_AMP, + ACTIONS(5341), 1, anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_extends, - [102919] = 5, + ACTIONS(5606), 1, + anon_sym_EQ, + ACTIONS(5562), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [103205] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - ACTIONS(5575), 1, - anon_sym_PIPE, - ACTIONS(5577), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1958), 1, + sym_class_body, + STATE(2808), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3688), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [103236] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5502), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(2050), 1, + sym_class_body, + STATE(2789), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3829), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [103267] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(3555), 6, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5584), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_class_body, + STATE(2848), 1, + sym_type_parameters, + STATE(3480), 1, + sym_extends_clause, + STATE(3931), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [103298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [102940] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [103313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 9, + ACTIONS(3764), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -191886,43 +192674,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [102955] = 5, + [103328] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(2785), 1, + sym_type_parameters, + STATE(3279), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3879), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [103359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, + ACTIONS(5582), 1, anon_sym_AMP, - ACTIONS(5575), 1, + ACTIONS(5586), 1, anon_sym_PIPE, - ACTIONS(5577), 1, - anon_sym_extends, - ACTIONS(3572), 6, + ACTIONS(3748), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [102976] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5593), 1, - sym_escape_sequence, - ACTIONS(5595), 1, - anon_sym_BQUOTE, - ACTIONS(5597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, - sym__template_chars, - STATE(2907), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3060), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [103000] = 2, + anon_sym_extends, + [103378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 8, + ACTIONS(2535), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -191931,133 +192722,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103014] = 5, + [103392] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - ACTIONS(5575), 1, - anon_sym_PIPE, - ACTIONS(5577), 1, - anon_sym_extends, - ACTIONS(5529), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5526), 1, + anon_sym_BANG, + STATE(3179), 1, + sym_type_annotation, + STATE(3487), 1, + sym__initializer, + ACTIONS(5524), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [103034] = 5, + [103416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, - anon_sym_LBRACE, - ACTIONS(5603), 1, - anon_sym_DOT, - STATE(3228), 1, - sym_statement_block, - ACTIONS(1355), 5, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(5608), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103054] = 7, + [103436] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, - sym__template_chars, - ACTIONS(5605), 1, - sym_escape_sequence, - ACTIONS(5607), 1, + ACTIONS(1118), 1, anon_sym_BQUOTE, - STATE(2915), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3060), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [103078] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5609), 1, - sym_identifier, - ACTIONS(5611), 1, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(4110), 1, + anon_sym_COMMA, + STATE(3337), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5610), 2, anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5615), 1, - anon_sym_enum, - STATE(3375), 1, - sym_variable_declarator, - STATE(2871), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [103102] = 2, + anon_sym_implements, + STATE(1382), 2, + sym_template_string, + sym_arguments, + [103460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 8, + ACTIONS(5532), 1, + anon_sym_LT, + STATE(2391), 1, + sym_type_arguments, + ACTIONS(3352), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103116] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5609), 1, - sym_identifier, - ACTIONS(5611), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5617), 1, - anon_sym_enum, - STATE(3404), 1, - sym_variable_declarator, - STATE(2871), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [103140] = 5, + [103478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, + ACTIONS(5488), 1, anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(5477), 1, + ACTIONS(5492), 1, anon_sym_extends, - ACTIONS(5619), 5, + ACTIONS(5612), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103160] = 5, + [103498] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + sym_identifier, + STATE(3933), 1, + sym_export_specifier, + ACTIONS(5552), 2, + anon_sym_type, + anon_sym_typeof, + STATE(3637), 2, + sym__module_export_name, + sym_string, + [103522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, + ACTIONS(2531), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(5475), 1, anon_sym_PIPE, - ACTIONS(5477), 1, anon_sym_extends, - ACTIONS(5621), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103180] = 2, + [103536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 8, + ACTIONS(2527), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -192066,1133 +192841,957 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103194] = 7, + [103550] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5614), 1, sym_escape_sequence, - ACTIONS(5597), 1, + ACTIONS(5616), 1, + anon_sym_BQUOTE, + ACTIONS(5618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5620), 1, sym__template_chars, - ACTIONS(5623), 1, - anon_sym_BQUOTE, - STATE(2907), 2, + STATE(2926), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3060), 2, + STATE(3230), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [103218] = 7, + [103574] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5614), 1, sym_escape_sequence, - ACTIONS(5597), 1, + ACTIONS(5618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5620), 1, sym__template_chars, - ACTIONS(5625), 1, + ACTIONS(5622), 1, anon_sym_BQUOTE, - STATE(2907), 2, + STATE(2926), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3060), 2, + STATE(3230), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [103242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - STATE(2398), 1, - sym_type_arguments, - ACTIONS(3382), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103260] = 7, + [103598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5614), 1, sym_escape_sequence, - ACTIONS(5597), 1, + ACTIONS(5618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5620), 1, sym__template_chars, - ACTIONS(5627), 1, + ACTIONS(5624), 1, anon_sym_BQUOTE, - STATE(2907), 2, + STATE(2926), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3060), 2, + STATE(3230), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [103284] = 7, + [103622] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5597), 1, + ACTIONS(5618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5620), 1, sym__template_chars, - ACTIONS(5605), 1, + ACTIONS(5626), 1, sym_escape_sequence, - ACTIONS(5629), 1, + ACTIONS(5628), 1, anon_sym_BQUOTE, - STATE(2915), 2, + STATE(2910), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3060), 2, + STATE(3230), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [103308] = 7, + [103646] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5501), 1, + ACTIONS(5614), 1, + sym_escape_sequence, + ACTIONS(5618), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5620), 1, + sym__template_chars, + ACTIONS(5630), 1, + anon_sym_BQUOTE, + STATE(2926), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3230), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [103670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(5634), 1, + anon_sym_DOT, + STATE(3169), 1, + sym_statement_block, + ACTIONS(1349), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103690] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5636), 1, sym_identifier, - STATE(3712), 1, - sym_export_specifier, - ACTIONS(5503), 2, - anon_sym_type, - anon_sym_typeof, - STATE(3605), 2, - sym__module_export_name, - sym_string, - [103332] = 7, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, + anon_sym_enum, + STATE(3372), 1, + sym_variable_declarator, + STATE(2793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [103714] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_DOT, + STATE(3169), 1, + sym_statement_block, + ACTIONS(1349), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 1, + anon_sym_AMP, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5588), 1, + anon_sym_extends, + ACTIONS(5562), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [103754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5614), 1, sym_escape_sequence, - ACTIONS(5597), 1, + ACTIONS(5618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5620), 1, sym__template_chars, - ACTIONS(5631), 1, + ACTIONS(5646), 1, anon_sym_BQUOTE, - STATE(2907), 2, + STATE(2926), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3060), 2, + STATE(3230), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [103356] = 7, + [103778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, - sym_escape_sequence, - ACTIONS(5597), 1, + ACTIONS(5618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5620), 1, sym__template_chars, - ACTIONS(5633), 1, + ACTIONS(5626), 1, + sym_escape_sequence, + ACTIONS(5648), 1, anon_sym_BQUOTE, - STATE(2907), 2, + STATE(2910), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3256), 2, + STATE(3230), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [103380] = 7, + [103802] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(5614), 1, + sym_escape_sequence, + ACTIONS(5618), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5620), 1, + sym__template_chars, + ACTIONS(5650), 1, anon_sym_BQUOTE, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(4023), 1, - anon_sym_COMMA, - STATE(3364), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5635), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(1415), 2, - sym_template_string, - sym_arguments, - [103404] = 7, + STATE(2926), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3283), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [103826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5497), 1, - anon_sym_BANG, - STATE(3067), 1, - sym_type_annotation, - STATE(3587), 1, - sym__initializer, - ACTIONS(5495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103428] = 8, + ACTIONS(5636), 1, + sym_identifier, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5652), 1, + anon_sym_enum, + STATE(3341), 1, + sym_variable_declarator, + STATE(2793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [103850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5559), 1, - anon_sym_LBRACE, - STATE(677), 1, + STATE(1873), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3764), 1, + STATE(3871), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103453] = 8, + [103875] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(602), 1, + STATE(3087), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3709), 1, + STATE(3920), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103478] = 6, + [103900] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5637), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5654), 1, sym_identifier, - STATE(3404), 1, - sym_variable_declarator, - STATE(2871), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [103499] = 6, + ACTIONS(5656), 1, + anon_sym_STAR, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3791), 1, + sym__call_signature, + [103925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3190), 1, - sym_type_annotation, - STATE(3569), 1, - sym__initializer, - ACTIONS(5451), 3, + ACTIONS(5576), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [103520] = 8, + anon_sym_COLON, + [103938] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5660), 1, + sym_identifier, + ACTIONS(5662), 1, + anon_sym_STAR, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3791), 1, + sym__call_signature, + [103963] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5502), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5559), 1, - anon_sym_LBRACE, - STATE(645), 1, + STATE(1452), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3669), 1, + STATE(3922), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103545] = 4, + [103988] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3027), 1, - sym_type_annotation, - ACTIONS(5639), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103562] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1852), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3916), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [104013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(4696), 1, + anon_sym_LT, + ACTIONS(4691), 6, anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3217), 1, - sym_type_annotation, - STATE(3553), 1, - sym__initializer, - ACTIONS(5438), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [103583] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - STATE(1415), 2, - sym_template_string, - sym_arguments, - ACTIONS(5641), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [103602] = 6, + anon_sym_COLON, + anon_sym_QMARK, + [104028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, + ACTIONS(5638), 1, anon_sym_LBRACE, - ACTIONS(5613), 1, + ACTIONS(5640), 1, anon_sym_LBRACK, - ACTIONS(5637), 1, + ACTIONS(5664), 1, sym_identifier, - STATE(3359), 1, + STATE(3370), 1, sym_variable_declarator, - STATE(2871), 3, + STATE(2793), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [103623] = 4, + [104049] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(3228), 1, - sym_statement_block, - ACTIONS(1355), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103640] = 2, + STATE(3129), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3911), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [104074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 7, + ACTIONS(5666), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [103653] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5611), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5637), 1, - sym_identifier, - STATE(3375), 1, - sym_variable_declarator, - STATE(2871), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [103674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, anon_sym_COLON, - STATE(3118), 1, - sym_type_annotation, - ACTIONS(5643), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103691] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5645), 1, - sym_identifier, - ACTIONS(5647), 1, - anon_sym_STAR, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3768), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [103716] = 4, + [104087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(3056), 1, + STATE(3270), 1, sym_type_annotation, - ACTIONS(5651), 5, + STATE(3488), 1, + sym__initializer, + ACTIONS(5474), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103733] = 8, + [104108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5653), 1, + ACTIONS(5668), 1, sym_identifier, - ACTIONS(5655), 1, + ACTIONS(5670), 1, anon_sym_STAR, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3749), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [103758] = 8, + STATE(3868), 1, + sym__call_signature, + [104133] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1799), 1, + STATE(2028), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3700), 1, + STATE(3747), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103783] = 8, + [104158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 1, + anon_sym_EQ, + ACTIONS(3063), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [104173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + sym_identifier, + STATE(3372), 1, + sym_variable_declarator, + STATE(2793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [104194] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(2047), 1, + STATE(1859), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3874), 1, + STATE(3853), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103808] = 8, + [104219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5657), 1, - anon_sym_LBRACE, - ACTIONS(5659), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3179), 1, + sym_type_annotation, + STATE(3450), 1, + sym__initializer, + ACTIONS(5524), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5661), 1, - anon_sym_DOT, - ACTIONS(5663), 1, - anon_sym_LBRACE_PIPE, - STATE(3373), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3426), 1, - sym_type_arguments, - [103833] = 8, + anon_sym_SEMI, + [104240] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5665), 1, + ACTIONS(5674), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(5676), 1, anon_sym_STAR, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3663), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [103858] = 8, + STATE(3868), 1, + sym__call_signature, + [104265] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1957), 1, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(610), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3840), 1, + STATE(3938), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - anon_sym_LT, - ACTIONS(4630), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [103898] = 8, + [104290] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(607), 1, + STATE(620), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3829), 1, + STATE(3770), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103923] = 8, + [104315] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1915), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3789), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [103948] = 8, + ACTIONS(5281), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3315), 1, + sym_type_annotation, + STATE(3502), 1, + sym__initializer, + ACTIONS(5455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104336] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5579), 1, - anon_sym_LBRACE, - STATE(134), 1, + STATE(1854), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3801), 1, + STATE(3897), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [103973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - anon_sym_is, - ACTIONS(3388), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3724), 1, - sym_statement_block, - ACTIONS(5669), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 1, - anon_sym_is, - ACTIONS(3382), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [104020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3819), 1, - sym_statement_block, - ACTIONS(5673), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104037] = 4, + [104361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3838), 1, - sym_statement_block, - ACTIONS(5675), 5, + ACTIONS(5580), 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, - [104054] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, anon_sym_COLON, - STATE(3255), 1, - sym_type_annotation, - ACTIONS(5677), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104071] = 4, + [104374] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3901), 1, - sym_statement_block, - ACTIONS(5679), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104088] = 6, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5678), 1, + anon_sym_COLON, + ACTIONS(5680), 1, + anon_sym_QMARK, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3904), 1, + sym__call_signature, + [104399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(3149), 1, + STATE(3076), 1, sym_type_annotation, - STATE(3560), 1, + STATE(3624), 1, sym__initializer, - ACTIONS(5459), 3, + ACTIONS(5465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104109] = 4, + [104420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3836), 1, - sym_statement_block, - ACTIONS(5681), 5, + ACTIONS(5682), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [104126] = 4, + [104433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3743), 1, + STATE(3769), 1, sym_statement_block, - ACTIONS(5679), 5, + ACTIONS(5684), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104143] = 4, + [104450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3900), 1, - sym_statement_block, - ACTIONS(5683), 5, - sym__automatic_semicolon, + ACTIONS(5686), 1, + anon_sym_EQ, + ACTIONS(3051), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104160] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [104465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(3171), 1, + STATE(3175), 1, sym_type_annotation, - STATE(3529), 1, + STATE(3496), 1, sym__initializer, - ACTIONS(5457), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3894), 1, - sym_statement_block, - ACTIONS(5685), 5, + ACTIONS(5459), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104198] = 6, + [104486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(3059), 1, + STATE(3088), 1, sym_type_annotation, - STATE(3431), 1, + STATE(3593), 1, sym__initializer, - ACTIONS(5449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3785), 1, - sym_statement_block, - ACTIONS(5683), 5, + ACTIONS(5467), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104236] = 4, + [104507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3778), 1, + STATE(3764), 1, sym_statement_block, - ACTIONS(5685), 5, + ACTIONS(5689), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104253] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5687), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_QMARK, - STATE(2956), 1, - sym_formal_parameters, - STATE(3687), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [104278] = 8, + [104524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(2029), 1, + STATE(1934), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3660), 1, + STATE(3932), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [104303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4226), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [104316] = 8, + [104549] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(3082), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3804), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104341] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1945), 1, + STATE(3268), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3685), 1, + STATE(3936), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [104366] = 4, + [104574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3890), 1, - sym_statement_block, - ACTIONS(5691), 5, - sym__automatic_semicolon, + ACTIONS(3051), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104383] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [104587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1493), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3839), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104408] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1907), 1, + STATE(720), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3715), 1, + STATE(3739), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [104433] = 4, + [104612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3886), 1, - sym_statement_block, - ACTIONS(5693), 5, - sym__automatic_semicolon, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(5691), 1, + anon_sym_EQ, + ACTIONS(5695), 1, + anon_sym_QMARK, + STATE(3391), 1, + sym_type_annotation, + STATE(3918), 1, + sym__initializer, + ACTIONS(5693), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104450] = 4, + anon_sym_RPAREN, + [104635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3677), 1, - sym_statement_block, - ACTIONS(5691), 5, - sym__automatic_semicolon, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(3051), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104467] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [104650] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5700), 1, + sym_identifier, + ACTIONS(5702), 1, + anon_sym_STAR, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3868), 1, + sym__call_signature, + [104675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3675), 1, + STATE(3704), 1, sym_statement_block, - ACTIONS(5693), 5, + ACTIONS(5704), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104484] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(3158), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3855), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104509] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1834), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3857), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104534] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5579), 1, - anon_sym_LBRACE, - STATE(162), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3740), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104559] = 8, + [104692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3273), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3807), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5368), 1, - anon_sym_EQ, - STATE(3398), 1, - sym_constraint, - STATE(3917), 1, - sym_default_type, - ACTIONS(5373), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5695), 2, + STATE(3679), 1, + sym_statement_block, + ACTIONS(5706), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [104605] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3073), 1, - sym_type_annotation, - STATE(3591), 1, - sym__initializer, - ACTIONS(5697), 3, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3687), 1, + sym_statement_block, + ACTIONS(5708), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [104626] = 6, + anon_sym_PIPE_RBRACE, + [104726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5699), 1, + STATE(3706), 1, + sym_statement_block, + ACTIONS(5689), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104743] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(5476), 1, sym_identifier, - STATE(3404), 1, - sym_variable_declarator, - STATE(2709), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [104647] = 8, + ACTIONS(5542), 1, + anon_sym_type, + STATE(3696), 1, + sym__import_identifier, + STATE(4271), 2, + sym__module_export_name, + sym_string, + [104766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5534), 1, + anon_sym_is, + ACTIONS(3330), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1447), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3891), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104672] = 6, + [104781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, + ACTIONS(5710), 1, + anon_sym_is, + ACTIONS(3352), 6, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(5701), 1, - sym_identifier, - STATE(3419), 1, - sym_variable_declarator, - STATE(2699), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [104693] = 8, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [104796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(5557), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3084), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3893), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104718] = 8, + STATE(3725), 1, + sym_statement_block, + ACTIONS(5712), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1426), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3895), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [104743] = 6, + STATE(3695), 1, + sym_statement_block, + ACTIONS(5714), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5637), 1, - sym_identifier, - STATE(3477), 1, - sym_variable_declarator, - STATE(2871), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [104764] = 2, + STATE(3702), 1, + sym_statement_block, + ACTIONS(5712), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104847] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3723), 1, + sym_statement_block, + ACTIONS(5716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 7, + ACTIONS(4321), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -193200,10 +193799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [104777] = 2, + [104877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 7, + ACTIONS(4313), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -193211,288 +193810,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [104790] = 2, + [104890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 7, - sym__automatic_semicolon, + ACTIONS(2063), 1, anon_sym_LBRACE, + STATE(3719), 1, + sym_statement_block, + ACTIONS(5718), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [104803] = 4, + [104907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3876), 1, + STATE(3710), 1, sym_statement_block, - ACTIONS(5705), 5, + ACTIONS(5716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104820] = 8, + [104924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5707), 1, - sym_identifier, - ACTIONS(5709), 1, - anon_sym_STAR, - STATE(2956), 1, - sym_formal_parameters, - STATE(3768), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [104845] = 7, + ACTIONS(5720), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [104937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(5461), 1, - sym_identifier, - ACTIONS(5545), 1, - anon_sym_type, - STATE(3847), 1, - sym__import_identifier, - STATE(3960), 2, - sym__module_export_name, - sym_string, - [104868] = 4, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3707), 1, + sym_statement_block, + ACTIONS(5684), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3861), 1, + STATE(3716), 1, sym_statement_block, - ACTIONS(5711), 5, + ACTIONS(5718), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104885] = 8, + [104971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5713), 1, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, sym_identifier, - ACTIONS(5715), 1, - anon_sym_STAR, - STATE(2956), 1, - sym_formal_parameters, - STATE(3884), 1, - sym_type_parameters, - STATE(3898), 1, - sym__call_signature, - [104910] = 2, + STATE(3611), 1, + sym_variable_declarator, + STATE(2793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [104992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [104923] = 4, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1874), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3761), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3832), 1, - sym_statement_block, - ACTIONS(5711), 5, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3306), 1, + sym_type_annotation, + ACTIONS(5722), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104940] = 3, + [105034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 1, - anon_sym_EQ, - ACTIONS(3037), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [104955] = 4, + ACTIONS(3278), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, + anon_sym_LT, + STATE(1384), 1, + sym_arguments, + STATE(3834), 1, + sym_type_arguments, + ACTIONS(5724), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [105055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3830), 1, + STATE(3674), 1, sym_statement_block, - ACTIONS(5705), 5, + ACTIONS(5726), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104972] = 8, + [105072] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5728), 1, + sym_identifier, + ACTIONS(5730), 1, + anon_sym_STAR, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3796), 1, + sym__call_signature, + [105097] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5720), 1, + ACTIONS(5732), 1, sym_identifier, - ACTIONS(5722), 1, + ACTIONS(5734), 1, anon_sym_STAR, - STATE(2956), 1, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3868), 1, + sym__call_signature, + [105122] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5680), 1, + anon_sym_QMARK, + ACTIONS(5736), 1, + anon_sym_COLON, + STATE(2887), 1, sym_formal_parameters, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3898), 1, + STATE(3904), 1, sym__call_signature, - [104997] = 8, + [105147] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, + anon_sym_LT, + STATE(1940), 1, + sym_arguments, + STATE(3744), 1, + sym_type_arguments, + ACTIONS(5724), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [105168] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(750), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5738), 1, + anon_sym_LT, + ACTIONS(5740), 1, anon_sym_extends, - ACTIONS(5555), 1, - anon_sym_implements, - STATE(1880), 1, - sym_class_body, - STATE(3541), 1, - sym_extends_clause, - STATE(3918), 1, - sym_class_heritage, - STATE(4126), 1, - sym_implements_clause, - [105022] = 8, + STATE(3047), 1, + sym_object_type, + STATE(3082), 1, + sym_type_parameters, + STATE(3613), 1, + sym_extends_type_clause, + [105193] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5724), 1, + ACTIONS(5742), 1, sym_identifier, - ACTIONS(5726), 1, + ACTIONS(5744), 1, anon_sym_STAR, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3898), 1, + STATE(3791), 1, sym__call_signature, - [105047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5728), 1, - anon_sym_EQ, - ACTIONS(3043), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [105062] = 2, + [105218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 7, - sym__automatic_semicolon, + ACTIONS(5632), 1, anon_sym_LBRACE, + STATE(3169), 1, + sym_statement_block, + ACTIONS(1349), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [105075] = 8, + [105235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(3299), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3888), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105260] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, anon_sym_DQUOTE, - ACTIONS(1238), 1, + ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(5732), 1, + ACTIONS(5746), 1, sym_identifier, - ACTIONS(5734), 1, + ACTIONS(5748), 1, anon_sym_DOT, - STATE(594), 1, + STATE(2770), 1, sym_nested_identifier, - STATE(617), 1, + STATE(2844), 1, sym_string, - STATE(663), 1, + STATE(3200), 1, sym__module, - [105100] = 2, + [105285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 7, + ACTIONS(5267), 1, + anon_sym_is, + ACTIONS(5750), 6, sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [105113] = 5, + anon_sym_PIPE_RBRACE, + [105300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [105132] = 2, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5584), 1, + anon_sym_LBRACE, + STATE(166), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3776), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 7, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3878), 1, + sym_statement_block, + ACTIONS(5752), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [105145] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_LT, - STATE(1941), 1, - sym_arguments, - STATE(3885), 1, - sym_type_arguments, - ACTIONS(5736), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [105166] = 2, + anon_sym_PIPE_RBRACE, + [105342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 7, + ACTIONS(5594), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -193500,21 +194146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [105179] = 2, + [105355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 7, - sym__automatic_semicolon, + ACTIONS(2063), 1, anon_sym_LBRACE, + STATE(3726), 1, + sym_statement_block, + ACTIONS(5754), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [105192] = 2, + [105372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 7, + ACTIONS(5602), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -193522,3459 +194170,3852 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [105205] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_LT, - STATE(1414), 1, - sym_arguments, - STATE(3728), 1, - sym_type_arguments, - ACTIONS(5736), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [105226] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(5740), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_extends, - STATE(670), 1, - sym_object_type, - STATE(3091), 1, - sym_type_parameters, - STATE(3445), 1, - sym_extends_type_clause, - [105251] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5744), 1, - sym_identifier, - ACTIONS(5746), 1, - anon_sym_STAR, - STATE(2956), 1, - sym_formal_parameters, - STATE(3884), 1, - sym_type_parameters, - STATE(3898), 1, - sym__call_signature, - [105276] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(5750), 1, - anon_sym_STAR, - STATE(2956), 1, - sym_formal_parameters, - STATE(3768), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [105301] = 4, + [105385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3860), 1, + STATE(3881), 1, sym_statement_block, - ACTIONS(5752), 5, + ACTIONS(5754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105318] = 8, + [105402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 1, + ACTIONS(209), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1279), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(5740), 1, + ACTIONS(5738), 1, anon_sym_LT, - ACTIONS(5742), 1, + ACTIONS(5740), 1, anon_sym_extends, - STATE(3136), 1, - sym_type_parameters, - STATE(3175), 1, + STATE(673), 1, sym_object_type, - STATE(3652), 1, + STATE(3141), 1, + sym_type_parameters, + STATE(3529), 1, sym_extends_type_clause, - [105343] = 8, + [105427] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, + ACTIONS(1236), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1238), 1, anon_sym_SQUOTE, - ACTIONS(5754), 1, - sym_identifier, ACTIONS(5756), 1, + sym_identifier, + ACTIONS(5758), 1, anon_sym_DOT, - STATE(2744), 1, + STATE(596), 1, sym_nested_identifier, - STATE(2771), 1, + STATE(621), 1, sym_string, - STATE(3116), 1, + STATE(697), 1, sym__module, - [105368] = 8, + [105452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5689), 1, - anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(2956), 1, - sym_formal_parameters, - STATE(3687), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [105393] = 8, + STATE(3061), 1, + sym_type_annotation, + ACTIONS(5760), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5762), 1, + sym_identifier, + STATE(3370), 1, + sym_variable_declarator, + STATE(2700), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [105490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1811), 1, + STATE(1442), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3899), 1, + STATE(3890), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [105418] = 4, + [105515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3686), 1, - sym_statement_block, - ACTIONS(5760), 5, + ACTIONS(5764), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [105435] = 4, + [105528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5584), 1, anon_sym_LBRACE, - STATE(3903), 1, - sym_statement_block, - ACTIONS(5762), 5, - sym__automatic_semicolon, + STATE(157), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3816), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5435), 1, + anon_sym_EQ, + STATE(3431), 1, + sym_constraint, + STATE(3815), 1, + sym_default_type, + ACTIONS(5440), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5766), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105452] = 4, + anon_sym_GT, + [105574] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(3693), 1, - sym_statement_block, - ACTIONS(5762), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105469] = 8, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1379), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3810), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105599] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5768), 1, sym_identifier, - ACTIONS(5766), 1, + ACTIONS(5770), 1, anon_sym_STAR, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3768), 1, + STATE(3731), 1, + sym_type_parameters, + STATE(3817), 1, sym__call_signature, - STATE(3884), 1, + [105624] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5772), 1, + sym_identifier, + ACTIONS(5774), 1, + anon_sym_STAR, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, sym_type_parameters, - [105494] = 8, + STATE(3791), 1, + sym__call_signature, + [105649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3718), 1, + sym_statement_block, + ACTIONS(5776), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105666] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1439), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3887), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5778), 1, + sym_identifier, + STATE(3372), 1, + sym_variable_declarator, + STATE(2712), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [105712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3075), 1, + sym_type_annotation, + ACTIONS(5780), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105729] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5555), 1, + ACTIONS(5574), 1, anon_sym_implements, - STATE(1467), 1, + STATE(1965), 1, sym_class_body, - STATE(3541), 1, + STATE(3480), 1, sym_extends_clause, - STATE(3668), 1, + STATE(3865), 1, sym_class_heritage, - STATE(4126), 1, + STATE(4145), 1, sym_implements_clause, - [105519] = 7, + [105754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(5768), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(5772), 1, - anon_sym_QMARK, - STATE(3363), 1, - sym_type_annotation, - STATE(3816), 1, - sym__initializer, - ACTIONS(5770), 2, + ACTIONS(5010), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [105542] = 2, + anon_sym_RBRACE, + ACTIONS(3226), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [105773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 7, + ACTIONS(1393), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [105555] = 2, + [105786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 7, - anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3717), 1, + sym_statement_block, + ACTIONS(5782), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [105568] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5248), 1, - anon_sym_is, - ACTIONS(5776), 6, + ACTIONS(1397), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [105583] = 3, + [105816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 1, + ACTIONS(4331), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3037), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [105598] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5611), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_LBRACK, - ACTIONS(5637), 1, - sym_identifier, - STATE(3419), 1, - sym_variable_declarator, - STATE(2871), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [105619] = 6, + [105829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - STATE(3067), 1, + STATE(3253), 1, sym_type_annotation, - STATE(3586), 1, + STATE(3516), 1, sym__initializer, - ACTIONS(5495), 3, + ACTIONS(5784), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105640] = 4, + [105850] = 4, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3225), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5781), 3, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3243), 1, + sym_type_annotation, + ACTIONS(5786), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [105656] = 7, + anon_sym_PIPE_RBRACE, + [105867] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5572), 1, anon_sym_extends, - ACTIONS(5783), 1, - anon_sym_COMMA, - ACTIONS(5785), 1, - anon_sym_GT, - STATE(3488), 1, - aux_sym_implements_clause_repeat1, - [105678] = 7, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(635), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3783), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, - sym_identifier, - ACTIONS(5789), 1, - anon_sym_import, - STATE(2473), 1, - sym__type_query_subscript_expression, - STATE(2496), 1, - sym__type_query_member_expression, - STATE(2594), 1, - sym__type_query_call_expression, - STATE(3837), 1, - sym_import, - [105700] = 4, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(1932), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3899), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [105917] = 5, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3186), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5791), 3, - sym__automatic_semicolon, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, + anon_sym_LPAREN, + STATE(1382), 2, + sym_template_string, + sym_arguments, + ACTIONS(5788), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [105716] = 4, + anon_sym_implements, + [105936] = 8, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3188), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5793), 3, - sym__automatic_semicolon, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5790), 1, + anon_sym_LBRACE, + ACTIONS(5792), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105732] = 4, + ACTIONS(5794), 1, + anon_sym_DOT, + ACTIONS(5796), 1, + anon_sym_LBRACE_PIPE, + STATE(3380), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3446), 1, + sym_type_arguments, + [105961] = 4, ACTIONS(3), 1, sym_comment, - STATE(2875), 1, - aux_sym_object_type_repeat1, - ACTIONS(3188), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5793), 3, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3733), 1, + sym_statement_block, + ACTIONS(5776), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [105748] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5795), 1, - anon_sym_QMARK, - STATE(2956), 1, - sym_formal_parameters, - STATE(3755), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [105770] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5797), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3248), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [105792] = 2, + anon_sym_PIPE_RBRACE, + [105978] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5502), 1, + anon_sym_LBRACE, + ACTIONS(5572), 1, anon_sym_extends, - [105804] = 7, + ACTIONS(5574), 1, + anon_sym_implements, + STATE(2056), 1, + sym_class_body, + STATE(3480), 1, + sym_extends_clause, + STATE(3824), 1, + sym_class_heritage, + STATE(4145), 1, + sym_implements_clause, + [106003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_import, - ACTIONS(5799), 1, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, sym_identifier, - STATE(1514), 1, - sym__type_query_subscript_expression, - STATE(1517), 1, - sym__type_query_member_expression, - STATE(1735), 1, - sym__type_query_call_expression, - STATE(3707), 1, - sym_import, - [105826] = 4, + STATE(3339), 1, + sym_variable_declarator, + STATE(2793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106024] = 6, ACTIONS(3), 1, sym_comment, - STATE(2889), 1, - aux_sym_object_type_repeat1, - ACTIONS(3243), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5801), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105842] = 4, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + sym_identifier, + STATE(3341), 1, + sym_variable_declarator, + STATE(2793), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106045] = 2, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3243), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5801), 3, + ACTIONS(5604), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [105858] = 2, + anon_sym_COLON, + [106058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 6, - sym__automatic_semicolon, + ACTIONS(2063), 1, anon_sym_LBRACE, + STATE(3740), 1, + sym_statement_block, + ACTIONS(5782), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1975), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [105882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [105894] = 5, + [106075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5798), 1, anon_sym_COLON, - ACTIONS(5803), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, - anon_sym_QMARK_COLON, - STATE(3226), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, + ACTIONS(5536), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(3806), 3, sym_type_annotation, - [105912] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2876), 1, - aux_sym_object_type_repeat1, - ACTIONS(5809), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5807), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105928] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3237), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5811), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105944] = 7, + sym_asserts, + sym_type_predicate_annotation, + [106091] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(5813), 1, - anon_sym_COMMA, - ACTIONS(5815), 1, - anon_sym_GT, - STATE(3484), 1, - aux_sym_implements_clause_repeat1, - [105966] = 7, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(5746), 1, + sym_identifier, + STATE(2770), 1, + sym_nested_identifier, + STATE(2844), 1, + sym_string, + STATE(3200), 1, + sym__module, + [106113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(5817), 1, + ACTIONS(5800), 1, + anon_sym_LBRACE, + ACTIONS(5802), 1, anon_sym_COMMA, - ACTIONS(5819), 1, - anon_sym_GT, - STATE(3559), 1, + STATE(3471), 1, aux_sym_implements_clause_repeat1, - [105988] = 7, + [106135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(5821), 1, + ACTIONS(5387), 1, + anon_sym_is, + ACTIONS(5750), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5823), 1, - anon_sym_GT, - STATE(3628), 1, - aux_sym_implements_clause_repeat1, - [106010] = 7, + anon_sym_SEMI, + [106149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_import, - ACTIONS(5825), 1, - sym_identifier, - STATE(1213), 1, - sym__type_query_subscript_expression, - STATE(1214), 1, - sym__type_query_member_expression, - STATE(1275), 1, - sym__type_query_call_expression, - STATE(3800), 1, - sym_import, - [106032] = 7, + ACTIONS(5804), 1, + anon_sym_default, + ACTIONS(5806), 1, + anon_sym_RBRACE, + ACTIONS(5808), 1, + anon_sym_case, + STATE(3000), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [106167] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_import, - ACTIONS(5827), 1, - sym_identifier, - STATE(2309), 1, - sym__type_query_subscript_expression, - STATE(2338), 1, - sym__type_query_member_expression, - STATE(2349), 1, - sym__type_query_call_expression, - STATE(3852), 1, - sym_import, - [106054] = 4, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(3449), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [106189] = 4, ACTIONS(3), 1, sym_comment, - STATE(2904), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(5831), 2, + ACTIONS(3244), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5829), 3, + ACTIONS(5812), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106070] = 4, + [106205] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2194), 1, - sym_statement_block, - ACTIONS(5760), 4, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5814), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(3077), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [106227] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2928), 1, + aux_sym_object_type_repeat1, + ACTIONS(3196), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5816), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106086] = 4, + [106243] = 4, ACTIONS(3), 1, sym_comment, - STATE(2908), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(3212), 2, + ACTIONS(3192), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5835), 3, + ACTIONS(5818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106102] = 4, + [106259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2177), 1, - sym_statement_block, - ACTIONS(5705), 4, + STATE(2893), 1, + aux_sym_object_type_repeat1, + ACTIONS(3192), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5818), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106118] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5837), 1, - anon_sym_QMARK, - STATE(2657), 1, - sym_formal_parameters, - STATE(2951), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [106140] = 7, + [106275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(5839), 1, + ACTIONS(5820), 1, anon_sym_COMMA, - ACTIONS(5841), 1, + ACTIONS(5822), 1, anon_sym_GT, - STATE(3436), 1, + STATE(3506), 1, aux_sym_implements_clause_repeat1, - [106162] = 2, + [106297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5331), 1, anon_sym_AMP, + ACTIONS(5341), 1, anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_extends, - [106174] = 7, + ACTIONS(5824), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [106315] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5843), 1, + ACTIONS(5826), 1, sym_identifier, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3896), 1, + STATE(3818), 1, sym__call_signature, - [106196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2210), 1, - sym_statement_block, - ACTIONS(5711), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106212] = 4, + [106337] = 7, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3212), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5835), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106228] = 7, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5828), 1, + anon_sym_QMARK, + STATE(2887), 1, + sym_formal_parameters, + STATE(3694), 1, + sym__call_signature, + STATE(3731), 1, + sym_type_parameters, + [106359] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5845), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3575), 1, + STATE(3235), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [106250] = 4, + [106381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2187), 1, + STATE(2216), 1, sym_statement_block, - ACTIONS(5705), 4, + ACTIONS(5752), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106266] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5849), 1, - anon_sym_BQUOTE, - ACTIONS(5851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5847), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3007), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [106284] = 4, + [106397] = 4, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, + STATE(2896), 1, aux_sym_object_type_repeat1, - ACTIONS(3214), 2, + ACTIONS(5836), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5853), 3, + ACTIONS(5834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106300] = 4, + [106413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(5838), 3, anon_sym_LBRACE, - STATE(2192), 1, - sym_statement_block, - ACTIONS(5762), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [106316] = 7, + anon_sym_GT, + [106431] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5855), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3539), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [106338] = 7, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, + anon_sym_GT, + STATE(3601), 1, + aux_sym_implements_clause_repeat1, + [106453] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - STATE(2657), 1, + ACTIONS(5844), 1, + sym_identifier, + STATE(2887), 1, sym_formal_parameters, - STATE(2927), 1, - sym__call_signature, - STATE(3774), 1, + STATE(3731), 1, sym_type_parameters, - [106360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [106372] = 6, + STATE(3862), 1, + sym__call_signature, + [106475] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5661), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - anon_sym_LBRACE, - STATE(3426), 1, - sym_type_arguments, - ACTIONS(5861), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [106392] = 4, + ACTIONS(5846), 1, + sym_identifier, + ACTIONS(5848), 1, + anon_sym_import, + STATE(2387), 1, + sym__type_query_subscript_expression, + STATE(2393), 1, + sym__type_query_member_expression, + STATE(2492), 1, + sym__type_query_call_expression, + STATE(3909), 1, + sym_import, + [106497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2195), 1, - sym_statement_block, - ACTIONS(5762), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(5691), 1, + anon_sym_EQ, + STATE(3352), 1, + sym_type_annotation, + STATE(3711), 1, + sym__initializer, + ACTIONS(5850), 2, anon_sym_COMMA, - anon_sym_SEMI, - [106408] = 5, + anon_sym_RPAREN, + [106517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(5854), 1, anon_sym_BQUOTE, - ACTIONS(5847), 2, + ACTIONS(5856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5852), 2, sym__template_chars, sym_escape_sequence, - STATE(3007), 2, + STATE(3022), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [106426] = 4, + [106535] = 7, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(5868), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5865), 3, - sym__automatic_semicolon, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5792), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106442] = 7, + ACTIONS(5858), 1, + anon_sym_LBRACE, + ACTIONS(5860), 1, + anon_sym_LBRACE_PIPE, + STATE(3379), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3445), 1, + sym_type_arguments, + [106557] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(5870), 1, - anon_sym_export, - ACTIONS(5872), 1, - anon_sym_class, - ACTIONS(5874), 1, - anon_sym_abstract, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [106464] = 7, + ACTIONS(5848), 1, + anon_sym_import, + ACTIONS(5862), 1, + sym_identifier, + STATE(1591), 1, + sym__type_query_subscript_expression, + STATE(1595), 1, + sym__type_query_member_expression, + STATE(1608), 1, + sym__type_query_call_expression, + STATE(3819), 1, + sym_import, + [106579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5876), 1, + ACTIONS(5864), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3055), 1, + STATE(3222), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [106486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5803), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, - anon_sym_QMARK_COLON, - STATE(3053), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [106504] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3184), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5878), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106520] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3218), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5880), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [106548] = 3, + [106601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5402), 1, - anon_sym_is, - ACTIONS(5776), 5, + ACTIONS(5750), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [106562] = 5, + anon_sym_PIPE_RBRACE, + [106613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 1, - anon_sym_default, - ACTIONS(5885), 1, - anon_sym_RBRACE, - ACTIONS(5887), 1, - anon_sym_case, - STATE(2924), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [106580] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5866), 1, + sym_identifier, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3825), 1, + sym__call_signature, + [106635] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [106592] = 7, + sym_comment, + ACTIONS(5804), 1, + anon_sym_default, + ACTIONS(5808), 1, + anon_sym_case, + ACTIONS(5868), 1, + anon_sym_RBRACE, + STATE(2891), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [106653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5890), 1, - sym_identifier, - STATE(2956), 1, + ACTIONS(5870), 1, + anon_sym_QMARK, + STATE(2645), 1, sym_formal_parameters, - STATE(3661), 1, + STATE(3603), 1, sym__call_signature, - STATE(3884), 1, + STATE(3927), 1, sym_type_parameters, - [106614] = 4, + [106675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2179), 1, - sym_statement_block, - ACTIONS(5711), 4, + ACTIONS(5764), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [106630] = 7, + anon_sym_COLON, + [106687] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + ACTIONS(5746), 1, + sym_identifier, + STATE(2770), 1, + sym_nested_identifier, + STATE(2844), 1, + sym_string, + STATE(3158), 1, + sym__module, + [106709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5872), 1, + anon_sym_BQUOTE, + ACTIONS(5626), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2910), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [106727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - ACTIONS(5892), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - STATE(2956), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3834), 1, + STATE(2951), 1, sym__call_signature, - STATE(3884), 1, + STATE(3673), 1, sym_type_parameters, - [106652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5894), 1, - anon_sym_AMP, - ACTIONS(3623), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [106666] = 5, + [106749] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5898), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(3647), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [106684] = 4, + ACTIONS(5876), 1, + anon_sym_COMMA, + ACTIONS(5878), 1, + anon_sym_GT, + STATE(3579), 1, + aux_sym_implements_clause_repeat1, + [106771] = 4, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, - aux_sym_object_type_repeat1, - ACTIONS(3235), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5900), 3, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2222), 1, + sym_statement_block, + ACTIONS(5712), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(5541), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(3882), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [106716] = 7, + [106787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, - anon_sym_QMARK, - STATE(2956), 1, + ACTIONS(5880), 1, + sym_identifier, + STATE(2887), 1, sym_formal_parameters, - STATE(3786), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [106738] = 4, + STATE(3825), 1, + sym__call_signature, + [106809] = 4, ACTIONS(3), 1, sym_comment, - STATE(2921), 1, - aux_sym_object_type_repeat1, - ACTIONS(3235), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5900), 3, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2191), 1, + sym_statement_block, + ACTIONS(5714), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106754] = 2, + [106825] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5882), 1, + anon_sym_BQUOTE, + ACTIONS(5852), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3022), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [106843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 6, + STATE(2938), 1, + aux_sym_object_type_repeat1, + ACTIONS(5886), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5884), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [106766] = 2, + [106859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 6, + STATE(2928), 1, + aux_sym_object_type_repeat1, + ACTIONS(5891), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [106778] = 5, + [106875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, + ACTIONS(5856), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5906), 1, + ACTIONS(5893), 1, anon_sym_BQUOTE, - ACTIONS(5605), 2, + ACTIONS(5614), 2, sym__template_chars, sym_escape_sequence, - STATE(2915), 2, + STATE(2926), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [106796] = 5, + [106893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2198), 1, + sym_statement_block, + ACTIONS(5712), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5803), 1, + ACTIONS(5895), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, + ACTIONS(5897), 1, anon_sym_QMARK_COLON, - STATE(3193), 3, + STATE(3259), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [106814] = 5, + [106927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5803), 1, + ACTIONS(5895), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, + ACTIONS(5897), 1, anon_sym_QMARK_COLON, - STATE(3191), 3, + STATE(3260), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [106832] = 7, + [106945] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5908), 1, - sym_identifier, - STATE(2956), 1, + ACTIONS(5899), 1, + anon_sym_QMARK, + STATE(2645), 1, sym_formal_parameters, - STATE(3884), 1, - sym_type_parameters, - STATE(3913), 1, + STATE(3291), 1, sym__call_signature, - [106854] = 5, + STATE(3927), 1, + sym_type_parameters, + [106967] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(5901), 1, + anon_sym_export, + ACTIONS(5903), 1, + anon_sym_class, + ACTIONS(5905), 1, + anon_sym_abstract, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [106989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5803), 1, + ACTIONS(5895), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, + ACTIONS(5897), 1, anon_sym_QMARK_COLON, - STATE(3188), 3, + STATE(3192), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [106872] = 7, + [107007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5910), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3185), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [106894] = 4, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5895), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5897), 1, + anon_sym_QMARK_COLON, + STATE(3249), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [107025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(5907), 1, + sym_identifier, + ACTIONS(5909), 1, + anon_sym_LBRACK, + STATE(3328), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [107043] = 4, ACTIONS(3), 1, sym_comment, - STATE(2931), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(5914), 2, + ACTIONS(3208), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5912), 3, + ACTIONS(5911), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106910] = 7, + [107059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5659), 1, - anon_sym_COMMA, - ACTIONS(5916), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - ACTIONS(5918), 1, - anon_sym_LBRACE_PIPE, - STATE(3374), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3524), 1, - sym_type_arguments, - [106932] = 7, + STATE(2189), 1, + sym_statement_block, + ACTIONS(5708), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(5920), 1, - anon_sym_COMMA, - ACTIONS(5922), 1, - anon_sym_GT, - STATE(3599), 1, - aux_sym_implements_clause_repeat1, - [106954] = 3, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5895), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5897), 1, + anon_sym_QMARK_COLON, + STATE(3187), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [107093] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(3206), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2621), 1, anon_sym_LPAREN, + ACTIONS(5913), 1, anon_sym_QMARK, - [106968] = 7, + STATE(2645), 1, + sym_formal_parameters, + STATE(3273), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [107115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, + ACTIONS(5848), 1, anon_sym_import, - ACTIONS(5924), 1, + ACTIONS(5915), 1, sym_identifier, - STATE(2389), 1, - sym__type_query_subscript_expression, - STATE(2392), 1, + STATE(1217), 1, sym__type_query_member_expression, - STATE(2492), 1, + STATE(1235), 1, + sym__type_query_subscript_expression, + STATE(1296), 1, sym__type_query_call_expression, - STATE(3735), 1, + STATE(3828), 1, sym_import, - [106990] = 7, + [107137] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5926), 1, + ACTIONS(5917), 1, anon_sym_QMARK, - STATE(2956), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3870), 1, + STATE(2816), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [107159] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(5921), 1, + anon_sym_PIPE, + ACTIONS(3748), 4, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + [107175] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5923), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(2823), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [107197] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2928), 1, + aux_sym_object_type_repeat1, + ACTIONS(3258), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5925), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107213] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5927), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(2829), 1, sym__call_signature, - STATE(3884), 1, + STATE(3927), 1, sym_type_parameters, - [107012] = 4, + [107235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2189), 1, + STATE(2204), 1, sym_statement_block, - ACTIONS(5752), 4, + ACTIONS(5684), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107028] = 4, + [107251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5798), 1, + anon_sym_COLON, + ACTIONS(5564), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(3736), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [107267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2199), 1, + STATE(2205), 1, sym_statement_block, - ACTIONS(5693), 4, + ACTIONS(5754), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107044] = 4, + [107283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2200), 1, + STATE(2187), 1, sym_statement_block, - ACTIONS(5691), 4, + ACTIONS(5706), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107060] = 4, + [107299] = 5, ACTIONS(3), 1, sym_comment, - STATE(2872), 1, + ACTIONS(2615), 1, + anon_sym_LBRACE, + ACTIONS(5909), 1, + anon_sym_LBRACK, + ACTIONS(5929), 1, + sym_identifier, + STATE(3832), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [107317] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(5931), 1, + anon_sym_COMMA, + ACTIONS(5933), 1, + anon_sym_GT, + STATE(3469), 1, + aux_sym_implements_clause_repeat1, + [107339] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(5935), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(2881), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [107361] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5937), 1, + sym_identifier, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3825), 1, + sym__call_signature, + [107383] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 1, + anon_sym_import, + ACTIONS(5939), 1, + sym_identifier, + STATE(2348), 1, + sym__type_query_subscript_expression, + STATE(2351), 1, + sym__type_query_member_expression, + STATE(2359), 1, + sym__type_query_call_expression, + STATE(3838), 1, + sym_import, + [107405] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2895), 1, + aux_sym_object_type_repeat1, + ACTIONS(3208), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5911), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107421] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2946), 1, aux_sym_object_type_repeat1, - ACTIONS(5930), 2, + ACTIONS(3238), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5928), 3, + ACTIONS(5941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107076] = 7, + [107437] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5756), 1, + sym_identifier, + STATE(596), 1, + sym_nested_identifier, + STATE(621), 1, + sym_string, + STATE(697), 1, + sym__module, + [107459] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5932), 1, - anon_sym_QMARK, - STATE(2657), 1, + ACTIONS(5943), 1, + sym_identifier, + STATE(2887), 1, sym_formal_parameters, - STATE(2967), 1, - sym__call_signature, - STATE(3774), 1, + STATE(3731), 1, sym_type_parameters, - [107098] = 4, + STATE(3862), 1, + sym__call_signature, + [107481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2184), 1, + STATE(2211), 1, sym_statement_block, - ACTIONS(5693), 4, + ACTIONS(5689), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107114] = 7, + [107497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - ACTIONS(5934), 1, - anon_sym_QMARK, - STATE(2657), 1, - sym_formal_parameters, - STATE(2914), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [107136] = 4, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(5921), 1, + anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_extends, + ACTIONS(3616), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [107515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(5517), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(3737), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [107152] = 2, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(5921), 1, + anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_extends, + ACTIONS(3620), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [107533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5936), 6, + ACTIONS(5947), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107164] = 2, + [107545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 6, + STATE(2991), 1, + aux_sym_object_type_repeat1, + ACTIONS(5951), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5949), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107176] = 4, + [107561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5794), 1, + anon_sym_DOT, + ACTIONS(5953), 1, anon_sym_LBRACE, - STATE(2185), 1, - sym_statement_block, - ACTIONS(5691), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(3446), 1, + sym_type_arguments, + ACTIONS(5955), 2, anon_sym_COMMA, - anon_sym_SEMI, - [107192] = 5, + anon_sym_LBRACE_PIPE, + [107581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5919), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5921), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5945), 1, anon_sym_extends, - ACTIONS(5940), 3, + ACTIONS(3772), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [107599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [107210] = 5, + anon_sym_SEMI, + anon_sym_COLON, + [107611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(5942), 3, - anon_sym_EQ, + ACTIONS(5959), 1, + anon_sym_QMARK, + ACTIONS(5957), 2, anon_sym_COMMA, - anon_sym_GT, - [107228] = 7, + anon_sym_RBRACK, + [107631] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5944), 1, + ACTIONS(5961), 1, anon_sym_QMARK, - STATE(2956), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3858), 1, + STATE(3188), 1, sym__call_signature, - STATE(3884), 1, + STATE(3927), 1, sym_type_parameters, - [107250] = 7, + [107653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3226), 3, anon_sym_LPAREN, - ACTIONS(5946), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3043), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [107272] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5803), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, - anon_sym_QMARK_COLON, - STATE(3097), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [107290] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, anon_sym_COLON, - ACTIONS(5803), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, - anon_sym_QMARK_COLON, - STATE(3096), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [107308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2203), 1, - sym_statement_block, - ACTIONS(5685), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107324] = 4, + anon_sym_QMARK, + [107669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2202), 1, + STATE(2213), 1, sym_statement_block, - ACTIONS(5683), 4, + ACTIONS(5718), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107340] = 7, + [107685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5948), 1, + ACTIONS(5963), 1, sym_identifier, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3747), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [107362] = 7, + STATE(3825), 1, + sym__call_signature, + [107707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - ACTIONS(5950), 1, + ACTIONS(5965), 1, anon_sym_QMARK, - STATE(2657), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3014), 1, + STATE(3017), 1, sym__call_signature, - STATE(3774), 1, + STATE(3673), 1, sym_type_parameters, - [107384] = 4, + [107729] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(5756), 1, + sym_identifier, + STATE(596), 1, + sym_nested_identifier, + STATE(621), 1, + sym_string, + STATE(658), 1, + sym__module, + [107751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2208), 1, + STATE(2197), 1, sym_statement_block, - ACTIONS(5685), 4, + ACTIONS(5689), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107400] = 7, + [107767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(5874), 1, - anon_sym_abstract, - ACTIONS(5952), 1, - anon_sym_export, - ACTIONS(5954), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [107422] = 4, + STATE(2992), 1, + aux_sym_object_type_repeat1, + ACTIONS(5969), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5967), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(1973), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [107795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2201), 1, + STATE(2220), 1, sym_statement_block, - ACTIONS(5683), 4, + ACTIONS(5716), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107438] = 7, + [107811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5956), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(2790), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [107460] = 7, + STATE(3019), 1, + aux_sym_object_type_repeat1, + ACTIONS(5973), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5971), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2209), 1, + sym_statement_block, + ACTIONS(5716), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107843] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - ACTIONS(5958), 1, + ACTIONS(5975), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(2795), 1, + STATE(2976), 1, sym__call_signature, - STATE(3849), 1, + STATE(3673), 1, sym_type_parameters, - [107482] = 4, + [107865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5895), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5897), 1, + anon_sym_QMARK_COLON, + STATE(3114), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [107883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2217), 1, + sym_statement_block, + ACTIONS(5754), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, + ACTIONS(1969), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5896), 1, anon_sym_PIPE, - ACTIONS(3767), 4, + anon_sym_extends, + [107911] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2928), 1, + aux_sym_object_type_repeat1, + ACTIONS(3251), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107927] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3007), 1, + aux_sym_object_type_repeat1, + ACTIONS(3256), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - [107498] = 7, + [107955] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(5960), 1, + ACTIONS(5981), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2801), 1, + STATE(2807), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [107520] = 4, + [107977] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_GT, + STATE(3584), 1, + aux_sym_implements_clause_repeat1, + [107999] = 4, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(3216), 2, + ACTIONS(3256), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5962), 3, + ACTIONS(5979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107536] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5964), 1, - sym_identifier, - STATE(2956), 1, - sym_formal_parameters, - STATE(3884), 1, - sym_type_parameters, - STATE(3896), 1, - sym__call_signature, - [107558] = 4, + [108015] = 4, ACTIONS(3), 1, sym_comment, - STATE(2920), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(3216), 2, + ACTIONS(3238), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5962), 3, + ACTIONS(5941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107574] = 7, + [108031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(5754), 1, - sym_identifier, - STATE(2744), 1, - sym_nested_identifier, - STATE(2771), 1, - sym_string, - STATE(3116), 1, - sym__module, - [107596] = 7, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2195), 1, + sym_statement_block, + ACTIONS(5684), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5966), 1, - sym_identifier, - STATE(2956), 1, - sym_formal_parameters, - STATE(3884), 1, - sym_type_parameters, - STATE(3896), 1, - sym__call_signature, - [107618] = 7, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2190), 1, + sym_statement_block, + ACTIONS(5704), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5968), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(2812), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [107640] = 7, + ACTIONS(1981), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [108075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_COLON, + ACTIONS(5895), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5897), 1, + anon_sym_QMARK_COLON, + STATE(3138), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [108093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5682), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [108105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2206), 1, + sym_statement_block, + ACTIONS(5726), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5970), 1, + ACTIONS(5987), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3277), 1, - sym__call_signature, - STATE(3849), 1, + STATE(3731), 1, sym_type_parameters, - [107662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(5972), 1, - sym_identifier, - ACTIONS(5974), 1, - anon_sym_LBRACK, - STATE(3641), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107680] = 5, + STATE(3763), 1, + sym__call_signature, + [108143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(5974), 1, - anon_sym_LBRACK, - ACTIONS(5976), 1, - sym_identifier, - STATE(3672), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107698] = 5, + ACTIONS(5989), 1, + anon_sym_default, + ACTIONS(5992), 1, + anon_sym_RBRACE, + ACTIONS(5994), 1, + anon_sym_case, + STATE(3000), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [108161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(5974), 1, + ACTIONS(1977), 6, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(5978), 1, - sym_identifier, - STATE(3362), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107716] = 7, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [108173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, + ACTIONS(5848), 1, anon_sym_import, - ACTIONS(5980), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2349), 1, + STATE(2359), 1, sym__type_query_call_expression, - STATE(2641), 1, - sym__type_query_subscript_expression, - STATE(2643), 1, + STATE(2651), 1, sym__type_query_member_expression, - STATE(3682), 1, + STATE(2655), 1, + sym__type_query_subscript_expression, + STATE(3714), 1, sym_import, - [107738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5982), 1, - anon_sym_default, - ACTIONS(5984), 1, - anon_sym_RBRACE, - ACTIONS(5986), 1, - anon_sym_case, - STATE(2924), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [107756] = 7, + [108195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - ACTIONS(5754), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5999), 1, sym_identifier, - STATE(2744), 1, - sym_nested_identifier, - STATE(2771), 1, - sym_string, - STATE(3242), 1, - sym__module, - [107778] = 5, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3862), 1, + sym__call_signature, + [108217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, + ACTIONS(5919), 1, anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_PIPE, - ACTIONS(5898), 1, - anon_sym_extends, - ACTIONS(3572), 3, + ACTIONS(3708), 5, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [107796] = 5, + anon_sym_PIPE, + anon_sym_extends, + [108231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, + ACTIONS(5919), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5921), 1, anon_sym_PIPE, - ACTIONS(5898), 1, + ACTIONS(5945), 1, anon_sym_extends, - ACTIONS(3555), 3, + ACTIONS(3700), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [107814] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5732), 1, - sym_identifier, - STATE(594), 1, - sym_nested_identifier, - STATE(617), 1, - sym_string, - STATE(663), 1, - sym__module, - [107836] = 7, + [108249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - ACTIONS(5988), 1, - sym_identifier, - STATE(2956), 1, + ACTIONS(6001), 1, + anon_sym_QMARK, + STATE(2713), 1, sym_formal_parameters, - STATE(3747), 1, + STATE(2925), 1, sym__call_signature, - STATE(3884), 1, + STATE(3673), 1, sym_type_parameters, - [107858] = 5, + [108271] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2928), 1, + aux_sym_object_type_repeat1, + ACTIONS(3230), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6003), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(3636), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [108301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2207), 1, + sym_statement_block, + ACTIONS(5782), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(5921), 1, + anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_extends, + ACTIONS(3434), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [108335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5803), 1, + ACTIONS(5895), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, + ACTIONS(5897), 1, anon_sym_QMARK_COLON, - STATE(3040), 3, + STATE(3215), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [107876] = 5, + [108353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(5803), 1, + ACTIONS(5895), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5805), 1, + ACTIONS(5897), 1, anon_sym_QMARK_COLON, - STATE(3036), 3, + STATE(3248), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [107894] = 7, + [108371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5990), 1, - sym_identifier, - STATE(2956), 1, + ACTIONS(6005), 1, + anon_sym_QMARK, + STATE(2887), 1, sym_formal_parameters, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3896), 1, + STATE(3732), 1, sym__call_signature, - [107916] = 2, + [108393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5992), 6, - sym__automatic_semicolon, + ACTIONS(2615), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107928] = 4, + ACTIONS(5909), 1, + anon_sym_LBRACK, + ACTIONS(6007), 1, + sym_identifier, + STATE(3561), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [108411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(5004), 2, - anon_sym_COMMA, + STATE(2928), 1, + aux_sym_object_type_repeat1, + ACTIONS(3249), 2, anon_sym_RBRACE, - ACTIONS(3206), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [107944] = 7, + anon_sym_PIPE_RBRACE, + ACTIONS(6009), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - ACTIONS(5994), 1, + ACTIONS(6011), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(2835), 1, + STATE(2984), 1, sym__call_signature, - STATE(3849), 1, + STATE(3673), 1, sym_type_parameters, - [107966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5894), 1, - anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_PIPE, - ACTIONS(5898), 1, - anon_sym_extends, - ACTIONS(3440), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [107984] = 7, + [108449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - ACTIONS(5996), 1, - anon_sym_QMARK, - STATE(2956), 1, - sym_formal_parameters, - STATE(3688), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [108006] = 7, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2208), 1, + sym_statement_block, + ACTIONS(5776), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(5998), 1, + ACTIONS(6013), 1, sym_identifier, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3747), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [108028] = 4, + STATE(3854), 1, + sym__call_signature, + [108487] = 4, ACTIONS(3), 1, sym_comment, - STATE(2916), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(3239), 2, + ACTIONS(3200), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6000), 3, + ACTIONS(6015), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108044] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(5732), 1, - sym_identifier, - STATE(594), 1, - sym_nested_identifier, - STATE(617), 1, - sym_string, - STATE(653), 1, - sym__module, - [108066] = 4, + [108503] = 4, ACTIONS(3), 1, sym_comment, - STATE(2883), 1, + STATE(2928), 1, aux_sym_object_type_repeat1, - ACTIONS(6004), 2, + ACTIONS(3206), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6002), 3, + ACTIONS(6017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108082] = 4, + [108519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_statement_block, - ACTIONS(5669), 4, + STATE(2986), 1, + aux_sym_object_type_repeat1, + ACTIONS(3200), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6015), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108098] = 5, + [108535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 1, + ACTIONS(6022), 1, anon_sym_BQUOTE, - ACTIONS(6011), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6006), 2, + ACTIONS(6019), 2, sym__template_chars, sym_escape_sequence, - STATE(3007), 2, + STATE(3022), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [108116] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(6014), 1, - anon_sym_QMARK, - STATE(2628), 1, - sym_formal_parameters, - STATE(3032), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [108138] = 4, + [108553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2198), 1, - sym_statement_block, - ACTIONS(5679), 4, + STATE(3015), 1, + aux_sym_object_type_repeat1, + ACTIONS(3206), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6017), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108154] = 7, + [108569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(6016), 1, + ACTIONS(6027), 1, sym_identifier, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3747), 1, + STATE(3731), 1, + sym_type_parameters, + STATE(3862), 1, sym__call_signature, - STATE(3884), 1, + [108591] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(6029), 1, + anon_sym_QMARK, + STATE(2645), 1, + sym_formal_parameters, + STATE(2853), 1, + sym__call_signature, + STATE(3927), 1, sym_type_parameters, - [108176] = 4, + [108613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2193), 1, - sym_statement_block, - ACTIONS(5673), 4, + STATE(3020), 1, + aux_sym_object_type_repeat1, + ACTIONS(6033), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6031), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108192] = 7, + [108629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6018), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - ACTIONS(6020), 1, + STATE(2214), 1, + sym_statement_block, + ACTIONS(5718), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - STATE(3565), 1, - aux_sym_implements_clause_repeat1, - [108214] = 5, + anon_sym_SEMI, + [108645] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6022), 1, - anon_sym_BQUOTE, - ACTIONS(5593), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2907), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [108232] = 4, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(6035), 1, + anon_sym_QMARK, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3880), 1, + sym__call_signature, + [108667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2197), 1, - sym_statement_block, - ACTIONS(5681), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3226), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [108248] = 7, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + [108681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(6024), 1, + ACTIONS(6037), 1, anon_sym_QMARK, - STATE(2628), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(2862), 1, + STATE(3686), 1, sym__call_signature, - STATE(3849), 1, + STATE(3731), 1, sym_type_parameters, - [108270] = 3, + [108703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, - anon_sym_AMP, - ACTIONS(3743), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [108284] = 5, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(6039), 1, + anon_sym_QMARK, + STATE(2713), 1, + sym_formal_parameters, + STATE(2981), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [108725] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5898), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(3731), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [108302] = 6, + ACTIONS(6041), 1, + anon_sym_COMMA, + ACTIONS(6043), 1, + anon_sym_GT, + STATE(3514), 1, + aux_sym_implements_clause_repeat1, + [108747] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6028), 1, - anon_sym_QMARK, - ACTIONS(6026), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108322] = 7, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(5905), 1, + anon_sym_abstract, + ACTIONS(6045), 1, + anon_sym_export, + ACTIONS(6047), 1, + anon_sym_class, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [108769] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - ACTIONS(6030), 1, + ACTIONS(6049), 1, anon_sym_QMARK, - STATE(2657), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3011), 1, + STATE(3705), 1, sym__call_signature, - STATE(3774), 1, + STATE(3731), 1, sym_type_parameters, - [108344] = 4, + [108791] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 1, + anon_sym_import, + ACTIONS(6051), 1, + sym_identifier, + STATE(2501), 1, + sym__type_query_member_expression, + STATE(2502), 1, + sym__type_query_subscript_expression, + STATE(2598), 1, + sym__type_query_call_expression, + STATE(3777), 1, + sym_import, + [108813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5832), 1, anon_sym_LBRACE, - STATE(2196), 1, + STATE(2188), 1, sym_statement_block, - ACTIONS(5679), 4, + ACTIONS(5782), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108360] = 4, + [108829] = 2, ACTIONS(3), 1, sym_comment, - STATE(2977), 1, - aux_sym_object_type_repeat1, - ACTIONS(6034), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6032), 3, + ACTIONS(6053), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [108376] = 4, + anon_sym_PIPE_RBRACE, + [108841] = 2, ACTIONS(3), 1, sym_comment, - STATE(3003), 1, - aux_sym_object_type_repeat1, - ACTIONS(3225), 2, + ACTIONS(6055), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5781), 3, + [108853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_LBRACE, + STATE(2196), 1, + sym_statement_block, + ACTIONS(5776), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108392] = 5, + [108869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5982), 1, - anon_sym_default, - ACTIONS(5986), 1, - anon_sym_case, - ACTIONS(6036), 1, - anon_sym_RBRACE, - STATE(2988), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [108410] = 6, + ACTIONS(5720), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [108881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(5798), 1, anon_sym_COLON, - ACTIONS(5768), 1, - anon_sym_EQ, - STATE(3369), 1, + ACTIONS(6057), 1, + anon_sym_EQ_GT, + STATE(3736), 3, sym_type_annotation, - STATE(3817), 1, - sym__initializer, - ACTIONS(6038), 2, + sym_asserts, + sym_type_predicate_annotation, + [108896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [108430] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(2175), 1, - sym_statement_block, - ACTIONS(5675), 4, + ACTIONS(6062), 1, + anon_sym_in, + ACTIONS(6064), 1, + anon_sym_of, + ACTIONS(6060), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [108446] = 6, + [108922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, - anon_sym_COLON, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4779), 1, + ACTIONS(6066), 1, + anon_sym_in, + ACTIONS(6068), 1, + anon_sym_of, + ACTIONS(6060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(6072), 1, + anon_sym_PIPE, + ACTIONS(6070), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108954] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3905), 1, + sym__call_signature, + [108973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6040), 1, anon_sym_RBRACE, - STATE(3593), 1, - aux_sym_object_pattern_repeat1, - [108465] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2239), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3069), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [109014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 5, + ACTIONS(2199), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108476] = 5, + [109025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(6074), 1, + anon_sym_LBRACE, + STATE(3445), 1, + sym_type_arguments, + ACTIONS(6076), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [109042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(6078), 1, + anon_sym_SEMI, + ACTIONS(6080), 1, + sym__automatic_semicolon, + ACTIONS(6082), 1, + sym__function_signature_automatic_semicolon, + STATE(3109), 1, + sym_statement_block, + [109061] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(6072), 1, + anon_sym_PIPE, + ACTIONS(6084), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, + ACTIONS(5488), 1, anon_sym_AMP, - ACTIONS(5477), 1, + ACTIONS(5492), 1, anon_sym_extends, - ACTIONS(6046), 1, + ACTIONS(6072), 1, anon_sym_PIPE, - ACTIONS(6044), 2, + ACTIONS(6086), 2, sym__automatic_semicolon, anon_sym_SEMI, - [108493] = 2, + [109095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3132), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [109114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(5905), 1, + anon_sym_abstract, + ACTIONS(6088), 1, + anon_sym_class, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [109133] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3874), 1, + sym__call_signature, + [109152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3872), 1, + sym__call_signature, + [109171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3372), 1, + anon_sym_LBRACE, + ACTIONS(6090), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108504] = 2, + ACTIONS(6092), 1, + sym__automatic_semicolon, + ACTIONS(6094), 1, + sym__function_signature_automatic_semicolon, + STATE(1812), 1, + sym_statement_block, + [109190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 5, + ACTIONS(6055), 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, - [108515] = 2, + [109201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 5, + ACTIONS(6096), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108526] = 2, + [109212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 5, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(6072), 1, + anon_sym_PIPE, + ACTIONS(6098), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108537] = 2, + [109229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 5, + ACTIONS(6100), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108548] = 6, + [109240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(5903), 1, + anon_sym_class, + ACTIONS(5905), 1, + anon_sym_abstract, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [109259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3085), 1, + STATE(3052), 1, sym__call_signature, - STATE(3849), 1, + STATE(3673), 1, sym_type_parameters, - [108567] = 2, + [109278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 5, + ACTIONS(2175), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108578] = 2, + [109289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6048), 5, + ACTIONS(5684), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108589] = 2, + [109300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 5, + ACTIONS(4639), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [108600] = 5, + [109311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6050), 1, - anon_sym_BQUOTE, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - sym__template_chars, - STATE(3062), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [108617] = 2, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(6102), 1, + anon_sym_SEMI, + ACTIONS(6104), 1, + sym__automatic_semicolon, + ACTIONS(6106), 1, + sym__function_signature_automatic_semicolon, + STATE(611), 1, + sym_statement_block, + [109330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [108628] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3913), 1, + sym__call_signature, + [109349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6056), 5, + ACTIONS(6108), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108639] = 2, + [109360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [108650] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3156), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [109379] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108661] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3762), 1, + sym__call_signature, + [109398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 5, + ACTIONS(5689), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108672] = 2, + [109409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6058), 5, + ACTIONS(6110), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108683] = 2, + [109420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2275), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3452), 1, + sym__initializer, + ACTIONS(6112), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108694] = 2, + [109435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 5, + ACTIONS(5689), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3595), 1, - sym__initializer, - ACTIONS(6060), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [108720] = 4, + [109446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 1, + ACTIONS(5798), 1, anon_sym_COLON, - ACTIONS(6062), 1, + ACTIONS(6114), 1, anon_sym_EQ_GT, - STATE(3737), 3, + STATE(3806), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [108735] = 4, + [109461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 1, + ACTIONS(5798), 1, anon_sym_COLON, - ACTIONS(6065), 1, + ACTIONS(6117), 1, anon_sym_EQ_GT, - STATE(3882), 3, + STATE(3736), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [108750] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5894), 1, - anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_PIPE, - ACTIONS(5898), 1, - anon_sym_extends, - ACTIONS(6068), 1, - anon_sym_as, - ACTIONS(6070), 1, - anon_sym_RBRACK, - [108769] = 4, + [109476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(6072), 1, - anon_sym_EQ_GT, - STATE(3737), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [108784] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym_formal_parameters, + STATE(3229), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [109495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 5, + ACTIONS(5684), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108795] = 2, + [109506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6075), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108806] = 6, + ACTIONS(750), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1271), 1, + anon_sym_LBRACE, + ACTIONS(5740), 1, + anon_sym_extends, + STATE(3285), 1, + sym_object_type, + STATE(3583), 1, + sym_extends_type_clause, + [109525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3251), 1, - sym__call_signature, - STATE(3849), 1, + STATE(3731), 1, sym_type_parameters, - [108825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5711), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6077), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108847] = 2, + STATE(3851), 1, + sym__call_signature, + [109544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 5, + ACTIONS(2127), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108858] = 6, + [109555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3676), 1, + STATE(2972), 1, sym__call_signature, - STATE(3884), 1, + STATE(3673), 1, sym_type_parameters, - [108877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3453), 1, - sym__initializer, - ACTIONS(6079), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [108892] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6081), 1, - anon_sym_BQUOTE, - ACTIONS(6083), 1, - sym__template_chars, - STATE(3200), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [108909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108920] = 5, + [109574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6083), 1, - sym__template_chars, - ACTIONS(6085), 1, - anon_sym_BQUOTE, - STATE(3200), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [108937] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym_formal_parameters, + STATE(3461), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [109593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 5, + ACTIONS(1569), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108948] = 2, + [109604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3481), 1, + sym__initializer, + ACTIONS(6120), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108959] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - ACTIONS(6087), 1, anon_sym_SEMI, - ACTIONS(6089), 1, - sym__automatic_semicolon, - ACTIONS(6091), 1, - sym__function_signature_automatic_semicolon, - STATE(1806), 1, - sym_statement_block, - [108978] = 2, + [109619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 5, + ACTIONS(1455), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108989] = 4, + [109630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - STATE(3476), 1, + STATE(3482), 1, sym__initializer, - ACTIONS(6093), 3, + ACTIONS(6122), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [109004] = 2, + [109645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 5, + ACTIONS(6124), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [109015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6097), 5, - sym__automatic_semicolon, + ACTIONS(3063), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109026] = 2, + anon_sym_COLON, + anon_sym_RBRACK, + [109658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109037] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3715), 1, + sym__call_signature, + STATE(3731), 1, + sym_type_parameters, + [109677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 5, - sym__automatic_semicolon, + ACTIONS(4665), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109048] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [109688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 1, + ACTIONS(5691), 1, anon_sym_EQ, - ACTIONS(6099), 1, + ACTIONS(6126), 1, anon_sym_COMMA, - ACTIONS(6101), 1, + ACTIONS(6128), 1, anon_sym_RBRACE, - STATE(3454), 1, + STATE(3531), 1, aux_sym_enum_body_repeat1, - STATE(3775), 1, + STATE(3782), 1, sym__initializer, - [109067] = 4, + [109707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3621), 1, - sym__initializer, - ACTIONS(6103), 3, + ACTIONS(2247), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109082] = 6, + anon_sym_PIPE_RBRACE, + [109718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3006), 1, + STATE(3059), 1, sym__call_signature, - STATE(3774), 1, + STATE(3673), 1, sym_type_parameters, - [109101] = 6, + [109737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3025), 1, - sym__call_signature, - STATE(3774), 1, + STATE(3731), 1, sym_type_parameters, - [109120] = 6, + STATE(3877), 1, + sym__call_signature, + [109756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3234), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [109139] = 2, + ACTIONS(1517), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 5, + ACTIONS(2123), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109150] = 6, + [109778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3541), 1, + sym__initializer, + ACTIONS(6130), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3745), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [109169] = 2, + STATE(3766), 1, + sym__call_signature, + [109812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [109823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6105), 5, + ACTIONS(2131), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109180] = 2, + [109834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [109845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 5, + ACTIONS(2131), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109191] = 6, + [109856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [109867] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(6132), 1, + sym_identifier, + STATE(3934), 2, + sym__module_export_name, + sym_string, + [109884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(5632), 1, anon_sym_LBRACE, - ACTIONS(6107), 1, + ACTIONS(6134), 1, anon_sym_SEMI, - ACTIONS(6109), 1, + ACTIONS(6136), 1, sym__automatic_semicolon, - ACTIONS(6111), 1, + ACTIONS(6138), 1, sym__function_signature_automatic_semicolon, - STATE(157), 1, + STATE(3151), 1, sym_statement_block, - [109210] = 2, + [109903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 5, + ACTIONS(4670), 1, sym__automatic_semicolon, + ACTIONS(1543), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109221] = 5, + [109916] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3009), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [109935] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_DQUOTE, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + ACTIONS(6140), 1, + sym_identifier, + STATE(3557), 2, + sym__module_export_name, + sym_string, + [109952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(6072), 1, + anon_sym_PIPE, + ACTIONS(6142), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, + ACTIONS(6144), 1, + anon_sym_BQUOTE, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6083), 1, + ACTIONS(6148), 1, sym__template_chars, - ACTIONS(6113), 1, - anon_sym_BQUOTE, - STATE(3200), 2, + STATE(3311), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [109238] = 2, + [109986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 5, + ACTIONS(6150), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109249] = 2, + [109997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109260] = 6, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3677), 1, + sym__call_signature, + STATE(3731), 1, + sym_type_parameters, + [110016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, - anon_sym_LBRACE, - ACTIONS(6115), 1, - anon_sym_SEMI, - ACTIONS(6117), 1, + ACTIONS(6053), 5, sym__automatic_semicolon, - ACTIONS(6119), 1, sym__function_signature_automatic_semicolon, - STATE(3129), 1, - sym_statement_block, - [109279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4637), 1, - sym__automatic_semicolon, - ACTIONS(1521), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109292] = 2, + [110027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(5921), 1, + anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_extends, + ACTIONS(6152), 1, + anon_sym_as, + ACTIONS(6154), 1, + anon_sym_RBRACK, + [110046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 5, + ACTIONS(4645), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [109303] = 2, + [110057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1367), 5, - sym__automatic_semicolon, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym_formal_parameters, + STATE(2803), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [110076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(5905), 1, + anon_sym_abstract, + ACTIONS(6047), 1, + anon_sym_class, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [110095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109314] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [110106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(6046), 1, - anon_sym_PIPE, - ACTIONS(6121), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109331] = 6, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [110117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(209), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_extends, - STATE(622), 1, - sym_object_type, - STATE(3602), 1, - sym_extends_type_clause, - [109350] = 5, + ACTIONS(5798), 1, + anon_sym_COLON, + ACTIONS(6156), 1, + anon_sym_EQ_GT, + STATE(3806), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [110132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6123), 1, - anon_sym_BQUOTE, - ACTIONS(6125), 1, - sym__template_chars, - STATE(3181), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [109367] = 5, + ACTIONS(4554), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [110143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(6127), 1, - sym_identifier, - STATE(3710), 2, - sym__module_export_name, - sym_string, - [109384] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(2993), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [110162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 5, + ACTIONS(2135), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109395] = 2, + [110173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, + ACTIONS(2139), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109406] = 2, + [110184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 5, + ACTIONS(2143), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109417] = 2, + [110195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6131), 5, + ACTIONS(2147), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109428] = 2, + [110206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 5, + ACTIONS(2151), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109439] = 6, + [110217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3268), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [109458] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3706), 1, + STATE(2930), 1, sym__call_signature, - STATE(3884), 1, + STATE(3673), 1, sym_type_parameters, - [109477] = 6, + [110236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_SEMI, - ACTIONS(6109), 1, + ACTIONS(6104), 1, sym__automatic_semicolon, - ACTIONS(6111), 1, + ACTIONS(6106), 1, sym__function_signature_automatic_semicolon, - STATE(601), 1, + STATE(1821), 1, sym_statement_block, - [109496] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(6046), 1, - anon_sym_PIPE, - ACTIONS(6133), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109513] = 6, + [110255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3699), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [109532] = 6, + STATE(3737), 1, + sym__call_signature, + [110274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3697), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [109551] = 2, + ACTIONS(5798), 1, + anon_sym_COLON, + ACTIONS(6159), 1, + anon_sym_EQ_GT, + STATE(3736), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [110289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(6162), 1, + sym_identifier, + STATE(4224), 2, + sym__module_export_name, + sym_string, + [110306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, + ACTIONS(2195), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109562] = 6, + [110317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3657), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [109581] = 2, + ACTIONS(4470), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [110328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 5, + ACTIONS(6164), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109592] = 2, + [110339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6135), 5, + ACTIONS(2359), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(6137), 1, - anon_sym_EQ_GT, - STATE(3882), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [109618] = 2, + [110350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 5, + ACTIONS(2379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109629] = 6, + [110361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(209), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1222), 1, + anon_sym_LBRACE, + ACTIONS(5740), 1, + anon_sym_extends, + STATE(664), 1, + sym_object_type, + STATE(3477), 1, + sym_extends_type_clause, + [110380] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3035), 1, + STATE(3108), 1, sym__call_signature, - STATE(3849), 1, + STATE(3673), 1, sym_type_parameters, - [109648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109659] = 6, + [110399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3297), 1, - sym__call_signature, - STATE(3774), 1, + STATE(3731), 1, sym_type_parameters, - [109678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109689] = 6, + STATE(3893), 1, + sym__call_signature, + [110418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(2837), 1, - sym__call_signature, - STATE(3849), 1, + STATE(3731), 1, sym_type_parameters, - [109708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2239), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109719] = 2, + STATE(3901), 1, + sym__call_signature, + [110437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 5, + ACTIONS(2379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109730] = 2, + [110448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 5, + ACTIONS(2383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109741] = 2, + [110459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 5, + ACTIONS(2387), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109752] = 6, + [110470] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(6142), 1, + ACTIONS(6166), 1, anon_sym_class, - ACTIONS(6144), 1, + ACTIONS(6168), 1, anon_sym_abstract, - STATE(1120), 1, + STATE(1134), 1, aux_sym_export_statement_repeat1, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - [109771] = 6, + [110489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6144), 1, - anon_sym_abstract, - ACTIONS(6146), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [109790] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3676), 1, + sym__call_signature, + STATE(3731), 1, + sym_type_parameters, + [110508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 5, + ACTIONS(3226), 1, + anon_sym_COLON, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4762), 1, + anon_sym_COMMA, + ACTIONS(6170), 1, + anon_sym_RBRACE, + STATE(3658), 1, + aux_sym_object_pattern_repeat1, + [110527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, sym__automatic_semicolon, + ACTIONS(1497), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109801] = 2, + [110540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 5, + ACTIONS(4678), 1, sym__automatic_semicolon, + ACTIONS(1373), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109812] = 2, + [110553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2151), 5, + ACTIONS(2379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109823] = 2, + [110564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [109834] = 6, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6148), 1, + sym__template_chars, + ACTIONS(6172), 1, + anon_sym_BQUOTE, + STATE(3311), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [110581] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3683), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [109853] = 6, + STATE(3906), 1, + sym__call_signature, + [110600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(6090), 1, + anon_sym_SEMI, + ACTIONS(6092), 1, + sym__automatic_semicolon, + ACTIONS(6094), 1, + sym__function_signature_automatic_semicolon, + STATE(612), 1, + sym_statement_block, + [110619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3681), 1, + STATE(2886), 1, sym__call_signature, - STATE(3884), 1, + STATE(3927), 1, sym_type_parameters, - [109872] = 2, + [110638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 5, + ACTIONS(1449), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109883] = 3, + [110649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, - sym__automatic_semicolon, - ACTIONS(1391), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109896] = 3, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3772), 1, + sym__call_signature, + [110668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, + ACTIONS(2379), 5, sym__automatic_semicolon, - ACTIONS(1453), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109909] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3267), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [109928] = 2, + [110679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 5, + ACTIONS(2379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109939] = 2, + [110690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2379), 5, @@ -196983,485 +198024,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109950] = 6, + [110701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3831), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [109969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6148), 1, - anon_sym_BQUOTE, - ACTIONS(6150), 1, - sym__template_chars, - STATE(3083), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [109986] = 6, + STATE(3921), 1, + sym__call_signature, + [110720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1279), 1, + ACTIONS(6174), 5, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5742), 1, + anon_sym_LPAREN, anon_sym_extends, - STATE(3132), 1, - sym_object_type, - STATE(3440), 1, - sym_extends_type_clause, - [110005] = 2, + anon_sym_implements, + [110731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 5, + ACTIONS(4321), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [110016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2255), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110027] = 2, + [110742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 5, + ACTIONS(4331), 5, anon_sym_EQ, - anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - [110038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2107), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110049] = 2, + [110753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 5, + ACTIONS(2303), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110060] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [110071] = 2, + [110764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3226), 1, anon_sym_COLON, - anon_sym_QMARK, - [110082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 5, + ACTIONS(4451), 1, anon_sym_EQ, + ACTIONS(4762), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [110093] = 2, + ACTIONS(6176), 1, + anon_sym_RBRACE, + STATE(3651), 1, + aux_sym_object_pattern_repeat1, + [110783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 5, + ACTIONS(1553), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110104] = 6, + [110794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - ACTIONS(6107), 1, - anon_sym_SEMI, - ACTIONS(6109), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3773), 1, + sym__call_signature, + [110813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6178), 1, + anon_sym_BQUOTE, + ACTIONS(6180), 1, + sym__template_chars, + STATE(3154), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [110830] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(6072), 1, + anon_sym_PIPE, + ACTIONS(6182), 2, sym__automatic_semicolon, - ACTIONS(6111), 1, - sym__function_signature_automatic_semicolon, - STATE(1871), 1, - sym_statement_block, - [110123] = 2, + anon_sym_SEMI, + [110847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 5, + ACTIONS(5718), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110134] = 6, + [110858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2813), 1, + STATE(3275), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [110153] = 4, + [110877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5281), 1, anon_sym_EQ, - STATE(3578), 1, + STATE(3522), 1, sym__initializer, - ACTIONS(6152), 3, + ACTIONS(6184), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110168] = 5, + [110892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(6046), 1, - anon_sym_PIPE, - ACTIONS(6154), 2, + ACTIONS(4684), 1, sym__automatic_semicolon, + ACTIONS(1383), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110185] = 2, + anon_sym_PIPE_RBRACE, + [110905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym_formal_parameters, + STATE(2832), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [110924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 5, + ACTIONS(2291), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110196] = 2, + [110935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3612), 1, + sym__initializer, + ACTIONS(6186), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110207] = 5, + [110950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6156), 1, - anon_sym_BQUOTE, - ACTIONS(6158), 1, - sym__template_chars, - STATE(3060), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [110224] = 3, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym_formal_parameters, + STATE(2824), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [110969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 1, + ACTIONS(2287), 5, sym__automatic_semicolon, - ACTIONS(1563), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110237] = 6, + [110980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3854), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [110256] = 6, + ACTIONS(5798), 1, + anon_sym_COLON, + ACTIONS(6188), 1, + anon_sym_EQ_GT, + STATE(3736), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [110995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2802), 1, + STATE(2817), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [110275] = 6, + [111014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3596), 1, + sym__initializer, + ACTIONS(6191), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [111029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2950), 1, + STATE(2815), 1, sym__call_signature, - STATE(3774), 1, + STATE(3927), 1, sym_type_parameters, - [110294] = 2, + [111048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3626), 1, + sym__initializer, + ACTIONS(6193), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [111063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 5, + ACTIONS(6195), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110305] = 6, + [111074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2628), 1, - sym_formal_parameters, - STATE(2796), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [110324] = 6, + ACTIONS(5716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3862), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [110343] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2628), 1, - sym_formal_parameters, - STATE(2791), 1, + STATE(3788), 1, sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [110362] = 2, + [111104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 5, + ACTIONS(5718), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110373] = 6, + [111115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(2788), 1, + STATE(3292), 1, sym__call_signature, - STATE(3849), 1, + STATE(3673), 1, sym_type_parameters, - [110392] = 2, + [111134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 5, + ACTIONS(6197), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110403] = 4, + [111145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3427), 1, - sym__initializer, - ACTIONS(6160), 3, + ACTIONS(6199), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110418] = 2, + anon_sym_PIPE_RBRACE, + [111156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 5, + ACTIONS(2207), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110429] = 2, + [111167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 5, + ACTIONS(5716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110440] = 2, + [111178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 5, + ACTIONS(6201), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_COLON, - STATE(3782), 1, - sym_type_annotation, - ACTIONS(3037), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [110466] = 2, + [111189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 5, + ACTIONS(2319), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110477] = 4, + [111200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3435), 1, - sym__initializer, - ACTIONS(6164), 3, + ACTIONS(5947), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [110492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(6166), 1, - anon_sym_EQ_GT, - STATE(3737), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [110507] = 2, + [111211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 5, + ACTIONS(2415), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3081), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [110537] = 2, + [111222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 5, + ACTIONS(2275), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110548] = 6, + [111233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3009), 1, + STATE(3680), 1, sym__call_signature, - STATE(3774), 1, + STATE(3731), 1, sym_type_parameters, - [110567] = 3, + [111252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6169), 1, + ACTIONS(6203), 5, anon_sym_EQ, - ACTIONS(3043), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [110580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6171), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110591] = 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [111263] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2099), 5, @@ -197470,608 +198454,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110602] = 2, + [111274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 5, + ACTIONS(2367), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110613] = 5, + [111285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6083), 1, - sym__template_chars, - ACTIONS(6173), 1, - anon_sym_BQUOTE, - STATE(3200), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [110630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6175), 5, + ACTIONS(2263), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110641] = 2, + [111296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 5, + ACTIONS(2271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110652] = 6, + [111307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3748), 1, + STATE(2939), 1, sym__call_signature, - STATE(3884), 1, + STATE(3673), 1, sym_type_parameters, - [110671] = 2, + [111326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 5, + ACTIONS(2223), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110682] = 6, + [111337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2628), 1, - sym_formal_parameters, - STATE(3112), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [110701] = 2, + ACTIONS(1236), 1, + anon_sym_DQUOTE, + ACTIONS(1238), 1, + anon_sym_SQUOTE, + ACTIONS(6205), 1, + sym_identifier, + STATE(3774), 2, + sym__module_export_name, + sym_string, + [111354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 5, + ACTIONS(2155), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110712] = 2, + [111365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6177), 5, + ACTIONS(2223), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3547), 1, - sym__initializer, - ACTIONS(6179), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [110738] = 4, + [111376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3546), 1, - sym__initializer, - ACTIONS(6181), 3, + ACTIONS(2223), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110753] = 2, + anon_sym_PIPE_RBRACE, + [111387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6183), 5, + ACTIONS(2155), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110764] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(5874), 1, - anon_sym_abstract, - ACTIONS(6185), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [110783] = 2, + [111398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6187), 5, + ACTIONS(2155), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110794] = 4, + [111409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3572), 1, - sym__initializer, - ACTIONS(6189), 3, + ACTIONS(6207), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(6191), 1, - anon_sym_EQ_GT, - STATE(3882), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [110824] = 6, + anon_sym_PIPE_RBRACE, + [111420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3808), 1, + STATE(3639), 1, sym__call_signature, - STATE(3884), 1, + STATE(3927), 1, sym_type_parameters, - [110843] = 5, + [111439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6194), 2, + ACTIONS(1477), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [110860] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3594), 1, + sym__initializer, + ACTIONS(6209), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [111465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3454), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [110875] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2628), 1, - sym_formal_parameters, - STATE(3543), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [110894] = 5, + ACTIONS(2363), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6198), 1, - anon_sym_BQUOTE, - ACTIONS(6200), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6203), 1, - sym__template_chars, - STATE(3200), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [110911] = 5, + ACTIONS(2375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6206), 2, + ACTIONS(5754), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [110928] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 5, + ACTIONS(1477), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110939] = 2, + [111520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 5, + ACTIONS(2355), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110950] = 2, + [111531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 5, + ACTIONS(5704), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110961] = 2, + [111542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 5, + ACTIONS(1397), 1, + anon_sym_DOT, + ACTIONS(3688), 2, + anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(3690), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [111557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6211), 1, + anon_sym_BQUOTE, + ACTIONS(6213), 1, + sym__template_chars, + STATE(3113), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(3688), 2, + anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(3690), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [111589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110972] = 6, + [111600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6148), 1, + sym__template_chars, + ACTIONS(6215), 1, + anon_sym_BQUOTE, + STATE(3311), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3510), 1, + STATE(3173), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [110991] = 5, + [111636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(6046), 1, - anon_sym_PIPE, - ACTIONS(6208), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [111008] = 5, + ACTIONS(5691), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_COMMA, + ACTIONS(6219), 1, + anon_sym_RBRACE, + STATE(3535), 1, + aux_sym_enum_body_repeat1, + STATE(3782), 1, + sym__initializer, + [111655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(6210), 1, - anon_sym_LBRACE, - STATE(3524), 1, - sym_type_arguments, - ACTIONS(6212), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [111025] = 4, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6148), 1, + sym__template_chars, + ACTIONS(6221), 1, + anon_sym_BQUOTE, + STATE(3311), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(4313), 5, anon_sym_EQ, - STATE(3515), 1, - sym__initializer, - ACTIONS(6214), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111040] = 2, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [111683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 5, + ACTIONS(5776), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111051] = 4, + [111694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(6216), 1, - anon_sym_EQ_GT, - STATE(3737), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [111066] = 6, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3793), 1, + sym__call_signature, + [111713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(2898), 1, + STATE(3225), 1, sym__call_signature, - STATE(3774), 1, + STATE(3927), 1, sym_type_parameters, - [111085] = 2, + [111732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 5, - anon_sym_EQ, + ACTIONS(1353), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [111096] = 2, + ACTIONS(6090), 1, + anon_sym_SEMI, + ACTIONS(6092), 1, + sym__automatic_semicolon, + ACTIONS(6094), 1, + sym__function_signature_automatic_semicolon, + STATE(156), 1, + sym_statement_block, + [111751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 5, + ACTIONS(4537), 5, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [111107] = 2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [111762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 5, + ACTIONS(6223), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111118] = 2, + [111773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(5776), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111129] = 4, + [111784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3530), 1, - sym__initializer, - ACTIONS(6223), 3, + ACTIONS(6225), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_COLON, - ACTIONS(6225), 1, - anon_sym_EQ_GT, - STATE(3882), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [111159] = 2, + anon_sym_PIPE_RBRACE, + [111795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(6227), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111170] = 4, + [111806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 1, - anon_sym_DOT, - ACTIONS(3722), 2, + ACTIONS(6229), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_LT, - ACTIONS(3724), 2, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [111817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [111185] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(2966), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [111204] = 6, + ACTIONS(5798), 1, + anon_sym_COLON, + ACTIONS(6231), 1, + anon_sym_EQ_GT, + STATE(3806), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [111843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3763), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [111223] = 2, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6234), 1, + anon_sym_BQUOTE, + ACTIONS(6236), 1, + sym__template_chars, + STATE(3233), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(6238), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111234] = 4, + [111871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - STATE(3554), 1, - sym__initializer, - ACTIONS(6228), 3, + ACTIONS(6240), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111249] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5601), 1, - anon_sym_LBRACE, - ACTIONS(6230), 1, - anon_sym_SEMI, - ACTIONS(6232), 1, - sym__automatic_semicolon, - ACTIONS(6234), 1, - sym__function_signature_automatic_semicolon, - STATE(3087), 1, - sym_statement_block, - [111268] = 2, + anon_sym_PIPE_RBRACE, + [111882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6236), 5, + ACTIONS(2411), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111279] = 2, + [111893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 5, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(2994), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [111912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111290] = 2, + [111923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3468), 1, + sym__initializer, + ACTIONS(6242), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111301] = 2, + [111938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 5, + ACTIONS(2331), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111312] = 5, + [111949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6240), 1, + ACTIONS(6244), 1, anon_sym_BQUOTE, - ACTIONS(6242), 1, + ACTIONS(6246), 1, sym__template_chars, - STATE(3256), 2, + STATE(3283), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [111329] = 6, + [111966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3762), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [111348] = 6, + ACTIONS(2107), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [111977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3842), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [111367] = 2, + ACTIONS(4616), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [111988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 5, + ACTIONS(2191), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111378] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 1, - anon_sym_LBRACE, - ACTIONS(6087), 1, - anon_sym_SEMI, - ACTIONS(6089), 1, - sym__automatic_semicolon, - ACTIONS(6091), 1, - sym__function_signature_automatic_semicolon, - STATE(132), 1, - sym_statement_block, - [111397] = 4, + [111999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 1, - anon_sym_in, - ACTIONS(6248), 1, - anon_sym_of, - ACTIONS(6244), 3, + ACTIONS(6248), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111412] = 2, + anon_sym_PIPE_RBRACE, + [112010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6250), 5, @@ -198080,10612 +199027,10606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111423] = 2, + [112021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 5, + ACTIONS(2339), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111434] = 2, + [112032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6252), 1, + anon_sym_BQUOTE, + ACTIONS(6254), 1, + sym__template_chars, + STATE(3230), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 5, + ACTIONS(6256), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111445] = 2, + [112060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 5, + ACTIONS(5726), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111456] = 2, + [112071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 5, + ACTIONS(6258), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111467] = 6, + [112082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3868), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [111486] = 2, + ACTIONS(1533), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 5, + ACTIONS(5752), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111497] = 2, + [112104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 5, + ACTIONS(2335), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111508] = 2, + [112115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 5, + ACTIONS(6260), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111519] = 6, + [112126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3101), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [111538] = 6, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3606), 1, + sym__initializer, + ACTIONS(6262), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3880), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [111557] = 2, + ACTIONS(3372), 1, + anon_sym_LBRACE, + ACTIONS(6078), 1, + anon_sym_SEMI, + ACTIONS(6080), 1, + sym__automatic_semicolon, + ACTIONS(6082), 1, + sym__function_signature_automatic_semicolon, + STATE(1933), 1, + sym_statement_block, + [112160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 5, + ACTIONS(5712), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111568] = 2, + [112171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 5, + ACTIONS(5714), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111579] = 6, + [112182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(2628), 1, + STATE(2645), 1, sym_formal_parameters, - STATE(3187), 1, + STATE(3245), 1, sym__call_signature, - STATE(3849), 1, + STATE(3927), 1, sym_type_parameters, - [111598] = 2, + [112201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 5, + ACTIONS(5712), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111609] = 2, + [112212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 5, + ACTIONS(2371), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111620] = 2, + [112223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_COLON, + STATE(3870), 1, + sym_type_annotation, + ACTIONS(3051), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [111631] = 6, + anon_sym_RBRACK, + [112238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3884), 1, - sym_type_parameters, - STATE(3889), 1, - sym__call_signature, - [111650] = 2, + ACTIONS(5798), 1, + anon_sym_COLON, + ACTIONS(6264), 1, + anon_sym_EQ_GT, + STATE(3806), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [112253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(2211), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111661] = 2, + [112264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 5, + ACTIONS(5891), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111672] = 5, + [112275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6083), 1, - sym__template_chars, - ACTIONS(6258), 1, - anon_sym_BQUOTE, - STATE(3200), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [111689] = 6, + ACTIONS(2219), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, - anon_sym_COLON, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4779), 1, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6267), 2, anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_RBRACE, - STATE(3610), 1, - aux_sym_object_pattern_repeat1, - [111708] = 6, + anon_sym_RBRACK, + [112303] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3086), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [111727] = 2, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6148), 1, + sym__template_chars, + ACTIONS(6269), 1, + anon_sym_BQUOTE, + STATE(3311), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 5, + ACTIONS(6271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111738] = 2, + [112331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(2231), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111749] = 2, + [112342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(1407), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111760] = 6, + [112353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 1, - anon_sym_EQ, - ACTIONS(6262), 1, + ACTIONS(5782), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6264), 1, anon_sym_RBRACE, - STATE(3527), 1, - aux_sym_enum_body_repeat1, - STATE(3775), 1, - sym__initializer, - [111779] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(2255), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111790] = 5, + [112375] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(6266), 1, - sym_identifier, - STATE(3826), 2, - sym__module_export_name, - sym_string, - [111807] = 6, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2887), 1, + sym_formal_parameters, + STATE(3698), 1, + sym__call_signature, + STATE(3731), 1, + sym_type_parameters, + [112394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3828), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [111826] = 2, + STATE(3885), 1, + sym__call_signature, + [112413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5992), 5, + ACTIONS(5706), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111837] = 6, + anon_sym_PIPE_RBRACE, + [112424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(1353), 1, anon_sym_LBRACE, - ACTIONS(6230), 1, + ACTIONS(6102), 1, anon_sym_SEMI, - ACTIONS(6232), 1, + ACTIONS(6104), 1, sym__automatic_semicolon, - ACTIONS(6234), 1, + ACTIONS(6106), 1, sym__function_signature_automatic_semicolon, - STATE(1901), 1, + STATE(162), 1, sym_statement_block, - [111856] = 6, + [112443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, - anon_sym_LBRACE, - ACTIONS(6087), 1, - anon_sym_SEMI, - ACTIONS(6089), 1, - sym__automatic_semicolon, - ACTIONS(6091), 1, - sym__function_signature_automatic_semicolon, - STATE(603), 1, - sym_statement_block, - [111875] = 6, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3271), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [112462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3908), 1, + STATE(3826), 1, sym__call_signature, - [111894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_DQUOTE, - ACTIONS(1917), 1, - anon_sym_SQUOTE, - ACTIONS(6268), 1, - sym_identifier, - STATE(3449), 2, - sym__module_export_name, - sym_string, - [111911] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(6046), 1, - anon_sym_PIPE, - ACTIONS(6270), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [111928] = 6, + [112481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5282), 1, + ACTIONS(5305), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2713), 1, sym_formal_parameters, - STATE(3065), 1, + STATE(3238), 1, sym__call_signature, - STATE(3774), 1, + STATE(3673), 1, sym_type_parameters, - [111947] = 2, + [112500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 5, + ACTIONS(2227), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111958] = 2, + [112511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3515), 1, + sym__initializer, + ACTIONS(6273), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111969] = 6, + [112526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(5874), 1, - anon_sym_abstract, - ACTIONS(5954), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [111988] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - anon_sym_DQUOTE, - ACTIONS(1238), 1, - anon_sym_SQUOTE, - ACTIONS(6272), 1, - sym_identifier, - STATE(3937), 2, - sym__module_export_name, - sym_string, - [112005] = 2, + ACTIONS(3372), 1, + anon_sym_LBRACE, + ACTIONS(6134), 1, + anon_sym_SEMI, + ACTIONS(6136), 1, + sym__automatic_semicolon, + ACTIONS(6138), 1, + sym__function_signature_automatic_semicolon, + STATE(1951), 1, + sym_statement_block, + [112545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 5, + ACTIONS(1507), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112016] = 2, + [112556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 5, + ACTIONS(6275), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2628), 1, - sym_formal_parameters, - STATE(3046), 1, - sym__call_signature, - STATE(3849), 1, - sym_type_parameters, - [112046] = 6, + [112567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3844), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [112065] = 2, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_GT, + [112584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 5, + ACTIONS(5754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112076] = 6, + [112595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3835), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [112095] = 2, + ACTIONS(1487), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5936), 5, + ACTIONS(5750), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [112106] = 6, + [112617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(2956), 1, - sym_formal_parameters, - STATE(3758), 1, - sym__call_signature, - STATE(3884), 1, - sym_type_parameters, - [112125] = 2, + ACTIONS(2307), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2331), 5, + ACTIONS(6279), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112136] = 6, + [112639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2956), 1, + STATE(2887), 1, sym_formal_parameters, - STATE(3784), 1, - sym__call_signature, - STATE(3884), 1, + STATE(3731), 1, sym_type_parameters, - [112155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4226), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [112166] = 6, + STATE(3882), 1, + sym__call_signature, + [112658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3146), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [112185] = 6, + ACTIONS(2267), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5282), 1, - anon_sym_LPAREN, - STATE(2657), 1, - sym_formal_parameters, - STATE(3225), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_parameters, - [112204] = 6, + ACTIONS(2299), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112680] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(5872), 1, - anon_sym_class, - ACTIONS(5874), 1, + ACTIONS(6168), 1, anon_sym_abstract, - STATE(1120), 1, + ACTIONS(6281), 1, + anon_sym_class, + STATE(1134), 1, aux_sym_export_statement_repeat1, - STATE(1155), 1, + STATE(1163), 1, sym_decorator, - [112223] = 2, + [112699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 5, + ACTIONS(6283), 1, + anon_sym_BQUOTE, + ACTIONS(6285), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6288), 1, + sym__template_chars, + STATE(3311), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [112234] = 4, + [112727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_in, - ACTIONS(6276), 1, - anon_sym_of, - ACTIONS(6244), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [112249] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym_formal_parameters, + STATE(3081), 1, + sym__call_signature, + STATE(3927), 1, + sym_type_parameters, + [112746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5251), 1, + anon_sym_LBRACK, + ACTIONS(6291), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112260] = 2, + ACTIONS(3606), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [112761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 5, + ACTIONS(5281), 1, + anon_sym_EQ, + STATE(3517), 1, + sym__initializer, + ACTIONS(6293), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112271] = 2, + [112776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [112282] = 2, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2713), 1, + sym_formal_parameters, + STATE(3298), 1, + sym__call_signature, + STATE(3673), 1, + sym_type_parameters, + [112795] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3908), 1, + sym_type_parameters, + STATE(3989), 1, + sym_formal_parameters, + [112811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 5, + ACTIONS(3226), 1, + anon_sym_COLON, + ACTIONS(4451), 1, anon_sym_EQ, + ACTIONS(6295), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [112293] = 6, + anon_sym_RBRACE, + [112825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - ACTIONS(6115), 1, - anon_sym_SEMI, - ACTIONS(6117), 1, - sym__automatic_semicolon, - ACTIONS(6119), 1, - sym__function_signature_automatic_semicolon, - STATE(1882), 1, - sym_statement_block, - [112312] = 2, + ACTIONS(5691), 1, + anon_sym_EQ, + STATE(3782), 1, + sym__initializer, + ACTIONS(6297), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [112323] = 2, + ACTIONS(6291), 1, + anon_sym_RBRACE, + ACTIONS(3606), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [112851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [112334] = 2, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6299), 1, + anon_sym_RBRACK, + [112867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 5, - anon_sym_EQ, + ACTIONS(6301), 1, + anon_sym_LBRACE, + ACTIONS(6303), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [112345] = 4, - ACTIONS(6278), 1, - anon_sym_DQUOTE, - ACTIONS(6282), 1, - sym_comment, - STATE(3378), 1, - aux_sym_string_repeat1, - ACTIONS(6280), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112359] = 5, + ACTIONS(6306), 1, + anon_sym_LBRACE_PIPE, + STATE(3322), 1, + aux_sym_extends_type_clause_repeat1, + [112883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6284), 1, - anon_sym_QMARK, - [112375] = 4, + ACTIONS(6308), 1, + anon_sym_COLON, + [112899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(6310), 1, anon_sym_from, - STATE(3742), 1, + STATE(3846), 1, sym__from_clause, - ACTIONS(4119), 2, + ACTIONS(6312), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112389] = 4, + [112913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(3806), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(1940), 2, - sym_template_string, - sym_arguments, - [112403] = 5, + STATE(3724), 1, + sym_type_parameters, + STATE(4080), 1, + sym_formal_parameters, + [112929] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6314), 1, + anon_sym_class, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [112945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3692), 1, + STATE(3856), 1, sym_type_parameters, - STATE(4065), 1, + STATE(4183), 1, sym_formal_parameters, - [112419] = 5, - ACTIONS(6282), 1, + [112961] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6288), 1, - sym__glimmer_template_content, - ACTIONS(6290), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1942), 1, - sym_glimmer_closing_tag, - STATE(3448), 1, - aux_sym_glimmer_template_repeat1, - [112435] = 5, + ACTIONS(6316), 1, + anon_sym_EQ, + STATE(3749), 1, + sym__initializer, + ACTIONS(5528), 2, + anon_sym_in, + anon_sym_of, + [112975] = 4, + ACTIONS(6318), 1, + anon_sym_DQUOTE, + ACTIONS(6322), 1, + sym_comment, + STATE(3394), 1, + aux_sym_string_repeat1, + ACTIONS(6320), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [112989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(3858), 1, sym_type_parameters, - STATE(3956), 1, + STATE(4259), 1, sym_formal_parameters, - [112451] = 4, + [113005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3878), 1, - sym__from_clause, - ACTIONS(3935), 2, + ACTIONS(5137), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [112465] = 4, - ACTIONS(6282), 1, + [113015] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(5077), 1, + anon_sym_EQ_GT, + ACTIONS(3226), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + [113029] = 4, + ACTIONS(6318), 1, anon_sym_SQUOTE, - STATE(3338), 1, + ACTIONS(6322), 1, + sym_comment, + STATE(3396), 1, aux_sym_string_repeat2, - ACTIONS(6294), 2, + ACTIONS(6324), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [112479] = 5, + [113043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6296), 1, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(6326), 1, + anon_sym_EQ_GT, + ACTIONS(3226), 2, + anon_sym_LPAREN, anon_sym_QMARK, - [112495] = 5, + [113057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6298), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [112511] = 5, + ACTIONS(6330), 1, + anon_sym_COMMA, + STATE(3335), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6328), 2, + anon_sym_LBRACE, + anon_sym_implements, + [113071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3900), 1, + sym_type_parameters, + STATE(3994), 1, + sym_formal_parameters, + [113087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(4110), 1, anon_sym_COMMA, - ACTIONS(5916), 1, + STATE(3335), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6333), 2, anon_sym_LBRACE, - ACTIONS(5918), 1, - anon_sym_LBRACE_PIPE, - STATE(3376), 1, - aux_sym_extends_type_clause_repeat1, - [112527] = 5, + anon_sym_implements, + [113101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6300), 1, - anon_sym_RPAREN, - [112543] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_DQUOTE, - STATE(3346), 1, - aux_sym_string_repeat1, - ACTIONS(6302), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112557] = 4, + ACTIONS(6310), 1, + anon_sym_from, + STATE(3804), 1, + sym__from_clause, + ACTIONS(6335), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 1, - anon_sym_EQ, - STATE(3775), 1, - sym__initializer, - ACTIONS(6304), 2, + ACTIONS(6337), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [112571] = 4, + STATE(3393), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6339), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3896), 1, + sym_type_parameters, + STATE(3986), 1, + sym_formal_parameters, + [113145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6337), 1, anon_sym_COMMA, - STATE(3372), 1, + STATE(3390), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6308), 2, + ACTIONS(6341), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112585] = 4, + [113159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6343), 1, anon_sym_COMMA, - STATE(3372), 1, + STATE(3342), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6310), 2, + ACTIONS(6346), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112599] = 2, - ACTIONS(3), 1, + [113173] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6312), 4, - sym__template_chars, + ACTIONS(6348), 1, + anon_sym_SQUOTE, + STATE(3421), 1, + aux_sym_string_repeat2, + ACTIONS(6350), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [112609] = 5, + [113187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6314), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, + ACTIONS(6352), 1, anon_sym_COMMA, - ACTIONS(6319), 1, - anon_sym_LBRACE_PIPE, - STATE(3319), 1, - aux_sym_extends_type_clause_repeat1, - [112625] = 4, + STATE(3344), 1, + aux_sym_array_repeat1, + ACTIONS(4305), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [113201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - ACTIONS(3262), 1, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6355), 1, + anon_sym_QMARK, + [113217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(1415), 2, - sym_template_string, - sym_arguments, - [112639] = 4, - ACTIONS(6282), 1, + STATE(2835), 1, + sym_formal_parameters, + STATE(3839), 1, + sym_type_parameters, + [113233] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6348), 1, + anon_sym_DQUOTE, + STATE(3422), 1, + aux_sym_string_repeat1, + ACTIONS(6357), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [113247] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6321), 1, + ACTIONS(6359), 1, anon_sym_SQUOTE, - STATE(3394), 1, + STATE(3343), 1, aux_sym_string_repeat2, - ACTIONS(6323), 2, + ACTIONS(6361), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [112653] = 4, - ACTIONS(6282), 1, + [113261] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6321), 1, + ACTIONS(6359), 1, anon_sym_DQUOTE, - STATE(3388), 1, + STATE(3347), 1, aux_sym_string_repeat1, - ACTIONS(6325), 2, + ACTIONS(6363), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [112667] = 5, + [113275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6327), 1, + ACTIONS(6365), 1, anon_sym_RBRACK, - [112683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_COMMA, - STATE(3365), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6329), 2, - anon_sym_LBRACE, - anon_sym_implements, - [112697] = 5, - ACTIONS(6282), 1, + [113291] = 5, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6290), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(6331), 1, + ACTIONS(6367), 1, sym__glimmer_template_content, - STATE(1927), 1, + ACTIONS(6369), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1407), 1, sym_glimmer_closing_tag, - STATE(3306), 1, + STATE(3429), 1, aux_sym_glimmer_template_repeat1, - [112713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6333), 1, - anon_sym_QMARK, - [112729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6335), 1, - anon_sym_QMARK, - [112745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6337), 1, - anon_sym_COLON, - [112761] = 2, + [113307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3708), 4, - anon_sym_RBRACE, + ACTIONS(5691), 1, + anon_sym_EQ, + STATE(3830), 1, + sym__initializer, + ACTIONS(6371), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [112771] = 5, + [113321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6339), 1, + ACTIONS(6373), 1, anon_sym_COLON, - [112787] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6341), 1, - anon_sym_RBRACK, - [112803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6343), 1, - anon_sym_COMMA, - STATE(3332), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5940), 2, - anon_sym_LBRACE, - anon_sym_GT, - [112817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3718), 1, - sym__from_clause, - ACTIONS(6346), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6348), 1, - anon_sym_QMARK, - [112847] = 5, + [113337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6350), 1, - anon_sym_RPAREN, - [112863] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6352), 1, - anon_sym_SQUOTE, - STATE(3321), 1, - aux_sym_string_repeat2, - ACTIONS(6354), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112877] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6352), 1, - anon_sym_DQUOTE, - STATE(3322), 1, - aux_sym_string_repeat1, - ACTIONS(6356), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112891] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_SQUOTE, - STATE(3394), 1, - aux_sym_string_repeat2, - ACTIONS(6323), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112905] = 4, - ACTIONS(6282), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3808), 1, + sym_type_parameters, + STATE(4242), 1, + sym_formal_parameters, + [113353] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6375), 1, anon_sym_SQUOTE, - STATE(3394), 1, + STATE(3421), 1, aux_sym_string_repeat2, - ACTIONS(6323), 2, + ACTIONS(6350), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [112919] = 4, - ACTIONS(6282), 1, + [113367] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6375), 1, anon_sym_DQUOTE, - STATE(3388), 1, + STATE(3422), 1, aux_sym_string_repeat1, - ACTIONS(6325), 2, + ACTIONS(6357), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [112933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(5068), 1, - anon_sym_EQ_GT, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - [112947] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6362), 1, - anon_sym_SQUOTE, - STATE(3339), 1, - aux_sym_string_repeat2, - ACTIONS(6364), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112961] = 3, + [113381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 1, - anon_sym_RBRACE, - ACTIONS(3454), 3, + ACTIONS(5331), 1, anon_sym_AMP, + ACTIONS(5341), 1, anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_extends, - [112973] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6362), 1, - anon_sym_DQUOTE, - STATE(3340), 1, - aux_sym_string_repeat1, - ACTIONS(6366), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112987] = 4, + ACTIONS(6377), 1, + anon_sym_RPAREN, + [113397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_LT, - ACTIONS(6368), 1, - anon_sym_EQ_GT, - ACTIONS(3206), 2, - anon_sym_LPAREN, - anon_sym_QMARK, - [113001] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_DQUOTE, - STATE(3388), 1, - aux_sym_string_repeat1, - ACTIONS(6325), 2, - sym_unescaped_double_string_fragment, + ACTIONS(6379), 1, sym_escape_sequence, - [113015] = 5, + ACTIONS(6381), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [113409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6370), 1, + ACTIONS(6384), 1, anon_sym_RBRACK, - [113031] = 5, + [113425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6372), 1, - anon_sym_RBRACK, - [113047] = 4, - ACTIONS(6282), 1, + ACTIONS(6310), 1, + anon_sym_from, + STATE(3721), 1, + sym__from_clause, + ACTIONS(4187), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113439] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6374), 1, + ACTIONS(6386), 1, anon_sym_SQUOTE, - STATE(3394), 1, + STATE(3355), 1, aux_sym_string_repeat2, - ACTIONS(6323), 2, + ACTIONS(6388), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113061] = 5, + [113453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6376), 1, + ACTIONS(1587), 1, + anon_sym_COMMA, + ACTIONS(6390), 1, + anon_sym_EQ, + ACTIONS(6392), 1, anon_sym_RBRACK, - [113077] = 4, - ACTIONS(6282), 1, + STATE(3549), 1, + aux_sym_array_pattern_repeat1, + [113469] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6374), 1, + ACTIONS(6386), 1, anon_sym_DQUOTE, - STATE(3388), 1, + STATE(3356), 1, aux_sym_string_repeat1, - ACTIONS(6325), 2, + ACTIONS(6394), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113091] = 5, + [113483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6378), 1, - anon_sym_RBRACK, - [113107] = 5, + ACTIONS(6396), 1, + anon_sym_RPAREN, + [113499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6380), 1, - anon_sym_RBRACK, - [113123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3702), 1, - sym_type_parameters, - STATE(4004), 1, - sym_formal_parameters, - [113139] = 5, + ACTIONS(6398), 1, + anon_sym_COLON, + [113515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6382), 1, + ACTIONS(6400), 1, anon_sym_RBRACK, - [113155] = 4, + [113531] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6402), 1, + anon_sym_SQUOTE, + STATE(3434), 1, + aux_sym_string_repeat2, + ACTIONS(6404), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [113545] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6402), 1, + anon_sym_DQUOTE, + STATE(3439), 1, + aux_sym_string_repeat1, + ACTIONS(6406), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [113559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3746), 1, - sym__from_clause, - ACTIONS(6384), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113169] = 5, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6408), 1, + anon_sym_class, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [113575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2774), 1, - sym_formal_parameters, - STATE(3704), 1, - sym_type_parameters, - [113185] = 5, + ACTIONS(6337), 1, + anon_sym_COMMA, + STATE(3433), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6410), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6386), 1, - anon_sym_COLON, - [113201] = 4, + ACTIONS(6412), 1, + anon_sym_QMARK, + [113605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6337), 1, anon_sym_COMMA, - STATE(3316), 1, + STATE(3437), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6388), 2, + ACTIONS(6414), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113215] = 5, + [113619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3696), 1, + STATE(3771), 1, sym_type_parameters, - STATE(3995), 1, + STATE(4002), 1, sym_formal_parameters, - [113231] = 3, + [113635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, - sym_escape_sequence, - ACTIONS(6392), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [113243] = 4, + ACTIONS(3497), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [113645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6395), 1, - anon_sym_EQ, - STATE(3863), 1, - sym__initializer, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_of, - [113257] = 4, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6416), 1, + anon_sym_RBRACK, + [113661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 1, - anon_sym_EQ, - STATE(3815), 1, - sym__initializer, - ACTIONS(6397), 2, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(6418), 1, + anon_sym_export, + STATE(1134), 1, + aux_sym_export_statement_repeat1, + STATE(1163), 1, + sym_decorator, + [113677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6420), 1, + anon_sym_RBRACK, + [113693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [113271] = 4, + ACTIONS(6422), 1, + anon_sym_LBRACE, + ACTIONS(6424), 1, + anon_sym_LBRACE_PIPE, + STATE(3322), 1, + aux_sym_extends_type_clause_repeat1, + [113709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(5792), 1, anon_sym_COMMA, - STATE(3365), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6399), 2, + ACTIONS(6422), 1, anon_sym_LBRACE, - anon_sym_implements, - [113285] = 4, + ACTIONS(6424), 1, + anon_sym_LBRACE_PIPE, + STATE(3322), 1, + aux_sym_extends_type_clause_repeat1, + [113725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 1, + ACTIONS(5792), 1, anon_sym_COMMA, - STATE(3365), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6401), 2, + ACTIONS(6426), 1, anon_sym_LBRACE, - anon_sym_implements, - [113299] = 5, + ACTIONS(6428), 1, + anon_sym_LBRACE_PIPE, + STATE(3322), 1, + aux_sym_extends_type_clause_repeat1, + [113741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6406), 1, - anon_sym_COLON, - [113315] = 4, - ACTIONS(6282), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3915), 1, + sym_type_parameters, + STATE(4088), 1, + sym_formal_parameters, + [113757] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6408), 1, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2856), 1, + sym_formal_parameters, + STATE(3792), 1, + sym_type_parameters, + [113773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6430), 1, + sym_identifier, + STATE(3051), 1, + sym_nested_type_identifier, + STATE(3661), 1, + sym_generic_type, + STATE(4017), 1, + sym_nested_identifier, + [113789] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6432), 1, + anon_sym_DQUOTE, + STATE(3401), 1, + aux_sym_string_repeat1, + ACTIONS(6434), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [113803] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6432), 1, anon_sym_SQUOTE, - STATE(3394), 1, + STATE(3402), 1, aux_sym_string_repeat2, - ACTIONS(6323), 2, + ACTIONS(6436), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113329] = 4, - ACTIONS(6282), 1, + [113817] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6408), 1, + ACTIONS(6438), 1, + anon_sym_SQUOTE, + STATE(3421), 1, + aux_sym_string_repeat2, + ACTIONS(6350), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [113831] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6438), 1, anon_sym_DQUOTE, - STATE(3388), 1, + STATE(3422), 1, aux_sym_string_repeat1, - ACTIONS(6325), 2, + ACTIONS(6357), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5768), 1, - anon_sym_EQ, - STATE(3658), 1, - sym__initializer, - ACTIONS(6410), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [113357] = 5, + [113845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_COMMA, - ACTIONS(6412), 1, - anon_sym_EQ, - ACTIONS(6414), 1, - anon_sym_RBRACK, - STATE(3487), 1, - aux_sym_array_pattern_repeat1, - [113373] = 5, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3805), 1, + sym_type_parameters, + STATE(4165), 1, + sym_formal_parameters, + [113861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6416), 1, + ACTIONS(6440), 1, sym_identifier, - STATE(3208), 1, + STATE(2911), 1, sym_nested_type_identifier, - STATE(3581), 1, + STATE(3418), 1, sym_generic_type, - STATE(3990), 1, + STATE(4017), 1, sym_nested_identifier, - [113389] = 4, + [113877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 1, + ACTIONS(6337), 1, anon_sym_COMMA, - STATE(3372), 1, + STATE(3342), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6421), 2, + ACTIONS(6442), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113403] = 5, + [113891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(5691), 1, + anon_sym_EQ, + STATE(3712), 1, + sym__initializer, + ACTIONS(6444), 2, anon_sym_COMMA, - ACTIONS(6423), 1, - anon_sym_LBRACE, - ACTIONS(6425), 1, - anon_sym_LBRACE_PIPE, - STATE(3319), 1, - aux_sym_extends_type_clause_repeat1, - [113419] = 5, + anon_sym_RPAREN, + [113905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_COMMA, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(6429), 1, - anon_sym_LBRACE_PIPE, - STATE(3319), 1, - aux_sym_extends_type_clause_repeat1, - [113435] = 4, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6446), 1, + anon_sym_QMARK, + [113921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6337), 1, anon_sym_COMMA, - STATE(3317), 1, + STATE(3342), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6431), 2, + ACTIONS(6448), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5659), 1, - anon_sym_COMMA, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(6429), 1, - anon_sym_LBRACE_PIPE, - STATE(3319), 1, - aux_sym_extends_type_clause_repeat1, - [113465] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6433), 1, - anon_sym_SQUOTE, - STATE(3367), 1, - aux_sym_string_repeat2, - ACTIONS(6435), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [113479] = 4, - ACTIONS(6282), 1, + [113935] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6450), 1, anon_sym_DQUOTE, - STATE(3388), 1, + STATE(3422), 1, aux_sym_string_repeat1, - ACTIONS(6325), 2, + ACTIONS(6357), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113493] = 4, - ACTIONS(6282), 1, + [113949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6452), 1, + anon_sym_COMMA, + STATE(3395), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5838), 2, + anon_sym_LBRACE, + anon_sym_GT, + [113963] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6450), 1, anon_sym_SQUOTE, - STATE(3394), 1, + STATE(3421), 1, aux_sym_string_repeat2, - ACTIONS(6323), 2, + ACTIONS(6350), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113507] = 4, - ACTIONS(6282), 1, + [113977] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 1, - anon_sym_DQUOTE, - STATE(3368), 1, - aux_sym_string_repeat1, - ACTIONS(6439), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [113521] = 5, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6455), 1, + anon_sym_RBRACK, + [113993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6441), 1, - anon_sym_COLON, - [113537] = 5, + ACTIONS(6457), 1, + anon_sym_QMARK, + [114009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3865), 1, + STATE(3917), 1, sym_type_parameters, - STATE(4009), 1, + STATE(4078), 1, sym_formal_parameters, - [113553] = 5, - ACTIONS(6282), 1, + [114025] = 5, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6288), 1, + ACTIONS(6459), 1, sym__glimmer_template_content, - ACTIONS(6443), 1, + ACTIONS(6461), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(1413), 1, + STATE(1819), 1, sym_glimmer_closing_tag, - STATE(3448), 1, + STATE(3424), 1, aux_sym_glimmer_template_repeat1, - [113569] = 5, - ACTIONS(3), 1, + [114041] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - ACTIONS(6445), 1, - anon_sym_RBRACK, - [113585] = 4, - ACTIONS(6278), 1, - anon_sym_SQUOTE, - ACTIONS(6282), 1, + ACTIONS(6463), 1, + anon_sym_DQUOTE, + STATE(3422), 1, + aux_sym_string_repeat1, + ACTIONS(6357), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114055] = 4, + ACTIONS(6322), 1, sym_comment, - STATE(3379), 1, + ACTIONS(6463), 1, + anon_sym_SQUOTE, + STATE(3421), 1, aux_sym_string_repeat2, - ACTIONS(6447), 2, + ACTIONS(6350), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113599] = 5, + [114069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1234), 1, anon_sym_LT, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3869), 1, + STATE(3823), 1, sym_type_parameters, - STATE(4035), 1, + STATE(4069), 1, sym_formal_parameters, - [113615] = 5, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6443), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(6449), 1, - sym__glimmer_template_content, - STATE(1497), 1, - sym_glimmer_closing_tag, - STATE(3383), 1, - aux_sym_glimmer_template_repeat1, - [113631] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6451), 1, - anon_sym_DQUOTE, - STATE(3388), 1, - aux_sym_string_repeat1, - ACTIONS(6453), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [113645] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_COLON, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(6456), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113659] = 5, + [114085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6458), 1, + ACTIONS(6465), 1, anon_sym_RPAREN, - [113675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3178), 1, - anon_sym_LBRACE, - ACTIONS(5290), 1, - anon_sym_STAR, - STATE(3923), 2, - sym_namespace_import, - sym_named_imports, - [113689] = 5, + [114101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6460), 1, - anon_sym_QMARK, - [113705] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6462), 1, - sym_identifier, - STATE(2944), 1, - sym_nested_type_identifier, - STATE(3312), 1, - sym_generic_type, - STATE(3990), 1, - sym_nested_identifier, - [113721] = 4, - ACTIONS(6282), 1, + ACTIONS(6467), 1, + anon_sym_RPAREN, + [114117] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6464), 1, + ACTIONS(6469), 1, anon_sym_SQUOTE, - STATE(3394), 1, + STATE(3421), 1, aux_sym_string_repeat2, - ACTIONS(6466), 2, + ACTIONS(6350), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [113745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3914), 1, - sym_type_parameters, - STATE(4179), 1, - sym_formal_parameters, - [113761] = 5, - ACTIONS(3), 1, + [114131] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3771), 1, - sym_type_parameters, - STATE(3993), 1, - sym_formal_parameters, - [113777] = 4, + ACTIONS(6469), 1, + anon_sym_DQUOTE, + STATE(3422), 1, + aux_sym_string_repeat1, + ACTIONS(6357), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5368), 1, - anon_sym_EQ, - STATE(3773), 1, - sym_default_type, - ACTIONS(6469), 2, - anon_sym_COMMA, - anon_sym_GT, - [113791] = 5, + ACTIONS(3186), 1, + anon_sym_LBRACE, + ACTIONS(5367), 1, + anon_sym_STAR, + STATE(4262), 2, + sym_namespace_import, + sym_named_imports, + [114159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3916), 1, - sym_type_parameters, - STATE(4193), 1, - sym_formal_parameters, - [113807] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6471), 1, - anon_sym_SQUOTE, - STATE(3349), 1, - aux_sym_string_repeat2, - ACTIONS(6473), 2, - sym_unescaped_single_string_fragment, + ACTIONS(6471), 4, + sym__template_chars, sym_escape_sequence, - [113821] = 5, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [114169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6475), 1, - anon_sym_RPAREN, - [113837] = 5, + ACTIONS(6473), 1, + anon_sym_RBRACK, + [114185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, + ACTIONS(6475), 1, + anon_sym_COLON, + [114201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_COMMA, + ACTIONS(6390), 1, + anon_sym_EQ, ACTIONS(6477), 1, anon_sym_RBRACK, - [113853] = 5, + STATE(3573), 1, + aux_sym_array_pattern_repeat1, + [114217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, ACTIONS(6479), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [113869] = 4, + anon_sym_QMARK, + [114233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - anon_sym_COMMA, - STATE(3408), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6481), 2, + ACTIONS(6310), 1, + anon_sym_from, + STATE(3837), 1, + sym__from_clause, + ACTIONS(4182), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113883] = 5, + [114247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_COMMA, - ACTIONS(6412), 1, - anon_sym_EQ, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6481), 1, + anon_sym_RPAREN, + [114263] = 4, + ACTIONS(6322), 1, + sym_comment, ACTIONS(6483), 1, - anon_sym_RBRACK, - STATE(3614), 1, - aux_sym_array_pattern_repeat1, - [113899] = 4, - ACTIONS(6282), 1, + anon_sym_SQUOTE, + STATE(3406), 1, + aux_sym_string_repeat2, + ACTIONS(6485), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114277] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6471), 1, + ACTIONS(6483), 1, anon_sym_DQUOTE, - STATE(3351), 1, + STATE(3407), 1, aux_sym_string_repeat1, - ACTIONS(6485), 2, + ACTIONS(6487), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113913] = 4, + [114291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(5792), 1, anon_sym_COMMA, - STATE(3372), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113927] = 4, + ACTIONS(5858), 1, + anon_sym_LBRACE, + ACTIONS(5860), 1, + anon_sym_LBRACE_PIPE, + STATE(3378), 1, + aux_sym_extends_type_clause_repeat1, + [114307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - anon_sym_COMMA, - STATE(3372), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6489), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113941] = 5, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6489), 1, + anon_sym_COLON, + [114323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, ACTIONS(6491), 1, - anon_sym_RPAREN, - [113957] = 5, + anon_sym_RBRACK, + [114339] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6493), 1, + anon_sym_SQUOTE, + STATE(3421), 1, + aux_sym_string_repeat2, + ACTIONS(6495), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114353] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6498), 1, + anon_sym_DQUOTE, + STATE(3422), 1, + aux_sym_string_repeat1, + ACTIONS(6500), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114367] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6493), 1, + ACTIONS(6503), 1, anon_sym_RBRACK, - [113973] = 5, + [114383] = 5, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LT_SLASHtemplate_GT, + ACTIONS(6505), 1, + sym__glimmer_template_content, + STATE(1945), 1, + sym_glimmer_closing_tag, + STATE(3544), 1, + aux_sym_glimmer_template_repeat1, + [114399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(6495), 1, - anon_sym_export, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1155), 1, - sym_decorator, - [113989] = 5, + ACTIONS(4110), 1, + anon_sym_COMMA, + STATE(3335), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6507), 2, + anon_sym_LBRACE, + anon_sym_implements, + [114413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6497), 1, - anon_sym_RBRACK, - [114005] = 5, + ACTIONS(6509), 1, + anon_sym_COLON, + [114429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3751), 1, - sym_type_parameters, - STATE(4175), 1, - sym_formal_parameters, - [114021] = 5, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6511), 1, + anon_sym_RBRACK, + [114445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(2617), 1, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + ACTIONS(3278), 1, anon_sym_LPAREN, - STATE(2792), 1, - sym_formal_parameters, - STATE(3803), 1, - sym_type_parameters, - [114037] = 5, + STATE(1382), 2, + sym_template_string, + sym_arguments, + [114459] = 5, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6369), 1, + anon_sym_LT_SLASHtemplate_GT, + ACTIONS(6505), 1, + sym__glimmer_template_content, + STATE(1385), 1, + sym_glimmer_closing_tag, + STATE(3544), 1, + aux_sym_glimmer_template_repeat1, + [114475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5341), 1, anon_sym_PIPE, - ACTIONS(5324), 1, + ACTIONS(5343), 1, anon_sym_extends, - ACTIONS(6499), 1, - anon_sym_COLON, - [114053] = 4, + ACTIONS(6513), 1, + anon_sym_QMARK, + [114491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 1, + ACTIONS(5435), 1, + anon_sym_EQ, + STATE(3902), 1, + sym_default_type, + ACTIONS(6515), 2, anon_sym_COMMA, - STATE(3416), 1, - aux_sym_array_repeat1, - ACTIONS(4319), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [114067] = 4, - ACTIONS(6282), 1, + anon_sym_GT, + [114505] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 1, - anon_sym_DQUOTE, - STATE(3422), 1, - aux_sym_string_repeat1, - ACTIONS(6506), 2, - sym_unescaped_double_string_fragment, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(3816), 1, + anon_sym_LPAREN, + STATE(1938), 2, + sym_template_string, + sym_arguments, + [114519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6337), 1, + anon_sym_COMMA, + STATE(3342), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [114533] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6519), 1, + anon_sym_SQUOTE, + STATE(3421), 1, + aux_sym_string_repeat2, + ACTIONS(6350), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [114081] = 4, - ACTIONS(6282), 1, + [114547] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6504), 1, + ACTIONS(6521), 1, anon_sym_SQUOTE, - STATE(3423), 1, + STATE(3386), 1, aux_sym_string_repeat2, - ACTIONS(6508), 2, + ACTIONS(6523), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [114095] = 4, + [114561] = 4, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(6521), 1, + anon_sym_DQUOTE, + STATE(3387), 1, + aux_sym_string_repeat1, + ACTIONS(6525), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6337), 1, anon_sym_COMMA, - STATE(3407), 1, + STATE(3342), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6510), 2, + ACTIONS(6527), 2, sym__automatic_semicolon, anon_sym_SEMI, - [114109] = 5, + [114589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3919), 1, - sym_type_parameters, - STATE(3949), 1, - sym_formal_parameters, - [114125] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3754), 1, - sym_type_parameters, - STATE(4186), 1, - sym_formal_parameters, - [114141] = 4, - ACTIONS(6282), 1, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + ACTIONS(6529), 1, + anon_sym_RBRACK, + [114605] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(6512), 1, + ACTIONS(6519), 1, anon_sym_DQUOTE, - STATE(3388), 1, + STATE(3422), 1, aux_sym_string_repeat1, - ACTIONS(6325), 2, + ACTIONS(6357), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [114155] = 4, - ACTIONS(6282), 1, + [114619] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 1, - anon_sym_SQUOTE, - STATE(3394), 1, - aux_sym_string_repeat2, - ACTIONS(6323), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [114169] = 4, + ACTIONS(6531), 1, + anon_sym_COMMA, + ACTIONS(6533), 1, + anon_sym_RPAREN, + STATE(3441), 1, + aux_sym_formal_parameters_repeat1, + [114632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(6535), 1, + anon_sym_COMMA, + STATE(3585), 1, + aux_sym_formal_parameters_repeat1, + [114645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_COMMA, + ACTIONS(6539), 1, + anon_sym_GT, + STATE(3600), 1, + aux_sym_type_parameters_repeat1, + [114658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6541), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 1, + ACTIONS(2487), 1, anon_sym_RBRACK, - ACTIONS(6514), 1, + ACTIONS(6543), 1, anon_sym_COMMA, - STATE(3589), 1, + STATE(3485), 1, aux_sym_tuple_type_repeat1, - [114182] = 4, + [114680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_type, - ACTIONS(6516), 1, - sym_identifier, - STATE(3845), 1, - sym__import_identifier, - [114195] = 3, + ACTIONS(3658), 1, + anon_sym_LBRACE, + ACTIONS(3660), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [114691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(3642), 1, anon_sym_LBRACE, - ACTIONS(3643), 2, + ACTIONS(3644), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [114206] = 2, + [114702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_LPAREN, + ACTIONS(6547), 1, + anon_sym_await, + STATE(32), 1, + sym__for_header, + [114715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(6549), 1, + anon_sym_RPAREN, + STATE(3344), 1, + aux_sym_array_repeat1, + [114728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6551), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 3, + ACTIONS(6060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114215] = 4, + [114746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 1, + anon_sym_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_extends, + [114759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6522), 1, - anon_sym_RBRACK, - STATE(3535), 1, - aux_sym_tuple_type_repeat1, - [114228] = 4, + anon_sym_SEMI, + [114768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 1, - anon_sym_LPAREN, - ACTIONS(6526), 1, - anon_sym_await, - STATE(34), 1, - sym__for_header, - [114241] = 4, + ACTIONS(6555), 1, + anon_sym_COMMA, + ACTIONS(6557), 1, + anon_sym_RPAREN, + STATE(3546), 1, + aux_sym_formal_parameters_repeat1, + [114781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5233), 1, + anon_sym_is, + ACTIONS(5750), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [114792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(6561), 1, + anon_sym_COMMA, + ACTIONS(6564), 1, + anon_sym_RBRACK, + STATE(3456), 1, + aux_sym_array_pattern_repeat1, + [114814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6566), 1, sym_identifier, - ACTIONS(6530), 1, + ACTIONS(6568), 1, anon_sym_GT, - STATE(3765), 1, + STATE(3923), 1, sym_type_parameter, - [114254] = 2, + [114827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6570), 1, + sym_identifier, + ACTIONS(6572), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [114838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6574), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6574), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [114865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6578), 1, + sym_identifier, + ACTIONS(6580), 1, + anon_sym_LBRACK, + ACTIONS(6582), 1, + sym_private_property_identifier, + [114878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114263] = 4, + [114887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5304), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_extends, - [114276] = 3, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(4250), 1, + anon_sym_RPAREN, + STATE(3344), 1, + aux_sym_array_repeat1, + [114900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6534), 1, - sym_identifier, - ACTIONS(6536), 2, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(4250), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_array_repeat1, + [114913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6586), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [114287] = 3, + [114922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6538), 1, - sym_identifier, - ACTIONS(6540), 2, + ACTIONS(6588), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [114298] = 2, + [114931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 3, + ACTIONS(6590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114307] = 4, + [114940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2885), 1, anon_sym_GT, - ACTIONS(6544), 1, + ACTIONS(6592), 1, anon_sym_COMMA, - STATE(3332), 1, + STATE(3395), 1, aux_sym_implements_clause_repeat1, - [114320] = 4, + [114953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, - sym_identifier, - ACTIONS(6546), 1, + ACTIONS(6568), 1, anon_sym_GT, - STATE(3765), 1, - sym_type_parameter, - [114333] = 4, + ACTIONS(6594), 1, + anon_sym_COMMA, + STATE(3492), 1, + aux_sym_type_parameters_repeat1, + [114966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_GT, - ACTIONS(6548), 1, + ACTIONS(5802), 1, anon_sym_COMMA, - STATE(3552), 1, - aux_sym_type_parameters_repeat1, - [114346] = 2, + ACTIONS(6596), 1, + anon_sym_LBRACE, + STATE(3395), 1, + aux_sym_implements_clause_repeat1, + [114979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 3, - sym__automatic_semicolon, + ACTIONS(1620), 1, anon_sym_COMMA, - anon_sym_SEMI, - [114355] = 4, + ACTIONS(6598), 1, + anon_sym_RPAREN, + STATE(3344), 1, + aux_sym_array_repeat1, + [114992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1279), 1, - anon_sym_LBRACE, - STATE(3274), 1, - sym_object_type, - [114368] = 4, + ACTIONS(3440), 1, + anon_sym_extends, + ACTIONS(6600), 1, + anon_sym_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE, + [115005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(6604), 1, anon_sym_COMMA, - ACTIONS(6552), 1, + ACTIONS(6606), 1, anon_sym_RBRACE, - STATE(3458), 1, + STATE(3538), 1, aux_sym_enum_body_repeat1, - [114381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6554), 1, - sym_identifier, - STATE(1123), 1, - sym_decorator_member_expression, - STATE(1152), 1, - sym_decorator_call_expression, - [114394] = 4, + [115018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(6608), 1, anon_sym_COMMA, - ACTIONS(6556), 1, - anon_sym_RPAREN, - STATE(3416), 1, - aux_sym_array_repeat1, - [114407] = 2, + ACTIONS(6611), 1, + anon_sym_RBRACE, + STATE(3475), 1, + aux_sym_export_clause_repeat1, + [115031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [114416] = 4, + ACTIONS(6613), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [115040] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(209), 1, anon_sym_LBRACE_PIPE, ACTIONS(1222), 1, anon_sym_LBRACE, - STATE(623), 1, + STATE(634), 1, sym_object_type, - [114429] = 4, + [115053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(6615), 1, anon_sym_COMMA, - ACTIONS(4176), 1, - anon_sym_RPAREN, - STATE(3606), 1, - aux_sym_array_repeat1, - [114442] = 4, + ACTIONS(6617), 1, + anon_sym_RBRACK, + STATE(3444), 1, + aux_sym_tuple_type_repeat1, + [115066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(6584), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4176), 1, - anon_sym_RPAREN, - STATE(3416), 1, - aux_sym_array_repeat1, - [114455] = 4, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(6558), 1, - sym__glimmer_template_content, - ACTIONS(6561), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3448), 1, - aux_sym_glimmer_template_repeat1, - [114468] = 3, + anon_sym_SEMI, + [115075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_as, - ACTIONS(6565), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [114479] = 4, + ACTIONS(5574), 1, + anon_sym_implements, + ACTIONS(6619), 1, + anon_sym_LBRACE, + STATE(4015), 1, + sym_implements_clause, + [115088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(6621), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4294), 1, - anon_sym_RPAREN, - STATE(3416), 1, - aux_sym_array_repeat1, - [114492] = 2, + anon_sym_SEMI, + [115097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6567), 3, + ACTIONS(6623), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [114501] = 4, + [115106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5587), 1, - anon_sym_RBRACE, - ACTIONS(6569), 1, + ACTIONS(6576), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3615), 1, - aux_sym_export_clause_repeat1, - [114514] = 2, + anon_sym_SEMI, + [115115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6571), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114523] = 4, + [115124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 1, + ACTIONS(6625), 1, anon_sym_COMMA, - ACTIONS(6575), 1, - anon_sym_RBRACE, - STATE(3651), 1, - aux_sym_enum_body_repeat1, - [114536] = 3, + ACTIONS(6628), 1, + anon_sym_RBRACK, + STATE(3485), 1, + aux_sym_tuple_type_repeat1, + [115137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6412), 1, - anon_sym_EQ, - ACTIONS(6577), 2, + ACTIONS(6559), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [114547] = 4, + anon_sym_SEMI, + [115146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - ACTIONS(6579), 1, - anon_sym_as, - STATE(3731), 1, - sym__from_clause, - [114560] = 4, + ACTIONS(6060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [115155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1724), 1, - anon_sym_LBRACE, - ACTIONS(6581), 1, - sym_identifier, - STATE(3308), 1, - sym_export_clause, - [114573] = 4, + ACTIONS(6630), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [115164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6583), 1, - anon_sym_COMMA, - ACTIONS(6585), 1, - anon_sym_RBRACE, - STATE(3651), 1, - aux_sym_enum_body_repeat1, - [114586] = 4, + ACTIONS(6632), 1, + anon_sym_EQ, + ACTIONS(3094), 2, + anon_sym_in, + anon_sym_of, + [115175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2479), 1, - anon_sym_RBRACK, - ACTIONS(6587), 1, + ACTIONS(6634), 1, anon_sym_COMMA, - STATE(3589), 1, + ACTIONS(6636), 1, + anon_sym_RBRACK, + STATE(3521), 1, aux_sym_tuple_type_repeat1, - [114599] = 3, + [115188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_as, - ACTIONS(5294), 2, + ACTIONS(6638), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [115197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6640), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [114610] = 4, + ACTIONS(6643), 1, + anon_sym_GT, + STATE(3492), 1, + aux_sym_type_parameters_repeat1, + [115210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6591), 1, + ACTIONS(6566), 1, sym_identifier, - STATE(2171), 1, - sym_decorator_member_expression, - STATE(2240), 1, - sym_decorator_call_expression, - [114623] = 4, + ACTIONS(6645), 1, + anon_sym_GT, + STATE(3923), 1, + sym_type_parameter, + [115223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_type, - ACTIONS(6593), 1, + ACTIONS(6647), 1, sym_identifier, - STATE(3673), 1, - sym__import_identifier, - [114636] = 3, + ACTIONS(6649), 1, + anon_sym_require, + STATE(3617), 1, + sym_nested_identifier, + [115236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(3037), 2, + ACTIONS(1587), 1, anon_sym_COMMA, + ACTIONS(6477), 1, anon_sym_RBRACK, - [114647] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 1, - anon_sym_RBRACK, - ACTIONS(6598), 1, - anon_sym_COMMA, - STATE(3589), 1, - aux_sym_tuple_type_repeat1, - [114660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_RBRACE, - STATE(3596), 1, - aux_sym_object_pattern_repeat1, - [114673] = 2, + STATE(3456), 1, + aux_sym_array_pattern_repeat1, + [115249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_type, - ACTIONS(6604), 1, - sym_identifier, - STATE(3670), 1, - sym__import_identifier, - [114695] = 4, + [115258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, - anon_sym_RBRACE, - ACTIONS(6606), 1, + ACTIONS(6651), 1, anon_sym_COMMA, - STATE(3645), 1, + ACTIONS(6653), 1, + anon_sym_RBRACE, + STATE(3620), 1, aux_sym_named_imports_repeat1, - [114708] = 3, + [115271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5603), 1, - anon_sym_DOT, - ACTIONS(6608), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [114719] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6532), 3, - sym__automatic_semicolon, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 2, anon_sym_COMMA, - anon_sym_SEMI, - [114728] = 4, + anon_sym_RBRACE, + [115282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(6659), 1, anon_sym_COMMA, - ACTIONS(6612), 1, + ACTIONS(6661), 1, anon_sym_RBRACE, - STATE(3597), 1, + STATE(3568), 1, aux_sym_object_repeat1, - [114741] = 4, + [115295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(6614), 1, - anon_sym_RPAREN, - STATE(3416), 1, - aux_sym_array_repeat1, - [114754] = 4, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + anon_sym_LBRACK, + ACTIONS(6667), 1, + sym_private_property_identifier, + [115308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4294), 1, - anon_sym_RPAREN, - STATE(3472), 1, + ACTIONS(4224), 1, + anon_sym_RBRACK, + STATE(3344), 1, aux_sym_array_repeat1, - [114767] = 2, + [115321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 1, - anon_sym_COMMA, - ACTIONS(6612), 1, - anon_sym_RBRACE, - STATE(3635), 1, - aux_sym_object_repeat1, - [114789] = 2, + [115330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 3, - sym__automatic_semicolon, + ACTIONS(6671), 1, + anon_sym_EQ, + ACTIONS(6657), 2, anon_sym_COMMA, - anon_sym_SEMI, - [114798] = 2, + anon_sym_from, + [115341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 3, - sym__automatic_semicolon, + ACTIONS(4762), 1, anon_sym_COMMA, - anon_sym_SEMI, - [114807] = 4, + ACTIONS(6673), 1, + anon_sym_RBRACE, + STATE(3567), 1, + aux_sym_object_pattern_repeat1, + [115354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 1, - anon_sym_COMMA, - ACTIONS(6623), 1, - anon_sym_RBRACK, - STATE(3478), 1, - aux_sym_array_pattern_repeat1, - [114820] = 4, + ACTIONS(5666), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [115363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(2695), 1, + anon_sym_GT, + ACTIONS(6675), 1, anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_RBRACE, - STATE(3636), 1, - aux_sym_object_pattern_repeat1, - [114833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(6625), 1, - anon_sym_EQ, - STATE(4080), 1, - sym_type_parameters, - [114846] = 4, + STATE(3395), 1, + aux_sym_implements_clause_repeat1, + [115376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 1, + ACTIONS(6677), 1, anon_sym_COMMA, - ACTIONS(6629), 1, + ACTIONS(6679), 1, anon_sym_RBRACK, - STATE(3424), 1, + STATE(3532), 1, aux_sym_tuple_type_repeat1, - [114859] = 4, + [115389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(2499), 1, + anon_sym_RBRACK, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6631), 1, - anon_sym_RBRACE, - STATE(3630), 1, - aux_sym_object_pattern_repeat1, - [114872] = 4, + STATE(3485), 1, + aux_sym_tuple_type_repeat1, + [115402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(5371), 3, anon_sym_COMMA, - ACTIONS(6633), 1, anon_sym_RBRACE, - STATE(3582), 1, - aux_sym_object_repeat1, - [114885] = 4, + anon_sym_from, + [115411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, - anon_sym_GT, - ACTIONS(6635), 1, + ACTIONS(6683), 1, + anon_sym_EQ, + ACTIONS(6657), 2, anon_sym_COMMA, - STATE(3332), 1, - aux_sym_implements_clause_repeat1, - [114898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, - anon_sym_LBRACE, - ACTIONS(6221), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [114909] = 4, + anon_sym_from, + [115422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, + ACTIONS(5582), 1, anon_sym_AMP, - ACTIONS(5575), 1, + ACTIONS(5586), 1, anon_sym_PIPE, - ACTIONS(5577), 1, + ACTIONS(5588), 1, anon_sym_extends, - [114922] = 4, + [115435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, + ACTIONS(6659), 1, anon_sym_COMMA, - ACTIONS(6639), 1, - anon_sym_RBRACK, - STATE(3478), 1, - aux_sym_array_pattern_repeat1, - [114935] = 4, + ACTIONS(6685), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_object_repeat1, + [115448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - anon_sym_GT, - ACTIONS(6641), 1, + ACTIONS(1337), 1, + anon_sym_RPAREN, + ACTIONS(6687), 1, anon_sym_COMMA, - STATE(3332), 1, - aux_sym_implements_clause_repeat1, - [114948] = 4, + STATE(3585), 1, + aux_sym_formal_parameters_repeat1, + [115461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(2707), 1, + anon_sym_GT, + ACTIONS(6689), 1, anon_sym_COMMA, - ACTIONS(6643), 1, - anon_sym_RBRACK, - STATE(3416), 1, - aux_sym_array_repeat1, - [114961] = 4, + STATE(3395), 1, + aux_sym_implements_clause_repeat1, + [115474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(6691), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6633), 1, - anon_sym_RBRACE, - STATE(3635), 1, - aux_sym_object_repeat1, - [114974] = 3, + anon_sym_SEMI, + [115483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6412), 1, - anon_sym_EQ, - ACTIONS(6623), 2, + ACTIONS(6693), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [114985] = 2, + anon_sym_SEMI, + [115492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6645), 3, + ACTIONS(6695), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [114994] = 4, + [115501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4314), 1, + ACTIONS(4327), 1, anon_sym_RPAREN, - STATE(3512), 1, + STATE(3537), 1, aux_sym_array_repeat1, - [115007] = 4, + [115514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4314), 1, + ACTIONS(4327), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [115020] = 4, + [115527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(6647), 1, - anon_sym_AMP, - ACTIONS(6649), 1, - anon_sym_PIPE, - [115033] = 2, + ACTIONS(6697), 1, + anon_sym_COMMA, + ACTIONS(6699), 1, + anon_sym_GT, + STATE(3470), 1, + aux_sym_type_parameters_repeat1, + [115540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [115042] = 4, + ACTIONS(2493), 1, + anon_sym_RBRACK, + ACTIONS(6701), 1, + anon_sym_COMMA, + STATE(3485), 1, + aux_sym_tuple_type_repeat1, + [115553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(6703), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6631), 1, - anon_sym_RBRACE, - STATE(3636), 1, - aux_sym_object_pattern_repeat1, - [115055] = 4, + anon_sym_SEMI, + [115562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(6651), 1, - anon_sym_LPAREN, - STATE(611), 1, - sym_statement_block, - [115068] = 4, + ACTIONS(6705), 1, + anon_sym_COMMA, + ACTIONS(6707), 1, + anon_sym_RBRACE, + STATE(3664), 1, + aux_sym_enum_body_repeat1, + [115575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6653), 1, + ACTIONS(6709), 1, sym_identifier, - ACTIONS(6655), 1, + ACTIONS(6711), 1, anon_sym_LBRACK, - ACTIONS(6657), 1, + ACTIONS(6713), 1, sym_private_property_identifier, - [115081] = 4, + [115588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, + ACTIONS(6715), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6662), 1, - anon_sym_RPAREN, - STATE(3500), 1, - aux_sym_formal_parameters_repeat1, - [115094] = 4, + anon_sym_SEMI, + [115597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 1, + ACTIONS(6717), 1, sym_identifier, - ACTIONS(6666), 1, + ACTIONS(6719), 1, anon_sym_LBRACK, - ACTIONS(6668), 1, + ACTIONS(6721), 1, sym_private_property_identifier, - [115107] = 4, + [115610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1363), 1, - anon_sym_RPAREN, - ACTIONS(6670), 1, - anon_sym_COMMA, - STATE(3500), 1, - aux_sym_formal_parameters_repeat1, - [115120] = 4, + ACTIONS(2063), 1, + anon_sym_LBRACE, + ACTIONS(6723), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym_statement_block, + [115623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(6674), 1, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6676), 1, + ACTIONS(6729), 1, sym_private_property_identifier, - [115133] = 2, + [115636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 3, + ACTIONS(209), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1222), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [115142] = 4, + STATE(661), 1, + sym_object_type, + [115649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(6731), 1, sym_identifier, - ACTIONS(6680), 1, + ACTIONS(6733), 1, anon_sym_LBRACK, - ACTIONS(6682), 1, + ACTIONS(6735), 1, sym_private_property_identifier, - [115155] = 4, + [115662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, + ACTIONS(6737), 1, anon_sym_COMMA, - ACTIONS(6686), 1, - anon_sym_RPAREN, - STATE(3612), 1, - aux_sym_formal_parameters_repeat1, - [115168] = 4, + ACTIONS(6739), 1, + anon_sym_RBRACE, + STATE(3664), 1, + aux_sym_enum_body_repeat1, + [115675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym_COMMA, - ACTIONS(6690), 1, + ACTIONS(2485), 1, anon_sym_RBRACK, - STATE(3459), 1, + ACTIONS(6741), 1, + anon_sym_COMMA, + STATE(3485), 1, aux_sym_tuple_type_repeat1, - [115181] = 3, + [115688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_EQ, - ACTIONS(6694), 2, + ACTIONS(4762), 1, anon_sym_COMMA, - anon_sym_from, - [115192] = 4, + ACTIONS(6743), 1, + anon_sym_RBRACE, + STATE(3567), 1, + aux_sym_object_pattern_repeat1, + [115701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6483), 1, + ACTIONS(4224), 1, anon_sym_RBRACK, - STATE(3614), 1, - aux_sym_array_pattern_repeat1, - [115205] = 2, + STATE(3564), 1, + aux_sym_array_repeat1, + [115714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 3, - sym__automatic_semicolon, + ACTIONS(6745), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115214] = 3, + ACTIONS(6747), 1, + anon_sym_RBRACE, + STATE(3664), 1, + aux_sym_enum_body_repeat1, + [115727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, - anon_sym_EQ, - ACTIONS(3084), 2, - anon_sym_in, - anon_sym_of, - [115225] = 4, + ACTIONS(4305), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [115736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6700), 1, + ACTIONS(6749), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [115238] = 2, + [115749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 3, - sym__automatic_semicolon, + ACTIONS(6751), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115247] = 2, + ACTIONS(6753), 1, + anon_sym_RBRACE, + STATE(3664), 1, + aux_sym_enum_body_repeat1, + [115762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 3, - sym__automatic_semicolon, + ACTIONS(1587), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115256] = 2, + ACTIONS(6477), 1, + anon_sym_RBRACK, + STATE(3573), 1, + aux_sym_array_pattern_repeat1, + [115775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115265] = 2, + ACTIONS(6755), 1, + anon_sym_LBRACE, + ACTIONS(6174), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [115786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 3, + ACTIONS(6757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115274] = 4, + [115795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACK, - STATE(3613), 1, + ACTIONS(4339), 1, + anon_sym_RPAREN, + STATE(3472), 1, aux_sym_array_repeat1, - [115287] = 4, + [115808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACK, - STATE(3416), 1, + ACTIONS(4339), 1, + anon_sym_RPAREN, + STATE(3344), 1, aux_sym_array_repeat1, - [115300] = 4, - ACTIONS(3), 1, + [115821] = 4, + ACTIONS(6322), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_COMMA, - ACTIONS(6483), 1, - anon_sym_RBRACK, - STATE(3478), 1, - aux_sym_array_pattern_repeat1, - [115313] = 4, + ACTIONS(6759), 1, + sym__glimmer_template_content, + ACTIONS(6762), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3544), 1, + aux_sym_glimmer_template_repeat1, + [115834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6710), 1, + ACTIONS(6766), 1, anon_sym_LBRACK, - ACTIONS(6712), 1, + ACTIONS(6768), 1, sym_private_property_identifier, - [115326] = 4, + [115847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, - sym_identifier, - ACTIONS(6716), 1, - anon_sym_LBRACK, - ACTIONS(6718), 1, - sym_private_property_identifier, - [115339] = 2, + ACTIONS(1347), 1, + anon_sym_RPAREN, + ACTIONS(6770), 1, + anon_sym_COMMA, + STATE(3585), 1, + aux_sym_formal_parameters_repeat1, + [115860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [115348] = 4, + ACTIONS(6659), 1, + anon_sym_COMMA, + ACTIONS(6772), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_object_repeat1, + [115873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 1, + anon_sym_COMMA, + ACTIONS(6774), 1, + anon_sym_RBRACK, + STATE(3344), 1, + aux_sym_array_repeat1, + [115886] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_COMMA, + ACTIONS(6776), 1, + anon_sym_RBRACK, + STATE(3456), 1, + aux_sym_array_pattern_repeat1, + [115899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6778), 1, anon_sym_COMMA, - ACTIONS(6722), 1, + ACTIONS(6780), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3513), 1, aux_sym_formal_parameters_repeat1, - [115361] = 3, + [115912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(5682), 3, anon_sym_LBRACE, - ACTIONS(3428), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [115372] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [115921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6724), 1, - anon_sym_COMMA, - ACTIONS(6726), 1, - anon_sym_RBRACE, - STATE(3651), 1, - aux_sym_enum_body_repeat1, - [115385] = 4, + ACTIONS(1287), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_SQUOTE, + STATE(3730), 1, + sym_string, + [115934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6728), 1, + ACTIONS(6782), 1, sym_identifier, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - sym_private_property_identifier, - [115398] = 4, + ACTIONS(6784), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [115945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6734), 1, - anon_sym_COMMA, - ACTIONS(6736), 1, - anon_sym_RBRACE, - STATE(3651), 1, - aux_sym_enum_body_repeat1, - [115411] = 4, + ACTIONS(5919), 1, + anon_sym_AMP, + ACTIONS(5921), 1, + anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_extends, + [115958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [115967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6786), 1, sym_identifier, - ACTIONS(6740), 1, + ACTIONS(6788), 1, anon_sym_LBRACK, - ACTIONS(6742), 1, + ACTIONS(6790), 1, sym_private_property_identifier, - [115424] = 2, + [115980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 3, - sym__automatic_semicolon, + ACTIONS(6792), 1, + anon_sym_as, + ACTIONS(6794), 2, anon_sym_COMMA, - anon_sym_SEMI, - [115433] = 2, + anon_sym_RBRACE, + [115991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 3, + ACTIONS(6796), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [115442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_COMMA, - ACTIONS(6414), 1, - anon_sym_RBRACK, - STATE(3487), 1, - aux_sym_array_pattern_repeat1, - [115455] = 4, + [116000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(4232), 1, - anon_sym_RBRACK, - STATE(3489), 1, - aux_sym_array_repeat1, - [115468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, + ACTIONS(6390), 1, + anon_sym_EQ, + ACTIONS(6564), 2, anon_sym_COMMA, - ACTIONS(4232), 1, anon_sym_RBRACK, - STATE(3416), 1, - aux_sym_array_repeat1, - [115481] = 4, + [116011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, + ACTIONS(1587), 1, anon_sym_COMMA, - ACTIONS(6414), 1, + ACTIONS(6392), 1, anon_sym_RBRACK, - STATE(3478), 1, + STATE(3456), 1, aux_sym_array_pattern_repeat1, - [115494] = 4, + [116024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_RBRACK, - ACTIONS(6746), 1, - anon_sym_COMMA, - STATE(3589), 1, - aux_sym_tuple_type_repeat1, - [115507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6748), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115516] = 2, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(6798), 1, + anon_sym_RPAREN, + STATE(4194), 1, + sym_type_annotation, + [116037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115525] = 4, + ACTIONS(6800), 1, + sym_identifier, + ACTIONS(6802), 1, + anon_sym_LBRACK, + ACTIONS(6804), 1, + sym_private_property_identifier, + [116050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6752), 1, - anon_sym_COMMA, - ACTIONS(6754), 1, - anon_sym_GT, - STATE(3438), 1, - aux_sym_type_parameters_repeat1, - [115538] = 2, + ACTIONS(6806), 1, + sym_identifier, + ACTIONS(6808), 1, + anon_sym_LBRACK, + ACTIONS(6810), 1, + sym_private_property_identifier, + [116063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 3, - sym__automatic_semicolon, + ACTIONS(1620), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5603), 1, - anon_sym_DOT, - ACTIONS(6758), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [115558] = 4, + ACTIONS(6812), 1, + anon_sym_RBRACK, + STATE(3344), 1, + aux_sym_array_repeat1, + [116076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5555), 1, - anon_sym_implements, - ACTIONS(6760), 1, - anon_sym_LBRACE, - STATE(3950), 1, - sym_implements_clause, - [115571] = 4, + ACTIONS(6814), 1, + sym_identifier, + STATE(2184), 1, + sym_decorator_member_expression, + STATE(2247), 1, + sym_decorator_call_expression, + [116089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6764), 1, - anon_sym_GT, - STATE(3633), 1, - aux_sym_type_parameters_repeat1, - [115584] = 2, + ACTIONS(4242), 1, + anon_sym_RBRACK, + STATE(3344), 1, + aux_sym_array_repeat1, + [116102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 3, - sym__automatic_semicolon, + ACTIONS(6816), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115593] = 2, + ACTIONS(6819), 1, + anon_sym_RBRACE, + STATE(3567), 1, + aux_sym_object_pattern_repeat1, + [116115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 3, - sym__automatic_semicolon, + ACTIONS(6821), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115602] = 2, + ACTIONS(6824), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_object_repeat1, + [116128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 3, - sym__automatic_semicolon, + ACTIONS(6826), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115611] = 2, + ACTIONS(6828), 1, + anon_sym_RBRACK, + STATE(3622), 1, + aux_sym_tuple_type_repeat1, + [116141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 3, - sym__automatic_semicolon, + ACTIONS(1620), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115620] = 2, + ACTIONS(4242), 1, + anon_sym_RBRACK, + STATE(3548), 1, + aux_sym_array_repeat1, + [116154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6770), 3, - sym__automatic_semicolon, + ACTIONS(1587), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115629] = 3, + ACTIONS(6392), 1, + anon_sym_RBRACK, + STATE(3549), 1, + aux_sym_array_pattern_repeat1, + [116167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6772), 1, + ACTIONS(6830), 1, anon_sym_LBRACE, - ACTIONS(6219), 2, + ACTIONS(6229), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [115640] = 2, + [116178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 3, - sym__automatic_semicolon, + ACTIONS(1587), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115649] = 4, + ACTIONS(6832), 1, + anon_sym_RBRACK, + STATE(3456), 1, + aux_sym_array_pattern_repeat1, + [116191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6774), 1, - sym_identifier, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - sym_private_property_identifier, - [115662] = 4, + ACTIONS(5570), 1, + anon_sym_RBRACE, + ACTIONS(6834), 1, + anon_sym_COMMA, + STATE(3475), 1, + aux_sym_export_clause_repeat1, + [116204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, - sym_identifier, - ACTIONS(6780), 1, - anon_sym_GT, - STATE(3765), 1, - sym_type_parameter, - [115675] = 4, + ACTIONS(6659), 1, + anon_sym_COMMA, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_object_repeat1, + [116217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, + ACTIONS(4434), 1, + anon_sym_extends, + ACTIONS(6838), 1, + anon_sym_AMP, + ACTIONS(6840), 1, + anon_sym_PIPE, + [116230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6842), 1, anon_sym_COMMA, - ACTIONS(6785), 1, - anon_sym_GT, - STATE(3552), 1, - aux_sym_type_parameters_repeat1, - [115688] = 2, + ACTIONS(6844), 1, + anon_sym_RBRACK, + STATE(3508), 1, + aux_sym_tuple_type_repeat1, + [116243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115697] = 2, + [116252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6787), 3, - sym__automatic_semicolon, + ACTIONS(2895), 1, + anon_sym_GT, + ACTIONS(6846), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115706] = 2, + STATE(3395), 1, + aux_sym_implements_clause_repeat1, + [116265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 3, - sym__automatic_semicolon, + ACTIONS(4762), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115715] = 4, + ACTIONS(6848), 1, + anon_sym_RBRACE, + STATE(3567), 1, + aux_sym_object_pattern_repeat1, + [116278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6793), 1, + ACTIONS(6850), 1, anon_sym_RPAREN, - STATE(3624), 1, - aux_sym_formal_parameters_repeat1, - [115728] = 2, + STATE(3344), 1, + aux_sym_array_repeat1, + [116291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 3, - sym__automatic_semicolon, + ACTIONS(6852), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115737] = 2, + ACTIONS(6854), 1, + anon_sym_RBRACE, + STATE(3523), 1, + aux_sym_enum_body_repeat1, + [116304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [115746] = 4, + ACTIONS(750), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1271), 1, + anon_sym_LBRACE, + STATE(3128), 1, + sym_object_type, + [116317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 1, + ACTIONS(2897), 1, anon_sym_GT, - ACTIONS(6797), 1, + ACTIONS(6856), 1, anon_sym_COMMA, - STATE(3332), 1, + STATE(3395), 1, aux_sym_implements_clause_repeat1, - [115759] = 2, + [116330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 3, - sym__automatic_semicolon, + ACTIONS(6858), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115768] = 4, + ACTIONS(6861), 1, + anon_sym_RPAREN, + STATE(3585), 1, + aux_sym_formal_parameters_repeat1, + [116343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4234), 1, + ACTIONS(4246), 1, anon_sym_RPAREN, - STATE(3567), 1, + STATE(3592), 1, aux_sym_array_repeat1, - [115781] = 4, + [116356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4234), 1, + ACTIONS(4246), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [115794] = 4, + [116369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6799), 1, + ACTIONS(6566), 1, sym_identifier, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(6803), 1, - sym_private_property_identifier, - [115807] = 2, + ACTIONS(6863), 1, + anon_sym_GT, + STATE(3923), 1, + sym_type_parameter, + [116382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 3, + ACTIONS(6865), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115816] = 4, + [116391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_COMMA, - ACTIONS(6807), 1, - anon_sym_LBRACE, - STATE(3332), 1, - aux_sym_implements_clause_repeat1, - [115829] = 2, + ACTIONS(6566), 1, + sym_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + STATE(3923), 1, + sym_type_parameter, + [116404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6809), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115838] = 4, + ACTIONS(5720), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [116413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6811), 1, + ACTIONS(6869), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [115851] = 2, + [116426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 3, + ACTIONS(6871), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115860] = 2, + [116435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6815), 3, + ACTIONS(6873), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115869] = 2, + [116444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 3, + ACTIONS(6871), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115878] = 2, + [116453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6815), 3, + ACTIONS(6875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115887] = 2, + [116462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115896] = 2, + ACTIONS(5488), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_extends, + ACTIONS(6072), 1, + anon_sym_PIPE, + [116475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115905] = 2, + ACTIONS(6877), 1, + sym_identifier, + STATE(1130), 1, + sym_decorator_member_expression, + STATE(1154), 1, + sym_decorator_call_expression, + [116488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 3, + ACTIONS(6865), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115914] = 2, + [116497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 3, - sym__automatic_semicolon, + ACTIONS(6863), 1, + anon_sym_GT, + ACTIONS(6879), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115923] = 2, + STATE(3492), 1, + aux_sym_type_parameters_repeat1, + [116510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 3, - sym__automatic_semicolon, + ACTIONS(2737), 1, + anon_sym_GT, + ACTIONS(6881), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115932] = 2, + STATE(3395), 1, + aux_sym_implements_clause_repeat1, + [116523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6815), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115941] = 2, + [116532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6823), 3, + ACTIONS(6883), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115950] = 2, + [116541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 3, + ACTIONS(6885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115959] = 2, + [116550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 3, + ACTIONS(6871), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115968] = 3, + [116559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, - anon_sym_LBRACE, - ACTIONS(6212), 2, + ACTIONS(6887), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [115979] = 4, + anon_sym_SEMI, + [116568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6825), 1, - anon_sym_RBRACE, - STATE(3635), 1, - aux_sym_object_repeat1, - [115992] = 4, + ACTIONS(4230), 1, + anon_sym_RPAREN, + STATE(3663), 1, + aux_sym_array_repeat1, + [116581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4202), 1, + ACTIONS(4222), 1, anon_sym_RPAREN, - STATE(3585), 1, + STATE(3610), 1, aux_sym_array_repeat1, - [116005] = 4, + [116594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4202), 1, + ACTIONS(4222), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [116018] = 4, + [116607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6827), 1, + ACTIONS(6889), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [116031] = 2, + [116620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 3, + ACTIONS(6346), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [116040] = 2, + [116629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 3, + ACTIONS(6891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [116049] = 2, + [116638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [116058] = 4, + ACTIONS(750), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1271), 1, + anon_sym_LBRACE, + STATE(3281), 1, + sym_object_type, + [116651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(6893), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6834), 1, - anon_sym_RBRACK, - STATE(3589), 1, - aux_sym_tuple_type_repeat1, - [116071] = 4, + anon_sym_SEMI, + [116660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(6883), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6838), 1, - anon_sym_RBRACK, - STATE(3644), 1, - aux_sym_tuple_type_repeat1, - [116084] = 2, + anon_sym_SEMI, + [116669] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2081), 1, + anon_sym_while, + ACTIONS(6895), 1, + anon_sym_else, + STATE(699), 1, + sym_else_clause, + [116682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 3, + ACTIONS(5644), 1, + anon_sym_DOT, + ACTIONS(6897), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [116093] = 4, + [116693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(6715), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6842), 1, - anon_sym_RBRACE, - STATE(3635), 1, - aux_sym_object_repeat1, - [116106] = 4, + anon_sym_SEMI, + [116702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - ACTIONS(6844), 1, - anon_sym_RBRACE, - STATE(3636), 1, - aux_sym_object_pattern_repeat1, - [116119] = 4, + ACTIONS(5634), 1, + anon_sym_DOT, + ACTIONS(6897), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [116713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1297), 1, - anon_sym_SQUOTE, - STATE(3879), 1, - sym_string, - [116132] = 2, + ACTIONS(5516), 1, + anon_sym_RBRACE, + ACTIONS(6899), 1, + anon_sym_COMMA, + STATE(3666), 1, + aux_sym_named_imports_repeat1, + [116726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 3, + ACTIONS(6865), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [116141] = 4, + [116735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(2497), 1, + anon_sym_RBRACK, + ACTIONS(6901), 1, anon_sym_COMMA, - ACTIONS(6848), 1, - anon_sym_RBRACE, - STATE(3636), 1, - aux_sym_object_pattern_repeat1, - [116154] = 4, + STATE(3485), 1, + aux_sym_tuple_type_repeat1, + [116748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6850), 1, - anon_sym_RBRACE, - STATE(3635), 1, - aux_sym_object_repeat1, - [116167] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_extends, - ACTIONS(6046), 1, - anon_sym_PIPE, - [116180] = 4, + ACTIONS(4230), 1, + anon_sym_RPAREN, + STATE(3344), 1, + aux_sym_array_repeat1, + [116761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_GT, - ACTIONS(6852), 1, + ACTIONS(6903), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3332), 1, - aux_sym_implements_clause_repeat1, - [116193] = 4, + anon_sym_SEMI, + [116770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, + ACTIONS(6905), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(6907), 1, anon_sym_await, - STATE(43), 1, + STATE(47), 1, sym__for_header, - [116206] = 2, + [116783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6858), 3, + ACTIONS(6909), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [116215] = 4, + [116792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(209), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1222), 1, - anon_sym_LBRACE, - STATE(682), 1, - sym_object_type, - [116228] = 4, + ACTIONS(6911), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [116801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(4762), 1, anon_sym_COMMA, - ACTIONS(6862), 1, + ACTIONS(6913), 1, anon_sym_RBRACE, - STATE(3525), 1, - aux_sym_enum_body_repeat1, - [116241] = 4, + STATE(3567), 1, + aux_sym_object_pattern_repeat1, + [116814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6866), 1, - anon_sym_RBRACE, - STATE(3452), 1, - aux_sym_export_clause_repeat1, - [116254] = 3, + ACTIONS(4317), 1, + anon_sym_RPAREN, + STATE(3581), 1, + aux_sym_array_repeat1, + [116827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 1, - anon_sym_as, - ACTIONS(6870), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116265] = 4, + ACTIONS(5369), 1, + anon_sym_type, + ACTIONS(6915), 1, + sym_identifier, + STATE(3852), 1, + sym__import_identifier, + [116840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(6872), 1, + ACTIONS(4317), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [116278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_is, - ACTIONS(5776), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [116289] = 4, + [116853] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(6917), 1, sym_identifier, - ACTIONS(6876), 1, - anon_sym_require, - STATE(3469), 1, - sym_nested_identifier, - [116302] = 4, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(6921), 1, + sym_private_property_identifier, + [116866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, - anon_sym_COMMA, - ACTIONS(6878), 1, - anon_sym_RBRACE, - STATE(3635), 1, - aux_sym_object_repeat1, - [116315] = 4, + ACTIONS(5764), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [116875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(6923), 1, anon_sym_COMMA, - ACTIONS(6880), 1, + ACTIONS(6925), 1, anon_sym_RBRACE, - STATE(3636), 1, - aux_sym_object_pattern_repeat1, - [116328] = 2, + STATE(3574), 1, + aux_sym_export_clause_repeat1, + [116888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6882), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [116337] = 4, + ACTIONS(5369), 1, + anon_sym_type, + ACTIONS(6927), 1, + sym_identifier, + STATE(3855), 1, + sym__import_identifier, + [116901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 1, - anon_sym_RPAREN, - ACTIONS(6884), 1, + ACTIONS(6929), 1, + anon_sym_as, + ACTIONS(5371), 2, anon_sym_COMMA, - STATE(3500), 1, - aux_sym_formal_parameters_repeat1, - [116350] = 4, + anon_sym_RBRACE, + [116912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(6931), 1, + anon_sym_as, + ACTIONS(6933), 2, anon_sym_COMMA, - ACTIONS(6886), 1, - anon_sym_RBRACK, - STATE(3416), 1, - aux_sym_array_repeat1, - [116363] = 4, + anon_sym_RBRACE, + [116923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, + ACTIONS(5137), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6888), 1, - anon_sym_RBRACK, - STATE(3478), 1, - aux_sym_array_pattern_repeat1, - [116376] = 4, + anon_sym_SEMI, + [116932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6890), 1, + ACTIONS(6935), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6893), 1, - anon_sym_RBRACE, - STATE(3615), 1, - aux_sym_export_clause_repeat1, - [116389] = 4, + anon_sym_SEMI, + [116941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6895), 1, - anon_sym_COMMA, - ACTIONS(6897), 1, - anon_sym_RBRACE, - STATE(3468), 1, - aux_sym_named_imports_repeat1, - [116402] = 4, + ACTIONS(5369), 1, + anon_sym_type, + ACTIONS(6937), 1, + sym_identifier, + STATE(3756), 1, + sym__import_identifier, + [116954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(6310), 1, anon_sym_from, - ACTIONS(6579), 1, + ACTIONS(6939), 1, anon_sym_as, - STATE(3760), 1, + STATE(3803), 1, sym__from_clause, - [116415] = 4, + [116967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - ACTIONS(6899), 1, + ACTIONS(6941), 1, sym_identifier, - STATE(3303), 1, + STATE(3414), 1, sym_export_clause, - [116428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(4303), 1, - anon_sym_RPAREN, - STATE(3649), 1, - aux_sym_array_repeat1, - [116441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(4303), 1, - anon_sym_RPAREN, - STATE(3416), 1, - aux_sym_array_repeat1, - [116454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6901), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116463] = 3, + [116980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6903), 1, - anon_sym_as, - ACTIONS(6694), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116474] = 4, + ACTIONS(6943), 1, + sym_identifier, + ACTIONS(6945), 1, + anon_sym_LBRACK, + ACTIONS(6947), 1, + sym_private_property_identifier, + [116993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6905), 1, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(3051), 2, anon_sym_COMMA, - ACTIONS(6907), 1, anon_sym_RBRACK, - STATE(3464), 1, - aux_sym_tuple_type_repeat1, - [116487] = 4, + [117004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 1, - anon_sym_RPAREN, - ACTIONS(6909), 1, - anon_sym_COMMA, - STATE(3500), 1, - aux_sym_formal_parameters_repeat1, - [116500] = 4, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(6952), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_type_parameters, + [117017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 1, + ACTIONS(5369), 1, + anon_sym_type, + ACTIONS(6954), 1, sym_identifier, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - sym_private_property_identifier, - [116513] = 4, + STATE(3750), 1, + sym__import_identifier, + [117030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_extends, - ACTIONS(6917), 1, - anon_sym_AMP, - ACTIONS(6919), 1, - anon_sym_PIPE, - [116526] = 3, + ACTIONS(6659), 1, + anon_sym_COMMA, + ACTIONS(6772), 1, + anon_sym_RBRACE, + STATE(3575), 1, + aux_sym_object_repeat1, + [117043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_LBRACE, - ACTIONS(6095), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [116537] = 4, + ACTIONS(4762), 1, + anon_sym_COMMA, + ACTIONS(6848), 1, + anon_sym_RBRACE, + STATE(3533), 1, + aux_sym_object_pattern_repeat1, + [117056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_GT, - ACTIONS(6923), 1, + ACTIONS(6956), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3332), 1, - aux_sym_implements_clause_repeat1, - [116550] = 4, + anon_sym_SEMI, + [117065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, - anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_PIPE, - ACTIONS(5898), 1, - anon_sym_extends, - [116563] = 4, + ACTIONS(1234), 1, + anon_sym_LT, + ACTIONS(6958), 1, + anon_sym_EQ, + STATE(4039), 1, + sym_type_parameters, + [117078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(4762), 1, anon_sym_COMMA, - ACTIONS(6925), 1, + ACTIONS(6960), 1, anon_sym_RBRACE, - STATE(3636), 1, + STATE(3567), 1, aux_sym_object_pattern_repeat1, - [116576] = 4, + [117091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, - sym_identifier, - ACTIONS(6927), 1, - anon_sym_GT, - STATE(3765), 1, - sym_type_parameter, - [116589] = 4, + ACTIONS(5644), 1, + anon_sym_DOT, + ACTIONS(6962), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, + ACTIONS(6964), 1, sym_identifier, - ACTIONS(6931), 1, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(6933), 1, + ACTIONS(6968), 1, sym_private_property_identifier, - [116602] = 4, + [117115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_GT, - ACTIONS(6935), 1, + ACTIONS(4762), 1, anon_sym_COMMA, - STATE(3552), 1, - aux_sym_type_parameters_repeat1, - [116615] = 4, + ACTIONS(6913), 1, + anon_sym_RBRACE, + STATE(3504), 1, + aux_sym_object_pattern_repeat1, + [117128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6937), 1, - sym_identifier, - ACTIONS(6939), 1, - anon_sym_LBRACK, - ACTIONS(6941), 1, - sym_private_property_identifier, - [116628] = 4, + ACTIONS(6390), 1, + anon_sym_EQ, + ACTIONS(6970), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 1, + ACTIONS(6659), 1, anon_sym_COMMA, - ACTIONS(6946), 1, + ACTIONS(6972), 1, anon_sym_RBRACE, - STATE(3635), 1, + STATE(3512), 1, aux_sym_object_repeat1, - [116641] = 4, + [117152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 1, + anon_sym_DOT, + ACTIONS(6962), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6948), 1, + ACTIONS(4762), 1, anon_sym_COMMA, - ACTIONS(6951), 1, + ACTIONS(6974), 1, anon_sym_RBRACE, - STATE(3636), 1, + STATE(3567), 1, aux_sym_object_pattern_repeat1, - [116654] = 4, + [117176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6953), 1, - sym_identifier, - ACTIONS(6955), 1, - anon_sym_LBRACK, - ACTIONS(6957), 1, - sym_private_property_identifier, - [116667] = 3, + ACTIONS(6659), 1, + anon_sym_COMMA, + ACTIONS(6976), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_object_repeat1, + [117189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, + ACTIONS(5672), 1, anon_sym_EQ, - ACTIONS(3084), 2, + ACTIONS(3094), 2, anon_sym_in, anon_sym_of, - [116678] = 4, + [117200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, - anon_sym_while, - ACTIONS(6959), 1, - anon_sym_else, - STATE(748), 1, - sym_else_clause, - [116691] = 4, + ACTIONS(6074), 1, + anon_sym_LBRACE, + ACTIONS(6076), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [117211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_type, - ACTIONS(6961), 1, + ACTIONS(6978), 1, sym_identifier, - STATE(3850), 1, - sym__import_identifier, - [116704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(6963), 1, - anon_sym_RPAREN, - STATE(4240), 1, - sym_type_annotation, - [116717] = 4, + ACTIONS(6980), 1, + anon_sym_LBRACK, + ACTIONS(6982), 1, + sym_private_property_identifier, + [117224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(1620), 1, anon_sym_COMMA, - ACTIONS(4210), 1, + ACTIONS(6984), 1, anon_sym_RPAREN, - STATE(3416), 1, + STATE(3344), 1, aux_sym_array_repeat1, - [116730] = 4, + [117237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_LT, - ACTIONS(6965), 1, - anon_sym_EQ, - STATE(4051), 1, - sym_type_parameters, - [116743] = 4, + ACTIONS(6986), 1, + anon_sym_COMMA, + ACTIONS(6989), 1, + anon_sym_RBRACE, + STATE(3664), 1, + aux_sym_enum_body_repeat1, + [117250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 1, - anon_sym_RBRACK, - ACTIONS(6967), 1, + ACTIONS(6659), 1, anon_sym_COMMA, - STATE(3589), 1, - aux_sym_tuple_type_repeat1, - [116756] = 4, + ACTIONS(6972), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_object_repeat1, + [117263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 1, + ACTIONS(6991), 1, anon_sym_COMMA, - ACTIONS(6972), 1, + ACTIONS(6994), 1, anon_sym_RBRACE, - STATE(3645), 1, + STATE(3666), 1, aux_sym_named_imports_repeat1, - [116769] = 4, + [117276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(6996), 1, + sym_identifier, + STATE(3360), 1, + sym_export_clause, + [117289] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, anon_sym_DQUOTE, ACTIONS(1238), 1, anon_sym_SQUOTE, - STATE(4210), 1, + STATE(4188), 1, sym_string, - [116782] = 4, + [117302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(4210), 1, - anon_sym_RPAREN, - STATE(3443), 1, - aux_sym_array_repeat1, - [116795] = 3, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(6203), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [117313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_EQ, - ACTIONS(6694), 2, - anon_sym_COMMA, + ACTIONS(6310), 1, anon_sym_from, - [116806] = 4, + ACTIONS(6939), 1, + anon_sym_as, + STATE(3820), 1, + sym__from_clause, + [117326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, + ACTIONS(6903), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6976), 1, - anon_sym_RPAREN, - STATE(3416), 1, - aux_sym_array_repeat1, - [116819] = 2, + anon_sym_SEMI, + [117335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7000), 1, + anon_sym_in, + ACTIONS(7002), 1, + anon_sym_COLON, + [117345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2745), 1, + sym_formal_parameters, + [117355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 3, + ACTIONS(5109), 2, anon_sym_COMMA, anon_sym_RBRACE, + [117363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6566), 1, + sym_identifier, + STATE(3442), 1, + sym_type_parameter, + [117373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3372), 1, + anon_sym_LBRACE, + STATE(1959), 1, + sym_statement_block, + [117383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3878), 1, + sym_statement_block, + [117393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6310), 1, anon_sym_from, - [116828] = 4, + STATE(3857), 1, + sym__from_clause, + [117403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 1, + ACTIONS(5059), 2, anon_sym_COMMA, - ACTIONS(6981), 1, anon_sym_RBRACE, - STATE(3651), 1, - aux_sym_enum_body_repeat1, - [116841] = 4, + [117411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1279), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3140), 1, - sym_object_type, - [116854] = 2, + STATE(3704), 1, + sym_statement_block, + [117421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [116863] = 2, + ACTIONS(7004), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, + [117431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [116871] = 2, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4068), 1, + sym_formal_parameters, + [117441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [116879] = 3, + ACTIONS(7004), 1, + anon_sym_LPAREN, + STATE(3765), 1, + sym_parenthesized_expression, + [117451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6970), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(7006), 1, anon_sym_LPAREN, - STATE(4027), 1, - sym_formal_parameters, - [116889] = 3, + STATE(34), 1, + sym__for_header, + [117469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(1796), 1, + STATE(3881), 1, sym_statement_block, - [116899] = 2, + [117479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 2, + ACTIONS(5067), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [116907] = 3, + anon_sym_RBRACE, + [117487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(2044), 1, + STATE(1929), 1, sym_class_body, - [116917] = 3, + [117497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - anon_sym_LBRACE, - STATE(2048), 1, - sym_class_body, - [116927] = 3, + ACTIONS(6861), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [117505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, - anon_sym_LBRACE, - STATE(1368), 1, - sym_statement_block, - [116937] = 3, + ACTIONS(7008), 1, + anon_sym_SEMI, + ACTIONS(7010), 1, + sym__automatic_semicolon, + [117515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3851), 1, - sym__from_clause, - [116947] = 3, + ACTIONS(7004), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym_parenthesized_expression, + [117525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(1373), 1, + STATE(573), 1, sym_statement_block, - [116957] = 3, + [117535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7004), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, + [117545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(1797), 1, - sym_class_body, - [116967] = 2, + STATE(3679), 1, + sym_statement_block, + [117555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 2, + ACTIONS(5075), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116975] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [116983] = 2, + [117563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 2, + ACTIONS(7012), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116991] = 3, + [117571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - anon_sym_LBRACE, - STATE(1375), 1, - sym_class_body, - [117001] = 3, + ACTIONS(7014), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(745), 1, - sym_class_body, - [117011] = 2, + STATE(3687), 1, + sym_statement_block, + [117589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [117019] = 3, + ACTIONS(7004), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, + [117599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(7004), 1, anon_sym_LPAREN, - STATE(4058), 1, - sym_formal_parameters, - [117029] = 2, + STATE(49), 1, + sym_parenthesized_expression, + [117609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_of, - [117037] = 2, + ACTIONS(7004), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym_parenthesized_expression, + [117619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 2, + ACTIONS(5093), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117045] = 3, - ACTIONS(3), 1, + [117627] = 2, + ACTIONS(6322), 1, sym_comment, - ACTIONS(3017), 1, - anon_sym_COLON, - STATE(3782), 1, - sym_type_annotation, - [117055] = 2, + ACTIONS(7016), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [117635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(5071), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117063] = 3, + [117643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3778), 1, + STATE(3695), 1, sym_statement_block, - [117073] = 2, + [117653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 2, + ACTIONS(5089), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117081] = 3, + [117661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(6995), 1, - anon_sym_STAR, - [117091] = 3, + ACTIONS(5081), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_class_body, + [117679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(7018), 1, sym_identifier, - STATE(3542), 1, - sym_type_parameter, - [117101] = 3, + STATE(3617), 1, + sym_nested_identifier, + [117689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1958), 1, - sym_class_body, - [117111] = 3, + ACTIONS(5113), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(7020), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [117705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7022), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [117713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(1960), 1, - sym_statement_block, - [117121] = 3, + STATE(2052), 1, + sym_class_body, + [117723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 1, + ACTIONS(5548), 1, anon_sym_LPAREN, - STATE(2348), 1, + STATE(2360), 1, sym_arguments, - [117131] = 3, + [117733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(1962), 1, + STATE(3702), 1, sym_statement_block, - [117141] = 3, + [117743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - sym_identifier, - ACTIONS(6999), 1, - sym_private_property_identifier, - [117151] = 3, + ACTIONS(5125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1922), 1, - sym_class_body, - [117161] = 2, + ACTIONS(5063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 2, + ACTIONS(5085), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117169] = 3, + [117767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3860), 1, - sym_statement_block, - [117179] = 3, + ACTIONS(5125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3832), 1, - sym_statement_block, - [117189] = 3, + ACTIONS(7024), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 1, - sym_identifier, - ACTIONS(7003), 1, - sym_private_property_identifier, - [117199] = 3, + ACTIONS(7026), 1, + anon_sym_SEMI, + ACTIONS(7028), 1, + sym__automatic_semicolon, + [117793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3049), 1, + STATE(3079), 1, sym_formal_parameters, - [117209] = 3, + [117803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7005), 1, - sym_identifier, - ACTIONS(7007), 1, - anon_sym_STAR, - [117219] = 3, + ACTIONS(5113), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3957), 1, + STATE(4003), 1, sym_formal_parameters, - [117229] = 2, + [117821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 2, + ACTIONS(5093), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117237] = 3, + [117829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym__for_header, - [117247] = 3, + ACTIONS(5105), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - sym_identifier, - ACTIONS(7013), 1, - sym_private_property_identifier, - [117257] = 3, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(602), 1, + sym_statement_block, + [117847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4005), 1, - sym_formal_parameters, - [117267] = 3, + ACTIONS(4228), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(1807), 1, - sym_statement_block, - [117277] = 2, + ACTIONS(7030), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 2, + ACTIONS(7032), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117285] = 3, + [117871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(2949), 1, + sym_formal_parameters, + [117881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3830), 1, + STATE(3710), 1, sym_statement_block, - [117295] = 3, + [117891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5085), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(1809), 1, + STATE(1853), 1, sym_class_body, - [117305] = 2, + [117909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 2, + ACTIONS(7034), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117313] = 3, + [117917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3988), 1, - sym_formal_parameters, - [117323] = 3, + ACTIONS(6053), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [117925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3752), 1, - sym__from_clause, - [117333] = 3, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3716), 1, + sym_statement_block, + [117935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2767), 1, - sym_formal_parameters, - [117343] = 3, + ACTIONS(6055), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [117943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(600), 1, + STATE(748), 1, sym_class_body, - [117353] = 3, + [117953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, - anon_sym_LBRACE, - STATE(618), 1, - sym_statement_block, - [117363] = 3, + ACTIONS(5063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(7036), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_STAR, + [117971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6310), 1, + anon_sym_from, + STATE(3844), 1, + sym__from_clause, + [117981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2511), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, anon_sym_LPAREN, - STATE(1692), 1, + STATE(1837), 1, sym_arguments, - [117373] = 2, + [117999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 2, + ACTIONS(7040), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117381] = 3, + [118015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(605), 1, + STATE(2034), 1, sym_class_body, - [117391] = 2, + [118025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 2, + ACTIONS(6066), 1, + anon_sym_in, + ACTIONS(6068), 1, + anon_sym_of, + [118043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7042), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117399] = 2, + [118051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6310), 1, + anon_sym_from, + STATE(3940), 1, + sym__from_clause, + [118061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7044), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6951), 2, + ACTIONS(7046), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [117407] = 2, + ACTIONS(7048), 1, + anon_sym_from, + [118079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7050), 1, + sym_identifier, + STATE(3652), 1, + sym_nested_identifier, + [118089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7052), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(7054), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117415] = 3, + [118105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 1, + ACTIONS(7056), 1, sym_identifier, - ACTIONS(6915), 1, + ACTIONS(7058), 1, sym_private_property_identifier, - [117425] = 3, + [118115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1918), 1, - sym_class_body, - [117435] = 3, + ACTIONS(7060), 1, + sym_identifier, + ACTIONS(7062), 1, + sym_private_property_identifier, + [118125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1885), 1, - sym_class_body, - [117445] = 2, + ACTIONS(7064), 1, + sym_identifier, + ACTIONS(7066), 1, + sym_private_property_identifier, + [118135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [117453] = 3, + ACTIONS(6709), 1, + sym_identifier, + ACTIONS(6713), 1, + sym_private_property_identifier, + [118145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(131), 1, + STATE(1941), 1, sym_class_body, - [117463] = 3, + [118155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_SEMI, - ACTIONS(7025), 1, - sym__automatic_semicolon, - [117473] = 2, + ACTIONS(3372), 1, + anon_sym_LBRACE, + STATE(1944), 1, + sym_statement_block, + [118165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 2, + ACTIONS(2063), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [117481] = 3, + STATE(3733), 1, + sym_statement_block, + [118175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, - anon_sym_SEMI, - ACTIONS(7029), 1, - sym__automatic_semicolon, - [117491] = 3, + ACTIONS(5089), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7031), 1, - anon_sym_SEMI, - ACTIONS(7033), 1, - sym__automatic_semicolon, - [117501] = 3, + ACTIONS(7068), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_switch_body, + [118193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7035), 1, - sym_identifier, - ACTIONS(7037), 1, - anon_sym_STAR, - [117511] = 3, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(3740), 1, + sym_statement_block, + [118203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(7006), 1, anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, - [117521] = 2, + STATE(45), 1, + sym__for_header, + [118213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3134), 1, + sym_formal_parameters, + [118223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 2, + ACTIONS(5081), 2, anon_sym_COMMA, anon_sym_RBRACE, - [117529] = 3, + [118231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(622), 1, + sym_class_body, + [118241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(45), 1, - sym_parenthesized_expression, - [117539] = 3, + STATE(3974), 1, + sym_formal_parameters, + [118251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5632), 1, anon_sym_LBRACE, - STATE(608), 1, + STATE(617), 1, sym_statement_block, - [117549] = 3, + [118261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, - [117559] = 3, + ACTIONS(5632), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_statement_block, + [118271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7070), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_class_body, + [118289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5584), 1, + anon_sym_LBRACE, + STATE(137), 1, + sym_class_body, + [118299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - STATE(1420), 1, + STATE(2595), 1, sym_arguments, - [117569] = 3, + [118309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_identifier, - STATE(3540), 1, - sym_nested_identifier, - [117579] = 3, + ACTIONS(7072), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7043), 1, - anon_sym_LBRACE, - STATE(3167), 1, - sym_enum_body, - [117589] = 3, + ACTIONS(7074), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7045), 1, + ACTIONS(4238), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(7047), 1, + [118333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4232), 2, sym__automatic_semicolon, - [117599] = 2, + anon_sym_SEMI, + [118341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 2, + ACTIONS(7076), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [117607] = 2, + anon_sym_RBRACE, + [118349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(749), 1, + sym_class_body, + [118359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_statement_block, + [118369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 2, + ACTIONS(6628), 2, anon_sym_COMMA, anon_sym_RBRACK, - [117615] = 3, + [118377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(3474), 1, - sym_type_annotation, - [117625] = 3, + ACTIONS(6566), 1, + sym_identifier, + STATE(3520), 1, + sym_type_parameter, + [118387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_LPAREN, - STATE(2478), 1, - sym_arguments, - [117635] = 3, + ACTIONS(7078), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3109), 1, - sym_formal_parameters, - [117645] = 2, + ACTIONS(5632), 1, + anon_sym_LBRACE, + STATE(3176), 1, + sym_statement_block, + [118405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5992), 2, + ACTIONS(5510), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [117653] = 3, + STATE(1872), 1, + sym_class_body, + [118415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(6566), 1, + sym_identifier, + STATE(3923), 1, + sym_type_parameter, + [118425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(1421), 1, - sym_class_body, - [117663] = 3, + STATE(1804), 1, + sym_statement_block, + [118435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(3948), 1, + STATE(2876), 1, sym_formal_parameters, - [117673] = 3, + [118445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(1353), 1, anon_sym_LBRACE, - STATE(159), 1, - sym_class_body, - [117683] = 3, + STATE(132), 1, + sym_statement_block, + [118455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(707), 1, + STATE(1380), 1, sym_class_body, - [117693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - anon_sym_SEMI, - ACTIONS(7053), 1, - sym__automatic_semicolon, - [117703] = 2, + [118465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [117711] = 2, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4103), 1, + sym_formal_parameters, + [118475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7055), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117719] = 3, + ACTIONS(3590), 1, + anon_sym_LBRACE, + STATE(1378), 1, + sym_statement_block, + [118485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(144), 1, + STATE(669), 1, sym_statement_block, - [117729] = 3, + [118495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7057), 1, - anon_sym_SEMI, - ACTIONS(7059), 1, - sym__automatic_semicolon, - [117739] = 3, + ACTIONS(7080), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_enum_body, + [118505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(1848), 1, - sym_statement_block, - [117749] = 3, + ACTIONS(7082), 1, + sym_identifier, + ACTIONS(7084), 1, + sym_private_property_identifier, + [118515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(5632), 1, anon_sym_LBRACE, - STATE(3130), 1, + STATE(3048), 1, sym_statement_block, - [117759] = 3, + [118525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(7086), 1, anon_sym_LBRACE, - STATE(1464), 1, - sym_statement_block, - [117769] = 3, + STATE(3095), 1, + sym_enum_body, + [118535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(7088), 1, sym_identifier, - STATE(3765), 1, - sym_type_parameter, - [117779] = 3, + ACTIONS(7090), 1, + sym_private_property_identifier, + [118545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4157), 1, - sym_formal_parameters, - [117789] = 3, + ACTIONS(7092), 1, + anon_sym_SEMI, + ACTIONS(7094), 1, + sym__automatic_semicolon, + [118555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 1, + ACTIONS(7096), 1, anon_sym_SEMI, - ACTIONS(7063), 1, + ACTIONS(7098), 1, sym__automatic_semicolon, - [117799] = 3, + [118565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4152), 1, + sym_formal_parameters, + [118575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [118583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(7086), 1, anon_sym_LBRACE, - STATE(3294), 1, - sym_class_body, - [117809] = 3, + STATE(3181), 1, + sym_enum_body, + [118593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(4178), 1, + STATE(4166), 1, sym_formal_parameters, - [117819] = 3, + [118603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(3785), 1, - sym_statement_block, - [117829] = 3, + STATE(1860), 1, + sym_class_body, + [118613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(1446), 1, + STATE(1400), 1, sym_class_body, - [117839] = 3, + [118623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7100), 1, sym_identifier, - ACTIONS(7067), 1, + ACTIONS(7102), 1, sym_private_property_identifier, - [117849] = 3, + [118633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, - anon_sym_LBRACE, - STATE(1448), 1, - sym_statement_block, - [117859] = 3, + ACTIONS(7104), 1, + sym_identifier, + ACTIONS(7106), 1, + sym_private_property_identifier, + [118643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_enum_body, - [117869] = 3, + ACTIONS(7108), 1, + sym_identifier, + ACTIONS(7110), 1, + sym_private_property_identifier, + [118653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym_SEMI, - ACTIONS(7073), 1, - sym__automatic_semicolon, - [117879] = 3, + ACTIONS(7112), 1, + sym_identifier, + ACTIONS(7114), 1, + sym_private_property_identifier, + [118663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7116), 2, + anon_sym_COMMA, + anon_sym_GT, + [118671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - STATE(666), 1, - sym_statement_block, - [117889] = 3, + STATE(158), 1, + sym_class_body, + [118681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(164), 1, + STATE(1405), 1, sym_statement_block, - [117899] = 3, + [118691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(3154), 1, + STATE(1416), 1, sym_statement_block, - [117909] = 3, + [118701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym_class_body, - [117919] = 2, + ACTIONS(3816), 1, + anon_sym_LPAREN, + STATE(1767), 1, + sym_arguments, + [118711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 2, - anon_sym_COMMA, - anon_sym_GT, - [117927] = 3, + ACTIONS(7118), 1, + anon_sym_SEMI, + ACTIONS(7120), 1, + sym__automatic_semicolon, + [118721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(7122), 1, sym_identifier, - ACTIONS(7077), 1, - sym_private_property_identifier, - [117937] = 3, + ACTIONS(7124), 1, + anon_sym_STAR, + [118731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4225), 1, + sym_formal_parameters, + [118741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3992), 1, + sym_formal_parameters, + [118751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7043), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(3180), 1, - sym_enum_body, - [117947] = 3, + STATE(2040), 1, + sym_class_body, + [118761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(1904), 1, + STATE(1963), 1, sym_statement_block, - [117957] = 3, + [118771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(1353), 1, anon_sym_LBRACE, - STATE(3205), 1, + STATE(131), 1, sym_statement_block, - [117967] = 3, + [118781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3721), 1, - sym__from_clause, - [117977] = 3, + ACTIONS(3005), 1, + anon_sym_COLON, + STATE(3870), 1, + sym_type_annotation, + [118791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - STATE(4103), 1, - sym_formal_parameters, - [117987] = 3, + STATE(1308), 1, + sym_arguments, + [118801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(1817), 1, + STATE(2027), 1, sym_class_body, - [117997] = 2, + [118811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 2, + ACTIONS(7126), 2, anon_sym_COMMA, - anon_sym_GT, - [118005] = 3, + anon_sym_RPAREN, + [118819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2736), 1, + STATE(3041), 1, sym_formal_parameters, - [118015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118023] = 3, + [118829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3934), 1, - sym_formal_parameters, - [118033] = 3, + ACTIONS(5528), 2, + anon_sym_in, + anon_sym_of, + [118837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(7128), 1, sym_identifier, - STATE(3538), 1, - sym_type_parameter, - [118043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118051] = 3, + ACTIONS(7130), 1, + anon_sym_STAR, + [118847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(3278), 1, anon_sym_LPAREN, - STATE(4181), 1, - sym_formal_parameters, - [118061] = 3, + STATE(1436), 1, + sym_arguments, + [118857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(1469), 1, + STATE(1438), 1, sym_class_body, - [118071] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [118079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7085), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [118087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_COLON, - STATE(3732), 1, - sym_type_annotation, - [118097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3743), 1, - sym_statement_block, - [118107] = 2, + [118867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118115] = 3, + ACTIONS(7132), 1, + sym_identifier, + ACTIONS(7134), 1, + anon_sym_STAR, + [118877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3836), 1, - sym_statement_block, - [118125] = 3, + ACTIONS(7136), 1, + anon_sym_SEMI, + ACTIONS(7138), 1, + sym__automatic_semicolon, + [118887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(3024), 1, anon_sym_LPAREN, - STATE(3218), 1, - sym_formal_parameters, - [118135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1881), 1, - sym_class_body, - [118145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym_class_body, - [118155] = 3, + STATE(2360), 1, + sym_arguments, + [118897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - STATE(3195), 1, + STATE(2868), 1, sym_formal_parameters, - [118165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - sym_identifier, - ACTIONS(7089), 1, - sym_private_property_identifier, - [118175] = 2, + [118907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 2, + ACTIONS(7140), 2, sym__automatic_semicolon, anon_sym_SEMI, - [118183] = 3, + [118915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7093), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(7095), 1, + ACTIONS(6768), 1, sym_private_property_identifier, - [118193] = 3, + [118925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym__for_header, - [118203] = 3, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + sym_private_property_identifier, + [118935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7097), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7099), 1, + ACTIONS(7148), 1, sym_private_property_identifier, - [118213] = 3, + [118945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_switch_body, - [118223] = 3, + ACTIONS(7150), 1, + anon_sym_SEMI, + ACTIONS(7152), 1, + sym__automatic_semicolon, + [118955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, + ACTIONS(7154), 1, sym_identifier, - ACTIONS(6712), 1, + ACTIONS(7156), 1, sym_private_property_identifier, - [118233] = 2, + [118965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7103), 2, - sym__automatic_semicolon, + ACTIONS(7158), 1, anon_sym_SEMI, - [118241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7107), 1, - anon_sym_from, - [118251] = 3, + ACTIONS(7160), 1, + sym__automatic_semicolon, + [118975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(1303), 1, - sym_arguments, - [118261] = 3, + STATE(3182), 1, + sym_formal_parameters, + [118985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(3303), 1, sym_class_body, - [118271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7109), 1, - sym_identifier, - ACTIONS(7111), 1, - sym_private_property_identifier, - [118281] = 3, + [118995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2776), 1, - sym_formal_parameters, - [118291] = 3, + ACTIONS(6994), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(3152), 1, + STATE(1441), 1, sym_class_body, - [118301] = 2, + [119013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7113), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118309] = 3, + ACTIONS(3590), 1, + anon_sym_LBRACE, + STATE(1443), 1, + sym_statement_block, + [119023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_class_body, - [118319] = 3, + ACTIONS(7162), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(3030), 1, + STATE(1841), 1, sym_class_body, - [118329] = 3, + [119041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(3838), 1, + STATE(1445), 1, sym_statement_block, - [118339] = 2, + [119051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7115), 2, - sym__automatic_semicolon, + ACTIONS(7164), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4219), 1, + sym_formal_parameters, + [119069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7166), 1, anon_sym_SEMI, - [118347] = 3, + ACTIONS(7168), 1, + sym__automatic_semicolon, + [119079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7117), 1, - sym_identifier, - ACTIONS(7119), 1, - sym_private_property_identifier, - [118357] = 3, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4181), 1, + sym_formal_parameters, + [119089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 1, + ACTIONS(7170), 1, sym_identifier, - ACTIONS(7123), 1, + ACTIONS(7172), 1, sym_private_property_identifier, - [118367] = 3, + [119099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7125), 1, + ACTIONS(7174), 1, sym_identifier, - ACTIONS(7127), 1, + ACTIONS(7176), 1, sym_private_property_identifier, - [118377] = 3, + [119109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7129), 1, + ACTIONS(7178), 1, sym_identifier, - ACTIONS(7131), 1, + ACTIONS(7180), 1, sym_private_property_identifier, - [118387] = 3, + [119119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(2027), 1, - sym_class_body, - [118397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7133), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [118405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7135), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [118413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7137), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [118421] = 3, + STATE(1842), 1, + sym_statement_block, + [119129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 1, + ACTIONS(7182), 1, sym_identifier, - ACTIONS(7141), 1, + ACTIONS(7184), 1, sym_private_property_identifier, - [118431] = 2, + [119139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118439] = 3, + ACTIONS(3005), 1, + anon_sym_COLON, + STATE(3787), 1, + sym_type_annotation, + [119149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 1, - sym_identifier, - ACTIONS(7145), 1, - sym_private_property_identifier, - [118449] = 3, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1968), 1, + sym_class_body, + [119159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7147), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(3809), 1, - sym_parenthesized_expression, - [118459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6662), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [118467] = 3, + STATE(4179), 1, + sym_formal_parameters, + [119169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6653), 1, - sym_identifier, - ACTIONS(6657), 1, - sym_private_property_identifier, - [118477] = 3, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(3990), 1, + sym_formal_parameters, + [119179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(688), 1, + STATE(1828), 1, sym_statement_block, - [118487] = 2, + [119189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6623), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [118495] = 2, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1876), 1, + sym_class_body, + [119199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7149), 2, + ACTIONS(7186), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [118503] = 3, + anon_sym_RBRACK, + [119207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(749), 1, - sym_enum_body, - [118513] = 3, + STATE(1855), 1, + sym_class_body, + [119217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(613), 1, + STATE(1877), 1, sym_statement_block, - [118523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(610), 1, - sym_class_body, - [118533] = 2, + [119227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 2, + ACTIONS(6819), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118541] = 3, + [119235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(3724), 1, + STATE(1878), 1, sym_statement_block, - [118551] = 2, + [119245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 2, + ACTIONS(6824), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7151), 1, - anon_sym_in, - ACTIONS(7153), 1, - anon_sym_COLON, - [118569] = 3, + [119253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - STATE(3677), 1, - sym_statement_block, - [118579] = 3, + STATE(155), 1, + sym_class_body, + [119263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(1836), 1, + STATE(1849), 1, sym_statement_block, - [118589] = 2, + [119273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 2, + ACTIONS(5131), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118597] = 3, + [119281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, - anon_sym_LPAREN, - STATE(2572), 1, - sym_arguments, - [118607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5036), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5485), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1505), 1, - sym_class_body, - [118625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1837), 1, + STATE(3130), 1, sym_class_body, - [118635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4012), 1, - sym_formal_parameters, - [118645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3466), 1, - anon_sym_LBRACE, - STATE(1504), 1, - sym_statement_block, - [118655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7155), 1, - sym_identifier, - ACTIONS(7157), 1, - sym_private_property_identifier, - [118665] = 3, + [119291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(3675), 1, + STATE(3764), 1, sym_statement_block, - [118675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7159), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6286), 1, - anon_sym_from, - STATE(3720), 1, - sym__from_clause, - [118693] = 2, + [119301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7161), 2, + ACTIONS(5105), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118701] = 3, + [119309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 1, - sym_identifier, - ACTIONS(7165), 1, - anon_sym_STAR, - [118711] = 3, + ACTIONS(3372), 1, + anon_sym_LBRACE, + STATE(1952), 1, + sym_statement_block, + [119319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(2638), 1, - sym_formal_parameters, - [118721] = 2, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1851), 1, + sym_class_body, + [119329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7167), 2, + ACTIONS(7188), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [118729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7169), 1, - anon_sym_SEMI, - ACTIONS(7171), 1, - sym__automatic_semicolon, - [118739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 1, - anon_sym_LPAREN, - STATE(2348), 1, - sym_arguments, - [118749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7173), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118757] = 3, + anon_sym_RBRACK, + [119337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3372), 1, anon_sym_LBRACE, - STATE(1947), 1, + STATE(1966), 1, sym_statement_block, - [118767] = 3, + [119347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(3089), 1, + STATE(1964), 1, sym_class_body, - [118777] = 3, + [119357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(3071), 1, + STATE(1447), 1, sym_class_body, - [118787] = 3, + [119367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1952), 1, + STATE(3098), 1, sym_class_body, - [118797] = 3, + [119377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(3819), 1, - sym_statement_block, - [118807] = 3, + STATE(3089), 1, + sym_class_body, + [119387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(1935), 1, + STATE(1448), 1, sym_class_body, - [118817] = 2, + [119397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118825] = 2, + ACTIONS(7190), 1, + sym_identifier, + ACTIONS(7192), 1, + sym_private_property_identifier, + [119407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118833] = 3, + ACTIONS(7194), 1, + sym_identifier, + ACTIONS(7196), 1, + sym_private_property_identifier, + [119417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(3686), 1, + STATE(1449), 1, sym_statement_block, - [118843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_in, - ACTIONS(6276), 1, - anon_sym_of, - [118853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6577), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4033), 1, - sym_formal_parameters, - [118871] = 3, + [119427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7175), 1, + ACTIONS(7198), 1, sym_identifier, - ACTIONS(7177), 1, + ACTIONS(7200), 1, sym_private_property_identifier, - [118881] = 3, + [119437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, + ACTIONS(6917), 1, sym_identifier, - ACTIONS(7181), 1, + ACTIONS(6921), 1, sym_private_property_identifier, - [118891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(1921), 1, - sym_statement_block, - [118901] = 3, + [119447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(4066), 1, + STATE(3993), 1, sym_formal_parameters, - [118911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(3693), 1, - sym_statement_block, - [118921] = 3, + [119457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(606), 1, + STATE(1910), 1, sym_class_body, - [118931] = 3, + [119467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7183), 1, - sym_identifier, - STATE(3469), 1, - sym_nested_identifier, - [118941] = 3, + ACTIONS(6564), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [119475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(1485), 1, + STATE(1948), 1, sym_class_body, - [118951] = 3, + [119485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - anon_sym_LBRACE, - STATE(2013), 1, - sym_class_body, - [118961] = 3, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4016), 1, + sym_formal_parameters, + [119495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - sym_private_property_identifier, - [118971] = 2, + ACTIONS(3590), 1, + anon_sym_LBRACE, + STATE(1450), 1, + sym_statement_block, + [119505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 2, + ACTIONS(7202), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [118979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7189), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7191), 1, - anon_sym_SEMI, - ACTIONS(7193), 1, - sym__automatic_semicolon, - [118997] = 2, + anon_sym_GT, + [119513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7195), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [119005] = 3, + ACTIONS(5502), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_class_body, + [119523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(1456), 1, + STATE(3674), 1, sym_statement_block, - [119015] = 3, + [119533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - STATE(1896), 1, - sym_class_body, - [119025] = 2, + STATE(3769), 1, + sym_statement_block, + [119543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5936), 2, + ACTIONS(3372), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [119033] = 2, + STATE(1856), 1, + sym_statement_block, + [119553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 2, + ACTIONS(5578), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [119041] = 3, + STATE(601), 1, + sym_class_body, + [119563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, + ACTIONS(5658), 1, anon_sym_LPAREN, - STATE(2932), 1, + STATE(4151), 1, sym_formal_parameters, - [119051] = 3, + [119573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(2986), 1, anon_sym_LPAREN, - STATE(1890), 1, + STATE(2489), 1, sym_arguments, - [119061] = 2, + [119583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119069] = 2, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1930), 1, + sym_class_body, + [119593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [119077] = 2, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_class_body, + [119603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [119085] = 3, + ACTIONS(2063), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_statement_block, + [119613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(5632), 1, anon_sym_LBRACE, - STATE(1483), 1, + STATE(615), 1, sym_statement_block, - [119095] = 2, + [119623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119103] = 3, + ACTIONS(7204), 1, + anon_sym_LPAREN, + STATE(3735), 1, + sym_parenthesized_expression, + [119633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_class_body, - [119113] = 3, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4113), 1, + sym_formal_parameters, + [119643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(3162), 1, + STATE(1867), 1, sym_class_body, - [119123] = 3, + [119653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(3077), 1, - sym_class_body, - [119133] = 2, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4086), 1, + sym_formal_parameters, + [119663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 2, + ACTIONS(7206), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [119141] = 3, + anon_sym_RPAREN, + [119671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1476), 1, + STATE(3261), 1, sym_class_body, - [119151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(1874), 1, - sym_statement_block, - [119161] = 3, + [119681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1831), 1, + STATE(3286), 1, sym_class_body, - [119171] = 3, + [119691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(1859), 1, + STATE(1454), 1, sym_statement_block, - [119181] = 3, + [119701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - STATE(1850), 1, + STATE(1455), 1, sym_class_body, - [119191] = 2, + [119711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(6643), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [119199] = 2, + anon_sym_GT, + [119719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119207] = 3, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(4084), 1, + sym_formal_parameters, + [119729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(146), 1, + STATE(636), 1, sym_class_body, - [119217] = 2, + [119739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119225] = 3, + ACTIONS(6310), 1, + anon_sym_from, + STATE(3690), 1, + sym__from_clause, + [119749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2621), 1, + anon_sym_LPAREN, + STATE(2657), 1, + sym_formal_parameters, + [119759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(7080), 1, anon_sym_LBRACE, - STATE(599), 1, - sym_statement_block, - [119235] = 2, + STATE(700), 1, + sym_enum_body, + [119769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(5750), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [119777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7208), 2, sym__automatic_semicolon, anon_sym_SEMI, - [119243] = 3, + [119785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - STATE(3259), 1, + STATE(146), 1, sym_class_body, - [119253] = 2, + [119795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [119261] = 3, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1884), 1, + sym_class_body, + [119805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(1805), 1, - sym_statement_block, - [119271] = 3, + ACTIONS(6611), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_COLON, + STATE(3614), 1, + sym_type_annotation, + [119831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4189), 1, - sym_formal_parameters, - [119281] = 2, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(7197), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [119289] = 2, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(3250), 1, + sym_class_body, + [119841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 2, + ACTIONS(7212), 2, sym__automatic_semicolon, anon_sym_SEMI, - [119297] = 3, + [119849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, - anon_sym_LPAREN, - STATE(39), 1, - sym_parenthesized_expression, - [119307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3466), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1454), 1, - sym_statement_block, - [119317] = 3, + STATE(604), 1, + sym_class_body, + [119859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4206), 1, - sym_formal_parameters, - [119327] = 3, + ACTIONS(7214), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - STATE(571), 1, - sym_statement_block, - [119337] = 3, + ACTIONS(7216), 1, + anon_sym_SEMI, + ACTIONS(7218), 1, + sym__automatic_semicolon, + [119877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(4238), 1, - sym_formal_parameters, - [119347] = 2, + ACTIONS(7220), 1, + anon_sym_RBRACK, + [119884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 2, - anon_sym_COMMA, - anon_sym_GT, - [119355] = 3, + ACTIONS(7222), 1, + anon_sym_RBRACK, + [119891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(1818), 1, - sym_class_body, - [119365] = 3, + ACTIONS(7224), 1, + anon_sym_RBRACK, + [119898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(3992), 1, - sym_formal_parameters, - [119375] = 3, + ACTIONS(7226), 1, + anon_sym_RBRACK, + [119905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, - [119385] = 3, + ACTIONS(7228), 1, + anon_sym_as, + [119912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_parenthesized_expression, - [119395] = 3, + ACTIONS(7230), 1, + anon_sym_RBRACK, + [119919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, - [119405] = 2, + ACTIONS(7232), 1, + anon_sym_RBRACK, + [119926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 1, + ACTIONS(7234), 1, anon_sym_from, - [119412] = 2, + [119933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7205), 1, - anon_sym_RBRACK, - [119419] = 2, + ACTIONS(6653), 1, + anon_sym_RBRACE, + [119940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 1, + ACTIONS(7236), 1, anon_sym_RBRACK, - [119426] = 2, + [119947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7238), 1, + anon_sym_COLON, + [119954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7209), 1, + ACTIONS(7240), 1, anon_sym_EQ_GT, - [119433] = 2, + [119961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7211), 1, + ACTIONS(7242), 1, anon_sym_RBRACK, - [119440] = 2, + [119968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 1, - anon_sym_RBRACK, - [119447] = 2, + ACTIONS(5277), 1, + anon_sym_is, + [119975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7215), 1, + ACTIONS(7244), 1, anon_sym_EQ_GT, - [119454] = 2, + [119982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 1, + ACTIONS(7246), 1, anon_sym_EQ_GT, - [119461] = 2, + [119989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7219), 1, + ACTIONS(7248), 1, anon_sym_EQ_GT, - [119468] = 2, + [119996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - sym_identifier, - [119475] = 2, - ACTIONS(6282), 1, + ACTIONS(4513), 1, + anon_sym_RBRACK, + [120003] = 2, + ACTIONS(6322), 1, sym_comment, - ACTIONS(7223), 1, + ACTIONS(7250), 1, sym_regex_pattern, - [119482] = 2, + [120010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 1, - anon_sym_EQ_GT, - [119489] = 2, + ACTIONS(7252), 1, + anon_sym_RBRACK, + [120017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - sym_identifier, - [119496] = 2, + ACTIONS(7254), 1, + anon_sym_RBRACK, + [120024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 1, + ACTIONS(7256), 1, anon_sym_DOT, - [119503] = 2, + [120031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 1, - anon_sym_from, - [119510] = 2, + ACTIONS(7258), 1, + anon_sym_COLON, + [120038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4525), 1, - anon_sym_RBRACE, - [119517] = 2, + ACTIONS(7260), 1, + anon_sym_RPAREN, + [120045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 1, + ACTIONS(7262), 1, sym_identifier, - [119524] = 2, + [120052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 1, - anon_sym_RBRACK, - [119531] = 2, + ACTIONS(4086), 1, + anon_sym_RPAREN, + [120059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - sym_identifier, - [119538] = 2, + ACTIONS(7264), 1, + anon_sym_SLASH2, + [120066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 1, - anon_sym_RBRACK, - [119545] = 2, + ACTIONS(7266), 1, + sym_number, + [120073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, - anon_sym_RBRACK, - [119552] = 2, + ACTIONS(7268), 1, + sym_identifier, + [120080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_RBRACK, - [119559] = 2, + ACTIONS(7270), 1, + anon_sym_EQ_GT, + [120087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 1, - anon_sym_is, - [119566] = 2, + ACTIONS(7272), 1, + sym_identifier, + [120094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(7274), 1, sym_identifier, - [119573] = 2, + [120101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, - anon_sym_RBRACK, - [119580] = 2, + ACTIONS(7276), 1, + anon_sym_RPAREN, + [120108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, + ACTIONS(7278), 1, anon_sym_EQ_GT, - [119587] = 2, + [120115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7247), 1, - anon_sym_EQ_GT, - [119594] = 2, + ACTIONS(6844), 1, + anon_sym_RBRACK, + [120122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_LBRACE, - [119601] = 2, + ACTIONS(7280), 1, + anon_sym_RBRACK, + [120129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(7282), 1, anon_sym_RBRACK, - [119608] = 2, + [120136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7251), 1, + ACTIONS(7284), 1, anon_sym_RBRACK, - [119615] = 2, + [120143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 1, + ACTIONS(7286), 1, anon_sym_RBRACK, - [119622] = 2, + [120150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, + ACTIONS(7288), 1, anon_sym_RBRACK, - [119629] = 2, + [120157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(7290), 1, anon_sym_RBRACK, - [119636] = 2, + [120164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 1, - anon_sym_EQ_GT, - [119643] = 2, + ACTIONS(7292), 1, + anon_sym_RBRACK, + [120171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7259), 1, - anon_sym_EQ_GT, - [119650] = 2, + ACTIONS(7294), 1, + anon_sym_RBRACK, + [120178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 1, - anon_sym_from, - [119657] = 2, + ACTIONS(7296), 1, + anon_sym_RBRACK, + [120185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 1, - anon_sym_require, - [119664] = 2, + ACTIONS(7298), 1, + anon_sym_RBRACK, + [120192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, - anon_sym_as, - [119671] = 2, + ACTIONS(7300), 1, + anon_sym_EQ_GT, + [120199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7267), 1, - anon_sym_from, - [119678] = 2, + ACTIONS(7302), 1, + sym_identifier, + [120206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 1, - anon_sym_new, - [119685] = 2, + ACTIONS(7304), 1, + sym_identifier, + [120213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7271), 1, - anon_sym_readonly, - [119692] = 2, + ACTIONS(7306), 1, + anon_sym_EQ_GT, + [120220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - anon_sym_DOT, - [119699] = 2, + ACTIONS(7308), 1, + anon_sym_EQ_GT, + [120227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 1, - anon_sym_LPAREN, - [119706] = 2, + ACTIONS(7310), 1, + anon_sym_readonly, + [120234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 1, - anon_sym_RBRACK, - [119713] = 2, + ACTIONS(7312), 1, + anon_sym_EQ_GT, + [120241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 1, - anon_sym_COLON, - [119720] = 2, + ACTIONS(7314), 1, + anon_sym_EQ_GT, + [120248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 1, - anon_sym_RBRACK, - [119727] = 2, - ACTIONS(6282), 1, + ACTIONS(7316), 1, + anon_sym_EQ_GT, + [120255] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, - sym_regex_pattern, - [119734] = 2, + ACTIONS(5453), 1, + anon_sym_is, + [120262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7318), 1, anon_sym_RBRACK, - [119741] = 2, + [120269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, + ACTIONS(7320), 1, anon_sym_RBRACK, - [119748] = 2, + [120276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 1, - anon_sym_EQ_GT, - [119755] = 2, + ACTIONS(5498), 1, + anon_sym_is, + [120283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 1, - anon_sym_EQ_GT, - [119762] = 2, + ACTIONS(7322), 1, + anon_sym_RBRACK, + [120290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_EQ_GT, - [119769] = 2, + ACTIONS(4358), 1, + anon_sym_RBRACK, + [120297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6169), 1, - anon_sym_EQ, - [119776] = 2, + ACTIONS(7324), 1, + anon_sym_RBRACK, + [120304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(7326), 1, anon_sym_EQ_GT, - [119783] = 2, + [120311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, - anon_sym_RBRACK, - [119790] = 2, + ACTIONS(7328), 1, + anon_sym_EQ_GT, + [120318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 1, + ACTIONS(7330), 1, anon_sym_RBRACK, - [119797] = 2, + [120325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7332), 1, anon_sym_RBRACK, - [119804] = 2, + [120332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(7334), 1, anon_sym_RBRACK, - [119811] = 2, + [120339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7336), 1, + anon_sym_EQ, + [120346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, + ACTIONS(7338), 1, anon_sym_EQ_GT, - [119818] = 2, + [120353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, - anon_sym_RPAREN, - [119825] = 2, + ACTIONS(7340), 1, + anon_sym_RBRACK, + [120360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 1, + ACTIONS(7342), 1, anon_sym_EQ_GT, - [119832] = 2, + [120367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(7344), 1, anon_sym_EQ_GT, - [119839] = 2, + [120374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 1, + ACTIONS(7346), 1, anon_sym_EQ_GT, - [119846] = 2, + [120381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, + ACTIONS(7348), 1, anon_sym_RBRACK, - [119853] = 2, - ACTIONS(6282), 1, + [120388] = 2, + ACTIONS(6322), 1, sym_comment, - ACTIONS(7315), 1, + ACTIONS(7350), 1, sym_regex_pattern, - [119860] = 2, + [120395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, - anon_sym_EQ_GT, - [119867] = 2, + ACTIONS(7352), 1, + anon_sym_LBRACE, + [120402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 1, - anon_sym_RBRACK, - [119874] = 2, + ACTIONS(7354), 1, + anon_sym_EQ_GT, + [120409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(7356), 1, anon_sym_DOT, - [119881] = 2, + [120416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_LBRACK, - [119888] = 2, + ACTIONS(7358), 1, + anon_sym_DOT, + [120423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_EQ_GT, - [119895] = 2, + ACTIONS(7360), 1, + anon_sym_RBRACK, + [120430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 1, - anon_sym_EQ_GT, - [119902] = 2, + ACTIONS(7362), 1, + anon_sym_RBRACK, + [120437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, - anon_sym_RPAREN, - [119909] = 2, + ACTIONS(7364), 1, + anon_sym_RBRACK, + [120444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym_EQ_GT, - [119916] = 2, + ACTIONS(7366), 1, + anon_sym_RBRACK, + [120451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 1, - sym_number, - [119923] = 2, + ACTIONS(7368), 1, + anon_sym_RBRACK, + [120458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7331), 1, - sym_identifier, - [119930] = 2, + ACTIONS(7370), 1, + anon_sym_RBRACK, + [120465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 1, - anon_sym_RPAREN, - [119937] = 2, + ACTIONS(7372), 1, + anon_sym_RBRACK, + [120472] = 2, + ACTIONS(6322), 1, + sym_comment, + ACTIONS(7374), 1, + sym_regex_pattern, + [120479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_EQ_GT, - [119944] = 2, + ACTIONS(7376), 1, + anon_sym_RBRACK, + [120486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7335), 1, - anon_sym_SLASH2, - [119951] = 2, + ACTIONS(7378), 1, + anon_sym_RBRACK, + [120493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - sym_identifier, - [119958] = 2, + ACTIONS(7380), 1, + anon_sym_new, + [120500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 1, - anon_sym_RPAREN, - [119965] = 2, + ACTIONS(6996), 1, + sym_identifier, + [120507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - anon_sym_COLON, - [119972] = 2, + ACTIONS(7382), 1, + anon_sym_from, + [120514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7343), 1, - anon_sym_EQ_GT, - [119979] = 2, + ACTIONS(7384), 1, + anon_sym_RBRACK, + [120521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(7386), 1, anon_sym_EQ_GT, - [119986] = 2, + [120528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 1, + ACTIONS(7388), 1, anon_sym_DOT, - [119993] = 2, + [120535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6838), 1, - anon_sym_RBRACK, - [120000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7347), 1, - anon_sym_COLON, - [120007] = 2, + ACTIONS(7390), 1, + anon_sym_EQ_GT, + [120542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, + ACTIONS(7392), 1, anon_sym_EQ_GT, - [120014] = 2, + [120549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 1, + ACTIONS(7394), 1, sym_identifier, - [120021] = 2, + [120556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7396), 1, sym_identifier, - [120028] = 2, + [120563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 1, - anon_sym_EQ_GT, - [120035] = 2, + ACTIONS(7398), 1, + anon_sym_EQ, + [120570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_RBRACK, - [120042] = 2, + ACTIONS(7400), 1, + sym_identifier, + [120577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, - anon_sym_is, - [120049] = 2, + ACTIONS(6124), 1, + anon_sym_EQ, + [120584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7402), 1, + anon_sym_EQ_GT, + [120591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(4010), 1, anon_sym_RPAREN, - [120056] = 2, + [120598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 1, - anon_sym_as, - [120063] = 2, + ACTIONS(7404), 1, + sym_identifier, + [120605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_RPAREN, - [120070] = 2, + ACTIONS(7406), 1, + anon_sym_SLASH2, + [120612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7363), 1, - anon_sym_RPAREN, - [120077] = 2, + ACTIONS(7408), 1, + sym_number, + [120619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - anon_sym_RBRACK, - [120084] = 2, + ACTIONS(7410), 1, + sym_identifier, + [120626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, - anon_sym_from, - [120091] = 2, + ACTIONS(7412), 1, + anon_sym_EQ_GT, + [120633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(7414), 1, anon_sym_class, - [120098] = 2, + [120640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_RBRACE, - [120105] = 2, + ACTIONS(7416), 1, + anon_sym_EQ, + [120647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(7418), 1, anon_sym_EQ_GT, - [120112] = 2, + [120654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, - anon_sym_RPAREN, - [120119] = 2, + ACTIONS(4356), 1, + anon_sym_COLON, + [120661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7420), 1, anon_sym_EQ, - [120126] = 2, + [120668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, + ACTIONS(7422), 1, anon_sym_namespace, - [120133] = 2, + [120675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7377), 1, - anon_sym_EQ_GT, - [120140] = 2, + ACTIONS(7424), 1, + sym_identifier, + [120682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_RBRACK, - [120147] = 2, + ACTIONS(4531), 1, + anon_sym_RPAREN, + [120689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7381), 1, - sym_identifier, - [120154] = 2, + ACTIONS(4517), 1, + anon_sym_RPAREN, + [120696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 1, - sym_identifier, - [120161] = 2, + ACTIONS(4498), 1, + anon_sym_RPAREN, + [120703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7385), 1, - anon_sym_from, - [120168] = 2, + ACTIONS(7426), 1, + sym_identifier, + [120710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - anon_sym_COLON, - [120175] = 2, + ACTIONS(4475), 1, + anon_sym_RBRACK, + [120717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 1, - anon_sym_EQ_GT, - [120182] = 2, + ACTIONS(6636), 1, + anon_sym_RBRACK, + [120724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_RPAREN, - [120189] = 2, + ACTIONS(6925), 1, + anon_sym_RBRACE, + [120731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7389), 1, + ACTIONS(7428), 1, anon_sym_EQ_GT, - [120196] = 2, + [120738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, - sym_identifier, - [120203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7393), 1, - anon_sym_new, - [120210] = 2, + ACTIONS(7430), 1, + anon_sym_RPAREN, + [120745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_RPAREN, - [120217] = 2, + ACTIONS(7432), 1, + anon_sym_EQ_GT, + [120752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7434), 1, anon_sym_EQ_GT, - [120224] = 2, + [120759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 1, - anon_sym_RPAREN, - [120231] = 2, + ACTIONS(7436), 1, + sym_identifier, + [120766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7397), 1, + ACTIONS(7438), 1, anon_sym_EQ_GT, - [120238] = 2, + [120773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 1, + ACTIONS(7440), 1, anon_sym_EQ_GT, - [120245] = 2, + [120780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7401), 1, - sym_identifier, - [120252] = 2, + ACTIONS(7442), 1, + anon_sym_new, + [120787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6617), 1, + anon_sym_RBRACK, + [120794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 1, + ACTIONS(7444), 1, sym_identifier, - [120259] = 2, + [120801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6941), 1, sym_identifier, - [120266] = 2, + [120808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7405), 1, + ACTIONS(7446), 1, anon_sym_class, - [120273] = 2, + [120815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 1, - anon_sym_is, - [120280] = 2, + ACTIONS(7448), 1, + sym_identifier, + [120822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 1, - anon_sym_RBRACK, - [120287] = 2, + ACTIONS(7450), 1, + sym_identifier, + [120829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7409), 1, + ACTIONS(7452), 1, anon_sym_EQ, - [120294] = 2, + [120836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 1, + ACTIONS(7454), 1, anon_sym_EQ_GT, - [120301] = 2, + [120843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7413), 1, + ACTIONS(7456), 1, anon_sym_EQ, - [120308] = 2, + [120850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3916), 1, - anon_sym_DOT, - [120315] = 2, + ACTIONS(7458), 1, + anon_sym_EQ_GT, + [120857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 1, + ACTIONS(6828), 1, anon_sym_RBRACK, - [120322] = 2, + [120864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7417), 1, - anon_sym_RBRACK, - [120329] = 2, + ACTIONS(7460), 1, + sym_identifier, + [120871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 1, - anon_sym_RBRACK, - [120336] = 2, + ACTIONS(7462), 1, + sym_identifier, + [120878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, - anon_sym_RBRACK, - [120343] = 2, + ACTIONS(7464), 1, + anon_sym_EQ_GT, + [120885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 1, - anon_sym_RBRACK, - [120350] = 2, + ACTIONS(7466), 1, + sym_identifier, + [120892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7425), 1, + ACTIONS(7468), 1, anon_sym_EQ_GT, - [120357] = 2, + [120899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7427), 1, - anon_sym_RBRACK, - [120364] = 2, + ACTIONS(7470), 1, + anon_sym_class, + [120906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, - sym_identifier, - [120371] = 2, + ACTIONS(7472), 1, + anon_sym_EQ_GT, + [120913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 1, + ACTIONS(7474), 1, anon_sym_RBRACK, - [120378] = 2, + [120920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_RBRACK, - [120385] = 2, + ACTIONS(7476), 1, + anon_sym_RPAREN, + [120927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7435), 1, + ACTIONS(7478), 1, anon_sym_RBRACK, - [120392] = 2, + [120934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(7480), 1, sym_identifier, - [120399] = 2, + [120941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_EQ_GT, - [120406] = 2, + ACTIONS(7482), 1, + sym_identifier, + [120948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_EQ_GT, - [120413] = 2, + ACTIONS(7484), 1, + anon_sym_RBRACK, + [120955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(7486), 1, anon_sym_RBRACK, - [120420] = 2, + [120962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6907), 1, + ACTIONS(7488), 1, anon_sym_RBRACK, - [120427] = 2, + [120969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7490), 1, anon_sym_COLON, - [120434] = 2, + [120976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, + ACTIONS(7492), 1, anon_sym_RBRACK, - [120441] = 2, + [120983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, - sym_identifier, - [120448] = 2, + ACTIONS(7494), 1, + anon_sym_RBRACK, + [120990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, - anon_sym_EQ, - [120455] = 2, + ACTIONS(7496), 1, + sym_identifier, + [120997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7453), 1, + ACTIONS(7498), 1, anon_sym_RBRACK, - [120462] = 2, + [121004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7500), 1, anon_sym_RBRACK, - [120469] = 2, + [121011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7457), 1, - sym_identifier, - [120476] = 2, + ACTIONS(7502), 1, + anon_sym_EQ_GT, + [121018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, - sym_identifier, - [120483] = 2, + ACTIONS(7504), 1, + anon_sym_RBRACK, + [121025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7461), 1, + ACTIONS(7506), 1, anon_sym_RBRACK, - [120490] = 2, + [121032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7463), 1, - anon_sym_RBRACK, - [120497] = 2, + ACTIONS(7508), 1, + anon_sym_EQ_GT, + [121039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7510), 1, sym_identifier, - [120504] = 2, + [121046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_EQ, - [120511] = 2, + ACTIONS(7512), 1, + anon_sym_RBRACK, + [121053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, + ACTIONS(7514), 1, sym_identifier, - [120518] = 2, + [121060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7471), 1, - anon_sym_RBRACK, - [120525] = 2, + ACTIONS(7516), 1, + sym_number, + [121067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 1, - anon_sym_RBRACK, - [120532] = 2, + ACTIONS(7518), 1, + anon_sym_SLASH2, + [121074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 1, - anon_sym_RPAREN, - [120539] = 2, + ACTIONS(7520), 1, + anon_sym_target, + [121081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, - sym_identifier, - [120546] = 2, + ACTIONS(7522), 1, + anon_sym_EQ_GT, + [121088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7524), 1, + anon_sym_EQ_GT, + [121095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 1, + ACTIONS(7526), 1, anon_sym_RBRACK, - [120553] = 2, + [121102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, - anon_sym_EQ, - [120560] = 2, + ACTIONS(7528), 1, + anon_sym_EQ_GT, + [121109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 1, - anon_sym_RBRACK, - [120567] = 2, + ACTIONS(7530), 1, + anon_sym_EQ_GT, + [121116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, + ACTIONS(7532), 1, anon_sym_RBRACK, - [120574] = 2, - ACTIONS(6282), 1, - sym_comment, - ACTIONS(7487), 1, - sym_regex_pattern, - [120581] = 2, + [121123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6866), 1, - anon_sym_RBRACE, - [120588] = 2, + ACTIONS(3871), 1, + anon_sym_RPAREN, + [121130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, + ACTIONS(7534), 1, anon_sym_RBRACK, - [120595] = 2, + [121137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7491), 1, - sym_identifier, - [120602] = 2, + ACTIONS(7536), 1, + anon_sym_EQ_GT, + [121144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7493), 1, - anon_sym_RBRACK, - [120609] = 2, + ACTIONS(7538), 1, + anon_sym_DOT, + [121151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7495), 1, - anon_sym_RBRACK, - [120616] = 2, + ACTIONS(7540), 1, + sym_identifier, + [121158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, - anon_sym_RBRACK, - [120623] = 2, + ACTIONS(7542), 1, + anon_sym_new, + [121165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, + ACTIONS(7544), 1, anon_sym_RBRACK, - [120630] = 2, + [121172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_RBRACK, - [120637] = 2, + ACTIONS(7546), 1, + sym_identifier, + [121179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 1, - anon_sym_class, - [120644] = 2, + ACTIONS(5672), 1, + anon_sym_EQ, + [121186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 1, - anon_sym_RBRACK, - [120651] = 2, + ACTIONS(7548), 1, + anon_sym_EQ_GT, + [121193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7507), 1, + ACTIONS(7550), 1, anon_sym_RBRACK, - [120658] = 2, + [121200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7509), 1, - sym_identifier, - [120665] = 2, + ACTIONS(7552), 1, + sym_number, + [121207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, - anon_sym_EQ_GT, - [120672] = 2, + ACTIONS(7554), 1, + anon_sym_RBRACK, + [121214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, + ACTIONS(7556), 1, anon_sym_RBRACK, - [120679] = 2, + [121221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, + ACTIONS(7558), 1, anon_sym_RBRACK, - [120686] = 2, + [121228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7517), 1, - anon_sym_RBRACK, - [120693] = 2, + ACTIONS(7560), 1, + anon_sym_SLASH2, + [121235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7519), 1, + ACTIONS(7562), 1, anon_sym_RBRACK, - [120700] = 2, + [121242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7521), 1, - sym_identifier, - [120707] = 2, + ACTIONS(7564), 1, + anon_sym_target, + [121249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - anon_sym_EQ_GT, - [120714] = 2, + ACTIONS(7566), 1, + anon_sym_RBRACK, + [121256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - sym_identifier, - [120721] = 2, + ACTIONS(7568), 1, + anon_sym_RBRACK, + [121263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7527), 1, + ACTIONS(7570), 1, anon_sym_RBRACK, - [120728] = 2, + [121270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4098), 1, - anon_sym_RPAREN, - [120735] = 2, + ACTIONS(7572), 1, + anon_sym_EQ_GT, + [121277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6581), 1, - sym_identifier, - [120742] = 2, + ACTIONS(6326), 1, + anon_sym_EQ_GT, + [121284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 1, + ACTIONS(7574), 1, anon_sym_RBRACK, - [120749] = 2, + [121291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, - anon_sym_RBRACK, - [120756] = 2, + ACTIONS(5077), 1, + anon_sym_EQ_GT, + [121298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7533), 1, + ACTIONS(7576), 1, anon_sym_RBRACK, - [120763] = 2, + [121305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7535), 1, - anon_sym_target, - [120770] = 2, + ACTIONS(6619), 1, + anon_sym_LBRACE, + [121312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7537), 1, - sym_number, - [120777] = 2, + ACTIONS(7578), 1, + anon_sym_RBRACK, + [121319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, - sym_identifier, - [120784] = 2, + ACTIONS(7580), 1, + anon_sym_RBRACK, + [121326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7541), 1, - anon_sym_target, - [120791] = 2, + ACTIONS(7582), 1, + anon_sym_RBRACK, + [121333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, - anon_sym_EQ_GT, - [120798] = 2, + ACTIONS(7584), 1, + anon_sym_RBRACK, + [121340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 1, - anon_sym_EQ_GT, - [120805] = 2, + ACTIONS(7586), 1, + anon_sym_RBRACK, + [121347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7545), 1, - anon_sym_COLON, - [120812] = 2, + ACTIONS(7588), 1, + anon_sym_EQ_GT, + [121354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(7590), 1, anon_sym_EQ_GT, - [120819] = 2, + [121361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7547), 1, + ACTIONS(7592), 1, anon_sym_SLASH2, - [120826] = 2, + [121368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - anon_sym_LBRACE, - [120833] = 2, + ACTIONS(7594), 1, + sym_number, + [121375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_RBRACK, - [120840] = 2, + ACTIONS(7596), 1, + sym_identifier, + [121382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_RBRACK, - [120847] = 2, + ACTIONS(7598), 1, + anon_sym_EQ_GT, + [121389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7553), 1, - anon_sym_SLASH2, - [120854] = 2, + ACTIONS(7600), 1, + sym_identifier, + [121396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, + ACTIONS(7602), 1, sym_identifier, - [120861] = 2, + [121403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, - anon_sym_RPAREN, - [120868] = 2, + ACTIONS(7604), 1, + anon_sym_while, + [121410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_EQ_GT, - [120875] = 2, + ACTIONS(4468), 1, + anon_sym_RPAREN, + [121417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_EQ_GT, - [120882] = 2, + ACTIONS(4466), 1, + anon_sym_RBRACE, + [121424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, - anon_sym_DOT, - [120889] = 2, + ACTIONS(6679), 1, + anon_sym_RBRACK, + [121431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 1, - sym_identifier, - [120896] = 2, + ACTIONS(4036), 1, + anon_sym_RPAREN, + [121438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, - anon_sym_new, - [120903] = 2, + ACTIONS(7606), 1, + anon_sym_RBRACK, + [121445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, + ACTIONS(7608), 1, anon_sym_EQ_GT, - [120910] = 2, + [121452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 1, - sym_number, - [120917] = 2, + ACTIONS(7610), 1, + anon_sym_EQ_GT, + [121459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_EQ_GT, - [120924] = 2, + ACTIONS(7612), 1, + sym_identifier, + [121466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, + ACTIONS(7614), 1, anon_sym_EQ_GT, - [120931] = 2, + [121473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_RBRACK, - [120938] = 2, + ACTIONS(7616), 1, + sym_identifier, + [121480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7577), 1, + ACTIONS(7618), 1, anon_sym_EQ, - [120945] = 2, + [121487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(7620), 1, anon_sym_EQ_GT, - [120952] = 2, + [121494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(7622), 1, anon_sym_EQ_GT, - [120959] = 2, + [121501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7624), 1, anon_sym_EQ_GT, - [120966] = 2, + [121508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 1, - anon_sym_RBRACK, - [120973] = 2, + ACTIONS(7626), 1, + sym_identifier, + [121515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 1, - anon_sym_RBRACK, - [120980] = 2, + ACTIONS(7628), 1, + sym_identifier, + [121522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, + ACTIONS(7630), 1, + sym_identifier, + [121529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7632), 1, anon_sym_RBRACK, - [120987] = 2, + [121536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, - anon_sym_SLASH2, - [120994] = 2, + ACTIONS(7634), 1, + anon_sym_LBRACK, + [121543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, - anon_sym_RBRACK, - [121001] = 2, + ACTIONS(7636), 1, + anon_sym_EQ_GT, + [121550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_RBRACK, - [121008] = 2, + ACTIONS(7638), 1, + anon_sym_require, + [121557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, - anon_sym_RBRACK, - [121015] = 2, + ACTIONS(7640), 1, + anon_sym_EQ_GT, + [121564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym_RBRACK, - [121022] = 2, + ACTIONS(7642), 1, + sym_identifier, + [121571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 1, - anon_sym_RBRACK, - [121029] = 2, + ACTIONS(7644), 1, + anon_sym_EQ_GT, + [121578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 1, - anon_sym_RBRACK, - [121036] = 2, + ACTIONS(7048), 1, + anon_sym_from, + [121585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_while, - [121043] = 2, + ACTIONS(7646), 1, + anon_sym_RBRACK, + [121592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_EQ_GT, - [121050] = 2, + ACTIONS(7648), 1, + anon_sym_RBRACK, + [121599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_EQ_GT, - [121057] = 2, + ACTIONS(7650), 1, + anon_sym_from, + [121606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - sym_identifier, - [121064] = 2, + ACTIONS(7652), 1, + anon_sym_RPAREN, + [121613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4493), 1, anon_sym_RPAREN, - [121071] = 2, + [121620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, - sym_number, - [121078] = 2, + ACTIONS(7654), 1, + anon_sym_as, + [121627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, + ACTIONS(7656), 1, anon_sym_RBRACK, - [121085] = 2, + [121634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, + ACTIONS(7658), 1, anon_sym_RBRACK, - [121092] = 2, + [121641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, + ACTIONS(7660), 1, anon_sym_RBRACK, - [121099] = 2, + [121648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7621), 1, - anon_sym_RBRACK, - [121106] = 2, + ACTIONS(7662), 1, + anon_sym_RPAREN, + [121655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - sym_identifier, - [121113] = 2, + ACTIONS(7664), 1, + anon_sym_COLON, + [121662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7666), 1, anon_sym_RBRACK, - [121120] = 2, + [121669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, + ACTIONS(4345), 1, anon_sym_RBRACK, - [121127] = 2, + [121676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(7668), 1, anon_sym_RBRACK, - [121134] = 2, + [121683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, + ACTIONS(7670), 1, anon_sym_RBRACK, - [121141] = 2, + [121690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7672), 1, + anon_sym_EQ, + [121697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(7674), 1, anon_sym_RBRACK, - [121148] = 2, + [121704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, + ACTIONS(7676), 1, anon_sym_RBRACK, - [121155] = 2, + [121711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7107), 1, - anon_sym_from, - [121162] = 2, + ACTIONS(7678), 1, + anon_sym_RBRACK, + [121718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, + ACTIONS(7680), 1, anon_sym_RBRACK, - [121169] = 2, + [121725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 1, - anon_sym_EQ_GT, - [121176] = 2, + ACTIONS(7682), 1, + anon_sym_RBRACK, + [121732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_as, - [121183] = 2, + ACTIONS(7684), 1, + anon_sym_RBRACK, + [121739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 1, - anon_sym_RPAREN, - [121190] = 2, + ACTIONS(7686), 1, + anon_sym_RBRACK, + [121746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_EQ_GT, - [121197] = 2, + ACTIONS(7688), 1, + anon_sym_RBRACK, + [121753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 1, - anon_sym_EQ_GT, - [121204] = 2, + ACTIONS(7690), 1, + anon_sym_RBRACK, + [121760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, - sym_identifier, - [121211] = 2, + ACTIONS(7692), 1, + anon_sym_function, + [121767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, - anon_sym_EQ_GT, - [121218] = 2, + ACTIONS(7694), 1, + sym_identifier, + [121774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, + ACTIONS(7696), 1, sym_identifier, - [121225] = 2, + [121781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7698), 1, anon_sym_EQ, - [121232] = 2, + [121788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 1, + ACTIONS(7700), 1, anon_sym_RBRACK, - [121239] = 2, + [121795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 1, - anon_sym_EQ, - [121246] = 2, + ACTIONS(7702), 1, + anon_sym_RBRACK, + [121802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_EQ_GT, - [121253] = 2, + ACTIONS(7704), 1, + anon_sym_namespace, + [121809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6629), 1, + ACTIONS(7706), 1, anon_sym_RBRACK, - [121260] = 2, + [121816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 1, + ACTIONS(7708), 1, anon_sym_RBRACK, - [121267] = 2, + [121823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, + ACTIONS(7710), 1, anon_sym_EQ_GT, - [121274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7663), 1, - sym_identifier, - [121281] = 2, + [121830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 1, - anon_sym_SLASH2, - [121288] = 2, + ACTIONS(7712), 1, + anon_sym_RBRACK, + [121837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, + ACTIONS(7714), 1, anon_sym_EQ_GT, - [121295] = 2, + [121844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 1, - anon_sym_EQ_GT, - [121302] = 2, + ACTIONS(7716), 1, + sym_identifier, + [121851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 1, + ACTIONS(7718), 1, anon_sym_EQ, - [121309] = 2, + [121858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_function, - [121316] = 2, + ACTIONS(7720), 1, + anon_sym_from, + [121865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7722), 1, anon_sym_EQ_GT, - [121323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7677), 1, - anon_sym_new, - [121330] = 2, + [121872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7679), 1, + ACTIONS(7724), 1, anon_sym_EQ_GT, - [121337] = 2, + [121879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, - sym_identifier, - [121344] = 2, + ACTIONS(7726), 1, + anon_sym_RPAREN, + [121886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7683), 1, + ACTIONS(7728), 1, anon_sym_EQ_GT, - [121351] = 2, + [121893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(7730), 1, anon_sym_EQ_GT, - [121358] = 2, + [121900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, - anon_sym_EQ, - [121365] = 2, + ACTIONS(7732), 1, + anon_sym_RPAREN, + [121907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7687), 1, - sym_identifier, - [121372] = 2, + ACTIONS(7734), 1, + anon_sym_new, + [121914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 1, - anon_sym_EQ_GT, - [121379] = 2, + ACTIONS(7736), 1, + anon_sym_RPAREN, + [121921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7691), 1, - sym_identifier, - [121386] = 2, + ACTIONS(7738), 1, + anon_sym_RPAREN, + [121928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, - anon_sym_EQ_GT, - [121393] = 2, + ACTIONS(7740), 1, + anon_sym_RBRACK, + [121935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - sym_number, - [121400] = 2, + ACTIONS(7742), 1, + anon_sym_RBRACK, + [121942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, - anon_sym_namespace, - [121407] = 2, + ACTIONS(6632), 1, + anon_sym_EQ, + [121949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7699), 1, - anon_sym_from, - [121414] = 2, + ACTIONS(7744), 1, + anon_sym_RBRACK, + [121956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_RPAREN, - [121421] = 2, + ACTIONS(3188), 1, + anon_sym_LPAREN, + [121963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - anon_sym_RPAREN, - [121428] = 2, + ACTIONS(7746), 1, + anon_sym_EQ_GT, + [121970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7703), 1, + ACTIONS(7748), 1, anon_sym_RBRACK, - [121435] = 2, + [121977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, - anon_sym_RBRACK, - [121442] = 2, + ACTIONS(7750), 1, + ts_builtin_sym_end, + [121984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_RBRACK, - [121449] = 2, + ACTIONS(7752), 1, + anon_sym_EQ_GT, + [121991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, - anon_sym_EQ, - [121456] = 2, + ACTIONS(7754), 1, + sym_identifier, + [121998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7756), 1, + sym_identifier, + [122005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7709), 1, + ACTIONS(7758), 1, anon_sym_EQ, - [121463] = 2, + [122012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(7760), 1, anon_sym_new, - [121470] = 2, + [122019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7762), 1, anon_sym_RBRACK, - [121477] = 2, + [122026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7715), 1, - anon_sym_EQ_GT, - [121484] = 2, + ACTIONS(7764), 1, + anon_sym_RBRACK, + [122033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, - anon_sym_RBRACK, - [121491] = 2, + ACTIONS(7766), 1, + anon_sym_class, + [122040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 1, - ts_builtin_sym_end, - [121498] = 2, + ACTIONS(7768), 1, + anon_sym_RBRACK, + [122047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(7770), 1, anon_sym_new, - [121505] = 2, + [122054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(7772), 1, anon_sym_RBRACK, - [121512] = 2, + [122061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7725), 1, - sym_identifier, - [121519] = 2, + ACTIONS(7774), 1, + anon_sym_RBRACK, + [122068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(7776), 1, sym_identifier, - [121526] = 2, + [122075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7729), 1, - anon_sym_class, - [121533] = 2, - ACTIONS(3), 1, + ACTIONS(7778), 1, + sym_identifier, + [122082] = 2, + ACTIONS(6322), 1, sym_comment, - ACTIONS(7731), 1, - anon_sym_RBRACK, - [121540] = 2, + ACTIONS(7780), 1, + sym_regex_pattern, + [122089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7782), 1, sym_identifier, - [121547] = 2, + [122096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(7784), 1, anon_sym_function, - [121554] = 2, + [122103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, - anon_sym_RBRACK, - [121561] = 2, + ACTIONS(7786), 1, + anon_sym_EQ_GT, + [122110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(7788), 1, anon_sym_new, - [121568] = 2, + [122117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, - anon_sym_LPAREN, - [121575] = 2, + ACTIONS(7790), 1, + anon_sym_COLON, + [122124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 1, - anon_sym_RBRACK, - [121582] = 2, + ACTIONS(7792), 1, + anon_sym_from, + [122131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(7794), 1, sym_identifier, - [121589] = 2, + [122138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_RBRACK, - [121596] = 2, + ACTIONS(7796), 1, + sym_identifier, + [122145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 1, + ACTIONS(7798), 1, sym_identifier, - [121603] = 2, + [122152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, + ACTIONS(7800), 1, sym_identifier, - [121610] = 2, + [122159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, - anon_sym_EQ_GT, - [121617] = 2, - ACTIONS(6282), 1, + ACTIONS(7802), 1, + anon_sym_LPAREN, + [122166] = 2, + ACTIONS(6322), 1, sym_comment, - ACTIONS(7753), 1, + ACTIONS(7804), 1, sym_regex_pattern, - [121624] = 2, + [122173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_RPAREN, - [121631] = 2, + ACTIONS(7806), 1, + anon_sym_from, + [122180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, - anon_sym_RBRACK, - [121638] = 2, + ACTIONS(7808), 1, + sym_identifier, + [122187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 1, - anon_sym_RBRACK, - [121645] = 2, + ACTIONS(7810), 1, + anon_sym_as, + [122194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, - anon_sym_RBRACK, - [121652] = 2, + ACTIONS(7812), 1, + sym_identifier, + [122201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, - anon_sym_RBRACK, - [121659] = 2, + ACTIONS(7814), 1, + sym_identifier, + [122208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7765), 1, - anon_sym_RBRACK, - [121666] = 2, + ACTIONS(7816), 1, + sym_identifier, + [122215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_RBRACK, - [121673] = 2, + ACTIONS(7818), 1, + sym_identifier, + [122222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 1, - anon_sym_RBRACK, - [121680] = 2, + ACTIONS(7820), 1, + anon_sym_from, + [122229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 1, - anon_sym_RBRACK, - [121687] = 2, + ACTIONS(7822), 1, + sym_identifier, + [122236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 1, - anon_sym_RBRACK, - [121694] = 2, + ACTIONS(7824), 1, + anon_sym_EQ_GT, + [122243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, - anon_sym_RBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(985)] = 0, - [SMALL_STATE(986)] = 93, - [SMALL_STATE(987)] = 182, - [SMALL_STATE(988)] = 271, - [SMALL_STATE(989)] = 362, - [SMALL_STATE(990)] = 453, - [SMALL_STATE(991)] = 542, - [SMALL_STATE(992)] = 635, - [SMALL_STATE(993)] = 724, - [SMALL_STATE(994)] = 815, - [SMALL_STATE(995)] = 906, - [SMALL_STATE(996)] = 998, - [SMALL_STATE(997)] = 1086, - [SMALL_STATE(998)] = 1178, - [SMALL_STATE(999)] = 1272, - [SMALL_STATE(1000)] = 1364, - [SMALL_STATE(1001)] = 1452, - [SMALL_STATE(1002)] = 1521, - [SMALL_STATE(1003)] = 1590, - [SMALL_STATE(1004)] = 1679, - [SMALL_STATE(1005)] = 1766, - [SMALL_STATE(1006)] = 1853, - [SMALL_STATE(1007)] = 1942, - [SMALL_STATE(1008)] = 2031, - [SMALL_STATE(1009)] = 2120, - [SMALL_STATE(1010)] = 2189, - [SMALL_STATE(1011)] = 2280, - [SMALL_STATE(1012)] = 2367, - [SMALL_STATE(1013)] = 2454, - [SMALL_STATE(1014)] = 2543, - [SMALL_STATE(1015)] = 2630, - [SMALL_STATE(1016)] = 2719, - [SMALL_STATE(1017)] = 2788, - [SMALL_STATE(1018)] = 2875, - [SMALL_STATE(1019)] = 3008, - [SMALL_STATE(1020)] = 3077, - [SMALL_STATE(1021)] = 3146, - [SMALL_STATE(1022)] = 3279, - [SMALL_STATE(1023)] = 3348, - [SMALL_STATE(1024)] = 3437, - [SMALL_STATE(1025)] = 3524, - [SMALL_STATE(1026)] = 3613, - [SMALL_STATE(1027)] = 3685, - [SMALL_STATE(1028)] = 3753, - [SMALL_STATE(1029)] = 3841, - [SMALL_STATE(1030)] = 3927, - [SMALL_STATE(1031)] = 4017, - [SMALL_STATE(1032)] = 4103, - [SMALL_STATE(1033)] = 4189, - [SMALL_STATE(1034)] = 4283, - [SMALL_STATE(1035)] = 4369, - [SMALL_STATE(1036)] = 4457, - [SMALL_STATE(1037)] = 4525, - [SMALL_STATE(1038)] = 4611, - [SMALL_STATE(1039)] = 4690, - [SMALL_STATE(1040)] = 4767, - [SMALL_STATE(1041)] = 4844, - [SMALL_STATE(1042)] = 4921, - [SMALL_STATE(1043)] = 5012, - [SMALL_STATE(1044)] = 5097, - [SMALL_STATE(1045)] = 5182, - [SMALL_STATE(1046)] = 5261, - [SMALL_STATE(1047)] = 5338, - [SMALL_STATE(1048)] = 5423, - [SMALL_STATE(1049)] = 5508, - [SMALL_STATE(1050)] = 5593, - [SMALL_STATE(1051)] = 5684, - [SMALL_STATE(1052)] = 5769, - [SMALL_STATE(1053)] = 5846, - [SMALL_STATE(1054)] = 5923, - [SMALL_STATE(1055)] = 6001, - [SMALL_STATE(1056)] = 6075, - [SMALL_STATE(1057)] = 6157, - [SMALL_STATE(1058)] = 6241, - [SMALL_STATE(1059)] = 6325, - [SMALL_STATE(1060)] = 6409, - [SMALL_STATE(1061)] = 6497, - [SMALL_STATE(1062)] = 6581, - [SMALL_STATE(1063)] = 6667, - [SMALL_STATE(1064)] = 6745, - [SMALL_STATE(1065)] = 6817, - [SMALL_STATE(1066)] = 6893, - [SMALL_STATE(1067)] = 6975, - [SMALL_STATE(1068)] = 7059, - [SMALL_STATE(1069)] = 7143, - [SMALL_STATE(1070)] = 7215, - [SMALL_STATE(1071)] = 7289, - [SMALL_STATE(1072)] = 7373, - [SMALL_STATE(1073)] = 7449, - [SMALL_STATE(1074)] = 7521, - [SMALL_STATE(1075)] = 7593, - [SMALL_STATE(1076)] = 7667, - [SMALL_STATE(1077)] = 7740, - [SMALL_STATE(1078)] = 7805, - [SMALL_STATE(1079)] = 7876, - [SMALL_STATE(1080)] = 7947, - [SMALL_STATE(1081)] = 8026, - [SMALL_STATE(1082)] = 8101, - [SMALL_STATE(1083)] = 8166, - [SMALL_STATE(1084)] = 8249, - [SMALL_STATE(1085)] = 8320, - [SMALL_STATE(1086)] = 8391, - [SMALL_STATE(1087)] = 8460, - [SMALL_STATE(1088)] = 8543, - [SMALL_STATE(1089)] = 8614, - [SMALL_STATE(1090)] = 8679, - [SMALL_STATE(1091)] = 8752, - [SMALL_STATE(1092)] = 8817, - [SMALL_STATE(1093)] = 8890, - [SMALL_STATE(1094)] = 8973, - [SMALL_STATE(1095)] = 9046, - [SMALL_STATE(1096)] = 9115, - [SMALL_STATE(1097)] = 9180, - [SMALL_STATE(1098)] = 9245, - [SMALL_STATE(1099)] = 9320, - [SMALL_STATE(1100)] = 9395, - [SMALL_STATE(1101)] = 9472, - [SMALL_STATE(1102)] = 9543, - [SMALL_STATE(1103)] = 9620, - [SMALL_STATE(1104)] = 9691, - [SMALL_STATE(1105)] = 9756, - [SMALL_STATE(1106)] = 9837, - [SMALL_STATE(1107)] = 9902, - [SMALL_STATE(1108)] = 9973, - [SMALL_STATE(1109)] = 10056, - [SMALL_STATE(1110)] = 10121, - [SMALL_STATE(1111)] = 10198, - [SMALL_STATE(1112)] = 10277, - [SMALL_STATE(1113)] = 10347, - [SMALL_STATE(1114)] = 10419, - [SMALL_STATE(1115)] = 10489, - [SMALL_STATE(1116)] = 10565, - [SMALL_STATE(1117)] = 10647, - [SMALL_STATE(1118)] = 10719, - [SMALL_STATE(1119)] = 10801, - [SMALL_STATE(1120)] = 10871, - [SMALL_STATE(1121)] = 10941, - [SMALL_STATE(1122)] = 11013, - [SMALL_STATE(1123)] = 11081, - [SMALL_STATE(1124)] = 11151, - [SMALL_STATE(1125)] = 11221, - [SMALL_STATE(1126)] = 11293, - [SMALL_STATE(1127)] = 11369, - [SMALL_STATE(1128)] = 11447, - [SMALL_STATE(1129)] = 11523, - [SMALL_STATE(1130)] = 11595, - [SMALL_STATE(1131)] = 11677, - [SMALL_STATE(1132)] = 11745, - [SMALL_STATE(1133)] = 11820, - [SMALL_STATE(1134)] = 11889, - [SMALL_STATE(1135)] = 11962, - [SMALL_STATE(1136)] = 12031, - [SMALL_STATE(1137)] = 12104, - [SMALL_STATE(1138)] = 12167, - [SMALL_STATE(1139)] = 12234, - [SMALL_STATE(1140)] = 12307, - [SMALL_STATE(1141)] = 12378, - [SMALL_STATE(1142)] = 12447, - [SMALL_STATE(1143)] = 12520, - [SMALL_STATE(1144)] = 12591, - [SMALL_STATE(1145)] = 12660, - [SMALL_STATE(1146)] = 12729, - [SMALL_STATE(1147)] = 12798, - [SMALL_STATE(1148)] = 12867, - [SMALL_STATE(1149)] = 12936, - [SMALL_STATE(1150)] = 13007, - [SMALL_STATE(1151)] = 13073, - [SMALL_STATE(1152)] = 13145, - [SMALL_STATE(1153)] = 13207, - [SMALL_STATE(1154)] = 13273, - [SMALL_STATE(1155)] = 13341, - [SMALL_STATE(1156)] = 13403, - [SMALL_STATE(1157)] = 13471, - [SMALL_STATE(1158)] = 13539, - [SMALL_STATE(1159)] = 13609, - [SMALL_STATE(1160)] = 13671, - [SMALL_STATE(1161)] = 13741, - [SMALL_STATE(1162)] = 13809, - [SMALL_STATE(1163)] = 13881, - [SMALL_STATE(1164)] = 13948, - [SMALL_STATE(1165)] = 14017, - [SMALL_STATE(1166)] = 14084, - [SMALL_STATE(1167)] = 14149, - [SMALL_STATE(1168)] = 14216, - [SMALL_STATE(1169)] = 14332, - [SMALL_STATE(1170)] = 14448, - [SMALL_STATE(1171)] = 14564, - [SMALL_STATE(1172)] = 14680, - [SMALL_STATE(1173)] = 14796, - [SMALL_STATE(1174)] = 14912, - [SMALL_STATE(1175)] = 14995, - [SMALL_STATE(1176)] = 15107, - [SMALL_STATE(1177)] = 15219, - [SMALL_STATE(1178)] = 15331, - [SMALL_STATE(1179)] = 15451, - [SMALL_STATE(1180)] = 15563, - [SMALL_STATE(1181)] = 15675, - [SMALL_STATE(1182)] = 15787, - [SMALL_STATE(1183)] = 15899, - [SMALL_STATE(1184)] = 16011, - [SMALL_STATE(1185)] = 16131, - [SMALL_STATE(1186)] = 16243, - [SMALL_STATE(1187)] = 16355, - [SMALL_STATE(1188)] = 16475, - [SMALL_STATE(1189)] = 16595, - [SMALL_STATE(1190)] = 16707, - [SMALL_STATE(1191)] = 16819, - [SMALL_STATE(1192)] = 16931, - [SMALL_STATE(1193)] = 17043, - [SMALL_STATE(1194)] = 17155, - [SMALL_STATE(1195)] = 17267, - [SMALL_STATE(1196)] = 17379, - [SMALL_STATE(1197)] = 17491, - [SMALL_STATE(1198)] = 17611, - [SMALL_STATE(1199)] = 17721, - [SMALL_STATE(1200)] = 17777, - [SMALL_STATE(1201)] = 17885, - [SMALL_STATE(1202)] = 17993, - [SMALL_STATE(1203)] = 18101, - [SMALL_STATE(1204)] = 18209, - [SMALL_STATE(1205)] = 18317, - [SMALL_STATE(1206)] = 18373, - [SMALL_STATE(1207)] = 18481, - [SMALL_STATE(1208)] = 18589, - [SMALL_STATE(1209)] = 18701, - [SMALL_STATE(1210)] = 18772, - [SMALL_STATE(1211)] = 18835, - [SMALL_STATE(1212)] = 18933, - [SMALL_STATE(1213)] = 18991, - [SMALL_STATE(1214)] = 19051, - [SMALL_STATE(1215)] = 19111, - [SMALL_STATE(1216)] = 19171, - [SMALL_STATE(1217)] = 19269, - [SMALL_STATE(1218)] = 19329, - [SMALL_STATE(1219)] = 19389, - [SMALL_STATE(1220)] = 19487, - [SMALL_STATE(1221)] = 19545, - [SMALL_STATE(1222)] = 19643, - [SMALL_STATE(1223)] = 19697, - [SMALL_STATE(1224)] = 19795, - [SMALL_STATE(1225)] = 19851, - [SMALL_STATE(1226)] = 19907, - [SMALL_STATE(1227)] = 19965, - [SMALL_STATE(1228)] = 20063, - [SMALL_STATE(1229)] = 20161, - [SMALL_STATE(1230)] = 20215, - [SMALL_STATE(1231)] = 20269, - [SMALL_STATE(1232)] = 20322, - [SMALL_STATE(1233)] = 20375, - [SMALL_STATE(1234)] = 20428, - [SMALL_STATE(1235)] = 20481, - [SMALL_STATE(1236)] = 20540, - [SMALL_STATE(1237)] = 20593, - [SMALL_STATE(1238)] = 20646, - [SMALL_STATE(1239)] = 20701, - [SMALL_STATE(1240)] = 20754, - [SMALL_STATE(1241)] = 20807, - [SMALL_STATE(1242)] = 20860, - [SMALL_STATE(1243)] = 20913, - [SMALL_STATE(1244)] = 20966, - [SMALL_STATE(1245)] = 21023, - [SMALL_STATE(1246)] = 21082, - [SMALL_STATE(1247)] = 21135, - [SMALL_STATE(1248)] = 21188, - [SMALL_STATE(1249)] = 21241, - [SMALL_STATE(1250)] = 21298, - [SMALL_STATE(1251)] = 21351, - [SMALL_STATE(1252)] = 21412, - [SMALL_STATE(1253)] = 21473, - [SMALL_STATE(1254)] = 21526, - [SMALL_STATE(1255)] = 21579, - [SMALL_STATE(1256)] = 21678, - [SMALL_STATE(1257)] = 21731, - [SMALL_STATE(1258)] = 21784, - [SMALL_STATE(1259)] = 21837, - [SMALL_STATE(1260)] = 21890, - [SMALL_STATE(1261)] = 21943, - [SMALL_STATE(1262)] = 21996, - [SMALL_STATE(1263)] = 22071, - [SMALL_STATE(1264)] = 22130, - [SMALL_STATE(1265)] = 22187, - [SMALL_STATE(1266)] = 22268, - [SMALL_STATE(1267)] = 22327, - [SMALL_STATE(1268)] = 22440, - [SMALL_STATE(1269)] = 22493, - [SMALL_STATE(1270)] = 22548, - [SMALL_STATE(1271)] = 22601, - [SMALL_STATE(1272)] = 22654, - [SMALL_STATE(1273)] = 22707, - [SMALL_STATE(1274)] = 22760, - [SMALL_STATE(1275)] = 22813, - [SMALL_STATE(1276)] = 22868, - [SMALL_STATE(1277)] = 22921, - [SMALL_STATE(1278)] = 22974, - [SMALL_STATE(1279)] = 23027, - [SMALL_STATE(1280)] = 23098, - [SMALL_STATE(1281)] = 23153, - [SMALL_STATE(1282)] = 23206, - [SMALL_STATE(1283)] = 23259, - [SMALL_STATE(1284)] = 23324, - [SMALL_STATE(1285)] = 23437, - [SMALL_STATE(1286)] = 23490, - [SMALL_STATE(1287)] = 23603, - [SMALL_STATE(1288)] = 23656, - [SMALL_STATE(1289)] = 23709, - [SMALL_STATE(1290)] = 23764, - [SMALL_STATE(1291)] = 23823, - [SMALL_STATE(1292)] = 23882, - [SMALL_STATE(1293)] = 23995, - [SMALL_STATE(1294)] = 24048, - [SMALL_STATE(1295)] = 24101, - [SMALL_STATE(1296)] = 24156, - [SMALL_STATE(1297)] = 24217, - [SMALL_STATE(1298)] = 24274, - [SMALL_STATE(1299)] = 24387, - [SMALL_STATE(1300)] = 24440, - [SMALL_STATE(1301)] = 24553, - [SMALL_STATE(1302)] = 24608, - [SMALL_STATE(1303)] = 24661, - [SMALL_STATE(1304)] = 24714, - [SMALL_STATE(1305)] = 24767, - [SMALL_STATE(1306)] = 24820, - [SMALL_STATE(1307)] = 24933, - [SMALL_STATE(1308)] = 24986, - [SMALL_STATE(1309)] = 25063, - [SMALL_STATE(1310)] = 25116, - [SMALL_STATE(1311)] = 25169, - [SMALL_STATE(1312)] = 25228, - [SMALL_STATE(1313)] = 25281, - [SMALL_STATE(1314)] = 25334, - [SMALL_STATE(1315)] = 25449, - [SMALL_STATE(1316)] = 25502, - [SMALL_STATE(1317)] = 25555, - [SMALL_STATE(1318)] = 25608, - [SMALL_STATE(1319)] = 25695, - [SMALL_STATE(1320)] = 25748, - [SMALL_STATE(1321)] = 25801, - [SMALL_STATE(1322)] = 25854, - [SMALL_STATE(1323)] = 25907, - [SMALL_STATE(1324)] = 25960, - [SMALL_STATE(1325)] = 26015, - [SMALL_STATE(1326)] = 26074, - [SMALL_STATE(1327)] = 26127, - [SMALL_STATE(1328)] = 26228, - [SMALL_STATE(1329)] = 26281, - [SMALL_STATE(1330)] = 26384, - [SMALL_STATE(1331)] = 26437, - [SMALL_STATE(1332)] = 26492, - [SMALL_STATE(1333)] = 26545, - [SMALL_STATE(1334)] = 26598, - [SMALL_STATE(1335)] = 26651, - [SMALL_STATE(1336)] = 26704, - [SMALL_STATE(1337)] = 26801, - [SMALL_STATE(1338)] = 26854, - [SMALL_STATE(1339)] = 26907, - [SMALL_STATE(1340)] = 26960, - [SMALL_STATE(1341)] = 27017, - [SMALL_STATE(1342)] = 27076, - [SMALL_STATE(1343)] = 27181, - [SMALL_STATE(1344)] = 27234, - [SMALL_STATE(1345)] = 27347, - [SMALL_STATE(1346)] = 27400, - [SMALL_STATE(1347)] = 27513, - [SMALL_STATE(1348)] = 27566, - [SMALL_STATE(1349)] = 27619, - [SMALL_STATE(1350)] = 27714, - [SMALL_STATE(1351)] = 27767, - [SMALL_STATE(1352)] = 27858, - [SMALL_STATE(1353)] = 27971, - [SMALL_STATE(1354)] = 28054, - [SMALL_STATE(1355)] = 28107, - [SMALL_STATE(1356)] = 28160, - [SMALL_STATE(1357)] = 28243, - [SMALL_STATE(1358)] = 28324, - [SMALL_STATE(1359)] = 28377, - [SMALL_STATE(1360)] = 28490, - [SMALL_STATE(1361)] = 28603, - [SMALL_STATE(1362)] = 28719, - [SMALL_STATE(1363)] = 28773, - [SMALL_STATE(1364)] = 28891, - [SMALL_STATE(1365)] = 29003, - [SMALL_STATE(1366)] = 29055, - [SMALL_STATE(1367)] = 29107, - [SMALL_STATE(1368)] = 29159, - [SMALL_STATE(1369)] = 29211, - [SMALL_STATE(1370)] = 29263, - [SMALL_STATE(1371)] = 29375, - [SMALL_STATE(1372)] = 29427, - [SMALL_STATE(1373)] = 29539, - [SMALL_STATE(1374)] = 29591, - [SMALL_STATE(1375)] = 29643, - [SMALL_STATE(1376)] = 29695, - [SMALL_STATE(1377)] = 29747, - [SMALL_STATE(1378)] = 29807, - [SMALL_STATE(1379)] = 29923, - [SMALL_STATE(1380)] = 29975, - [SMALL_STATE(1381)] = 30027, - [SMALL_STATE(1382)] = 30091, - [SMALL_STATE(1383)] = 30203, - [SMALL_STATE(1384)] = 30315, - [SMALL_STATE(1385)] = 30369, - [SMALL_STATE(1386)] = 30481, - [SMALL_STATE(1387)] = 30567, - [SMALL_STATE(1388)] = 30643, - [SMALL_STATE(1389)] = 30759, - [SMALL_STATE(1390)] = 30871, - [SMALL_STATE(1391)] = 30983, - [SMALL_STATE(1392)] = 31095, - [SMALL_STATE(1393)] = 31207, - [SMALL_STATE(1394)] = 31323, - [SMALL_STATE(1395)] = 31375, - [SMALL_STATE(1396)] = 31427, - [SMALL_STATE(1397)] = 31481, - [SMALL_STATE(1398)] = 31533, - [SMALL_STATE(1399)] = 31585, - [SMALL_STATE(1400)] = 31637, - [SMALL_STATE(1401)] = 31689, - [SMALL_STATE(1402)] = 31741, - [SMALL_STATE(1403)] = 31793, - [SMALL_STATE(1404)] = 31845, - [SMALL_STATE(1405)] = 31913, - [SMALL_STATE(1406)] = 31983, - [SMALL_STATE(1407)] = 32095, - [SMALL_STATE(1408)] = 32149, - [SMALL_STATE(1409)] = 32235, - [SMALL_STATE(1410)] = 32287, - [SMALL_STATE(1411)] = 32339, - [SMALL_STATE(1412)] = 32451, - [SMALL_STATE(1413)] = 32503, - [SMALL_STATE(1414)] = 32555, - [SMALL_STATE(1415)] = 32607, - [SMALL_STATE(1416)] = 32659, - [SMALL_STATE(1417)] = 32771, - [SMALL_STATE(1418)] = 32883, - [SMALL_STATE(1419)] = 32995, - [SMALL_STATE(1420)] = 33107, - [SMALL_STATE(1421)] = 33159, - [SMALL_STATE(1422)] = 33211, - [SMALL_STATE(1423)] = 33263, - [SMALL_STATE(1424)] = 33363, - [SMALL_STATE(1425)] = 33453, - [SMALL_STATE(1426)] = 33511, - [SMALL_STATE(1427)] = 33563, - [SMALL_STATE(1428)] = 33615, - [SMALL_STATE(1429)] = 33729, - [SMALL_STATE(1430)] = 33845, - [SMALL_STATE(1431)] = 33919, - [SMALL_STATE(1432)] = 34023, - [SMALL_STATE(1433)] = 34081, - [SMALL_STATE(1434)] = 34139, - [SMALL_STATE(1435)] = 34191, - [SMALL_STATE(1436)] = 34281, - [SMALL_STATE(1437)] = 34393, - [SMALL_STATE(1438)] = 34475, - [SMALL_STATE(1439)] = 34555, - [SMALL_STATE(1440)] = 34673, - [SMALL_STATE(1441)] = 34747, - [SMALL_STATE(1442)] = 34845, - [SMALL_STATE(1443)] = 34941, - [SMALL_STATE(1444)] = 35035, - [SMALL_STATE(1445)] = 35117, - [SMALL_STATE(1446)] = 35219, - [SMALL_STATE(1447)] = 35271, - [SMALL_STATE(1448)] = 35323, - [SMALL_STATE(1449)] = 35375, - [SMALL_STATE(1450)] = 35455, - [SMALL_STATE(1451)] = 35507, - [SMALL_STATE(1452)] = 35619, - [SMALL_STATE(1453)] = 35671, - [SMALL_STATE(1454)] = 35771, - [SMALL_STATE(1455)] = 35823, - [SMALL_STATE(1456)] = 35893, - [SMALL_STATE(1457)] = 35945, - [SMALL_STATE(1458)] = 35997, - [SMALL_STATE(1459)] = 36109, - [SMALL_STATE(1460)] = 36227, - [SMALL_STATE(1461)] = 36331, - [SMALL_STATE(1462)] = 36433, - [SMALL_STATE(1463)] = 36485, - [SMALL_STATE(1464)] = 36537, - [SMALL_STATE(1465)] = 36589, - [SMALL_STATE(1466)] = 36641, - [SMALL_STATE(1467)] = 36697, - [SMALL_STATE(1468)] = 36749, - [SMALL_STATE(1469)] = 36863, - [SMALL_STATE(1470)] = 36915, - [SMALL_STATE(1471)] = 36967, - [SMALL_STATE(1472)] = 37031, - [SMALL_STATE(1473)] = 37143, - [SMALL_STATE(1474)] = 37195, - [SMALL_STATE(1475)] = 37277, - [SMALL_STATE(1476)] = 37371, - [SMALL_STATE(1477)] = 37423, - [SMALL_STATE(1478)] = 37475, - [SMALL_STATE(1479)] = 37555, - [SMALL_STATE(1480)] = 37667, - [SMALL_STATE(1481)] = 37779, - [SMALL_STATE(1482)] = 37875, - [SMALL_STATE(1483)] = 37927, - [SMALL_STATE(1484)] = 37979, - [SMALL_STATE(1485)] = 38091, - [SMALL_STATE(1486)] = 38143, - [SMALL_STATE(1487)] = 38199, - [SMALL_STATE(1488)] = 38253, - [SMALL_STATE(1489)] = 38305, - [SMALL_STATE(1490)] = 38403, - [SMALL_STATE(1491)] = 38483, - [SMALL_STATE(1492)] = 38535, - [SMALL_STATE(1493)] = 38591, - [SMALL_STATE(1494)] = 38643, - [SMALL_STATE(1495)] = 38695, - [SMALL_STATE(1496)] = 38813, - [SMALL_STATE(1497)] = 38895, - [SMALL_STATE(1498)] = 38947, - [SMALL_STATE(1499)] = 38999, - [SMALL_STATE(1500)] = 39051, - [SMALL_STATE(1501)] = 39103, - [SMALL_STATE(1502)] = 39193, - [SMALL_STATE(1503)] = 39305, - [SMALL_STATE(1504)] = 39381, - [SMALL_STATE(1505)] = 39433, - [SMALL_STATE(1506)] = 39485, - [SMALL_STATE(1507)] = 39537, - [SMALL_STATE(1508)] = 39649, - [SMALL_STATE(1509)] = 39706, - [SMALL_STATE(1510)] = 39819, - [SMALL_STATE(1511)] = 39934, - [SMALL_STATE(1512)] = 40049, - [SMALL_STATE(1513)] = 40144, - [SMALL_STATE(1514)] = 40257, - [SMALL_STATE(1515)] = 40314, - [SMALL_STATE(1516)] = 40429, - [SMALL_STATE(1517)] = 40542, - [SMALL_STATE(1518)] = 40599, - [SMALL_STATE(1519)] = 40656, - [SMALL_STATE(1520)] = 40771, - [SMALL_STATE(1521)] = 40828, - [SMALL_STATE(1522)] = 40889, - [SMALL_STATE(1523)] = 41000, - [SMALL_STATE(1524)] = 41061, - [SMALL_STATE(1525)] = 41124, - [SMALL_STATE(1526)] = 41181, - [SMALL_STATE(1527)] = 41276, - [SMALL_STATE(1528)] = 41331, - [SMALL_STATE(1529)] = 41442, - [SMALL_STATE(1530)] = 41493, - [SMALL_STATE(1531)] = 41604, - [SMALL_STATE(1532)] = 41659, - [SMALL_STATE(1533)] = 41770, - [SMALL_STATE(1534)] = 41825, - [SMALL_STATE(1535)] = 41936, - [SMALL_STATE(1536)] = 42049, - [SMALL_STATE(1537)] = 42162, - [SMALL_STATE(1538)] = 42219, - [SMALL_STATE(1539)] = 42334, - [SMALL_STATE(1540)] = 42449, - [SMALL_STATE(1541)] = 42504, - [SMALL_STATE(1542)] = 42599, - [SMALL_STATE(1543)] = 42710, - [SMALL_STATE(1544)] = 42821, - [SMALL_STATE(1545)] = 42932, - [SMALL_STATE(1546)] = 42991, - [SMALL_STATE(1547)] = 43086, - [SMALL_STATE(1548)] = 43181, - [SMALL_STATE(1549)] = 43296, - [SMALL_STATE(1550)] = 43411, - [SMALL_STATE(1551)] = 43486, - [SMALL_STATE(1552)] = 43571, - [SMALL_STATE(1553)] = 43682, - [SMALL_STATE(1554)] = 43777, - [SMALL_STATE(1555)] = 43878, - [SMALL_STATE(1556)] = 43977, - [SMALL_STATE(1557)] = 44058, - [SMALL_STATE(1558)] = 44173, - [SMALL_STATE(1559)] = 44268, - [SMALL_STATE(1560)] = 44363, - [SMALL_STATE(1561)] = 44474, - [SMALL_STATE(1562)] = 44547, - [SMALL_STATE(1563)] = 44640, - [SMALL_STATE(1564)] = 44735, - [SMALL_STATE(1565)] = 44832, - [SMALL_STATE(1566)] = 44911, - [SMALL_STATE(1567)] = 44970, - [SMALL_STATE(1568)] = 45051, - [SMALL_STATE(1569)] = 45110, - [SMALL_STATE(1570)] = 45199, - [SMALL_STATE(1571)] = 45294, - [SMALL_STATE(1572)] = 45409, - [SMALL_STATE(1573)] = 45468, - [SMALL_STATE(1574)] = 45547, - [SMALL_STATE(1575)] = 45650, - [SMALL_STATE(1576)] = 45761, - [SMALL_STATE(1577)] = 45872, - [SMALL_STATE(1578)] = 45983, - [SMALL_STATE(1579)] = 46036, - [SMALL_STATE(1580)] = 46089, - [SMALL_STATE(1581)] = 46200, - [SMALL_STATE(1582)] = 46269, - [SMALL_STATE(1583)] = 46380, - [SMALL_STATE(1584)] = 46491, - [SMALL_STATE(1585)] = 46586, - [SMALL_STATE(1586)] = 46681, - [SMALL_STATE(1587)] = 46792, - [SMALL_STATE(1588)] = 46902, - [SMALL_STATE(1589)] = 46952, - [SMALL_STATE(1590)] = 47064, - [SMALL_STATE(1591)] = 47128, - [SMALL_STATE(1592)] = 47192, - [SMALL_STATE(1593)] = 47242, - [SMALL_STATE(1594)] = 47354, - [SMALL_STATE(1595)] = 47466, - [SMALL_STATE(1596)] = 47524, - [SMALL_STATE(1597)] = 47634, - [SMALL_STATE(1598)] = 47744, - [SMALL_STATE(1599)] = 47800, - [SMALL_STATE(1600)] = 47856, - [SMALL_STATE(1601)] = 47914, - [SMALL_STATE(1602)] = 48026, - [SMALL_STATE(1603)] = 48138, - [SMALL_STATE(1604)] = 48250, - [SMALL_STATE(1605)] = 48362, - [SMALL_STATE(1606)] = 48416, - [SMALL_STATE(1607)] = 48478, - [SMALL_STATE(1608)] = 48540, - [SMALL_STATE(1609)] = 48608, - [SMALL_STATE(1610)] = 48718, - [SMALL_STATE(1611)] = 48828, - [SMALL_STATE(1612)] = 48906, - [SMALL_STATE(1613)] = 48968, - [SMALL_STATE(1614)] = 49040, - [SMALL_STATE(1615)] = 49102, - [SMALL_STATE(1616)] = 49186, - [SMALL_STATE(1617)] = 49248, - [SMALL_STATE(1618)] = 49304, - [SMALL_STATE(1619)] = 49358, - [SMALL_STATE(1620)] = 49416, - [SMALL_STATE(1621)] = 49474, - [SMALL_STATE(1622)] = 49530, - [SMALL_STATE(1623)] = 49586, - [SMALL_STATE(1624)] = 49640, - [SMALL_STATE(1625)] = 49690, - [SMALL_STATE(1626)] = 49740, - [SMALL_STATE(1627)] = 49790, - [SMALL_STATE(1628)] = 49840, - [SMALL_STATE(1629)] = 49890, - [SMALL_STATE(1630)] = 49940, - [SMALL_STATE(1631)] = 49990, - [SMALL_STATE(1632)] = 50040, - [SMALL_STATE(1633)] = 50090, - [SMALL_STATE(1634)] = 50140, - [SMALL_STATE(1635)] = 50202, - [SMALL_STATE(1636)] = 50252, - [SMALL_STATE(1637)] = 50314, - [SMALL_STATE(1638)] = 50364, - [SMALL_STATE(1639)] = 50416, - [SMALL_STATE(1640)] = 50466, - [SMALL_STATE(1641)] = 50516, - [SMALL_STATE(1642)] = 50566, - [SMALL_STATE(1643)] = 50616, - [SMALL_STATE(1644)] = 50666, - [SMALL_STATE(1645)] = 50716, - [SMALL_STATE(1646)] = 50766, - [SMALL_STATE(1647)] = 50816, - [SMALL_STATE(1648)] = 50866, - [SMALL_STATE(1649)] = 50916, - [SMALL_STATE(1650)] = 50966, - [SMALL_STATE(1651)] = 51016, - [SMALL_STATE(1652)] = 51066, - [SMALL_STATE(1653)] = 51118, - [SMALL_STATE(1654)] = 51168, - [SMALL_STATE(1655)] = 51224, - [SMALL_STATE(1656)] = 51274, - [SMALL_STATE(1657)] = 51324, - [SMALL_STATE(1658)] = 51374, - [SMALL_STATE(1659)] = 51424, - [SMALL_STATE(1660)] = 51474, - [SMALL_STATE(1661)] = 51524, - [SMALL_STATE(1662)] = 51574, - [SMALL_STATE(1663)] = 51624, - [SMALL_STATE(1664)] = 51674, - [SMALL_STATE(1665)] = 51724, - [SMALL_STATE(1666)] = 51774, - [SMALL_STATE(1667)] = 51824, - [SMALL_STATE(1668)] = 51874, - [SMALL_STATE(1669)] = 51924, - [SMALL_STATE(1670)] = 51974, - [SMALL_STATE(1671)] = 52024, - [SMALL_STATE(1672)] = 52074, - [SMALL_STATE(1673)] = 52124, - [SMALL_STATE(1674)] = 52174, - [SMALL_STATE(1675)] = 52284, - [SMALL_STATE(1676)] = 52334, - [SMALL_STATE(1677)] = 52384, - [SMALL_STATE(1678)] = 52436, - [SMALL_STATE(1679)] = 52486, - [SMALL_STATE(1680)] = 52536, - [SMALL_STATE(1681)] = 52586, - [SMALL_STATE(1682)] = 52642, - [SMALL_STATE(1683)] = 52694, - [SMALL_STATE(1684)] = 52744, - [SMALL_STATE(1685)] = 52794, - [SMALL_STATE(1686)] = 52844, - [SMALL_STATE(1687)] = 52900, - [SMALL_STATE(1688)] = 52954, - [SMALL_STATE(1689)] = 53008, - [SMALL_STATE(1690)] = 53092, - [SMALL_STATE(1691)] = 53142, - [SMALL_STATE(1692)] = 53192, - [SMALL_STATE(1693)] = 53242, - [SMALL_STATE(1694)] = 53292, - [SMALL_STATE(1695)] = 53354, - [SMALL_STATE(1696)] = 53464, - [SMALL_STATE(1697)] = 53574, - [SMALL_STATE(1698)] = 53684, - [SMALL_STATE(1699)] = 53794, - [SMALL_STATE(1700)] = 53872, - [SMALL_STATE(1701)] = 53982, - [SMALL_STATE(1702)] = 54094, - [SMALL_STATE(1703)] = 54162, - [SMALL_STATE(1704)] = 54246, - [SMALL_STATE(1705)] = 54302, - [SMALL_STATE(1706)] = 54412, - [SMALL_STATE(1707)] = 54484, - [SMALL_STATE(1708)] = 54542, - [SMALL_STATE(1709)] = 54598, - [SMALL_STATE(1710)] = 54650, - [SMALL_STATE(1711)] = 54700, - [SMALL_STATE(1712)] = 54750, - [SMALL_STATE(1713)] = 54802, - [SMALL_STATE(1714)] = 54852, - [SMALL_STATE(1715)] = 54964, - [SMALL_STATE(1716)] = 55020, - [SMALL_STATE(1717)] = 55076, - [SMALL_STATE(1718)] = 55126, - [SMALL_STATE(1719)] = 55238, - [SMALL_STATE(1720)] = 55348, - [SMALL_STATE(1721)] = 55458, - [SMALL_STATE(1722)] = 55568, - [SMALL_STATE(1723)] = 55618, - [SMALL_STATE(1724)] = 55668, - [SMALL_STATE(1725)] = 55720, - [SMALL_STATE(1726)] = 55770, - [SMALL_STATE(1727)] = 55882, - [SMALL_STATE(1728)] = 55932, - [SMALL_STATE(1729)] = 55994, - [SMALL_STATE(1730)] = 56056, - [SMALL_STATE(1731)] = 56112, - [SMALL_STATE(1732)] = 56196, - [SMALL_STATE(1733)] = 56306, - [SMALL_STATE(1734)] = 56416, - [SMALL_STATE(1735)] = 56466, - [SMALL_STATE(1736)] = 56518, - [SMALL_STATE(1737)] = 56628, - [SMALL_STATE(1738)] = 56678, - [SMALL_STATE(1739)] = 56788, - [SMALL_STATE(1740)] = 56898, - [SMALL_STATE(1741)] = 57008, - [SMALL_STATE(1742)] = 57060, - [SMALL_STATE(1743)] = 57162, - [SMALL_STATE(1744)] = 57250, - [SMALL_STATE(1745)] = 57330, - [SMALL_STATE(1746)] = 57440, - [SMALL_STATE(1747)] = 57550, - [SMALL_STATE(1748)] = 57652, - [SMALL_STATE(1749)] = 57730, - [SMALL_STATE(1750)] = 57818, - [SMALL_STATE(1751)] = 57898, - [SMALL_STATE(1752)] = 57976, - [SMALL_STATE(1753)] = 58072, - [SMALL_STATE(1754)] = 58168, - [SMALL_STATE(1755)] = 58278, - [SMALL_STATE(1756)] = 58388, - [SMALL_STATE(1757)] = 58440, - [SMALL_STATE(1758)] = 58534, - [SMALL_STATE(1759)] = 58628, - [SMALL_STATE(1760)] = 58720, - [SMALL_STATE(1761)] = 58832, - [SMALL_STATE(1762)] = 58912, - [SMALL_STATE(1763)] = 59012, - [SMALL_STATE(1764)] = 59124, - [SMALL_STATE(1765)] = 59236, - [SMALL_STATE(1766)] = 59328, - [SMALL_STATE(1767)] = 59408, - [SMALL_STATE(1768)] = 59506, - [SMALL_STATE(1769)] = 59618, - [SMALL_STATE(1770)] = 59692, - [SMALL_STATE(1771)] = 59776, - [SMALL_STATE(1772)] = 59832, - [SMALL_STATE(1773)] = 59906, - [SMALL_STATE(1774)] = 59990, - [SMALL_STATE(1775)] = 60100, - [SMALL_STATE(1776)] = 60210, - [SMALL_STATE(1777)] = 60320, - [SMALL_STATE(1778)] = 60430, - [SMALL_STATE(1779)] = 60486, - [SMALL_STATE(1780)] = 60570, - [SMALL_STATE(1781)] = 60670, - [SMALL_STATE(1782)] = 60780, - [SMALL_STATE(1783)] = 60892, - [SMALL_STATE(1784)] = 60990, - [SMALL_STATE(1785)] = 61052, - [SMALL_STATE(1786)] = 61104, - [SMALL_STATE(1787)] = 61154, - [SMALL_STATE(1788)] = 61204, - [SMALL_STATE(1789)] = 61256, - [SMALL_STATE(1790)] = 61306, - [SMALL_STATE(1791)] = 61356, - [SMALL_STATE(1792)] = 61410, - [SMALL_STATE(1793)] = 61522, - [SMALL_STATE(1794)] = 61572, - [SMALL_STATE(1795)] = 61681, - [SMALL_STATE(1796)] = 61780, - [SMALL_STATE(1797)] = 61833, - [SMALL_STATE(1798)] = 61884, - [SMALL_STATE(1799)] = 61933, - [SMALL_STATE(1800)] = 61984, - [SMALL_STATE(1801)] = 62093, - [SMALL_STATE(1802)] = 62154, - [SMALL_STATE(1803)] = 62203, - [SMALL_STATE(1804)] = 62252, - [SMALL_STATE(1805)] = 62361, - [SMALL_STATE(1806)] = 62414, - [SMALL_STATE(1807)] = 62467, - [SMALL_STATE(1808)] = 62520, - [SMALL_STATE(1809)] = 62569, - [SMALL_STATE(1810)] = 62620, - [SMALL_STATE(1811)] = 62679, - [SMALL_STATE(1812)] = 62728, - [SMALL_STATE(1813)] = 62787, - [SMALL_STATE(1814)] = 62838, - [SMALL_STATE(1815)] = 62947, - [SMALL_STATE(1816)] = 63056, - [SMALL_STATE(1817)] = 63109, - [SMALL_STATE(1818)] = 63158, - [SMALL_STATE(1819)] = 63211, - [SMALL_STATE(1820)] = 63288, - [SMALL_STATE(1821)] = 63337, - [SMALL_STATE(1822)] = 63446, - [SMALL_STATE(1823)] = 63521, - [SMALL_STATE(1824)] = 63572, - [SMALL_STATE(1825)] = 63681, - [SMALL_STATE(1826)] = 63782, - [SMALL_STATE(1827)] = 63869, - [SMALL_STATE(1828)] = 63948, - [SMALL_STATE(1829)] = 64057, - [SMALL_STATE(1830)] = 64166, - [SMALL_STATE(1831)] = 64241, - [SMALL_STATE(1832)] = 64294, - [SMALL_STATE(1833)] = 64347, - [SMALL_STATE(1834)] = 64424, - [SMALL_STATE(1835)] = 64477, - [SMALL_STATE(1836)] = 64586, - [SMALL_STATE(1837)] = 64635, - [SMALL_STATE(1838)] = 64684, - [SMALL_STATE(1839)] = 64793, - [SMALL_STATE(1840)] = 64870, - [SMALL_STATE(1841)] = 64979, - [SMALL_STATE(1842)] = 65032, - [SMALL_STATE(1843)] = 65089, - [SMALL_STATE(1844)] = 65142, - [SMALL_STATE(1845)] = 65195, - [SMALL_STATE(1846)] = 65252, - [SMALL_STATE(1847)] = 65303, - [SMALL_STATE(1848)] = 65412, - [SMALL_STATE(1849)] = 65461, - [SMALL_STATE(1850)] = 65570, - [SMALL_STATE(1851)] = 65619, - [SMALL_STATE(1852)] = 65672, - [SMALL_STATE(1853)] = 65725, - [SMALL_STATE(1854)] = 65780, - [SMALL_STATE(1855)] = 65831, - [SMALL_STATE(1856)] = 65880, - [SMALL_STATE(1857)] = 65975, - [SMALL_STATE(1858)] = 66068, - [SMALL_STATE(1859)] = 66125, - [SMALL_STATE(1860)] = 66174, - [SMALL_STATE(1861)] = 66225, - [SMALL_STATE(1862)] = 66274, - [SMALL_STATE(1863)] = 66323, - [SMALL_STATE(1864)] = 66432, - [SMALL_STATE(1865)] = 66485, - [SMALL_STATE(1866)] = 66594, - [SMALL_STATE(1867)] = 66643, - [SMALL_STATE(1868)] = 66752, - [SMALL_STATE(1869)] = 66819, - [SMALL_STATE(1870)] = 66878, - [SMALL_STATE(1871)] = 66927, - [SMALL_STATE(1872)] = 66980, - [SMALL_STATE(1873)] = 67031, - [SMALL_STATE(1874)] = 67090, - [SMALL_STATE(1875)] = 67139, - [SMALL_STATE(1876)] = 67188, - [SMALL_STATE(1877)] = 67297, - [SMALL_STATE(1878)] = 67348, - [SMALL_STATE(1879)] = 67397, - [SMALL_STATE(1880)] = 67450, - [SMALL_STATE(1881)] = 67503, - [SMALL_STATE(1882)] = 67556, - [SMALL_STATE(1883)] = 67609, - [SMALL_STATE(1884)] = 67664, - [SMALL_STATE(1885)] = 67773, - [SMALL_STATE(1886)] = 67822, - [SMALL_STATE(1887)] = 67895, - [SMALL_STATE(1888)] = 68004, - [SMALL_STATE(1889)] = 68087, - [SMALL_STATE(1890)] = 68144, - [SMALL_STATE(1891)] = 68193, - [SMALL_STATE(1892)] = 68250, - [SMALL_STATE(1893)] = 68299, - [SMALL_STATE(1894)] = 68356, - [SMALL_STATE(1895)] = 68417, - [SMALL_STATE(1896)] = 68470, - [SMALL_STATE(1897)] = 68519, - [SMALL_STATE(1898)] = 68574, - [SMALL_STATE(1899)] = 68623, - [SMALL_STATE(1900)] = 68680, - [SMALL_STATE(1901)] = 68755, - [SMALL_STATE(1902)] = 68808, - [SMALL_STATE(1903)] = 68917, - [SMALL_STATE(1904)] = 68994, - [SMALL_STATE(1905)] = 69043, - [SMALL_STATE(1906)] = 69154, - [SMALL_STATE(1907)] = 69203, - [SMALL_STATE(1908)] = 69252, - [SMALL_STATE(1909)] = 69307, - [SMALL_STATE(1910)] = 69384, - [SMALL_STATE(1911)] = 69459, - [SMALL_STATE(1912)] = 69514, - [SMALL_STATE(1913)] = 69563, - [SMALL_STATE(1914)] = 69672, - [SMALL_STATE(1915)] = 69723, - [SMALL_STATE(1916)] = 69774, - [SMALL_STATE(1917)] = 69827, - [SMALL_STATE(1918)] = 69878, - [SMALL_STATE(1919)] = 69929, - [SMALL_STATE(1920)] = 69984, - [SMALL_STATE(1921)] = 70081, - [SMALL_STATE(1922)] = 70134, - [SMALL_STATE(1923)] = 70183, - [SMALL_STATE(1924)] = 70236, - [SMALL_STATE(1925)] = 70291, - [SMALL_STATE(1926)] = 70344, - [SMALL_STATE(1927)] = 70399, - [SMALL_STATE(1928)] = 70448, - [SMALL_STATE(1929)] = 70497, - [SMALL_STATE(1930)] = 70552, - [SMALL_STATE(1931)] = 70601, - [SMALL_STATE(1932)] = 70650, - [SMALL_STATE(1933)] = 70699, - [SMALL_STATE(1934)] = 70756, - [SMALL_STATE(1935)] = 70827, - [SMALL_STATE(1936)] = 70876, - [SMALL_STATE(1937)] = 70929, - [SMALL_STATE(1938)] = 71004, - [SMALL_STATE(1939)] = 71081, - [SMALL_STATE(1940)] = 71158, - [SMALL_STATE(1941)] = 71207, - [SMALL_STATE(1942)] = 71256, - [SMALL_STATE(1943)] = 71305, - [SMALL_STATE(1944)] = 71354, - [SMALL_STATE(1945)] = 71407, - [SMALL_STATE(1946)] = 71456, - [SMALL_STATE(1947)] = 71513, - [SMALL_STATE(1948)] = 71562, - [SMALL_STATE(1949)] = 71611, - [SMALL_STATE(1950)] = 71688, - [SMALL_STATE(1951)] = 71737, - [SMALL_STATE(1952)] = 71786, - [SMALL_STATE(1953)] = 71839, - [SMALL_STATE(1954)] = 71888, - [SMALL_STATE(1955)] = 71937, - [SMALL_STATE(1956)] = 71986, - [SMALL_STATE(1957)] = 72077, - [SMALL_STATE(1958)] = 72126, - [SMALL_STATE(1959)] = 72175, - [SMALL_STATE(1960)] = 72228, - [SMALL_STATE(1961)] = 72277, - [SMALL_STATE(1962)] = 72356, - [SMALL_STATE(1963)] = 72405, - [SMALL_STATE(1964)] = 72455, - [SMALL_STATE(1965)] = 72561, - [SMALL_STATE(1966)] = 72667, - [SMALL_STATE(1967)] = 72745, - [SMALL_STATE(1968)] = 72799, - [SMALL_STATE(1969)] = 72851, - [SMALL_STATE(1970)] = 72907, - [SMALL_STATE(1971)] = 73005, - [SMALL_STATE(1972)] = 73057, - [SMALL_STATE(1973)] = 73127, - [SMALL_STATE(1974)] = 73181, - [SMALL_STATE(1975)] = 73277, - [SMALL_STATE(1976)] = 73359, - [SMALL_STATE(1977)] = 73431, - [SMALL_STATE(1978)] = 73537, - [SMALL_STATE(1979)] = 73643, - [SMALL_STATE(1980)] = 73749, - [SMALL_STATE(1981)] = 73855, - [SMALL_STATE(1982)] = 73961, - [SMALL_STATE(1983)] = 74061, - [SMALL_STATE(1984)] = 74147, - [SMALL_STATE(1985)] = 74225, - [SMALL_STATE(1986)] = 74301, - [SMALL_STATE(1987)] = 74371, - [SMALL_STATE(1988)] = 74465, - [SMALL_STATE(1989)] = 74557, - [SMALL_STATE(1990)] = 74647, - [SMALL_STATE(1991)] = 74753, - [SMALL_STATE(1992)] = 74807, - [SMALL_STATE(1993)] = 74877, - [SMALL_STATE(1994)] = 74983, - [SMALL_STATE(1995)] = 75033, - [SMALL_STATE(1996)] = 75139, - [SMALL_STATE(1997)] = 75209, - [SMALL_STATE(1998)] = 75315, - [SMALL_STATE(1999)] = 75371, - [SMALL_STATE(2000)] = 75427, - [SMALL_STATE(2001)] = 75497, - [SMALL_STATE(2002)] = 75567, - [SMALL_STATE(2003)] = 75641, - [SMALL_STATE(2004)] = 75697, - [SMALL_STATE(2005)] = 75803, - [SMALL_STATE(2006)] = 75879, - [SMALL_STATE(2007)] = 75985, - [SMALL_STATE(2008)] = 76045, - [SMALL_STATE(2009)] = 76099, - [SMALL_STATE(2010)] = 76175, - [SMALL_STATE(2011)] = 76281, - [SMALL_STATE(2012)] = 76347, - [SMALL_STATE(2013)] = 76403, - [SMALL_STATE(2014)] = 76452, - [SMALL_STATE(2015)] = 76519, - [SMALL_STATE(2016)] = 76572, - [SMALL_STATE(2017)] = 76653, - [SMALL_STATE(2018)] = 76706, - [SMALL_STATE(2019)] = 76777, - [SMALL_STATE(2020)] = 76826, - [SMALL_STATE(2021)] = 76879, - [SMALL_STATE(2022)] = 76948, - [SMALL_STATE(2023)] = 77019, - [SMALL_STATE(2024)] = 77090, - [SMALL_STATE(2025)] = 77143, - [SMALL_STATE(2026)] = 77212, - [SMALL_STATE(2027)] = 77263, - [SMALL_STATE(2028)] = 77312, - [SMALL_STATE(2029)] = 77393, - [SMALL_STATE(2030)] = 77442, - [SMALL_STATE(2031)] = 77523, - [SMALL_STATE(2032)] = 77576, - [SMALL_STATE(2033)] = 77625, - [SMALL_STATE(2034)] = 77696, - [SMALL_STATE(2035)] = 77749, - [SMALL_STATE(2036)] = 77830, - [SMALL_STATE(2037)] = 77899, - [SMALL_STATE(2038)] = 77948, - [SMALL_STATE(2039)] = 78003, - [SMALL_STATE(2040)] = 78084, - [SMALL_STATE(2041)] = 78165, - [SMALL_STATE(2042)] = 78218, - [SMALL_STATE(2043)] = 78267, - [SMALL_STATE(2044)] = 78316, - [SMALL_STATE(2045)] = 78365, - [SMALL_STATE(2046)] = 78414, - [SMALL_STATE(2047)] = 78495, - [SMALL_STATE(2048)] = 78544, - [SMALL_STATE(2049)] = 78593, - [SMALL_STATE(2050)] = 78646, - [SMALL_STATE(2051)] = 78713, - [SMALL_STATE(2052)] = 78780, - [SMALL_STATE(2053)] = 78844, - [SMALL_STATE(2054)] = 78908, - [SMALL_STATE(2055)] = 78972, - [SMALL_STATE(2056)] = 79046, - [SMALL_STATE(2057)] = 79110, - [SMALL_STATE(2058)] = 79172, - [SMALL_STATE(2059)] = 79234, - [SMALL_STATE(2060)] = 79286, - [SMALL_STATE(2061)] = 79334, - [SMALL_STATE(2062)] = 79386, - [SMALL_STATE(2063)] = 79448, - [SMALL_STATE(2064)] = 79512, - [SMALL_STATE(2065)] = 79586, - [SMALL_STATE(2066)] = 79638, - [SMALL_STATE(2067)] = 79710, - [SMALL_STATE(2068)] = 79782, - [SMALL_STATE(2069)] = 79842, - [SMALL_STATE(2070)] = 79902, - [SMALL_STATE(2071)] = 79974, - [SMALL_STATE(2072)] = 80036, - [SMALL_STATE(2073)] = 80110, - [SMALL_STATE(2074)] = 80182, - [SMALL_STATE(2075)] = 80246, - [SMALL_STATE(2076)] = 80318, - [SMALL_STATE(2077)] = 80380, - [SMALL_STATE(2078)] = 80452, - [SMALL_STATE(2079)] = 80502, - [SMALL_STATE(2080)] = 80562, - [SMALL_STATE(2081)] = 80636, - [SMALL_STATE(2082)] = 80698, - [SMALL_STATE(2083)] = 80760, - [SMALL_STATE(2084)] = 80822, - [SMALL_STATE(2085)] = 80894, - [SMALL_STATE(2086)] = 80942, - [SMALL_STATE(2087)] = 81016, - [SMALL_STATE(2088)] = 81076, - [SMALL_STATE(2089)] = 81140, - [SMALL_STATE(2090)] = 81202, - [SMALL_STATE(2091)] = 81254, - [SMALL_STATE(2092)] = 81318, - [SMALL_STATE(2093)] = 81378, - [SMALL_STATE(2094)] = 81438, - [SMALL_STATE(2095)] = 81500, - [SMALL_STATE(2096)] = 81562, - [SMALL_STATE(2097)] = 81622, - [SMALL_STATE(2098)] = 81686, - [SMALL_STATE(2099)] = 81746, - [SMALL_STATE(2100)] = 81806, - [SMALL_STATE(2101)] = 81866, - [SMALL_STATE(2102)] = 81928, - [SMALL_STATE(2103)] = 81992, - [SMALL_STATE(2104)] = 82054, - [SMALL_STATE(2105)] = 82116, - [SMALL_STATE(2106)] = 82190, - [SMALL_STATE(2107)] = 82252, - [SMALL_STATE(2108)] = 82326, - [SMALL_STATE(2109)] = 82390, - [SMALL_STATE(2110)] = 82457, - [SMALL_STATE(2111)] = 82514, - [SMALL_STATE(2112)] = 82581, - [SMALL_STATE(2113)] = 82638, - [SMALL_STATE(2114)] = 82695, - [SMALL_STATE(2115)] = 82762, - [SMALL_STATE(2116)] = 82819, - [SMALL_STATE(2117)] = 82876, - [SMALL_STATE(2118)] = 82933, - [SMALL_STATE(2119)] = 83000, - [SMALL_STATE(2120)] = 83057, - [SMALL_STATE(2121)] = 83114, - [SMALL_STATE(2122)] = 83181, - [SMALL_STATE(2123)] = 83238, - [SMALL_STATE(2124)] = 83287, - [SMALL_STATE(2125)] = 83344, - [SMALL_STATE(2126)] = 83401, - [SMALL_STATE(2127)] = 83458, - [SMALL_STATE(2128)] = 83525, - [SMALL_STATE(2129)] = 83582, - [SMALL_STATE(2130)] = 83659, - [SMALL_STATE(2131)] = 83732, - [SMALL_STATE(2132)] = 83789, - [SMALL_STATE(2133)] = 83856, - [SMALL_STATE(2134)] = 83913, - [SMALL_STATE(2135)] = 83970, - [SMALL_STATE(2136)] = 84027, - [SMALL_STATE(2137)] = 84084, - [SMALL_STATE(2138)] = 84148, - [SMALL_STATE(2139)] = 84204, - [SMALL_STATE(2140)] = 84274, - [SMALL_STATE(2141)] = 84334, - [SMALL_STATE(2142)] = 84394, - [SMALL_STATE(2143)] = 84450, - [SMALL_STATE(2144)] = 84516, - [SMALL_STATE(2145)] = 84568, - [SMALL_STATE(2146)] = 84620, - [SMALL_STATE(2147)] = 84677, - [SMALL_STATE(2148)] = 84740, - [SMALL_STATE(2149)] = 84793, - [SMALL_STATE(2150)] = 84854, - [SMALL_STATE(2151)] = 84911, - [SMALL_STATE(2152)] = 84968, - [SMALL_STATE(2153)] = 85025, - [SMALL_STATE(2154)] = 85082, - [SMALL_STATE(2155)] = 85139, - [SMALL_STATE(2156)] = 85196, - [SMALL_STATE(2157)] = 85253, - [SMALL_STATE(2158)] = 85312, - [SMALL_STATE(2159)] = 85365, - [SMALL_STATE(2160)] = 85422, - [SMALL_STATE(2161)] = 85479, - [SMALL_STATE(2162)] = 85536, - [SMALL_STATE(2163)] = 85593, - [SMALL_STATE(2164)] = 85650, - [SMALL_STATE(2165)] = 85707, - [SMALL_STATE(2166)] = 85763, - [SMALL_STATE(2167)] = 85842, - [SMALL_STATE(2168)] = 85891, - [SMALL_STATE(2169)] = 85940, - [SMALL_STATE(2170)] = 86005, - [SMALL_STATE(2171)] = 86084, - [SMALL_STATE(2172)] = 86131, - [SMALL_STATE(2173)] = 86210, - [SMALL_STATE(2174)] = 86289, - [SMALL_STATE(2175)] = 86368, - [SMALL_STATE(2176)] = 86408, - [SMALL_STATE(2177)] = 86450, - [SMALL_STATE(2178)] = 86490, - [SMALL_STATE(2179)] = 86536, - [SMALL_STATE(2180)] = 86576, - [SMALL_STATE(2181)] = 86634, - [SMALL_STATE(2182)] = 86690, - [SMALL_STATE(2183)] = 86748, - [SMALL_STATE(2184)] = 86804, - [SMALL_STATE(2185)] = 86844, - [SMALL_STATE(2186)] = 86884, - [SMALL_STATE(2187)] = 86938, - [SMALL_STATE(2188)] = 86978, - [SMALL_STATE(2189)] = 87034, - [SMALL_STATE(2190)] = 87074, - [SMALL_STATE(2191)] = 87114, - [SMALL_STATE(2192)] = 87154, - [SMALL_STATE(2193)] = 87194, - [SMALL_STATE(2194)] = 87234, - [SMALL_STATE(2195)] = 87274, - [SMALL_STATE(2196)] = 87314, - [SMALL_STATE(2197)] = 87354, - [SMALL_STATE(2198)] = 87394, - [SMALL_STATE(2199)] = 87434, - [SMALL_STATE(2200)] = 87474, - [SMALL_STATE(2201)] = 87514, - [SMALL_STATE(2202)] = 87554, - [SMALL_STATE(2203)] = 87594, - [SMALL_STATE(2204)] = 87634, - [SMALL_STATE(2205)] = 87692, - [SMALL_STATE(2206)] = 87734, - [SMALL_STATE(2207)] = 87780, - [SMALL_STATE(2208)] = 87836, - [SMALL_STATE(2209)] = 87876, - [SMALL_STATE(2210)] = 87916, - [SMALL_STATE(2211)] = 87956, - [SMALL_STATE(2212)] = 87996, - [SMALL_STATE(2213)] = 88038, - [SMALL_STATE(2214)] = 88089, - [SMALL_STATE(2215)] = 88140, - [SMALL_STATE(2216)] = 88191, - [SMALL_STATE(2217)] = 88242, - [SMALL_STATE(2218)] = 88293, - [SMALL_STATE(2219)] = 88344, - [SMALL_STATE(2220)] = 88395, - [SMALL_STATE(2221)] = 88436, - [SMALL_STATE(2222)] = 88487, - [SMALL_STATE(2223)] = 88528, - [SMALL_STATE(2224)] = 88579, - [SMALL_STATE(2225)] = 88630, - [SMALL_STATE(2226)] = 88681, - [SMALL_STATE(2227)] = 88732, - [SMALL_STATE(2228)] = 88783, - [SMALL_STATE(2229)] = 88834, - [SMALL_STATE(2230)] = 88897, - [SMALL_STATE(2231)] = 88948, - [SMALL_STATE(2232)] = 88999, - [SMALL_STATE(2233)] = 89050, - [SMALL_STATE(2234)] = 89101, - [SMALL_STATE(2235)] = 89152, - [SMALL_STATE(2236)] = 89203, - [SMALL_STATE(2237)] = 89241, - [SMALL_STATE(2238)] = 89279, - [SMALL_STATE(2239)] = 89329, - [SMALL_STATE(2240)] = 89389, - [SMALL_STATE(2241)] = 89427, - [SMALL_STATE(2242)] = 89483, - [SMALL_STATE(2243)] = 89521, - [SMALL_STATE(2244)] = 89571, - [SMALL_STATE(2245)] = 89609, - [SMALL_STATE(2246)] = 89659, - [SMALL_STATE(2247)] = 89697, - [SMALL_STATE(2248)] = 89757, - [SMALL_STATE(2249)] = 89807, - [SMALL_STATE(2250)] = 89857, - [SMALL_STATE(2251)] = 89907, - [SMALL_STATE(2252)] = 89945, - [SMALL_STATE(2253)] = 89983, - [SMALL_STATE(2254)] = 90033, - [SMALL_STATE(2255)] = 90093, - [SMALL_STATE(2256)] = 90143, - [SMALL_STATE(2257)] = 90193, - [SMALL_STATE(2258)] = 90231, - [SMALL_STATE(2259)] = 90281, - [SMALL_STATE(2260)] = 90332, - [SMALL_STATE(2261)] = 90385, - [SMALL_STATE(2262)] = 90432, - [SMALL_STATE(2263)] = 90485, - [SMALL_STATE(2264)] = 90538, - [SMALL_STATE(2265)] = 90579, - [SMALL_STATE(2266)] = 90632, - [SMALL_STATE(2267)] = 90685, - [SMALL_STATE(2268)] = 90736, - [SMALL_STATE(2269)] = 90789, - [SMALL_STATE(2270)] = 90842, - [SMALL_STATE(2271)] = 90895, - [SMALL_STATE(2272)] = 90948, - [SMALL_STATE(2273)] = 91001, - [SMALL_STATE(2274)] = 91054, - [SMALL_STATE(2275)] = 91107, - [SMALL_STATE(2276)] = 91151, - [SMALL_STATE(2277)] = 91195, - [SMALL_STATE(2278)] = 91241, - [SMALL_STATE(2279)] = 91285, - [SMALL_STATE(2280)] = 91329, - [SMALL_STATE(2281)] = 91373, - [SMALL_STATE(2282)] = 91417, - [SMALL_STATE(2283)] = 91461, - [SMALL_STATE(2284)] = 91505, - [SMALL_STATE(2285)] = 91551, - [SMALL_STATE(2286)] = 91595, - [SMALL_STATE(2287)] = 91639, - [SMALL_STATE(2288)] = 91683, - [SMALL_STATE(2289)] = 91727, - [SMALL_STATE(2290)] = 91771, - [SMALL_STATE(2291)] = 91815, - [SMALL_STATE(2292)] = 91859, - [SMALL_STATE(2293)] = 91903, - [SMALL_STATE(2294)] = 91947, - [SMALL_STATE(2295)] = 91991, - [SMALL_STATE(2296)] = 92035, - [SMALL_STATE(2297)] = 92079, - [SMALL_STATE(2298)] = 92123, - [SMALL_STATE(2299)] = 92167, - [SMALL_STATE(2300)] = 92213, - [SMALL_STATE(2301)] = 92257, - [SMALL_STATE(2302)] = 92301, - [SMALL_STATE(2303)] = 92345, - [SMALL_STATE(2304)] = 92389, - [SMALL_STATE(2305)] = 92433, - [SMALL_STATE(2306)] = 92477, - [SMALL_STATE(2307)] = 92521, - [SMALL_STATE(2308)] = 92552, - [SMALL_STATE(2309)] = 92578, - [SMALL_STATE(2310)] = 92612, - [SMALL_STATE(2311)] = 92638, - [SMALL_STATE(2312)] = 92664, - [SMALL_STATE(2313)] = 92690, - [SMALL_STATE(2314)] = 92716, - [SMALL_STATE(2315)] = 92742, - [SMALL_STATE(2316)] = 92768, - [SMALL_STATE(2317)] = 92794, - [SMALL_STATE(2318)] = 92820, - [SMALL_STATE(2319)] = 92846, - [SMALL_STATE(2320)] = 92872, - [SMALL_STATE(2321)] = 92898, - [SMALL_STATE(2322)] = 92924, - [SMALL_STATE(2323)] = 92950, - [SMALL_STATE(2324)] = 92976, - [SMALL_STATE(2325)] = 93002, - [SMALL_STATE(2326)] = 93028, - [SMALL_STATE(2327)] = 93062, - [SMALL_STATE(2328)] = 93088, - [SMALL_STATE(2329)] = 93114, - [SMALL_STATE(2330)] = 93140, - [SMALL_STATE(2331)] = 93166, - [SMALL_STATE(2332)] = 93192, - [SMALL_STATE(2333)] = 93218, - [SMALL_STATE(2334)] = 93244, - [SMALL_STATE(2335)] = 93270, - [SMALL_STATE(2336)] = 93296, - [SMALL_STATE(2337)] = 93322, - [SMALL_STATE(2338)] = 93348, - [SMALL_STATE(2339)] = 93382, - [SMALL_STATE(2340)] = 93416, - [SMALL_STATE(2341)] = 93442, - [SMALL_STATE(2342)] = 93468, - [SMALL_STATE(2343)] = 93494, - [SMALL_STATE(2344)] = 93520, - [SMALL_STATE(2345)] = 93546, - [SMALL_STATE(2346)] = 93572, - [SMALL_STATE(2347)] = 93597, - [SMALL_STATE(2348)] = 93624, - [SMALL_STATE(2349)] = 93649, - [SMALL_STATE(2350)] = 93678, - [SMALL_STATE(2351)] = 93709, - [SMALL_STATE(2352)] = 93734, - [SMALL_STATE(2353)] = 93758, - [SMALL_STATE(2354)] = 93782, - [SMALL_STATE(2355)] = 93806, - [SMALL_STATE(2356)] = 93834, - [SMALL_STATE(2357)] = 93857, - [SMALL_STATE(2358)] = 93880, - [SMALL_STATE(2359)] = 93903, - [SMALL_STATE(2360)] = 93928, - [SMALL_STATE(2361)] = 93951, - [SMALL_STATE(2362)] = 93978, - [SMALL_STATE(2363)] = 94001, - [SMALL_STATE(2364)] = 94024, - [SMALL_STATE(2365)] = 94047, - [SMALL_STATE(2366)] = 94070, - [SMALL_STATE(2367)] = 94091, - [SMALL_STATE(2368)] = 94114, - [SMALL_STATE(2369)] = 94137, - [SMALL_STATE(2370)] = 94160, - [SMALL_STATE(2371)] = 94185, - [SMALL_STATE(2372)] = 94206, - [SMALL_STATE(2373)] = 94229, - [SMALL_STATE(2374)] = 94250, - [SMALL_STATE(2375)] = 94273, - [SMALL_STATE(2376)] = 94296, - [SMALL_STATE(2377)] = 94317, - [SMALL_STATE(2378)] = 94340, - [SMALL_STATE(2379)] = 94363, - [SMALL_STATE(2380)] = 94386, - [SMALL_STATE(2381)] = 94409, - [SMALL_STATE(2382)] = 94432, - [SMALL_STATE(2383)] = 94455, - [SMALL_STATE(2384)] = 94476, - [SMALL_STATE(2385)] = 94507, - [SMALL_STATE(2386)] = 94530, - [SMALL_STATE(2387)] = 94555, - [SMALL_STATE(2388)] = 94576, - [SMALL_STATE(2389)] = 94601, - [SMALL_STATE(2390)] = 94632, - [SMALL_STATE(2391)] = 94653, - [SMALL_STATE(2392)] = 94676, - [SMALL_STATE(2393)] = 94707, - [SMALL_STATE(2394)] = 94738, - [SMALL_STATE(2395)] = 94761, - [SMALL_STATE(2396)] = 94784, - [SMALL_STATE(2397)] = 94805, - [SMALL_STATE(2398)] = 94828, - [SMALL_STATE(2399)] = 94851, - [SMALL_STATE(2400)] = 94879, - [SMALL_STATE(2401)] = 94901, - [SMALL_STATE(2402)] = 94929, - [SMALL_STATE(2403)] = 94959, - [SMALL_STATE(2404)] = 94989, - [SMALL_STATE(2405)] = 95031, - [SMALL_STATE(2406)] = 95075, - [SMALL_STATE(2407)] = 95105, - [SMALL_STATE(2408)] = 95133, - [SMALL_STATE(2409)] = 95157, - [SMALL_STATE(2410)] = 95183, - [SMALL_STATE(2411)] = 95213, - [SMALL_STATE(2412)] = 95243, - [SMALL_STATE(2413)] = 95265, - [SMALL_STATE(2414)] = 95287, - [SMALL_STATE(2415)] = 95309, - [SMALL_STATE(2416)] = 95331, - [SMALL_STATE(2417)] = 95353, - [SMALL_STATE(2418)] = 95375, - [SMALL_STATE(2419)] = 95397, - [SMALL_STATE(2420)] = 95419, - [SMALL_STATE(2421)] = 95441, - [SMALL_STATE(2422)] = 95463, - [SMALL_STATE(2423)] = 95493, - [SMALL_STATE(2424)] = 95521, - [SMALL_STATE(2425)] = 95563, - [SMALL_STATE(2426)] = 95605, - [SMALL_STATE(2427)] = 95633, - [SMALL_STATE(2428)] = 95661, - [SMALL_STATE(2429)] = 95703, - [SMALL_STATE(2430)] = 95725, - [SMALL_STATE(2431)] = 95747, - [SMALL_STATE(2432)] = 95769, - [SMALL_STATE(2433)] = 95791, - [SMALL_STATE(2434)] = 95813, - [SMALL_STATE(2435)] = 95835, - [SMALL_STATE(2436)] = 95857, - [SMALL_STATE(2437)] = 95879, - [SMALL_STATE(2438)] = 95901, - [SMALL_STATE(2439)] = 95923, - [SMALL_STATE(2440)] = 95951, - [SMALL_STATE(2441)] = 95979, - [SMALL_STATE(2442)] = 96009, - [SMALL_STATE(2443)] = 96031, - [SMALL_STATE(2444)] = 96053, - [SMALL_STATE(2445)] = 96095, - [SMALL_STATE(2446)] = 96117, - [SMALL_STATE(2447)] = 96139, - [SMALL_STATE(2448)] = 96161, - [SMALL_STATE(2449)] = 96191, - [SMALL_STATE(2450)] = 96221, - [SMALL_STATE(2451)] = 96243, - [SMALL_STATE(2452)] = 96265, - [SMALL_STATE(2453)] = 96287, - [SMALL_STATE(2454)] = 96317, - [SMALL_STATE(2455)] = 96347, - [SMALL_STATE(2456)] = 96377, - [SMALL_STATE(2457)] = 96401, - [SMALL_STATE(2458)] = 96423, - [SMALL_STATE(2459)] = 96451, - [SMALL_STATE(2460)] = 96473, - [SMALL_STATE(2461)] = 96495, - [SMALL_STATE(2462)] = 96517, - [SMALL_STATE(2463)] = 96539, - [SMALL_STATE(2464)] = 96569, - [SMALL_STATE(2465)] = 96599, - [SMALL_STATE(2466)] = 96629, - [SMALL_STATE(2467)] = 96657, - [SMALL_STATE(2468)] = 96699, - [SMALL_STATE(2469)] = 96741, - [SMALL_STATE(2470)] = 96769, - [SMALL_STATE(2471)] = 96792, - [SMALL_STATE(2472)] = 96827, - [SMALL_STATE(2473)] = 96864, - [SMALL_STATE(2474)] = 96891, - [SMALL_STATE(2475)] = 96926, - [SMALL_STATE(2476)] = 96947, - [SMALL_STATE(2477)] = 96968, - [SMALL_STATE(2478)] = 96989, - [SMALL_STATE(2479)] = 97010, - [SMALL_STATE(2480)] = 97045, - [SMALL_STATE(2481)] = 97072, - [SMALL_STATE(2482)] = 97099, - [SMALL_STATE(2483)] = 97124, - [SMALL_STATE(2484)] = 97159, - [SMALL_STATE(2485)] = 97184, - [SMALL_STATE(2486)] = 97219, - [SMALL_STATE(2487)] = 97244, - [SMALL_STATE(2488)] = 97265, - [SMALL_STATE(2489)] = 97300, - [SMALL_STATE(2490)] = 97335, - [SMALL_STATE(2491)] = 97370, - [SMALL_STATE(2492)] = 97405, - [SMALL_STATE(2493)] = 97430, - [SMALL_STATE(2494)] = 97455, - [SMALL_STATE(2495)] = 97490, - [SMALL_STATE(2496)] = 97511, - [SMALL_STATE(2497)] = 97538, - [SMALL_STATE(2498)] = 97556, - [SMALL_STATE(2499)] = 97574, - [SMALL_STATE(2500)] = 97606, - [SMALL_STATE(2501)] = 97642, - [SMALL_STATE(2502)] = 97660, - [SMALL_STATE(2503)] = 97678, - [SMALL_STATE(2504)] = 97696, - [SMALL_STATE(2505)] = 97726, - [SMALL_STATE(2506)] = 97746, - [SMALL_STATE(2507)] = 97778, - [SMALL_STATE(2508)] = 97810, - [SMALL_STATE(2509)] = 97828, - [SMALL_STATE(2510)] = 97846, - [SMALL_STATE(2511)] = 97864, - [SMALL_STATE(2512)] = 97884, - [SMALL_STATE(2513)] = 97902, - [SMALL_STATE(2514)] = 97920, - [SMALL_STATE(2515)] = 97938, - [SMALL_STATE(2516)] = 97970, - [SMALL_STATE(2517)] = 97988, - [SMALL_STATE(2518)] = 98006, - [SMALL_STATE(2519)] = 98042, - [SMALL_STATE(2520)] = 98066, - [SMALL_STATE(2521)] = 98098, - [SMALL_STATE(2522)] = 98130, - [SMALL_STATE(2523)] = 98148, - [SMALL_STATE(2524)] = 98166, - [SMALL_STATE(2525)] = 98184, - [SMALL_STATE(2526)] = 98202, - [SMALL_STATE(2527)] = 98220, - [SMALL_STATE(2528)] = 98250, - [SMALL_STATE(2529)] = 98268, - [SMALL_STATE(2530)] = 98286, - [SMALL_STATE(2531)] = 98304, - [SMALL_STATE(2532)] = 98322, - [SMALL_STATE(2533)] = 98340, - [SMALL_STATE(2534)] = 98358, - [SMALL_STATE(2535)] = 98390, - [SMALL_STATE(2536)] = 98426, - [SMALL_STATE(2537)] = 98444, - [SMALL_STATE(2538)] = 98480, - [SMALL_STATE(2539)] = 98510, - [SMALL_STATE(2540)] = 98532, - [SMALL_STATE(2541)] = 98550, - [SMALL_STATE(2542)] = 98572, - [SMALL_STATE(2543)] = 98602, - [SMALL_STATE(2544)] = 98620, - [SMALL_STATE(2545)] = 98652, - [SMALL_STATE(2546)] = 98688, - [SMALL_STATE(2547)] = 98706, - [SMALL_STATE(2548)] = 98744, - [SMALL_STATE(2549)] = 98776, - [SMALL_STATE(2550)] = 98794, - [SMALL_STATE(2551)] = 98812, - [SMALL_STATE(2552)] = 98848, - [SMALL_STATE(2553)] = 98866, - [SMALL_STATE(2554)] = 98884, - [SMALL_STATE(2555)] = 98914, - [SMALL_STATE(2556)] = 98932, - [SMALL_STATE(2557)] = 98950, - [SMALL_STATE(2558)] = 98980, - [SMALL_STATE(2559)] = 99000, - [SMALL_STATE(2560)] = 99032, - [SMALL_STATE(2561)] = 99068, - [SMALL_STATE(2562)] = 99087, - [SMALL_STATE(2563)] = 99106, - [SMALL_STATE(2564)] = 99125, - [SMALL_STATE(2565)] = 99160, - [SMALL_STATE(2566)] = 99179, - [SMALL_STATE(2567)] = 99198, - [SMALL_STATE(2568)] = 99219, - [SMALL_STATE(2569)] = 99240, - [SMALL_STATE(2570)] = 99259, - [SMALL_STATE(2571)] = 99278, - [SMALL_STATE(2572)] = 99295, - [SMALL_STATE(2573)] = 99312, - [SMALL_STATE(2574)] = 99329, - [SMALL_STATE(2575)] = 99346, - [SMALL_STATE(2576)] = 99365, - [SMALL_STATE(2577)] = 99388, - [SMALL_STATE(2578)] = 99407, - [SMALL_STATE(2579)] = 99430, - [SMALL_STATE(2580)] = 99453, - [SMALL_STATE(2581)] = 99472, - [SMALL_STATE(2582)] = 99491, - [SMALL_STATE(2583)] = 99510, - [SMALL_STATE(2584)] = 99531, - [SMALL_STATE(2585)] = 99552, - [SMALL_STATE(2586)] = 99571, - [SMALL_STATE(2587)] = 99588, - [SMALL_STATE(2588)] = 99611, - [SMALL_STATE(2589)] = 99630, - [SMALL_STATE(2590)] = 99649, - [SMALL_STATE(2591)] = 99672, - [SMALL_STATE(2592)] = 99691, - [SMALL_STATE(2593)] = 99710, - [SMALL_STATE(2594)] = 99729, - [SMALL_STATE(2595)] = 99750, - [SMALL_STATE(2596)] = 99773, - [SMALL_STATE(2597)] = 99792, - [SMALL_STATE(2598)] = 99811, - [SMALL_STATE(2599)] = 99830, - [SMALL_STATE(2600)] = 99849, - [SMALL_STATE(2601)] = 99870, - [SMALL_STATE(2602)] = 99889, - [SMALL_STATE(2603)] = 99908, - [SMALL_STATE(2604)] = 99927, - [SMALL_STATE(2605)] = 99946, - [SMALL_STATE(2606)] = 99965, - [SMALL_STATE(2607)] = 99986, - [SMALL_STATE(2608)] = 100005, - [SMALL_STATE(2609)] = 100024, - [SMALL_STATE(2610)] = 100043, - [SMALL_STATE(2611)] = 100062, - [SMALL_STATE(2612)] = 100083, - [SMALL_STATE(2613)] = 100102, - [SMALL_STATE(2614)] = 100121, - [SMALL_STATE(2615)] = 100138, - [SMALL_STATE(2616)] = 100157, - [SMALL_STATE(2617)] = 100176, - [SMALL_STATE(2618)] = 100195, - [SMALL_STATE(2619)] = 100229, - [SMALL_STATE(2620)] = 100263, - [SMALL_STATE(2621)] = 100291, - [SMALL_STATE(2622)] = 100321, - [SMALL_STATE(2623)] = 100355, - [SMALL_STATE(2624)] = 100383, - [SMALL_STATE(2625)] = 100417, - [SMALL_STATE(2626)] = 100433, - [SMALL_STATE(2627)] = 100455, - [SMALL_STATE(2628)] = 100489, - [SMALL_STATE(2629)] = 100509, - [SMALL_STATE(2630)] = 100543, - [SMALL_STATE(2631)] = 100575, - [SMALL_STATE(2632)] = 100609, - [SMALL_STATE(2633)] = 100641, - [SMALL_STATE(2634)] = 100663, - [SMALL_STATE(2635)] = 100681, - [SMALL_STATE(2636)] = 100715, - [SMALL_STATE(2637)] = 100749, - [SMALL_STATE(2638)] = 100773, - [SMALL_STATE(2639)] = 100793, - [SMALL_STATE(2640)] = 100827, - [SMALL_STATE(2641)] = 100857, - [SMALL_STATE(2642)] = 100881, - [SMALL_STATE(2643)] = 100915, - [SMALL_STATE(2644)] = 100939, - [SMALL_STATE(2645)] = 100963, - [SMALL_STATE(2646)] = 100981, - [SMALL_STATE(2647)] = 101008, - [SMALL_STATE(2648)] = 101023, - [SMALL_STATE(2649)] = 101054, - [SMALL_STATE(2650)] = 101081, - [SMALL_STATE(2651)] = 101112, - [SMALL_STATE(2652)] = 101137, - [SMALL_STATE(2653)] = 101152, - [SMALL_STATE(2654)] = 101183, - [SMALL_STATE(2655)] = 101198, - [SMALL_STATE(2656)] = 101213, - [SMALL_STATE(2657)] = 101240, - [SMALL_STATE(2658)] = 101259, - [SMALL_STATE(2659)] = 101274, - [SMALL_STATE(2660)] = 101305, - [SMALL_STATE(2661)] = 101320, - [SMALL_STATE(2662)] = 101335, - [SMALL_STATE(2663)] = 101366, - [SMALL_STATE(2664)] = 101389, - [SMALL_STATE(2665)] = 101420, - [SMALL_STATE(2666)] = 101451, - [SMALL_STATE(2667)] = 101482, - [SMALL_STATE(2668)] = 101497, - [SMALL_STATE(2669)] = 101512, - [SMALL_STATE(2670)] = 101527, - [SMALL_STATE(2671)] = 101542, - [SMALL_STATE(2672)] = 101559, - [SMALL_STATE(2673)] = 101580, - [SMALL_STATE(2674)] = 101595, - [SMALL_STATE(2675)] = 101612, - [SMALL_STATE(2676)] = 101627, - [SMALL_STATE(2677)] = 101644, - [SMALL_STATE(2678)] = 101659, - [SMALL_STATE(2679)] = 101690, - [SMALL_STATE(2680)] = 101705, - [SMALL_STATE(2681)] = 101724, - [SMALL_STATE(2682)] = 101739, - [SMALL_STATE(2683)] = 101760, - [SMALL_STATE(2684)] = 101775, - [SMALL_STATE(2685)] = 101790, - [SMALL_STATE(2686)] = 101821, - [SMALL_STATE(2687)] = 101852, - [SMALL_STATE(2688)] = 101867, - [SMALL_STATE(2689)] = 101884, - [SMALL_STATE(2690)] = 101899, - [SMALL_STATE(2691)] = 101930, - [SMALL_STATE(2692)] = 101945, - [SMALL_STATE(2693)] = 101970, - [SMALL_STATE(2694)] = 102001, - [SMALL_STATE(2695)] = 102028, - [SMALL_STATE(2696)] = 102043, - [SMALL_STATE(2697)] = 102058, - [SMALL_STATE(2698)] = 102073, - [SMALL_STATE(2699)] = 102100, - [SMALL_STATE(2700)] = 102125, - [SMALL_STATE(2701)] = 102142, - [SMALL_STATE(2702)] = 102157, - [SMALL_STATE(2703)] = 102178, - [SMALL_STATE(2704)] = 102195, - [SMALL_STATE(2705)] = 102210, - [SMALL_STATE(2706)] = 102241, - [SMALL_STATE(2707)] = 102268, - [SMALL_STATE(2708)] = 102283, - [SMALL_STATE(2709)] = 102314, - [SMALL_STATE(2710)] = 102339, - [SMALL_STATE(2711)] = 102364, - [SMALL_STATE(2712)] = 102395, - [SMALL_STATE(2713)] = 102410, - [SMALL_STATE(2714)] = 102437, - [SMALL_STATE(2715)] = 102452, - [SMALL_STATE(2716)] = 102477, - [SMALL_STATE(2717)] = 102508, - [SMALL_STATE(2718)] = 102539, - [SMALL_STATE(2719)] = 102554, - [SMALL_STATE(2720)] = 102569, - [SMALL_STATE(2721)] = 102584, - [SMALL_STATE(2722)] = 102611, - [SMALL_STATE(2723)] = 102626, - [SMALL_STATE(2724)] = 102647, - [SMALL_STATE(2725)] = 102678, - [SMALL_STATE(2726)] = 102707, - [SMALL_STATE(2727)] = 102722, - [SMALL_STATE(2728)] = 102737, - [SMALL_STATE(2729)] = 102754, - [SMALL_STATE(2730)] = 102779, - [SMALL_STATE(2731)] = 102806, - [SMALL_STATE(2732)] = 102821, - [SMALL_STATE(2733)] = 102836, - [SMALL_STATE(2734)] = 102851, - [SMALL_STATE(2735)] = 102866, - [SMALL_STATE(2736)] = 102885, - [SMALL_STATE(2737)] = 102904, - [SMALL_STATE(2738)] = 102919, - [SMALL_STATE(2739)] = 102940, - [SMALL_STATE(2740)] = 102955, - [SMALL_STATE(2741)] = 102976, - [SMALL_STATE(2742)] = 103000, - [SMALL_STATE(2743)] = 103014, - [SMALL_STATE(2744)] = 103034, - [SMALL_STATE(2745)] = 103054, - [SMALL_STATE(2746)] = 103078, - [SMALL_STATE(2747)] = 103102, - [SMALL_STATE(2748)] = 103116, - [SMALL_STATE(2749)] = 103140, - [SMALL_STATE(2750)] = 103160, - [SMALL_STATE(2751)] = 103180, - [SMALL_STATE(2752)] = 103194, - [SMALL_STATE(2753)] = 103218, - [SMALL_STATE(2754)] = 103242, - [SMALL_STATE(2755)] = 103260, - [SMALL_STATE(2756)] = 103284, - [SMALL_STATE(2757)] = 103308, - [SMALL_STATE(2758)] = 103332, - [SMALL_STATE(2759)] = 103356, - [SMALL_STATE(2760)] = 103380, - [SMALL_STATE(2761)] = 103404, - [SMALL_STATE(2762)] = 103428, - [SMALL_STATE(2763)] = 103453, - [SMALL_STATE(2764)] = 103478, - [SMALL_STATE(2765)] = 103499, - [SMALL_STATE(2766)] = 103520, - [SMALL_STATE(2767)] = 103545, - [SMALL_STATE(2768)] = 103562, - [SMALL_STATE(2769)] = 103583, - [SMALL_STATE(2770)] = 103602, - [SMALL_STATE(2771)] = 103623, - [SMALL_STATE(2772)] = 103640, - [SMALL_STATE(2773)] = 103653, - [SMALL_STATE(2774)] = 103674, - [SMALL_STATE(2775)] = 103691, - [SMALL_STATE(2776)] = 103716, - [SMALL_STATE(2777)] = 103733, - [SMALL_STATE(2778)] = 103758, - [SMALL_STATE(2779)] = 103783, - [SMALL_STATE(2780)] = 103808, - [SMALL_STATE(2781)] = 103833, - [SMALL_STATE(2782)] = 103858, - [SMALL_STATE(2783)] = 103883, - [SMALL_STATE(2784)] = 103898, - [SMALL_STATE(2785)] = 103923, - [SMALL_STATE(2786)] = 103948, - [SMALL_STATE(2787)] = 103973, - [SMALL_STATE(2788)] = 103988, - [SMALL_STATE(2789)] = 104005, - [SMALL_STATE(2790)] = 104020, - [SMALL_STATE(2791)] = 104037, - [SMALL_STATE(2792)] = 104054, - [SMALL_STATE(2793)] = 104071, - [SMALL_STATE(2794)] = 104088, - [SMALL_STATE(2795)] = 104109, - [SMALL_STATE(2796)] = 104126, - [SMALL_STATE(2797)] = 104143, - [SMALL_STATE(2798)] = 104160, - [SMALL_STATE(2799)] = 104181, - [SMALL_STATE(2800)] = 104198, - [SMALL_STATE(2801)] = 104219, - [SMALL_STATE(2802)] = 104236, - [SMALL_STATE(2803)] = 104253, - [SMALL_STATE(2804)] = 104278, - [SMALL_STATE(2805)] = 104303, - [SMALL_STATE(2806)] = 104316, - [SMALL_STATE(2807)] = 104341, - [SMALL_STATE(2808)] = 104366, - [SMALL_STATE(2809)] = 104383, - [SMALL_STATE(2810)] = 104408, - [SMALL_STATE(2811)] = 104433, - [SMALL_STATE(2812)] = 104450, - [SMALL_STATE(2813)] = 104467, - [SMALL_STATE(2814)] = 104484, - [SMALL_STATE(2815)] = 104509, - [SMALL_STATE(2816)] = 104534, - [SMALL_STATE(2817)] = 104559, - [SMALL_STATE(2818)] = 104584, - [SMALL_STATE(2819)] = 104605, - [SMALL_STATE(2820)] = 104626, - [SMALL_STATE(2821)] = 104647, - [SMALL_STATE(2822)] = 104672, - [SMALL_STATE(2823)] = 104693, - [SMALL_STATE(2824)] = 104718, - [SMALL_STATE(2825)] = 104743, - [SMALL_STATE(2826)] = 104764, - [SMALL_STATE(2827)] = 104777, - [SMALL_STATE(2828)] = 104790, - [SMALL_STATE(2829)] = 104803, - [SMALL_STATE(2830)] = 104820, - [SMALL_STATE(2831)] = 104845, - [SMALL_STATE(2832)] = 104868, - [SMALL_STATE(2833)] = 104885, - [SMALL_STATE(2834)] = 104910, - [SMALL_STATE(2835)] = 104923, - [SMALL_STATE(2836)] = 104940, - [SMALL_STATE(2837)] = 104955, - [SMALL_STATE(2838)] = 104972, - [SMALL_STATE(2839)] = 104997, - [SMALL_STATE(2840)] = 105022, - [SMALL_STATE(2841)] = 105047, - [SMALL_STATE(2842)] = 105062, - [SMALL_STATE(2843)] = 105075, - [SMALL_STATE(2844)] = 105100, - [SMALL_STATE(2845)] = 105113, - [SMALL_STATE(2846)] = 105132, - [SMALL_STATE(2847)] = 105145, - [SMALL_STATE(2848)] = 105166, - [SMALL_STATE(2849)] = 105179, - [SMALL_STATE(2850)] = 105192, - [SMALL_STATE(2851)] = 105205, - [SMALL_STATE(2852)] = 105226, - [SMALL_STATE(2853)] = 105251, - [SMALL_STATE(2854)] = 105276, - [SMALL_STATE(2855)] = 105301, - [SMALL_STATE(2856)] = 105318, - [SMALL_STATE(2857)] = 105343, - [SMALL_STATE(2858)] = 105368, - [SMALL_STATE(2859)] = 105393, - [SMALL_STATE(2860)] = 105418, - [SMALL_STATE(2861)] = 105435, - [SMALL_STATE(2862)] = 105452, - [SMALL_STATE(2863)] = 105469, - [SMALL_STATE(2864)] = 105494, - [SMALL_STATE(2865)] = 105519, - [SMALL_STATE(2866)] = 105542, - [SMALL_STATE(2867)] = 105555, - [SMALL_STATE(2868)] = 105568, - [SMALL_STATE(2869)] = 105583, - [SMALL_STATE(2870)] = 105598, - [SMALL_STATE(2871)] = 105619, - [SMALL_STATE(2872)] = 105640, - [SMALL_STATE(2873)] = 105656, - [SMALL_STATE(2874)] = 105678, - [SMALL_STATE(2875)] = 105700, - [SMALL_STATE(2876)] = 105716, - [SMALL_STATE(2877)] = 105732, - [SMALL_STATE(2878)] = 105748, - [SMALL_STATE(2879)] = 105770, - [SMALL_STATE(2880)] = 105792, - [SMALL_STATE(2881)] = 105804, - [SMALL_STATE(2882)] = 105826, - [SMALL_STATE(2883)] = 105842, - [SMALL_STATE(2884)] = 105858, - [SMALL_STATE(2885)] = 105870, - [SMALL_STATE(2886)] = 105882, - [SMALL_STATE(2887)] = 105894, - [SMALL_STATE(2888)] = 105912, - [SMALL_STATE(2889)] = 105928, - [SMALL_STATE(2890)] = 105944, - [SMALL_STATE(2891)] = 105966, - [SMALL_STATE(2892)] = 105988, - [SMALL_STATE(2893)] = 106010, - [SMALL_STATE(2894)] = 106032, - [SMALL_STATE(2895)] = 106054, - [SMALL_STATE(2896)] = 106070, - [SMALL_STATE(2897)] = 106086, - [SMALL_STATE(2898)] = 106102, - [SMALL_STATE(2899)] = 106118, - [SMALL_STATE(2900)] = 106140, - [SMALL_STATE(2901)] = 106162, - [SMALL_STATE(2902)] = 106174, - [SMALL_STATE(2903)] = 106196, - [SMALL_STATE(2904)] = 106212, - [SMALL_STATE(2905)] = 106228, - [SMALL_STATE(2906)] = 106250, - [SMALL_STATE(2907)] = 106266, - [SMALL_STATE(2908)] = 106284, - [SMALL_STATE(2909)] = 106300, - [SMALL_STATE(2910)] = 106316, - [SMALL_STATE(2911)] = 106338, - [SMALL_STATE(2912)] = 106360, - [SMALL_STATE(2913)] = 106372, - [SMALL_STATE(2914)] = 106392, - [SMALL_STATE(2915)] = 106408, - [SMALL_STATE(2916)] = 106426, - [SMALL_STATE(2917)] = 106442, - [SMALL_STATE(2918)] = 106464, - [SMALL_STATE(2919)] = 106486, - [SMALL_STATE(2920)] = 106504, - [SMALL_STATE(2921)] = 106520, - [SMALL_STATE(2922)] = 106536, - [SMALL_STATE(2923)] = 106548, - [SMALL_STATE(2924)] = 106562, - [SMALL_STATE(2925)] = 106580, - [SMALL_STATE(2926)] = 106592, - [SMALL_STATE(2927)] = 106614, - [SMALL_STATE(2928)] = 106630, - [SMALL_STATE(2929)] = 106652, - [SMALL_STATE(2930)] = 106666, - [SMALL_STATE(2931)] = 106684, - [SMALL_STATE(2932)] = 106700, - [SMALL_STATE(2933)] = 106716, - [SMALL_STATE(2934)] = 106738, - [SMALL_STATE(2935)] = 106754, - [SMALL_STATE(2936)] = 106766, - [SMALL_STATE(2937)] = 106778, - [SMALL_STATE(2938)] = 106796, - [SMALL_STATE(2939)] = 106814, - [SMALL_STATE(2940)] = 106832, - [SMALL_STATE(2941)] = 106854, - [SMALL_STATE(2942)] = 106872, - [SMALL_STATE(2943)] = 106894, - [SMALL_STATE(2944)] = 106910, - [SMALL_STATE(2945)] = 106932, - [SMALL_STATE(2946)] = 106954, - [SMALL_STATE(2947)] = 106968, - [SMALL_STATE(2948)] = 106990, - [SMALL_STATE(2949)] = 107012, - [SMALL_STATE(2950)] = 107028, - [SMALL_STATE(2951)] = 107044, - [SMALL_STATE(2952)] = 107060, - [SMALL_STATE(2953)] = 107076, - [SMALL_STATE(2954)] = 107098, - [SMALL_STATE(2955)] = 107114, - [SMALL_STATE(2956)] = 107136, - [SMALL_STATE(2957)] = 107152, - [SMALL_STATE(2958)] = 107164, - [SMALL_STATE(2959)] = 107176, - [SMALL_STATE(2960)] = 107192, - [SMALL_STATE(2961)] = 107210, - [SMALL_STATE(2962)] = 107228, - [SMALL_STATE(2963)] = 107250, - [SMALL_STATE(2964)] = 107272, - [SMALL_STATE(2965)] = 107290, - [SMALL_STATE(2966)] = 107308, - [SMALL_STATE(2967)] = 107324, - [SMALL_STATE(2968)] = 107340, - [SMALL_STATE(2969)] = 107362, - [SMALL_STATE(2970)] = 107384, - [SMALL_STATE(2971)] = 107400, - [SMALL_STATE(2972)] = 107422, - [SMALL_STATE(2973)] = 107438, - [SMALL_STATE(2974)] = 107460, - [SMALL_STATE(2975)] = 107482, - [SMALL_STATE(2976)] = 107498, - [SMALL_STATE(2977)] = 107520, - [SMALL_STATE(2978)] = 107536, - [SMALL_STATE(2979)] = 107558, - [SMALL_STATE(2980)] = 107574, - [SMALL_STATE(2981)] = 107596, - [SMALL_STATE(2982)] = 107618, - [SMALL_STATE(2983)] = 107640, - [SMALL_STATE(2984)] = 107662, - [SMALL_STATE(2985)] = 107680, - [SMALL_STATE(2986)] = 107698, - [SMALL_STATE(2987)] = 107716, - [SMALL_STATE(2988)] = 107738, - [SMALL_STATE(2989)] = 107756, - [SMALL_STATE(2990)] = 107778, - [SMALL_STATE(2991)] = 107796, - [SMALL_STATE(2992)] = 107814, - [SMALL_STATE(2993)] = 107836, - [SMALL_STATE(2994)] = 107858, - [SMALL_STATE(2995)] = 107876, - [SMALL_STATE(2996)] = 107894, - [SMALL_STATE(2997)] = 107916, - [SMALL_STATE(2998)] = 107928, - [SMALL_STATE(2999)] = 107944, - [SMALL_STATE(3000)] = 107966, - [SMALL_STATE(3001)] = 107984, - [SMALL_STATE(3002)] = 108006, - [SMALL_STATE(3003)] = 108028, - [SMALL_STATE(3004)] = 108044, - [SMALL_STATE(3005)] = 108066, - [SMALL_STATE(3006)] = 108082, - [SMALL_STATE(3007)] = 108098, - [SMALL_STATE(3008)] = 108116, - [SMALL_STATE(3009)] = 108138, - [SMALL_STATE(3010)] = 108154, - [SMALL_STATE(3011)] = 108176, - [SMALL_STATE(3012)] = 108192, - [SMALL_STATE(3013)] = 108214, - [SMALL_STATE(3014)] = 108232, - [SMALL_STATE(3015)] = 108248, - [SMALL_STATE(3016)] = 108270, - [SMALL_STATE(3017)] = 108284, - [SMALL_STATE(3018)] = 108302, - [SMALL_STATE(3019)] = 108322, - [SMALL_STATE(3020)] = 108344, - [SMALL_STATE(3021)] = 108360, - [SMALL_STATE(3022)] = 108376, - [SMALL_STATE(3023)] = 108392, - [SMALL_STATE(3024)] = 108410, - [SMALL_STATE(3025)] = 108430, - [SMALL_STATE(3026)] = 108446, - [SMALL_STATE(3027)] = 108465, - [SMALL_STATE(3028)] = 108476, - [SMALL_STATE(3029)] = 108493, - [SMALL_STATE(3030)] = 108504, - [SMALL_STATE(3031)] = 108515, - [SMALL_STATE(3032)] = 108526, - [SMALL_STATE(3033)] = 108537, - [SMALL_STATE(3034)] = 108548, - [SMALL_STATE(3035)] = 108567, - [SMALL_STATE(3036)] = 108578, - [SMALL_STATE(3037)] = 108589, - [SMALL_STATE(3038)] = 108600, - [SMALL_STATE(3039)] = 108617, - [SMALL_STATE(3040)] = 108628, - [SMALL_STATE(3041)] = 108639, - [SMALL_STATE(3042)] = 108650, - [SMALL_STATE(3043)] = 108661, - [SMALL_STATE(3044)] = 108672, - [SMALL_STATE(3045)] = 108683, - [SMALL_STATE(3046)] = 108694, - [SMALL_STATE(3047)] = 108705, - [SMALL_STATE(3048)] = 108720, - [SMALL_STATE(3049)] = 108735, - [SMALL_STATE(3050)] = 108750, - [SMALL_STATE(3051)] = 108769, - [SMALL_STATE(3052)] = 108784, - [SMALL_STATE(3053)] = 108795, - [SMALL_STATE(3054)] = 108806, - [SMALL_STATE(3055)] = 108825, - [SMALL_STATE(3056)] = 108836, - [SMALL_STATE(3057)] = 108847, - [SMALL_STATE(3058)] = 108858, - [SMALL_STATE(3059)] = 108877, - [SMALL_STATE(3060)] = 108892, - [SMALL_STATE(3061)] = 108909, - [SMALL_STATE(3062)] = 108920, - [SMALL_STATE(3063)] = 108937, - [SMALL_STATE(3064)] = 108948, - [SMALL_STATE(3065)] = 108959, - [SMALL_STATE(3066)] = 108978, - [SMALL_STATE(3067)] = 108989, - [SMALL_STATE(3068)] = 109004, - [SMALL_STATE(3069)] = 109015, - [SMALL_STATE(3070)] = 109026, - [SMALL_STATE(3071)] = 109037, - [SMALL_STATE(3072)] = 109048, - [SMALL_STATE(3073)] = 109067, - [SMALL_STATE(3074)] = 109082, - [SMALL_STATE(3075)] = 109101, - [SMALL_STATE(3076)] = 109120, - [SMALL_STATE(3077)] = 109139, - [SMALL_STATE(3078)] = 109150, - [SMALL_STATE(3079)] = 109169, - [SMALL_STATE(3080)] = 109180, - [SMALL_STATE(3081)] = 109191, - [SMALL_STATE(3082)] = 109210, - [SMALL_STATE(3083)] = 109221, - [SMALL_STATE(3084)] = 109238, - [SMALL_STATE(3085)] = 109249, - [SMALL_STATE(3086)] = 109260, - [SMALL_STATE(3087)] = 109279, - [SMALL_STATE(3088)] = 109292, - [SMALL_STATE(3089)] = 109303, - [SMALL_STATE(3090)] = 109314, - [SMALL_STATE(3091)] = 109331, - [SMALL_STATE(3092)] = 109350, - [SMALL_STATE(3093)] = 109367, - [SMALL_STATE(3094)] = 109384, - [SMALL_STATE(3095)] = 109395, - [SMALL_STATE(3096)] = 109406, - [SMALL_STATE(3097)] = 109417, - [SMALL_STATE(3098)] = 109428, - [SMALL_STATE(3099)] = 109439, - [SMALL_STATE(3100)] = 109458, - [SMALL_STATE(3101)] = 109477, - [SMALL_STATE(3102)] = 109496, - [SMALL_STATE(3103)] = 109513, - [SMALL_STATE(3104)] = 109532, - [SMALL_STATE(3105)] = 109551, - [SMALL_STATE(3106)] = 109562, - [SMALL_STATE(3107)] = 109581, - [SMALL_STATE(3108)] = 109592, - [SMALL_STATE(3109)] = 109603, - [SMALL_STATE(3110)] = 109618, - [SMALL_STATE(3111)] = 109629, - [SMALL_STATE(3112)] = 109648, - [SMALL_STATE(3113)] = 109659, - [SMALL_STATE(3114)] = 109678, - [SMALL_STATE(3115)] = 109689, - [SMALL_STATE(3116)] = 109708, - [SMALL_STATE(3117)] = 109719, - [SMALL_STATE(3118)] = 109730, - [SMALL_STATE(3119)] = 109741, - [SMALL_STATE(3120)] = 109752, - [SMALL_STATE(3121)] = 109771, - [SMALL_STATE(3122)] = 109790, - [SMALL_STATE(3123)] = 109801, - [SMALL_STATE(3124)] = 109812, - [SMALL_STATE(3125)] = 109823, - [SMALL_STATE(3126)] = 109834, - [SMALL_STATE(3127)] = 109853, - [SMALL_STATE(3128)] = 109872, - [SMALL_STATE(3129)] = 109883, - [SMALL_STATE(3130)] = 109896, - [SMALL_STATE(3131)] = 109909, - [SMALL_STATE(3132)] = 109928, - [SMALL_STATE(3133)] = 109939, - [SMALL_STATE(3134)] = 109950, - [SMALL_STATE(3135)] = 109969, - [SMALL_STATE(3136)] = 109986, - [SMALL_STATE(3137)] = 110005, - [SMALL_STATE(3138)] = 110016, - [SMALL_STATE(3139)] = 110027, - [SMALL_STATE(3140)] = 110038, - [SMALL_STATE(3141)] = 110049, - [SMALL_STATE(3142)] = 110060, - [SMALL_STATE(3143)] = 110071, - [SMALL_STATE(3144)] = 110082, - [SMALL_STATE(3145)] = 110093, - [SMALL_STATE(3146)] = 110104, - [SMALL_STATE(3147)] = 110123, - [SMALL_STATE(3148)] = 110134, - [SMALL_STATE(3149)] = 110153, - [SMALL_STATE(3150)] = 110168, - [SMALL_STATE(3151)] = 110185, - [SMALL_STATE(3152)] = 110196, - [SMALL_STATE(3153)] = 110207, - [SMALL_STATE(3154)] = 110224, - [SMALL_STATE(3155)] = 110237, - [SMALL_STATE(3156)] = 110256, - [SMALL_STATE(3157)] = 110275, - [SMALL_STATE(3158)] = 110294, - [SMALL_STATE(3159)] = 110305, - [SMALL_STATE(3160)] = 110324, - [SMALL_STATE(3161)] = 110343, - [SMALL_STATE(3162)] = 110362, - [SMALL_STATE(3163)] = 110373, - [SMALL_STATE(3164)] = 110392, - [SMALL_STATE(3165)] = 110403, - [SMALL_STATE(3166)] = 110418, - [SMALL_STATE(3167)] = 110429, - [SMALL_STATE(3168)] = 110440, - [SMALL_STATE(3169)] = 110451, - [SMALL_STATE(3170)] = 110466, - [SMALL_STATE(3171)] = 110477, - [SMALL_STATE(3172)] = 110492, - [SMALL_STATE(3173)] = 110507, - [SMALL_STATE(3174)] = 110518, - [SMALL_STATE(3175)] = 110537, - [SMALL_STATE(3176)] = 110548, - [SMALL_STATE(3177)] = 110567, - [SMALL_STATE(3178)] = 110580, - [SMALL_STATE(3179)] = 110591, - [SMALL_STATE(3180)] = 110602, - [SMALL_STATE(3181)] = 110613, - [SMALL_STATE(3182)] = 110630, - [SMALL_STATE(3183)] = 110641, - [SMALL_STATE(3184)] = 110652, - [SMALL_STATE(3185)] = 110671, - [SMALL_STATE(3186)] = 110682, - [SMALL_STATE(3187)] = 110701, - [SMALL_STATE(3188)] = 110712, - [SMALL_STATE(3189)] = 110723, - [SMALL_STATE(3190)] = 110738, - [SMALL_STATE(3191)] = 110753, - [SMALL_STATE(3192)] = 110764, - [SMALL_STATE(3193)] = 110783, - [SMALL_STATE(3194)] = 110794, - [SMALL_STATE(3195)] = 110809, - [SMALL_STATE(3196)] = 110824, - [SMALL_STATE(3197)] = 110843, - [SMALL_STATE(3198)] = 110860, - [SMALL_STATE(3199)] = 110875, - [SMALL_STATE(3200)] = 110894, - [SMALL_STATE(3201)] = 110911, - [SMALL_STATE(3202)] = 110928, - [SMALL_STATE(3203)] = 110939, - [SMALL_STATE(3204)] = 110950, - [SMALL_STATE(3205)] = 110961, - [SMALL_STATE(3206)] = 110972, - [SMALL_STATE(3207)] = 110991, - [SMALL_STATE(3208)] = 111008, - [SMALL_STATE(3209)] = 111025, - [SMALL_STATE(3210)] = 111040, - [SMALL_STATE(3211)] = 111051, - [SMALL_STATE(3212)] = 111066, - [SMALL_STATE(3213)] = 111085, - [SMALL_STATE(3214)] = 111096, - [SMALL_STATE(3215)] = 111107, - [SMALL_STATE(3216)] = 111118, - [SMALL_STATE(3217)] = 111129, - [SMALL_STATE(3218)] = 111144, - [SMALL_STATE(3219)] = 111159, - [SMALL_STATE(3220)] = 111170, - [SMALL_STATE(3221)] = 111185, - [SMALL_STATE(3222)] = 111204, - [SMALL_STATE(3223)] = 111223, - [SMALL_STATE(3224)] = 111234, - [SMALL_STATE(3225)] = 111249, - [SMALL_STATE(3226)] = 111268, - [SMALL_STATE(3227)] = 111279, - [SMALL_STATE(3228)] = 111290, - [SMALL_STATE(3229)] = 111301, - [SMALL_STATE(3230)] = 111312, - [SMALL_STATE(3231)] = 111329, - [SMALL_STATE(3232)] = 111348, - [SMALL_STATE(3233)] = 111367, - [SMALL_STATE(3234)] = 111378, - [SMALL_STATE(3235)] = 111397, - [SMALL_STATE(3236)] = 111412, - [SMALL_STATE(3237)] = 111423, - [SMALL_STATE(3238)] = 111434, - [SMALL_STATE(3239)] = 111445, - [SMALL_STATE(3240)] = 111456, - [SMALL_STATE(3241)] = 111467, - [SMALL_STATE(3242)] = 111486, - [SMALL_STATE(3243)] = 111497, - [SMALL_STATE(3244)] = 111508, - [SMALL_STATE(3245)] = 111519, - [SMALL_STATE(3246)] = 111538, - [SMALL_STATE(3247)] = 111557, - [SMALL_STATE(3248)] = 111568, - [SMALL_STATE(3249)] = 111579, - [SMALL_STATE(3250)] = 111598, - [SMALL_STATE(3251)] = 111609, - [SMALL_STATE(3252)] = 111620, - [SMALL_STATE(3253)] = 111631, - [SMALL_STATE(3254)] = 111650, - [SMALL_STATE(3255)] = 111661, - [SMALL_STATE(3256)] = 111672, - [SMALL_STATE(3257)] = 111689, - [SMALL_STATE(3258)] = 111708, - [SMALL_STATE(3259)] = 111727, - [SMALL_STATE(3260)] = 111738, - [SMALL_STATE(3261)] = 111749, - [SMALL_STATE(3262)] = 111760, - [SMALL_STATE(3263)] = 111779, - [SMALL_STATE(3264)] = 111790, - [SMALL_STATE(3265)] = 111807, - [SMALL_STATE(3266)] = 111826, - [SMALL_STATE(3267)] = 111837, - [SMALL_STATE(3268)] = 111856, - [SMALL_STATE(3269)] = 111875, - [SMALL_STATE(3270)] = 111894, - [SMALL_STATE(3271)] = 111911, - [SMALL_STATE(3272)] = 111928, - [SMALL_STATE(3273)] = 111947, - [SMALL_STATE(3274)] = 111958, - [SMALL_STATE(3275)] = 111969, - [SMALL_STATE(3276)] = 111988, - [SMALL_STATE(3277)] = 112005, - [SMALL_STATE(3278)] = 112016, - [SMALL_STATE(3279)] = 112027, - [SMALL_STATE(3280)] = 112046, - [SMALL_STATE(3281)] = 112065, - [SMALL_STATE(3282)] = 112076, - [SMALL_STATE(3283)] = 112095, - [SMALL_STATE(3284)] = 112106, - [SMALL_STATE(3285)] = 112125, - [SMALL_STATE(3286)] = 112136, - [SMALL_STATE(3287)] = 112155, - [SMALL_STATE(3288)] = 112166, - [SMALL_STATE(3289)] = 112185, - [SMALL_STATE(3290)] = 112204, - [SMALL_STATE(3291)] = 112223, - [SMALL_STATE(3292)] = 112234, - [SMALL_STATE(3293)] = 112249, - [SMALL_STATE(3294)] = 112260, - [SMALL_STATE(3295)] = 112271, - [SMALL_STATE(3296)] = 112282, - [SMALL_STATE(3297)] = 112293, - [SMALL_STATE(3298)] = 112312, - [SMALL_STATE(3299)] = 112323, - [SMALL_STATE(3300)] = 112334, - [SMALL_STATE(3301)] = 112345, - [SMALL_STATE(3302)] = 112359, - [SMALL_STATE(3303)] = 112375, - [SMALL_STATE(3304)] = 112389, - [SMALL_STATE(3305)] = 112403, - [SMALL_STATE(3306)] = 112419, - [SMALL_STATE(3307)] = 112435, - [SMALL_STATE(3308)] = 112451, - [SMALL_STATE(3309)] = 112465, - [SMALL_STATE(3310)] = 112479, - [SMALL_STATE(3311)] = 112495, - [SMALL_STATE(3312)] = 112511, - [SMALL_STATE(3313)] = 112527, - [SMALL_STATE(3314)] = 112543, - [SMALL_STATE(3315)] = 112557, - [SMALL_STATE(3316)] = 112571, - [SMALL_STATE(3317)] = 112585, - [SMALL_STATE(3318)] = 112599, - [SMALL_STATE(3319)] = 112609, - [SMALL_STATE(3320)] = 112625, - [SMALL_STATE(3321)] = 112639, - [SMALL_STATE(3322)] = 112653, - [SMALL_STATE(3323)] = 112667, - [SMALL_STATE(3324)] = 112683, - [SMALL_STATE(3325)] = 112697, - [SMALL_STATE(3326)] = 112713, - [SMALL_STATE(3327)] = 112729, - [SMALL_STATE(3328)] = 112745, - [SMALL_STATE(3329)] = 112761, - [SMALL_STATE(3330)] = 112771, - [SMALL_STATE(3331)] = 112787, - [SMALL_STATE(3332)] = 112803, - [SMALL_STATE(3333)] = 112817, - [SMALL_STATE(3334)] = 112831, - [SMALL_STATE(3335)] = 112847, - [SMALL_STATE(3336)] = 112863, - [SMALL_STATE(3337)] = 112877, - [SMALL_STATE(3338)] = 112891, - [SMALL_STATE(3339)] = 112905, - [SMALL_STATE(3340)] = 112919, - [SMALL_STATE(3341)] = 112933, - [SMALL_STATE(3342)] = 112947, - [SMALL_STATE(3343)] = 112961, - [SMALL_STATE(3344)] = 112973, - [SMALL_STATE(3345)] = 112987, - [SMALL_STATE(3346)] = 113001, - [SMALL_STATE(3347)] = 113015, - [SMALL_STATE(3348)] = 113031, - [SMALL_STATE(3349)] = 113047, - [SMALL_STATE(3350)] = 113061, - [SMALL_STATE(3351)] = 113077, - [SMALL_STATE(3352)] = 113091, - [SMALL_STATE(3353)] = 113107, - [SMALL_STATE(3354)] = 113123, - [SMALL_STATE(3355)] = 113139, - [SMALL_STATE(3356)] = 113155, - [SMALL_STATE(3357)] = 113169, - [SMALL_STATE(3358)] = 113185, - [SMALL_STATE(3359)] = 113201, - [SMALL_STATE(3360)] = 113215, - [SMALL_STATE(3361)] = 113231, - [SMALL_STATE(3362)] = 113243, - [SMALL_STATE(3363)] = 113257, - [SMALL_STATE(3364)] = 113271, - [SMALL_STATE(3365)] = 113285, - [SMALL_STATE(3366)] = 113299, - [SMALL_STATE(3367)] = 113315, - [SMALL_STATE(3368)] = 113329, - [SMALL_STATE(3369)] = 113343, - [SMALL_STATE(3370)] = 113357, - [SMALL_STATE(3371)] = 113373, - [SMALL_STATE(3372)] = 113389, - [SMALL_STATE(3373)] = 113403, - [SMALL_STATE(3374)] = 113419, - [SMALL_STATE(3375)] = 113435, - [SMALL_STATE(3376)] = 113449, - [SMALL_STATE(3377)] = 113465, - [SMALL_STATE(3378)] = 113479, - [SMALL_STATE(3379)] = 113493, - [SMALL_STATE(3380)] = 113507, - [SMALL_STATE(3381)] = 113521, - [SMALL_STATE(3382)] = 113537, - [SMALL_STATE(3383)] = 113553, - [SMALL_STATE(3384)] = 113569, - [SMALL_STATE(3385)] = 113585, - [SMALL_STATE(3386)] = 113599, - [SMALL_STATE(3387)] = 113615, - [SMALL_STATE(3388)] = 113631, - [SMALL_STATE(3389)] = 113645, - [SMALL_STATE(3390)] = 113659, - [SMALL_STATE(3391)] = 113675, - [SMALL_STATE(3392)] = 113689, - [SMALL_STATE(3393)] = 113705, - [SMALL_STATE(3394)] = 113721, - [SMALL_STATE(3395)] = 113735, - [SMALL_STATE(3396)] = 113745, - [SMALL_STATE(3397)] = 113761, - [SMALL_STATE(3398)] = 113777, - [SMALL_STATE(3399)] = 113791, - [SMALL_STATE(3400)] = 113807, - [SMALL_STATE(3401)] = 113821, - [SMALL_STATE(3402)] = 113837, - [SMALL_STATE(3403)] = 113853, - [SMALL_STATE(3404)] = 113869, - [SMALL_STATE(3405)] = 113883, - [SMALL_STATE(3406)] = 113899, - [SMALL_STATE(3407)] = 113913, - [SMALL_STATE(3408)] = 113927, - [SMALL_STATE(3409)] = 113941, - [SMALL_STATE(3410)] = 113957, - [SMALL_STATE(3411)] = 113973, - [SMALL_STATE(3412)] = 113989, - [SMALL_STATE(3413)] = 114005, - [SMALL_STATE(3414)] = 114021, - [SMALL_STATE(3415)] = 114037, - [SMALL_STATE(3416)] = 114053, - [SMALL_STATE(3417)] = 114067, - [SMALL_STATE(3418)] = 114081, - [SMALL_STATE(3419)] = 114095, - [SMALL_STATE(3420)] = 114109, - [SMALL_STATE(3421)] = 114125, - [SMALL_STATE(3422)] = 114141, - [SMALL_STATE(3423)] = 114155, - [SMALL_STATE(3424)] = 114169, - [SMALL_STATE(3425)] = 114182, - [SMALL_STATE(3426)] = 114195, - [SMALL_STATE(3427)] = 114206, - [SMALL_STATE(3428)] = 114215, - [SMALL_STATE(3429)] = 114228, - [SMALL_STATE(3430)] = 114241, - [SMALL_STATE(3431)] = 114254, - [SMALL_STATE(3432)] = 114263, - [SMALL_STATE(3433)] = 114276, - [SMALL_STATE(3434)] = 114287, - [SMALL_STATE(3435)] = 114298, - [SMALL_STATE(3436)] = 114307, - [SMALL_STATE(3437)] = 114320, - [SMALL_STATE(3438)] = 114333, - [SMALL_STATE(3439)] = 114346, - [SMALL_STATE(3440)] = 114355, - [SMALL_STATE(3441)] = 114368, - [SMALL_STATE(3442)] = 114381, - [SMALL_STATE(3443)] = 114394, - [SMALL_STATE(3444)] = 114407, - [SMALL_STATE(3445)] = 114416, - [SMALL_STATE(3446)] = 114429, - [SMALL_STATE(3447)] = 114442, - [SMALL_STATE(3448)] = 114455, - [SMALL_STATE(3449)] = 114468, - [SMALL_STATE(3450)] = 114479, - [SMALL_STATE(3451)] = 114492, - [SMALL_STATE(3452)] = 114501, - [SMALL_STATE(3453)] = 114514, - [SMALL_STATE(3454)] = 114523, - [SMALL_STATE(3455)] = 114536, - [SMALL_STATE(3456)] = 114547, - [SMALL_STATE(3457)] = 114560, - [SMALL_STATE(3458)] = 114573, - [SMALL_STATE(3459)] = 114586, - [SMALL_STATE(3460)] = 114599, - [SMALL_STATE(3461)] = 114610, - [SMALL_STATE(3462)] = 114623, - [SMALL_STATE(3463)] = 114636, - [SMALL_STATE(3464)] = 114647, - [SMALL_STATE(3465)] = 114660, - [SMALL_STATE(3466)] = 114673, - [SMALL_STATE(3467)] = 114682, - [SMALL_STATE(3468)] = 114695, - [SMALL_STATE(3469)] = 114708, - [SMALL_STATE(3470)] = 114719, - [SMALL_STATE(3471)] = 114728, - [SMALL_STATE(3472)] = 114741, - [SMALL_STATE(3473)] = 114754, - [SMALL_STATE(3474)] = 114767, - [SMALL_STATE(3475)] = 114776, - [SMALL_STATE(3476)] = 114789, - [SMALL_STATE(3477)] = 114798, - [SMALL_STATE(3478)] = 114807, - [SMALL_STATE(3479)] = 114820, - [SMALL_STATE(3480)] = 114833, - [SMALL_STATE(3481)] = 114846, - [SMALL_STATE(3482)] = 114859, - [SMALL_STATE(3483)] = 114872, - [SMALL_STATE(3484)] = 114885, - [SMALL_STATE(3485)] = 114898, - [SMALL_STATE(3486)] = 114909, - [SMALL_STATE(3487)] = 114922, - [SMALL_STATE(3488)] = 114935, - [SMALL_STATE(3489)] = 114948, - [SMALL_STATE(3490)] = 114961, - [SMALL_STATE(3491)] = 114974, - [SMALL_STATE(3492)] = 114985, - [SMALL_STATE(3493)] = 114994, - [SMALL_STATE(3494)] = 115007, - [SMALL_STATE(3495)] = 115020, - [SMALL_STATE(3496)] = 115033, - [SMALL_STATE(3497)] = 115042, - [SMALL_STATE(3498)] = 115055, - [SMALL_STATE(3499)] = 115068, - [SMALL_STATE(3500)] = 115081, - [SMALL_STATE(3501)] = 115094, - [SMALL_STATE(3502)] = 115107, - [SMALL_STATE(3503)] = 115120, - [SMALL_STATE(3504)] = 115133, - [SMALL_STATE(3505)] = 115142, - [SMALL_STATE(3506)] = 115155, - [SMALL_STATE(3507)] = 115168, - [SMALL_STATE(3508)] = 115181, - [SMALL_STATE(3509)] = 115192, - [SMALL_STATE(3510)] = 115205, - [SMALL_STATE(3511)] = 115214, - [SMALL_STATE(3512)] = 115225, - [SMALL_STATE(3513)] = 115238, - [SMALL_STATE(3514)] = 115247, - [SMALL_STATE(3515)] = 115256, - [SMALL_STATE(3516)] = 115265, - [SMALL_STATE(3517)] = 115274, - [SMALL_STATE(3518)] = 115287, - [SMALL_STATE(3519)] = 115300, - [SMALL_STATE(3520)] = 115313, - [SMALL_STATE(3521)] = 115326, - [SMALL_STATE(3522)] = 115339, - [SMALL_STATE(3523)] = 115348, - [SMALL_STATE(3524)] = 115361, - [SMALL_STATE(3525)] = 115372, - [SMALL_STATE(3526)] = 115385, - [SMALL_STATE(3527)] = 115398, - [SMALL_STATE(3528)] = 115411, - [SMALL_STATE(3529)] = 115424, - [SMALL_STATE(3530)] = 115433, - [SMALL_STATE(3531)] = 115442, - [SMALL_STATE(3532)] = 115455, - [SMALL_STATE(3533)] = 115468, - [SMALL_STATE(3534)] = 115481, - [SMALL_STATE(3535)] = 115494, - [SMALL_STATE(3536)] = 115507, - [SMALL_STATE(3537)] = 115516, - [SMALL_STATE(3538)] = 115525, - [SMALL_STATE(3539)] = 115538, - [SMALL_STATE(3540)] = 115547, - [SMALL_STATE(3541)] = 115558, - [SMALL_STATE(3542)] = 115571, - [SMALL_STATE(3543)] = 115584, - [SMALL_STATE(3544)] = 115593, - [SMALL_STATE(3545)] = 115602, - [SMALL_STATE(3546)] = 115611, - [SMALL_STATE(3547)] = 115620, - [SMALL_STATE(3548)] = 115629, - [SMALL_STATE(3549)] = 115640, - [SMALL_STATE(3550)] = 115649, - [SMALL_STATE(3551)] = 115662, - [SMALL_STATE(3552)] = 115675, - [SMALL_STATE(3553)] = 115688, - [SMALL_STATE(3554)] = 115697, - [SMALL_STATE(3555)] = 115706, - [SMALL_STATE(3556)] = 115715, - [SMALL_STATE(3557)] = 115728, - [SMALL_STATE(3558)] = 115737, - [SMALL_STATE(3559)] = 115746, - [SMALL_STATE(3560)] = 115759, - [SMALL_STATE(3561)] = 115768, - [SMALL_STATE(3562)] = 115781, - [SMALL_STATE(3563)] = 115794, - [SMALL_STATE(3564)] = 115807, - [SMALL_STATE(3565)] = 115816, - [SMALL_STATE(3566)] = 115829, - [SMALL_STATE(3567)] = 115838, - [SMALL_STATE(3568)] = 115851, - [SMALL_STATE(3569)] = 115860, - [SMALL_STATE(3570)] = 115869, - [SMALL_STATE(3571)] = 115878, - [SMALL_STATE(3572)] = 115887, - [SMALL_STATE(3573)] = 115896, - [SMALL_STATE(3574)] = 115905, - [SMALL_STATE(3575)] = 115914, - [SMALL_STATE(3576)] = 115923, - [SMALL_STATE(3577)] = 115932, - [SMALL_STATE(3578)] = 115941, - [SMALL_STATE(3579)] = 115950, - [SMALL_STATE(3580)] = 115959, - [SMALL_STATE(3581)] = 115968, - [SMALL_STATE(3582)] = 115979, - [SMALL_STATE(3583)] = 115992, - [SMALL_STATE(3584)] = 116005, - [SMALL_STATE(3585)] = 116018, - [SMALL_STATE(3586)] = 116031, - [SMALL_STATE(3587)] = 116040, - [SMALL_STATE(3588)] = 116049, - [SMALL_STATE(3589)] = 116058, - [SMALL_STATE(3590)] = 116071, - [SMALL_STATE(3591)] = 116084, - [SMALL_STATE(3592)] = 116093, - [SMALL_STATE(3593)] = 116106, - [SMALL_STATE(3594)] = 116119, - [SMALL_STATE(3595)] = 116132, - [SMALL_STATE(3596)] = 116141, - [SMALL_STATE(3597)] = 116154, - [SMALL_STATE(3598)] = 116167, - [SMALL_STATE(3599)] = 116180, - [SMALL_STATE(3600)] = 116193, - [SMALL_STATE(3601)] = 116206, - [SMALL_STATE(3602)] = 116215, - [SMALL_STATE(3603)] = 116228, - [SMALL_STATE(3604)] = 116241, - [SMALL_STATE(3605)] = 116254, - [SMALL_STATE(3606)] = 116265, - [SMALL_STATE(3607)] = 116278, - [SMALL_STATE(3608)] = 116289, - [SMALL_STATE(3609)] = 116302, - [SMALL_STATE(3610)] = 116315, - [SMALL_STATE(3611)] = 116328, - [SMALL_STATE(3612)] = 116337, - [SMALL_STATE(3613)] = 116350, - [SMALL_STATE(3614)] = 116363, - [SMALL_STATE(3615)] = 116376, - [SMALL_STATE(3616)] = 116389, - [SMALL_STATE(3617)] = 116402, - [SMALL_STATE(3618)] = 116415, - [SMALL_STATE(3619)] = 116428, - [SMALL_STATE(3620)] = 116441, - [SMALL_STATE(3621)] = 116454, - [SMALL_STATE(3622)] = 116463, - [SMALL_STATE(3623)] = 116474, - [SMALL_STATE(3624)] = 116487, - [SMALL_STATE(3625)] = 116500, - [SMALL_STATE(3626)] = 116513, - [SMALL_STATE(3627)] = 116526, - [SMALL_STATE(3628)] = 116537, - [SMALL_STATE(3629)] = 116550, - [SMALL_STATE(3630)] = 116563, - [SMALL_STATE(3631)] = 116576, - [SMALL_STATE(3632)] = 116589, - [SMALL_STATE(3633)] = 116602, - [SMALL_STATE(3634)] = 116615, - [SMALL_STATE(3635)] = 116628, - [SMALL_STATE(3636)] = 116641, - [SMALL_STATE(3637)] = 116654, - [SMALL_STATE(3638)] = 116667, - [SMALL_STATE(3639)] = 116678, - [SMALL_STATE(3640)] = 116691, - [SMALL_STATE(3641)] = 116704, - [SMALL_STATE(3642)] = 116717, - [SMALL_STATE(3643)] = 116730, - [SMALL_STATE(3644)] = 116743, - [SMALL_STATE(3645)] = 116756, - [SMALL_STATE(3646)] = 116769, - [SMALL_STATE(3647)] = 116782, - [SMALL_STATE(3648)] = 116795, - [SMALL_STATE(3649)] = 116806, - [SMALL_STATE(3650)] = 116819, - [SMALL_STATE(3651)] = 116828, - [SMALL_STATE(3652)] = 116841, - [SMALL_STATE(3653)] = 116854, - [SMALL_STATE(3654)] = 116863, - [SMALL_STATE(3655)] = 116871, - [SMALL_STATE(3656)] = 116879, - [SMALL_STATE(3657)] = 116889, - [SMALL_STATE(3658)] = 116899, - [SMALL_STATE(3659)] = 116907, - [SMALL_STATE(3660)] = 116917, - [SMALL_STATE(3661)] = 116927, - [SMALL_STATE(3662)] = 116937, - [SMALL_STATE(3663)] = 116947, - [SMALL_STATE(3664)] = 116957, - [SMALL_STATE(3665)] = 116967, - [SMALL_STATE(3666)] = 116975, - [SMALL_STATE(3667)] = 116983, - [SMALL_STATE(3668)] = 116991, - [SMALL_STATE(3669)] = 117001, - [SMALL_STATE(3670)] = 117011, - [SMALL_STATE(3671)] = 117019, - [SMALL_STATE(3672)] = 117029, - [SMALL_STATE(3673)] = 117037, - [SMALL_STATE(3674)] = 117045, - [SMALL_STATE(3675)] = 117055, - [SMALL_STATE(3676)] = 117063, - [SMALL_STATE(3677)] = 117073, - [SMALL_STATE(3678)] = 117081, - [SMALL_STATE(3679)] = 117091, - [SMALL_STATE(3680)] = 117101, - [SMALL_STATE(3681)] = 117111, - [SMALL_STATE(3682)] = 117121, - [SMALL_STATE(3683)] = 117131, - [SMALL_STATE(3684)] = 117141, - [SMALL_STATE(3685)] = 117151, - [SMALL_STATE(3686)] = 117161, - [SMALL_STATE(3687)] = 117169, - [SMALL_STATE(3688)] = 117179, - [SMALL_STATE(3689)] = 117189, - [SMALL_STATE(3690)] = 117199, - [SMALL_STATE(3691)] = 117209, - [SMALL_STATE(3692)] = 117219, - [SMALL_STATE(3693)] = 117229, - [SMALL_STATE(3694)] = 117237, - [SMALL_STATE(3695)] = 117247, - [SMALL_STATE(3696)] = 117257, - [SMALL_STATE(3697)] = 117267, - [SMALL_STATE(3698)] = 117277, - [SMALL_STATE(3699)] = 117285, - [SMALL_STATE(3700)] = 117295, - [SMALL_STATE(3701)] = 117305, - [SMALL_STATE(3702)] = 117313, - [SMALL_STATE(3703)] = 117323, - [SMALL_STATE(3704)] = 117333, - [SMALL_STATE(3705)] = 117343, - [SMALL_STATE(3706)] = 117353, - [SMALL_STATE(3707)] = 117363, - [SMALL_STATE(3708)] = 117373, - [SMALL_STATE(3709)] = 117381, - [SMALL_STATE(3710)] = 117391, - [SMALL_STATE(3711)] = 117399, - [SMALL_STATE(3712)] = 117407, - [SMALL_STATE(3713)] = 117415, - [SMALL_STATE(3714)] = 117425, - [SMALL_STATE(3715)] = 117435, - [SMALL_STATE(3716)] = 117445, - [SMALL_STATE(3717)] = 117453, - [SMALL_STATE(3718)] = 117463, - [SMALL_STATE(3719)] = 117473, - [SMALL_STATE(3720)] = 117481, - [SMALL_STATE(3721)] = 117491, - [SMALL_STATE(3722)] = 117501, - [SMALL_STATE(3723)] = 117511, - [SMALL_STATE(3724)] = 117521, - [SMALL_STATE(3725)] = 117529, - [SMALL_STATE(3726)] = 117539, - [SMALL_STATE(3727)] = 117549, - [SMALL_STATE(3728)] = 117559, - [SMALL_STATE(3729)] = 117569, - [SMALL_STATE(3730)] = 117579, - [SMALL_STATE(3731)] = 117589, - [SMALL_STATE(3732)] = 117599, - [SMALL_STATE(3733)] = 117607, - [SMALL_STATE(3734)] = 117615, - [SMALL_STATE(3735)] = 117625, - [SMALL_STATE(3736)] = 117635, - [SMALL_STATE(3737)] = 117645, - [SMALL_STATE(3738)] = 117653, - [SMALL_STATE(3739)] = 117663, - [SMALL_STATE(3740)] = 117673, - [SMALL_STATE(3741)] = 117683, - [SMALL_STATE(3742)] = 117693, - [SMALL_STATE(3743)] = 117703, - [SMALL_STATE(3744)] = 117711, - [SMALL_STATE(3745)] = 117719, - [SMALL_STATE(3746)] = 117729, - [SMALL_STATE(3747)] = 117739, - [SMALL_STATE(3748)] = 117749, - [SMALL_STATE(3749)] = 117759, - [SMALL_STATE(3750)] = 117769, - [SMALL_STATE(3751)] = 117779, - [SMALL_STATE(3752)] = 117789, - [SMALL_STATE(3753)] = 117799, - [SMALL_STATE(3754)] = 117809, - [SMALL_STATE(3755)] = 117819, - [SMALL_STATE(3756)] = 117829, - [SMALL_STATE(3757)] = 117839, - [SMALL_STATE(3758)] = 117849, - [SMALL_STATE(3759)] = 117859, - [SMALL_STATE(3760)] = 117869, - [SMALL_STATE(3761)] = 117879, - [SMALL_STATE(3762)] = 117889, - [SMALL_STATE(3763)] = 117899, - [SMALL_STATE(3764)] = 117909, - [SMALL_STATE(3765)] = 117919, - [SMALL_STATE(3766)] = 117927, - [SMALL_STATE(3767)] = 117937, - [SMALL_STATE(3768)] = 117947, - [SMALL_STATE(3769)] = 117957, - [SMALL_STATE(3770)] = 117967, - [SMALL_STATE(3771)] = 117977, - [SMALL_STATE(3772)] = 117987, - [SMALL_STATE(3773)] = 117997, - [SMALL_STATE(3774)] = 118005, - [SMALL_STATE(3775)] = 118015, - [SMALL_STATE(3776)] = 118023, - [SMALL_STATE(3777)] = 118033, - [SMALL_STATE(3778)] = 118043, - [SMALL_STATE(3779)] = 118051, - [SMALL_STATE(3780)] = 118061, - [SMALL_STATE(3781)] = 118071, - [SMALL_STATE(3782)] = 118079, - [SMALL_STATE(3783)] = 118087, - [SMALL_STATE(3784)] = 118097, - [SMALL_STATE(3785)] = 118107, - [SMALL_STATE(3786)] = 118115, - [SMALL_STATE(3787)] = 118125, - [SMALL_STATE(3788)] = 118135, - [SMALL_STATE(3789)] = 118145, - [SMALL_STATE(3790)] = 118155, - [SMALL_STATE(3791)] = 118165, - [SMALL_STATE(3792)] = 118175, - [SMALL_STATE(3793)] = 118183, - [SMALL_STATE(3794)] = 118193, - [SMALL_STATE(3795)] = 118203, - [SMALL_STATE(3796)] = 118213, - [SMALL_STATE(3797)] = 118223, - [SMALL_STATE(3798)] = 118233, - [SMALL_STATE(3799)] = 118241, - [SMALL_STATE(3800)] = 118251, - [SMALL_STATE(3801)] = 118261, - [SMALL_STATE(3802)] = 118271, - [SMALL_STATE(3803)] = 118281, - [SMALL_STATE(3804)] = 118291, - [SMALL_STATE(3805)] = 118301, - [SMALL_STATE(3806)] = 118309, - [SMALL_STATE(3807)] = 118319, - [SMALL_STATE(3808)] = 118329, - [SMALL_STATE(3809)] = 118339, - [SMALL_STATE(3810)] = 118347, - [SMALL_STATE(3811)] = 118357, - [SMALL_STATE(3812)] = 118367, - [SMALL_STATE(3813)] = 118377, - [SMALL_STATE(3814)] = 118387, - [SMALL_STATE(3815)] = 118397, - [SMALL_STATE(3816)] = 118405, - [SMALL_STATE(3817)] = 118413, - [SMALL_STATE(3818)] = 118421, - [SMALL_STATE(3819)] = 118431, - [SMALL_STATE(3820)] = 118439, - [SMALL_STATE(3821)] = 118449, - [SMALL_STATE(3822)] = 118459, - [SMALL_STATE(3823)] = 118467, - [SMALL_STATE(3824)] = 118477, - [SMALL_STATE(3825)] = 118487, - [SMALL_STATE(3826)] = 118495, - [SMALL_STATE(3827)] = 118503, - [SMALL_STATE(3828)] = 118513, - [SMALL_STATE(3829)] = 118523, - [SMALL_STATE(3830)] = 118533, - [SMALL_STATE(3831)] = 118541, - [SMALL_STATE(3832)] = 118551, - [SMALL_STATE(3833)] = 118559, - [SMALL_STATE(3834)] = 118569, - [SMALL_STATE(3835)] = 118579, - [SMALL_STATE(3836)] = 118589, - [SMALL_STATE(3837)] = 118597, - [SMALL_STATE(3838)] = 118607, - [SMALL_STATE(3839)] = 118615, - [SMALL_STATE(3840)] = 118625, - [SMALL_STATE(3841)] = 118635, - [SMALL_STATE(3842)] = 118645, - [SMALL_STATE(3843)] = 118655, - [SMALL_STATE(3844)] = 118665, - [SMALL_STATE(3845)] = 118675, - [SMALL_STATE(3846)] = 118683, - [SMALL_STATE(3847)] = 118693, - [SMALL_STATE(3848)] = 118701, - [SMALL_STATE(3849)] = 118711, - [SMALL_STATE(3850)] = 118721, - [SMALL_STATE(3851)] = 118729, - [SMALL_STATE(3852)] = 118739, - [SMALL_STATE(3853)] = 118749, - [SMALL_STATE(3854)] = 118757, - [SMALL_STATE(3855)] = 118767, - [SMALL_STATE(3856)] = 118777, - [SMALL_STATE(3857)] = 118787, - [SMALL_STATE(3858)] = 118797, - [SMALL_STATE(3859)] = 118807, - [SMALL_STATE(3860)] = 118817, - [SMALL_STATE(3861)] = 118825, - [SMALL_STATE(3862)] = 118833, - [SMALL_STATE(3863)] = 118843, - [SMALL_STATE(3864)] = 118853, - [SMALL_STATE(3865)] = 118861, - [SMALL_STATE(3866)] = 118871, - [SMALL_STATE(3867)] = 118881, - [SMALL_STATE(3868)] = 118891, - [SMALL_STATE(3869)] = 118901, - [SMALL_STATE(3870)] = 118911, - [SMALL_STATE(3871)] = 118921, - [SMALL_STATE(3872)] = 118931, - [SMALL_STATE(3873)] = 118941, - [SMALL_STATE(3874)] = 118951, - [SMALL_STATE(3875)] = 118961, - [SMALL_STATE(3876)] = 118971, - [SMALL_STATE(3877)] = 118979, - [SMALL_STATE(3878)] = 118987, - [SMALL_STATE(3879)] = 118997, - [SMALL_STATE(3880)] = 119005, - [SMALL_STATE(3881)] = 119015, - [SMALL_STATE(3882)] = 119025, - [SMALL_STATE(3883)] = 119033, - [SMALL_STATE(3884)] = 119041, - [SMALL_STATE(3885)] = 119051, - [SMALL_STATE(3886)] = 119061, - [SMALL_STATE(3887)] = 119069, - [SMALL_STATE(3888)] = 119077, - [SMALL_STATE(3889)] = 119085, - [SMALL_STATE(3890)] = 119095, - [SMALL_STATE(3891)] = 119103, - [SMALL_STATE(3892)] = 119113, - [SMALL_STATE(3893)] = 119123, - [SMALL_STATE(3894)] = 119133, - [SMALL_STATE(3895)] = 119141, - [SMALL_STATE(3896)] = 119151, - [SMALL_STATE(3897)] = 119161, - [SMALL_STATE(3898)] = 119171, - [SMALL_STATE(3899)] = 119181, - [SMALL_STATE(3900)] = 119191, - [SMALL_STATE(3901)] = 119199, - [SMALL_STATE(3902)] = 119207, - [SMALL_STATE(3903)] = 119217, - [SMALL_STATE(3904)] = 119225, - [SMALL_STATE(3905)] = 119235, - [SMALL_STATE(3906)] = 119243, - [SMALL_STATE(3907)] = 119253, - [SMALL_STATE(3908)] = 119261, - [SMALL_STATE(3909)] = 119271, - [SMALL_STATE(3910)] = 119281, - [SMALL_STATE(3911)] = 119289, - [SMALL_STATE(3912)] = 119297, - [SMALL_STATE(3913)] = 119307, - [SMALL_STATE(3914)] = 119317, - [SMALL_STATE(3915)] = 119327, - [SMALL_STATE(3916)] = 119337, - [SMALL_STATE(3917)] = 119347, - [SMALL_STATE(3918)] = 119355, - [SMALL_STATE(3919)] = 119365, - [SMALL_STATE(3920)] = 119375, - [SMALL_STATE(3921)] = 119385, - [SMALL_STATE(3922)] = 119395, - [SMALL_STATE(3923)] = 119405, - [SMALL_STATE(3924)] = 119412, - [SMALL_STATE(3925)] = 119419, - [SMALL_STATE(3926)] = 119426, - [SMALL_STATE(3927)] = 119433, - [SMALL_STATE(3928)] = 119440, - [SMALL_STATE(3929)] = 119447, - [SMALL_STATE(3930)] = 119454, - [SMALL_STATE(3931)] = 119461, - [SMALL_STATE(3932)] = 119468, - [SMALL_STATE(3933)] = 119475, - [SMALL_STATE(3934)] = 119482, - [SMALL_STATE(3935)] = 119489, - [SMALL_STATE(3936)] = 119496, - [SMALL_STATE(3937)] = 119503, - [SMALL_STATE(3938)] = 119510, - [SMALL_STATE(3939)] = 119517, - [SMALL_STATE(3940)] = 119524, - [SMALL_STATE(3941)] = 119531, - [SMALL_STATE(3942)] = 119538, - [SMALL_STATE(3943)] = 119545, - [SMALL_STATE(3944)] = 119552, - [SMALL_STATE(3945)] = 119559, - [SMALL_STATE(3946)] = 119566, - [SMALL_STATE(3947)] = 119573, - [SMALL_STATE(3948)] = 119580, - [SMALL_STATE(3949)] = 119587, - [SMALL_STATE(3950)] = 119594, - [SMALL_STATE(3951)] = 119601, - [SMALL_STATE(3952)] = 119608, - [SMALL_STATE(3953)] = 119615, - [SMALL_STATE(3954)] = 119622, - [SMALL_STATE(3955)] = 119629, - [SMALL_STATE(3956)] = 119636, - [SMALL_STATE(3957)] = 119643, - [SMALL_STATE(3958)] = 119650, - [SMALL_STATE(3959)] = 119657, - [SMALL_STATE(3960)] = 119664, - [SMALL_STATE(3961)] = 119671, - [SMALL_STATE(3962)] = 119678, - [SMALL_STATE(3963)] = 119685, - [SMALL_STATE(3964)] = 119692, - [SMALL_STATE(3965)] = 119699, - [SMALL_STATE(3966)] = 119706, - [SMALL_STATE(3967)] = 119713, - [SMALL_STATE(3968)] = 119720, - [SMALL_STATE(3969)] = 119727, - [SMALL_STATE(3970)] = 119734, - [SMALL_STATE(3971)] = 119741, - [SMALL_STATE(3972)] = 119748, - [SMALL_STATE(3973)] = 119755, - [SMALL_STATE(3974)] = 119762, - [SMALL_STATE(3975)] = 119769, - [SMALL_STATE(3976)] = 119776, - [SMALL_STATE(3977)] = 119783, - [SMALL_STATE(3978)] = 119790, - [SMALL_STATE(3979)] = 119797, - [SMALL_STATE(3980)] = 119804, - [SMALL_STATE(3981)] = 119811, - [SMALL_STATE(3982)] = 119818, - [SMALL_STATE(3983)] = 119825, - [SMALL_STATE(3984)] = 119832, - [SMALL_STATE(3985)] = 119839, - [SMALL_STATE(3986)] = 119846, - [SMALL_STATE(3987)] = 119853, - [SMALL_STATE(3988)] = 119860, - [SMALL_STATE(3989)] = 119867, - [SMALL_STATE(3990)] = 119874, - [SMALL_STATE(3991)] = 119881, - [SMALL_STATE(3992)] = 119888, - [SMALL_STATE(3993)] = 119895, - [SMALL_STATE(3994)] = 119902, - [SMALL_STATE(3995)] = 119909, - [SMALL_STATE(3996)] = 119916, - [SMALL_STATE(3997)] = 119923, - [SMALL_STATE(3998)] = 119930, - [SMALL_STATE(3999)] = 119937, - [SMALL_STATE(4000)] = 119944, - [SMALL_STATE(4001)] = 119951, - [SMALL_STATE(4002)] = 119958, - [SMALL_STATE(4003)] = 119965, - [SMALL_STATE(4004)] = 119972, - [SMALL_STATE(4005)] = 119979, - [SMALL_STATE(4006)] = 119986, - [SMALL_STATE(4007)] = 119993, - [SMALL_STATE(4008)] = 120000, - [SMALL_STATE(4009)] = 120007, - [SMALL_STATE(4010)] = 120014, - [SMALL_STATE(4011)] = 120021, - [SMALL_STATE(4012)] = 120028, - [SMALL_STATE(4013)] = 120035, - [SMALL_STATE(4014)] = 120042, - [SMALL_STATE(4015)] = 120049, - [SMALL_STATE(4016)] = 120056, - [SMALL_STATE(4017)] = 120063, - [SMALL_STATE(4018)] = 120070, - [SMALL_STATE(4019)] = 120077, - [SMALL_STATE(4020)] = 120084, - [SMALL_STATE(4021)] = 120091, - [SMALL_STATE(4022)] = 120098, - [SMALL_STATE(4023)] = 120105, - [SMALL_STATE(4024)] = 120112, - [SMALL_STATE(4025)] = 120119, - [SMALL_STATE(4026)] = 120126, - [SMALL_STATE(4027)] = 120133, - [SMALL_STATE(4028)] = 120140, - [SMALL_STATE(4029)] = 120147, - [SMALL_STATE(4030)] = 120154, - [SMALL_STATE(4031)] = 120161, - [SMALL_STATE(4032)] = 120168, - [SMALL_STATE(4033)] = 120175, - [SMALL_STATE(4034)] = 120182, - [SMALL_STATE(4035)] = 120189, - [SMALL_STATE(4036)] = 120196, - [SMALL_STATE(4037)] = 120203, - [SMALL_STATE(4038)] = 120210, - [SMALL_STATE(4039)] = 120217, - [SMALL_STATE(4040)] = 120224, - [SMALL_STATE(4041)] = 120231, - [SMALL_STATE(4042)] = 120238, - [SMALL_STATE(4043)] = 120245, - [SMALL_STATE(4044)] = 120252, - [SMALL_STATE(4045)] = 120259, - [SMALL_STATE(4046)] = 120266, - [SMALL_STATE(4047)] = 120273, - [SMALL_STATE(4048)] = 120280, - [SMALL_STATE(4049)] = 120287, - [SMALL_STATE(4050)] = 120294, - [SMALL_STATE(4051)] = 120301, - [SMALL_STATE(4052)] = 120308, - [SMALL_STATE(4053)] = 120315, - [SMALL_STATE(4054)] = 120322, - [SMALL_STATE(4055)] = 120329, - [SMALL_STATE(4056)] = 120336, - [SMALL_STATE(4057)] = 120343, - [SMALL_STATE(4058)] = 120350, - [SMALL_STATE(4059)] = 120357, - [SMALL_STATE(4060)] = 120364, - [SMALL_STATE(4061)] = 120371, - [SMALL_STATE(4062)] = 120378, - [SMALL_STATE(4063)] = 120385, - [SMALL_STATE(4064)] = 120392, - [SMALL_STATE(4065)] = 120399, - [SMALL_STATE(4066)] = 120406, - [SMALL_STATE(4067)] = 120413, - [SMALL_STATE(4068)] = 120420, - [SMALL_STATE(4069)] = 120427, - [SMALL_STATE(4070)] = 120434, - [SMALL_STATE(4071)] = 120441, - [SMALL_STATE(4072)] = 120448, - [SMALL_STATE(4073)] = 120455, - [SMALL_STATE(4074)] = 120462, - [SMALL_STATE(4075)] = 120469, - [SMALL_STATE(4076)] = 120476, - [SMALL_STATE(4077)] = 120483, - [SMALL_STATE(4078)] = 120490, - [SMALL_STATE(4079)] = 120497, - [SMALL_STATE(4080)] = 120504, - [SMALL_STATE(4081)] = 120511, - [SMALL_STATE(4082)] = 120518, - [SMALL_STATE(4083)] = 120525, - [SMALL_STATE(4084)] = 120532, - [SMALL_STATE(4085)] = 120539, - [SMALL_STATE(4086)] = 120546, - [SMALL_STATE(4087)] = 120553, - [SMALL_STATE(4088)] = 120560, - [SMALL_STATE(4089)] = 120567, - [SMALL_STATE(4090)] = 120574, - [SMALL_STATE(4091)] = 120581, - [SMALL_STATE(4092)] = 120588, - [SMALL_STATE(4093)] = 120595, - [SMALL_STATE(4094)] = 120602, - [SMALL_STATE(4095)] = 120609, - [SMALL_STATE(4096)] = 120616, - [SMALL_STATE(4097)] = 120623, - [SMALL_STATE(4098)] = 120630, - [SMALL_STATE(4099)] = 120637, - [SMALL_STATE(4100)] = 120644, - [SMALL_STATE(4101)] = 120651, - [SMALL_STATE(4102)] = 120658, - [SMALL_STATE(4103)] = 120665, - [SMALL_STATE(4104)] = 120672, - [SMALL_STATE(4105)] = 120679, - [SMALL_STATE(4106)] = 120686, - [SMALL_STATE(4107)] = 120693, - [SMALL_STATE(4108)] = 120700, - [SMALL_STATE(4109)] = 120707, - [SMALL_STATE(4110)] = 120714, - [SMALL_STATE(4111)] = 120721, - [SMALL_STATE(4112)] = 120728, - [SMALL_STATE(4113)] = 120735, - [SMALL_STATE(4114)] = 120742, - [SMALL_STATE(4115)] = 120749, - [SMALL_STATE(4116)] = 120756, - [SMALL_STATE(4117)] = 120763, - [SMALL_STATE(4118)] = 120770, - [SMALL_STATE(4119)] = 120777, - [SMALL_STATE(4120)] = 120784, - [SMALL_STATE(4121)] = 120791, - [SMALL_STATE(4122)] = 120798, - [SMALL_STATE(4123)] = 120805, - [SMALL_STATE(4124)] = 120812, - [SMALL_STATE(4125)] = 120819, - [SMALL_STATE(4126)] = 120826, - [SMALL_STATE(4127)] = 120833, - [SMALL_STATE(4128)] = 120840, - [SMALL_STATE(4129)] = 120847, - [SMALL_STATE(4130)] = 120854, - [SMALL_STATE(4131)] = 120861, - [SMALL_STATE(4132)] = 120868, - [SMALL_STATE(4133)] = 120875, - [SMALL_STATE(4134)] = 120882, - [SMALL_STATE(4135)] = 120889, - [SMALL_STATE(4136)] = 120896, - [SMALL_STATE(4137)] = 120903, - [SMALL_STATE(4138)] = 120910, - [SMALL_STATE(4139)] = 120917, - [SMALL_STATE(4140)] = 120924, - [SMALL_STATE(4141)] = 120931, - [SMALL_STATE(4142)] = 120938, - [SMALL_STATE(4143)] = 120945, - [SMALL_STATE(4144)] = 120952, - [SMALL_STATE(4145)] = 120959, - [SMALL_STATE(4146)] = 120966, - [SMALL_STATE(4147)] = 120973, - [SMALL_STATE(4148)] = 120980, - [SMALL_STATE(4149)] = 120987, - [SMALL_STATE(4150)] = 120994, - [SMALL_STATE(4151)] = 121001, - [SMALL_STATE(4152)] = 121008, - [SMALL_STATE(4153)] = 121015, - [SMALL_STATE(4154)] = 121022, - [SMALL_STATE(4155)] = 121029, - [SMALL_STATE(4156)] = 121036, - [SMALL_STATE(4157)] = 121043, - [SMALL_STATE(4158)] = 121050, - [SMALL_STATE(4159)] = 121057, - [SMALL_STATE(4160)] = 121064, - [SMALL_STATE(4161)] = 121071, - [SMALL_STATE(4162)] = 121078, - [SMALL_STATE(4163)] = 121085, - [SMALL_STATE(4164)] = 121092, - [SMALL_STATE(4165)] = 121099, - [SMALL_STATE(4166)] = 121106, - [SMALL_STATE(4167)] = 121113, - [SMALL_STATE(4168)] = 121120, - [SMALL_STATE(4169)] = 121127, - [SMALL_STATE(4170)] = 121134, - [SMALL_STATE(4171)] = 121141, - [SMALL_STATE(4172)] = 121148, - [SMALL_STATE(4173)] = 121155, - [SMALL_STATE(4174)] = 121162, - [SMALL_STATE(4175)] = 121169, - [SMALL_STATE(4176)] = 121176, - [SMALL_STATE(4177)] = 121183, - [SMALL_STATE(4178)] = 121190, - [SMALL_STATE(4179)] = 121197, - [SMALL_STATE(4180)] = 121204, - [SMALL_STATE(4181)] = 121211, - [SMALL_STATE(4182)] = 121218, - [SMALL_STATE(4183)] = 121225, - [SMALL_STATE(4184)] = 121232, - [SMALL_STATE(4185)] = 121239, - [SMALL_STATE(4186)] = 121246, - [SMALL_STATE(4187)] = 121253, - [SMALL_STATE(4188)] = 121260, - [SMALL_STATE(4189)] = 121267, - [SMALL_STATE(4190)] = 121274, - [SMALL_STATE(4191)] = 121281, - [SMALL_STATE(4192)] = 121288, - [SMALL_STATE(4193)] = 121295, - [SMALL_STATE(4194)] = 121302, - [SMALL_STATE(4195)] = 121309, - [SMALL_STATE(4196)] = 121316, - [SMALL_STATE(4197)] = 121323, - [SMALL_STATE(4198)] = 121330, - [SMALL_STATE(4199)] = 121337, - [SMALL_STATE(4200)] = 121344, - [SMALL_STATE(4201)] = 121351, - [SMALL_STATE(4202)] = 121358, - [SMALL_STATE(4203)] = 121365, - [SMALL_STATE(4204)] = 121372, - [SMALL_STATE(4205)] = 121379, - [SMALL_STATE(4206)] = 121386, - [SMALL_STATE(4207)] = 121393, - [SMALL_STATE(4208)] = 121400, - [SMALL_STATE(4209)] = 121407, - [SMALL_STATE(4210)] = 121414, - [SMALL_STATE(4211)] = 121421, - [SMALL_STATE(4212)] = 121428, - [SMALL_STATE(4213)] = 121435, - [SMALL_STATE(4214)] = 121442, - [SMALL_STATE(4215)] = 121449, - [SMALL_STATE(4216)] = 121456, - [SMALL_STATE(4217)] = 121463, - [SMALL_STATE(4218)] = 121470, - [SMALL_STATE(4219)] = 121477, - [SMALL_STATE(4220)] = 121484, - [SMALL_STATE(4221)] = 121491, - [SMALL_STATE(4222)] = 121498, - [SMALL_STATE(4223)] = 121505, - [SMALL_STATE(4224)] = 121512, - [SMALL_STATE(4225)] = 121519, - [SMALL_STATE(4226)] = 121526, - [SMALL_STATE(4227)] = 121533, - [SMALL_STATE(4228)] = 121540, - [SMALL_STATE(4229)] = 121547, - [SMALL_STATE(4230)] = 121554, - [SMALL_STATE(4231)] = 121561, - [SMALL_STATE(4232)] = 121568, - [SMALL_STATE(4233)] = 121575, - [SMALL_STATE(4234)] = 121582, - [SMALL_STATE(4235)] = 121589, - [SMALL_STATE(4236)] = 121596, - [SMALL_STATE(4237)] = 121603, - [SMALL_STATE(4238)] = 121610, - [SMALL_STATE(4239)] = 121617, - [SMALL_STATE(4240)] = 121624, - [SMALL_STATE(4241)] = 121631, - [SMALL_STATE(4242)] = 121638, - [SMALL_STATE(4243)] = 121645, - [SMALL_STATE(4244)] = 121652, - [SMALL_STATE(4245)] = 121659, - [SMALL_STATE(4246)] = 121666, - [SMALL_STATE(4247)] = 121673, - [SMALL_STATE(4248)] = 121680, - [SMALL_STATE(4249)] = 121687, - [SMALL_STATE(4250)] = 121694, + [SMALL_STATE(989)] = 0, + [SMALL_STATE(990)] = 89, + [SMALL_STATE(991)] = 180, + [SMALL_STATE(992)] = 271, + [SMALL_STATE(993)] = 360, + [SMALL_STATE(994)] = 453, + [SMALL_STATE(995)] = 544, + [SMALL_STATE(996)] = 633, + [SMALL_STATE(997)] = 724, + [SMALL_STATE(998)] = 813, + [SMALL_STATE(999)] = 906, + [SMALL_STATE(1000)] = 994, + [SMALL_STATE(1001)] = 1088, + [SMALL_STATE(1002)] = 1180, + [SMALL_STATE(1003)] = 1272, + [SMALL_STATE(1004)] = 1360, + [SMALL_STATE(1005)] = 1452, + [SMALL_STATE(1006)] = 1521, + [SMALL_STATE(1007)] = 1608, + [SMALL_STATE(1008)] = 1699, + [SMALL_STATE(1009)] = 1788, + [SMALL_STATE(1010)] = 1875, + [SMALL_STATE(1011)] = 1962, + [SMALL_STATE(1012)] = 2031, + [SMALL_STATE(1013)] = 2120, + [SMALL_STATE(1014)] = 2189, + [SMALL_STATE(1015)] = 2278, + [SMALL_STATE(1016)] = 2365, + [SMALL_STATE(1017)] = 2498, + [SMALL_STATE(1018)] = 2567, + [SMALL_STATE(1019)] = 2656, + [SMALL_STATE(1020)] = 2789, + [SMALL_STATE(1021)] = 2876, + [SMALL_STATE(1022)] = 2945, + [SMALL_STATE(1023)] = 3032, + [SMALL_STATE(1024)] = 3101, + [SMALL_STATE(1025)] = 3190, + [SMALL_STATE(1026)] = 3279, + [SMALL_STATE(1027)] = 3368, + [SMALL_STATE(1028)] = 3437, + [SMALL_STATE(1029)] = 3524, + [SMALL_STATE(1030)] = 3613, + [SMALL_STATE(1031)] = 3699, + [SMALL_STATE(1032)] = 3785, + [SMALL_STATE(1033)] = 3875, + [SMALL_STATE(1034)] = 3963, + [SMALL_STATE(1035)] = 4049, + [SMALL_STATE(1036)] = 4121, + [SMALL_STATE(1037)] = 4215, + [SMALL_STATE(1038)] = 4301, + [SMALL_STATE(1039)] = 4387, + [SMALL_STATE(1040)] = 4455, + [SMALL_STATE(1041)] = 4543, + [SMALL_STATE(1042)] = 4611, + [SMALL_STATE(1043)] = 4696, + [SMALL_STATE(1044)] = 4781, + [SMALL_STATE(1045)] = 4858, + [SMALL_STATE(1046)] = 4943, + [SMALL_STATE(1047)] = 5020, + [SMALL_STATE(1048)] = 5105, + [SMALL_STATE(1049)] = 5184, + [SMALL_STATE(1050)] = 5261, + [SMALL_STATE(1051)] = 5352, + [SMALL_STATE(1052)] = 5443, + [SMALL_STATE(1053)] = 5528, + [SMALL_STATE(1054)] = 5605, + [SMALL_STATE(1055)] = 5682, + [SMALL_STATE(1056)] = 5761, + [SMALL_STATE(1057)] = 5846, + [SMALL_STATE(1058)] = 5923, + [SMALL_STATE(1059)] = 5997, + [SMALL_STATE(1060)] = 6073, + [SMALL_STATE(1061)] = 6145, + [SMALL_STATE(1062)] = 6229, + [SMALL_STATE(1063)] = 6315, + [SMALL_STATE(1064)] = 6397, + [SMALL_STATE(1065)] = 6481, + [SMALL_STATE(1066)] = 6565, + [SMALL_STATE(1067)] = 6639, + [SMALL_STATE(1068)] = 6713, + [SMALL_STATE(1069)] = 6797, + [SMALL_STATE(1070)] = 6881, + [SMALL_STATE(1071)] = 6953, + [SMALL_STATE(1072)] = 7025, + [SMALL_STATE(1073)] = 7103, + [SMALL_STATE(1074)] = 7191, + [SMALL_STATE(1075)] = 7267, + [SMALL_STATE(1076)] = 7349, + [SMALL_STATE(1077)] = 7433, + [SMALL_STATE(1078)] = 7511, + [SMALL_STATE(1079)] = 7583, + [SMALL_STATE(1080)] = 7667, + [SMALL_STATE(1081)] = 7750, + [SMALL_STATE(1082)] = 7815, + [SMALL_STATE(1083)] = 7892, + [SMALL_STATE(1084)] = 7957, + [SMALL_STATE(1085)] = 8032, + [SMALL_STATE(1086)] = 8113, + [SMALL_STATE(1087)] = 8196, + [SMALL_STATE(1088)] = 8261, + [SMALL_STATE(1089)] = 8326, + [SMALL_STATE(1090)] = 8391, + [SMALL_STATE(1091)] = 8474, + [SMALL_STATE(1092)] = 8543, + [SMALL_STATE(1093)] = 8618, + [SMALL_STATE(1094)] = 8683, + [SMALL_STATE(1095)] = 8748, + [SMALL_STATE(1096)] = 8823, + [SMALL_STATE(1097)] = 8892, + [SMALL_STATE(1098)] = 8971, + [SMALL_STATE(1099)] = 9042, + [SMALL_STATE(1100)] = 9125, + [SMALL_STATE(1101)] = 9202, + [SMALL_STATE(1102)] = 9275, + [SMALL_STATE(1103)] = 9346, + [SMALL_STATE(1104)] = 9417, + [SMALL_STATE(1105)] = 9482, + [SMALL_STATE(1106)] = 9555, + [SMALL_STATE(1107)] = 9626, + [SMALL_STATE(1108)] = 9703, + [SMALL_STATE(1109)] = 9776, + [SMALL_STATE(1110)] = 9847, + [SMALL_STATE(1111)] = 9918, + [SMALL_STATE(1112)] = 9991, + [SMALL_STATE(1113)] = 10062, + [SMALL_STATE(1114)] = 10127, + [SMALL_STATE(1115)] = 10198, + [SMALL_STATE(1116)] = 10277, + [SMALL_STATE(1117)] = 10355, + [SMALL_STATE(1118)] = 10437, + [SMALL_STATE(1119)] = 10505, + [SMALL_STATE(1120)] = 10581, + [SMALL_STATE(1121)] = 10663, + [SMALL_STATE(1122)] = 10735, + [SMALL_STATE(1123)] = 10807, + [SMALL_STATE(1124)] = 10877, + [SMALL_STATE(1125)] = 10953, + [SMALL_STATE(1126)] = 11023, + [SMALL_STATE(1127)] = 11093, + [SMALL_STATE(1128)] = 11165, + [SMALL_STATE(1129)] = 11237, + [SMALL_STATE(1130)] = 11313, + [SMALL_STATE(1131)] = 11383, + [SMALL_STATE(1132)] = 11453, + [SMALL_STATE(1133)] = 11535, + [SMALL_STATE(1134)] = 11603, + [SMALL_STATE(1135)] = 11673, + [SMALL_STATE(1136)] = 11745, + [SMALL_STATE(1137)] = 11812, + [SMALL_STATE(1138)] = 11881, + [SMALL_STATE(1139)] = 11956, + [SMALL_STATE(1140)] = 12027, + [SMALL_STATE(1141)] = 12090, + [SMALL_STATE(1142)] = 12159, + [SMALL_STATE(1143)] = 12230, + [SMALL_STATE(1144)] = 12299, + [SMALL_STATE(1145)] = 12372, + [SMALL_STATE(1146)] = 12441, + [SMALL_STATE(1147)] = 12510, + [SMALL_STATE(1148)] = 12583, + [SMALL_STATE(1149)] = 12654, + [SMALL_STATE(1150)] = 12723, + [SMALL_STATE(1151)] = 12792, + [SMALL_STATE(1152)] = 12865, + [SMALL_STATE(1153)] = 12934, + [SMALL_STATE(1154)] = 13007, + [SMALL_STATE(1155)] = 13069, + [SMALL_STATE(1156)] = 13137, + [SMALL_STATE(1157)] = 13207, + [SMALL_STATE(1158)] = 13275, + [SMALL_STATE(1159)] = 13345, + [SMALL_STATE(1160)] = 13411, + [SMALL_STATE(1161)] = 13473, + [SMALL_STATE(1162)] = 13541, + [SMALL_STATE(1163)] = 13613, + [SMALL_STATE(1164)] = 13675, + [SMALL_STATE(1165)] = 13743, + [SMALL_STATE(1166)] = 13809, + [SMALL_STATE(1167)] = 13881, + [SMALL_STATE(1168)] = 13946, + [SMALL_STATE(1169)] = 14015, + [SMALL_STATE(1170)] = 14082, + [SMALL_STATE(1171)] = 14149, + [SMALL_STATE(1172)] = 14216, + [SMALL_STATE(1173)] = 14332, + [SMALL_STATE(1174)] = 14448, + [SMALL_STATE(1175)] = 14564, + [SMALL_STATE(1176)] = 14680, + [SMALL_STATE(1177)] = 14796, + [SMALL_STATE(1178)] = 14912, + [SMALL_STATE(1179)] = 14995, + [SMALL_STATE(1180)] = 15107, + [SMALL_STATE(1181)] = 15219, + [SMALL_STATE(1182)] = 15331, + [SMALL_STATE(1183)] = 15443, + [SMALL_STATE(1184)] = 15555, + [SMALL_STATE(1185)] = 15667, + [SMALL_STATE(1186)] = 15779, + [SMALL_STATE(1187)] = 15891, + [SMALL_STATE(1188)] = 16003, + [SMALL_STATE(1189)] = 16123, + [SMALL_STATE(1190)] = 16235, + [SMALL_STATE(1191)] = 16355, + [SMALL_STATE(1192)] = 16475, + [SMALL_STATE(1193)] = 16587, + [SMALL_STATE(1194)] = 16699, + [SMALL_STATE(1195)] = 16811, + [SMALL_STATE(1196)] = 16923, + [SMALL_STATE(1197)] = 17043, + [SMALL_STATE(1198)] = 17155, + [SMALL_STATE(1199)] = 17267, + [SMALL_STATE(1200)] = 17387, + [SMALL_STATE(1201)] = 17499, + [SMALL_STATE(1202)] = 17611, + [SMALL_STATE(1203)] = 17719, + [SMALL_STATE(1204)] = 17827, + [SMALL_STATE(1205)] = 17935, + [SMALL_STATE(1206)] = 18047, + [SMALL_STATE(1207)] = 18103, + [SMALL_STATE(1208)] = 18211, + [SMALL_STATE(1209)] = 18319, + [SMALL_STATE(1210)] = 18427, + [SMALL_STATE(1211)] = 18483, + [SMALL_STATE(1212)] = 18591, + [SMALL_STATE(1213)] = 18701, + [SMALL_STATE(1214)] = 18764, + [SMALL_STATE(1215)] = 18835, + [SMALL_STATE(1216)] = 18933, + [SMALL_STATE(1217)] = 19031, + [SMALL_STATE(1218)] = 19091, + [SMALL_STATE(1219)] = 19151, + [SMALL_STATE(1220)] = 19211, + [SMALL_STATE(1221)] = 19267, + [SMALL_STATE(1222)] = 19365, + [SMALL_STATE(1223)] = 19419, + [SMALL_STATE(1224)] = 19477, + [SMALL_STATE(1225)] = 19535, + [SMALL_STATE(1226)] = 19633, + [SMALL_STATE(1227)] = 19687, + [SMALL_STATE(1228)] = 19743, + [SMALL_STATE(1229)] = 19801, + [SMALL_STATE(1230)] = 19861, + [SMALL_STATE(1231)] = 19921, + [SMALL_STATE(1232)] = 20019, + [SMALL_STATE(1233)] = 20117, + [SMALL_STATE(1234)] = 20171, + [SMALL_STATE(1235)] = 20269, + [SMALL_STATE(1236)] = 20329, + [SMALL_STATE(1237)] = 20388, + [SMALL_STATE(1238)] = 20441, + [SMALL_STATE(1239)] = 20524, + [SMALL_STATE(1240)] = 20605, + [SMALL_STATE(1241)] = 20704, + [SMALL_STATE(1242)] = 20801, + [SMALL_STATE(1243)] = 20896, + [SMALL_STATE(1244)] = 20979, + [SMALL_STATE(1245)] = 21082, + [SMALL_STATE(1246)] = 21183, + [SMALL_STATE(1247)] = 21270, + [SMALL_STATE(1248)] = 21323, + [SMALL_STATE(1249)] = 21414, + [SMALL_STATE(1250)] = 21529, + [SMALL_STATE(1251)] = 21588, + [SMALL_STATE(1252)] = 21665, + [SMALL_STATE(1253)] = 21770, + [SMALL_STATE(1254)] = 21829, + [SMALL_STATE(1255)] = 21942, + [SMALL_STATE(1256)] = 22055, + [SMALL_STATE(1257)] = 22112, + [SMALL_STATE(1258)] = 22225, + [SMALL_STATE(1259)] = 22338, + [SMALL_STATE(1260)] = 22451, + [SMALL_STATE(1261)] = 22564, + [SMALL_STATE(1262)] = 22677, + [SMALL_STATE(1263)] = 22790, + [SMALL_STATE(1264)] = 22855, + [SMALL_STATE(1265)] = 22968, + [SMALL_STATE(1266)] = 23081, + [SMALL_STATE(1267)] = 23152, + [SMALL_STATE(1268)] = 23265, + [SMALL_STATE(1269)] = 23346, + [SMALL_STATE(1270)] = 23421, + [SMALL_STATE(1271)] = 23482, + [SMALL_STATE(1272)] = 23535, + [SMALL_STATE(1273)] = 23590, + [SMALL_STATE(1274)] = 23703, + [SMALL_STATE(1275)] = 23756, + [SMALL_STATE(1276)] = 23809, + [SMALL_STATE(1277)] = 23862, + [SMALL_STATE(1278)] = 23915, + [SMALL_STATE(1279)] = 23976, + [SMALL_STATE(1280)] = 24037, + [SMALL_STATE(1281)] = 24094, + [SMALL_STATE(1282)] = 24147, + [SMALL_STATE(1283)] = 24200, + [SMALL_STATE(1284)] = 24259, + [SMALL_STATE(1285)] = 24318, + [SMALL_STATE(1286)] = 24375, + [SMALL_STATE(1287)] = 24428, + [SMALL_STATE(1288)] = 24481, + [SMALL_STATE(1289)] = 24534, + [SMALL_STATE(1290)] = 24589, + [SMALL_STATE(1291)] = 24642, + [SMALL_STATE(1292)] = 24695, + [SMALL_STATE(1293)] = 24750, + [SMALL_STATE(1294)] = 24803, + [SMALL_STATE(1295)] = 24862, + [SMALL_STATE(1296)] = 24921, + [SMALL_STATE(1297)] = 24976, + [SMALL_STATE(1298)] = 25029, + [SMALL_STATE(1299)] = 25082, + [SMALL_STATE(1300)] = 25137, + [SMALL_STATE(1301)] = 25190, + [SMALL_STATE(1302)] = 25243, + [SMALL_STATE(1303)] = 25296, + [SMALL_STATE(1304)] = 25355, + [SMALL_STATE(1305)] = 25408, + [SMALL_STATE(1306)] = 25463, + [SMALL_STATE(1307)] = 25516, + [SMALL_STATE(1308)] = 25569, + [SMALL_STATE(1309)] = 25622, + [SMALL_STATE(1310)] = 25675, + [SMALL_STATE(1311)] = 25730, + [SMALL_STATE(1312)] = 25783, + [SMALL_STATE(1313)] = 25836, + [SMALL_STATE(1314)] = 25889, + [SMALL_STATE(1315)] = 25942, + [SMALL_STATE(1316)] = 25997, + [SMALL_STATE(1317)] = 26052, + [SMALL_STATE(1318)] = 26111, + [SMALL_STATE(1319)] = 26164, + [SMALL_STATE(1320)] = 26217, + [SMALL_STATE(1321)] = 26272, + [SMALL_STATE(1322)] = 26325, + [SMALL_STATE(1323)] = 26378, + [SMALL_STATE(1324)] = 26431, + [SMALL_STATE(1325)] = 26484, + [SMALL_STATE(1326)] = 26537, + [SMALL_STATE(1327)] = 26590, + [SMALL_STATE(1328)] = 26643, + [SMALL_STATE(1329)] = 26696, + [SMALL_STATE(1330)] = 26749, + [SMALL_STATE(1331)] = 26802, + [SMALL_STATE(1332)] = 26855, + [SMALL_STATE(1333)] = 26908, + [SMALL_STATE(1334)] = 26961, + [SMALL_STATE(1335)] = 27014, + [SMALL_STATE(1336)] = 27067, + [SMALL_STATE(1337)] = 27120, + [SMALL_STATE(1338)] = 27177, + [SMALL_STATE(1339)] = 27230, + [SMALL_STATE(1340)] = 27283, + [SMALL_STATE(1341)] = 27340, + [SMALL_STATE(1342)] = 27393, + [SMALL_STATE(1343)] = 27446, + [SMALL_STATE(1344)] = 27499, + [SMALL_STATE(1345)] = 27552, + [SMALL_STATE(1346)] = 27605, + [SMALL_STATE(1347)] = 27664, + [SMALL_STATE(1348)] = 27717, + [SMALL_STATE(1349)] = 27770, + [SMALL_STATE(1350)] = 27823, + [SMALL_STATE(1351)] = 27876, + [SMALL_STATE(1352)] = 27929, + [SMALL_STATE(1353)] = 27982, + [SMALL_STATE(1354)] = 28035, + [SMALL_STATE(1355)] = 28088, + [SMALL_STATE(1356)] = 28141, + [SMALL_STATE(1357)] = 28194, + [SMALL_STATE(1358)] = 28247, + [SMALL_STATE(1359)] = 28300, + [SMALL_STATE(1360)] = 28353, + [SMALL_STATE(1361)] = 28406, + [SMALL_STATE(1362)] = 28459, + [SMALL_STATE(1363)] = 28512, + [SMALL_STATE(1364)] = 28565, + [SMALL_STATE(1365)] = 28618, + [SMALL_STATE(1366)] = 28671, + [SMALL_STATE(1367)] = 28724, + [SMALL_STATE(1368)] = 28777, + [SMALL_STATE(1369)] = 28830, + [SMALL_STATE(1370)] = 28942, + [SMALL_STATE(1371)] = 29018, + [SMALL_STATE(1372)] = 29076, + [SMALL_STATE(1373)] = 29194, + [SMALL_STATE(1374)] = 29246, + [SMALL_STATE(1375)] = 29298, + [SMALL_STATE(1376)] = 29388, + [SMALL_STATE(1377)] = 29440, + [SMALL_STATE(1378)] = 29492, + [SMALL_STATE(1379)] = 29544, + [SMALL_STATE(1380)] = 29596, + [SMALL_STATE(1381)] = 29648, + [SMALL_STATE(1382)] = 29700, + [SMALL_STATE(1383)] = 29752, + [SMALL_STATE(1384)] = 29804, + [SMALL_STATE(1385)] = 29856, + [SMALL_STATE(1386)] = 29908, + [SMALL_STATE(1387)] = 29960, + [SMALL_STATE(1388)] = 30072, + [SMALL_STATE(1389)] = 30146, + [SMALL_STATE(1390)] = 30198, + [SMALL_STATE(1391)] = 30250, + [SMALL_STATE(1392)] = 30302, + [SMALL_STATE(1393)] = 30354, + [SMALL_STATE(1394)] = 30406, + [SMALL_STATE(1395)] = 30462, + [SMALL_STATE(1396)] = 30516, + [SMALL_STATE(1397)] = 30568, + [SMALL_STATE(1398)] = 30620, + [SMALL_STATE(1399)] = 30672, + [SMALL_STATE(1400)] = 30724, + [SMALL_STATE(1401)] = 30776, + [SMALL_STATE(1402)] = 30832, + [SMALL_STATE(1403)] = 30884, + [SMALL_STATE(1404)] = 31002, + [SMALL_STATE(1405)] = 31054, + [SMALL_STATE(1406)] = 31106, + [SMALL_STATE(1407)] = 31158, + [SMALL_STATE(1408)] = 31210, + [SMALL_STATE(1409)] = 31262, + [SMALL_STATE(1410)] = 31314, + [SMALL_STATE(1411)] = 31366, + [SMALL_STATE(1412)] = 31478, + [SMALL_STATE(1413)] = 31596, + [SMALL_STATE(1414)] = 31676, + [SMALL_STATE(1415)] = 31788, + [SMALL_STATE(1416)] = 31840, + [SMALL_STATE(1417)] = 31892, + [SMALL_STATE(1418)] = 31944, + [SMALL_STATE(1419)] = 31996, + [SMALL_STATE(1420)] = 32052, + [SMALL_STATE(1421)] = 32104, + [SMALL_STATE(1422)] = 32156, + [SMALL_STATE(1423)] = 32224, + [SMALL_STATE(1424)] = 32276, + [SMALL_STATE(1425)] = 32346, + [SMALL_STATE(1426)] = 32398, + [SMALL_STATE(1427)] = 32510, + [SMALL_STATE(1428)] = 32562, + [SMALL_STATE(1429)] = 32626, + [SMALL_STATE(1430)] = 32678, + [SMALL_STATE(1431)] = 32748, + [SMALL_STATE(1432)] = 32860, + [SMALL_STATE(1433)] = 32940, + [SMALL_STATE(1434)] = 33014, + [SMALL_STATE(1435)] = 33126, + [SMALL_STATE(1436)] = 33238, + [SMALL_STATE(1437)] = 33290, + [SMALL_STATE(1438)] = 33408, + [SMALL_STATE(1439)] = 33460, + [SMALL_STATE(1440)] = 33512, + [SMALL_STATE(1441)] = 33624, + [SMALL_STATE(1442)] = 33676, + [SMALL_STATE(1443)] = 33728, + [SMALL_STATE(1444)] = 33780, + [SMALL_STATE(1445)] = 33832, + [SMALL_STATE(1446)] = 33884, + [SMALL_STATE(1447)] = 33996, + [SMALL_STATE(1448)] = 34048, + [SMALL_STATE(1449)] = 34100, + [SMALL_STATE(1450)] = 34152, + [SMALL_STATE(1451)] = 34204, + [SMALL_STATE(1452)] = 34256, + [SMALL_STATE(1453)] = 34308, + [SMALL_STATE(1454)] = 34420, + [SMALL_STATE(1455)] = 34472, + [SMALL_STATE(1456)] = 34524, + [SMALL_STATE(1457)] = 34576, + [SMALL_STATE(1458)] = 34628, + [SMALL_STATE(1459)] = 34680, + [SMALL_STATE(1460)] = 34732, + [SMALL_STATE(1461)] = 34848, + [SMALL_STATE(1462)] = 34908, + [SMALL_STATE(1463)] = 34960, + [SMALL_STATE(1464)] = 35072, + [SMALL_STATE(1465)] = 35184, + [SMALL_STATE(1466)] = 35296, + [SMALL_STATE(1467)] = 35408, + [SMALL_STATE(1468)] = 35520, + [SMALL_STATE(1469)] = 35572, + [SMALL_STATE(1470)] = 35684, + [SMALL_STATE(1471)] = 35738, + [SMALL_STATE(1472)] = 35814, + [SMALL_STATE(1473)] = 35872, + [SMALL_STATE(1474)] = 35976, + [SMALL_STATE(1475)] = 36066, + [SMALL_STATE(1476)] = 36152, + [SMALL_STATE(1477)] = 36264, + [SMALL_STATE(1478)] = 36366, + [SMALL_STATE(1479)] = 36480, + [SMALL_STATE(1480)] = 36562, + [SMALL_STATE(1481)] = 36656, + [SMALL_STATE(1482)] = 36752, + [SMALL_STATE(1483)] = 36850, + [SMALL_STATE(1484)] = 36930, + [SMALL_STATE(1485)] = 37012, + [SMALL_STATE(1486)] = 37102, + [SMALL_STATE(1487)] = 37160, + [SMALL_STATE(1488)] = 37264, + [SMALL_STATE(1489)] = 37376, + [SMALL_STATE(1490)] = 37488, + [SMALL_STATE(1491)] = 37570, + [SMALL_STATE(1492)] = 37650, + [SMALL_STATE(1493)] = 37748, + [SMALL_STATE(1494)] = 37844, + [SMALL_STATE(1495)] = 37938, + [SMALL_STATE(1496)] = 38020, + [SMALL_STATE(1497)] = 38122, + [SMALL_STATE(1498)] = 38222, + [SMALL_STATE(1499)] = 38308, + [SMALL_STATE(1500)] = 38362, + [SMALL_STATE(1501)] = 38414, + [SMALL_STATE(1502)] = 38468, + [SMALL_STATE(1503)] = 38520, + [SMALL_STATE(1504)] = 38620, + [SMALL_STATE(1505)] = 38736, + [SMALL_STATE(1506)] = 38852, + [SMALL_STATE(1507)] = 38966, + [SMALL_STATE(1508)] = 39082, + [SMALL_STATE(1509)] = 39136, + [SMALL_STATE(1510)] = 39252, + [SMALL_STATE(1511)] = 39316, + [SMALL_STATE(1512)] = 39428, + [SMALL_STATE(1513)] = 39480, + [SMALL_STATE(1514)] = 39592, + [SMALL_STATE(1515)] = 39704, + [SMALL_STATE(1516)] = 39816, + [SMALL_STATE(1517)] = 39928, + [SMALL_STATE(1518)] = 40039, + [SMALL_STATE(1519)] = 40096, + [SMALL_STATE(1520)] = 40155, + [SMALL_STATE(1521)] = 40206, + [SMALL_STATE(1522)] = 40287, + [SMALL_STATE(1523)] = 40366, + [SMALL_STATE(1524)] = 40463, + [SMALL_STATE(1525)] = 40558, + [SMALL_STATE(1526)] = 40651, + [SMALL_STATE(1527)] = 40762, + [SMALL_STATE(1528)] = 40843, + [SMALL_STATE(1529)] = 40944, + [SMALL_STATE(1530)] = 41055, + [SMALL_STATE(1531)] = 41154, + [SMALL_STATE(1532)] = 41239, + [SMALL_STATE(1533)] = 41296, + [SMALL_STATE(1534)] = 41371, + [SMALL_STATE(1535)] = 41482, + [SMALL_STATE(1536)] = 41593, + [SMALL_STATE(1537)] = 41672, + [SMALL_STATE(1538)] = 41783, + [SMALL_STATE(1539)] = 41856, + [SMALL_STATE(1540)] = 41967, + [SMALL_STATE(1541)] = 42078, + [SMALL_STATE(1542)] = 42141, + [SMALL_STATE(1543)] = 42236, + [SMALL_STATE(1544)] = 42291, + [SMALL_STATE(1545)] = 42380, + [SMALL_STATE(1546)] = 42483, + [SMALL_STATE(1547)] = 42594, + [SMALL_STATE(1548)] = 42709, + [SMALL_STATE(1549)] = 42822, + [SMALL_STATE(1550)] = 42881, + [SMALL_STATE(1551)] = 42992, + [SMALL_STATE(1552)] = 43103, + [SMALL_STATE(1553)] = 43218, + [SMALL_STATE(1554)] = 43331, + [SMALL_STATE(1555)] = 43390, + [SMALL_STATE(1556)] = 43501, + [SMALL_STATE(1557)] = 43616, + [SMALL_STATE(1558)] = 43729, + [SMALL_STATE(1559)] = 43824, + [SMALL_STATE(1560)] = 43919, + [SMALL_STATE(1561)] = 44030, + [SMALL_STATE(1562)] = 44143, + [SMALL_STATE(1563)] = 44254, + [SMALL_STATE(1564)] = 44311, + [SMALL_STATE(1565)] = 44406, + [SMALL_STATE(1566)] = 44521, + [SMALL_STATE(1567)] = 44636, + [SMALL_STATE(1568)] = 44695, + [SMALL_STATE(1569)] = 44810, + [SMALL_STATE(1570)] = 44905, + [SMALL_STATE(1571)] = 45020, + [SMALL_STATE(1572)] = 45089, + [SMALL_STATE(1573)] = 45184, + [SMALL_STATE(1574)] = 45295, + [SMALL_STATE(1575)] = 45352, + [SMALL_STATE(1576)] = 45413, + [SMALL_STATE(1577)] = 45466, + [SMALL_STATE(1578)] = 45579, + [SMALL_STATE(1579)] = 45634, + [SMALL_STATE(1580)] = 45729, + [SMALL_STATE(1581)] = 45840, + [SMALL_STATE(1582)] = 45955, + [SMALL_STATE(1583)] = 46066, + [SMALL_STATE(1584)] = 46123, + [SMALL_STATE(1585)] = 46178, + [SMALL_STATE(1586)] = 46239, + [SMALL_STATE(1587)] = 46354, + [SMALL_STATE(1588)] = 46449, + [SMALL_STATE(1589)] = 46504, + [SMALL_STATE(1590)] = 46599, + [SMALL_STATE(1591)] = 46694, + [SMALL_STATE(1592)] = 46751, + [SMALL_STATE(1593)] = 46866, + [SMALL_STATE(1594)] = 46919, + [SMALL_STATE(1595)] = 47014, + [SMALL_STATE(1596)] = 47071, + [SMALL_STATE(1597)] = 47183, + [SMALL_STATE(1598)] = 47233, + [SMALL_STATE(1599)] = 47283, + [SMALL_STATE(1600)] = 47345, + [SMALL_STATE(1601)] = 47395, + [SMALL_STATE(1602)] = 47457, + [SMALL_STATE(1603)] = 47519, + [SMALL_STATE(1604)] = 47581, + [SMALL_STATE(1605)] = 47637, + [SMALL_STATE(1606)] = 47749, + [SMALL_STATE(1607)] = 47861, + [SMALL_STATE(1608)] = 47963, + [SMALL_STATE(1609)] = 48015, + [SMALL_STATE(1610)] = 48125, + [SMALL_STATE(1611)] = 48175, + [SMALL_STATE(1612)] = 48225, + [SMALL_STATE(1613)] = 48281, + [SMALL_STATE(1614)] = 48333, + [SMALL_STATE(1615)] = 48443, + [SMALL_STATE(1616)] = 48553, + [SMALL_STATE(1617)] = 48663, + [SMALL_STATE(1618)] = 48755, + [SMALL_STATE(1619)] = 48835, + [SMALL_STATE(1620)] = 48919, + [SMALL_STATE(1621)] = 48981, + [SMALL_STATE(1622)] = 49093, + [SMALL_STATE(1623)] = 49205, + [SMALL_STATE(1624)] = 49289, + [SMALL_STATE(1625)] = 49351, + [SMALL_STATE(1626)] = 49413, + [SMALL_STATE(1627)] = 49463, + [SMALL_STATE(1628)] = 49519, + [SMALL_STATE(1629)] = 49603, + [SMALL_STATE(1630)] = 49657, + [SMALL_STATE(1631)] = 49711, + [SMALL_STATE(1632)] = 49823, + [SMALL_STATE(1633)] = 49879, + [SMALL_STATE(1634)] = 49979, + [SMALL_STATE(1635)] = 50047, + [SMALL_STATE(1636)] = 50101, + [SMALL_STATE(1637)] = 50199, + [SMALL_STATE(1638)] = 50249, + [SMALL_STATE(1639)] = 50299, + [SMALL_STATE(1640)] = 50349, + [SMALL_STATE(1641)] = 50399, + [SMALL_STATE(1642)] = 50449, + [SMALL_STATE(1643)] = 50499, + [SMALL_STATE(1644)] = 50549, + [SMALL_STATE(1645)] = 50599, + [SMALL_STATE(1646)] = 50683, + [SMALL_STATE(1647)] = 50733, + [SMALL_STATE(1648)] = 50843, + [SMALL_STATE(1649)] = 50895, + [SMALL_STATE(1650)] = 50945, + [SMALL_STATE(1651)] = 50995, + [SMALL_STATE(1652)] = 51045, + [SMALL_STATE(1653)] = 51101, + [SMALL_STATE(1654)] = 51151, + [SMALL_STATE(1655)] = 51261, + [SMALL_STATE(1656)] = 51345, + [SMALL_STATE(1657)] = 51395, + [SMALL_STATE(1658)] = 51469, + [SMALL_STATE(1659)] = 51541, + [SMALL_STATE(1660)] = 51619, + [SMALL_STATE(1661)] = 51729, + [SMALL_STATE(1662)] = 51797, + [SMALL_STATE(1663)] = 51907, + [SMALL_STATE(1664)] = 52017, + [SMALL_STATE(1665)] = 52067, + [SMALL_STATE(1666)] = 52117, + [SMALL_STATE(1667)] = 52167, + [SMALL_STATE(1668)] = 52217, + [SMALL_STATE(1669)] = 52267, + [SMALL_STATE(1670)] = 52317, + [SMALL_STATE(1671)] = 52367, + [SMALL_STATE(1672)] = 52417, + [SMALL_STATE(1673)] = 52467, + [SMALL_STATE(1674)] = 52517, + [SMALL_STATE(1675)] = 52567, + [SMALL_STATE(1676)] = 52617, + [SMALL_STATE(1677)] = 52667, + [SMALL_STATE(1678)] = 52717, + [SMALL_STATE(1679)] = 52767, + [SMALL_STATE(1680)] = 52865, + [SMALL_STATE(1681)] = 52977, + [SMALL_STATE(1682)] = 53087, + [SMALL_STATE(1683)] = 53197, + [SMALL_STATE(1684)] = 53309, + [SMALL_STATE(1685)] = 53409, + [SMALL_STATE(1686)] = 53471, + [SMALL_STATE(1687)] = 53583, + [SMALL_STATE(1688)] = 53641, + [SMALL_STATE(1689)] = 53697, + [SMALL_STATE(1690)] = 53799, + [SMALL_STATE(1691)] = 53887, + [SMALL_STATE(1692)] = 53937, + [SMALL_STATE(1693)] = 53993, + [SMALL_STATE(1694)] = 54043, + [SMALL_STATE(1695)] = 54093, + [SMALL_STATE(1696)] = 54173, + [SMALL_STATE(1697)] = 54231, + [SMALL_STATE(1698)] = 54281, + [SMALL_STATE(1699)] = 54331, + [SMALL_STATE(1700)] = 54383, + [SMALL_STATE(1701)] = 54433, + [SMALL_STATE(1702)] = 54483, + [SMALL_STATE(1703)] = 54533, + [SMALL_STATE(1704)] = 54583, + [SMALL_STATE(1705)] = 54633, + [SMALL_STATE(1706)] = 54683, + [SMALL_STATE(1707)] = 54733, + [SMALL_STATE(1708)] = 54783, + [SMALL_STATE(1709)] = 54833, + [SMALL_STATE(1710)] = 54883, + [SMALL_STATE(1711)] = 54933, + [SMALL_STATE(1712)] = 54983, + [SMALL_STATE(1713)] = 55033, + [SMALL_STATE(1714)] = 55083, + [SMALL_STATE(1715)] = 55179, + [SMALL_STATE(1716)] = 55291, + [SMALL_STATE(1717)] = 55347, + [SMALL_STATE(1718)] = 55459, + [SMALL_STATE(1719)] = 55517, + [SMALL_STATE(1720)] = 55571, + [SMALL_STATE(1721)] = 55681, + [SMALL_STATE(1722)] = 55793, + [SMALL_STATE(1723)] = 55849, + [SMALL_STATE(1724)] = 55961, + [SMALL_STATE(1725)] = 56073, + [SMALL_STATE(1726)] = 56185, + [SMALL_STATE(1727)] = 56241, + [SMALL_STATE(1728)] = 56291, + [SMALL_STATE(1729)] = 56343, + [SMALL_STATE(1730)] = 56423, + [SMALL_STATE(1731)] = 56535, + [SMALL_STATE(1732)] = 56585, + [SMALL_STATE(1733)] = 56635, + [SMALL_STATE(1734)] = 56687, + [SMALL_STATE(1735)] = 56737, + [SMALL_STATE(1736)] = 56787, + [SMALL_STATE(1737)] = 56837, + [SMALL_STATE(1738)] = 56893, + [SMALL_STATE(1739)] = 56945, + [SMALL_STATE(1740)] = 56997, + [SMALL_STATE(1741)] = 57047, + [SMALL_STATE(1742)] = 57099, + [SMALL_STATE(1743)] = 57157, + [SMALL_STATE(1744)] = 57207, + [SMALL_STATE(1745)] = 57317, + [SMALL_STATE(1746)] = 57367, + [SMALL_STATE(1747)] = 57417, + [SMALL_STATE(1748)] = 57473, + [SMALL_STATE(1749)] = 57527, + [SMALL_STATE(1750)] = 57579, + [SMALL_STATE(1751)] = 57629, + [SMALL_STATE(1752)] = 57683, + [SMALL_STATE(1753)] = 57741, + [SMALL_STATE(1754)] = 57829, + [SMALL_STATE(1755)] = 57913, + [SMALL_STATE(1756)] = 57987, + [SMALL_STATE(1757)] = 58067, + [SMALL_STATE(1758)] = 58177, + [SMALL_STATE(1759)] = 58227, + [SMALL_STATE(1760)] = 58337, + [SMALL_STATE(1761)] = 58447, + [SMALL_STATE(1762)] = 58539, + [SMALL_STATE(1763)] = 58591, + [SMALL_STATE(1764)] = 58641, + [SMALL_STATE(1765)] = 58725, + [SMALL_STATE(1766)] = 58777, + [SMALL_STATE(1767)] = 58871, + [SMALL_STATE(1768)] = 58921, + [SMALL_STATE(1769)] = 59031, + [SMALL_STATE(1770)] = 59103, + [SMALL_STATE(1771)] = 59153, + [SMALL_STATE(1772)] = 59203, + [SMALL_STATE(1773)] = 59253, + [SMALL_STATE(1774)] = 59305, + [SMALL_STATE(1775)] = 59415, + [SMALL_STATE(1776)] = 59471, + [SMALL_STATE(1777)] = 59527, + [SMALL_STATE(1778)] = 59621, + [SMALL_STATE(1779)] = 59699, + [SMALL_STATE(1780)] = 59809, + [SMALL_STATE(1781)] = 59887, + [SMALL_STATE(1782)] = 59997, + [SMALL_STATE(1783)] = 60059, + [SMALL_STATE(1784)] = 60169, + [SMALL_STATE(1785)] = 60279, + [SMALL_STATE(1786)] = 60343, + [SMALL_STATE(1787)] = 60405, + [SMALL_STATE(1788)] = 60515, + [SMALL_STATE(1789)] = 60625, + [SMALL_STATE(1790)] = 60735, + [SMALL_STATE(1791)] = 60845, + [SMALL_STATE(1792)] = 60957, + [SMALL_STATE(1793)] = 61067, + [SMALL_STATE(1794)] = 61163, + [SMALL_STATE(1795)] = 61225, + [SMALL_STATE(1796)] = 61335, + [SMALL_STATE(1797)] = 61445, + [SMALL_STATE(1798)] = 61501, + [SMALL_STATE(1799)] = 61551, + [SMALL_STATE(1800)] = 61615, + [SMALL_STATE(1801)] = 61693, + [SMALL_STATE(1802)] = 61803, + [SMALL_STATE(1803)] = 61853, + [SMALL_STATE(1804)] = 61903, + [SMALL_STATE(1805)] = 61952, + [SMALL_STATE(1806)] = 62005, + [SMALL_STATE(1807)] = 62114, + [SMALL_STATE(1808)] = 62163, + [SMALL_STATE(1809)] = 62240, + [SMALL_STATE(1810)] = 62289, + [SMALL_STATE(1811)] = 62346, + [SMALL_STATE(1812)] = 62405, + [SMALL_STATE(1813)] = 62458, + [SMALL_STATE(1814)] = 62507, + [SMALL_STATE(1815)] = 62556, + [SMALL_STATE(1816)] = 62605, + [SMALL_STATE(1817)] = 62680, + [SMALL_STATE(1818)] = 62729, + [SMALL_STATE(1819)] = 62782, + [SMALL_STATE(1820)] = 62831, + [SMALL_STATE(1821)] = 62882, + [SMALL_STATE(1822)] = 62935, + [SMALL_STATE(1823)] = 62988, + [SMALL_STATE(1824)] = 63043, + [SMALL_STATE(1825)] = 63098, + [SMALL_STATE(1826)] = 63207, + [SMALL_STATE(1827)] = 63282, + [SMALL_STATE(1828)] = 63359, + [SMALL_STATE(1829)] = 63408, + [SMALL_STATE(1830)] = 63465, + [SMALL_STATE(1831)] = 63520, + [SMALL_STATE(1832)] = 63581, + [SMALL_STATE(1833)] = 63630, + [SMALL_STATE(1834)] = 63739, + [SMALL_STATE(1835)] = 63792, + [SMALL_STATE(1836)] = 63847, + [SMALL_STATE(1837)] = 63904, + [SMALL_STATE(1838)] = 63953, + [SMALL_STATE(1839)] = 64008, + [SMALL_STATE(1840)] = 64061, + [SMALL_STATE(1841)] = 64110, + [SMALL_STATE(1842)] = 64163, + [SMALL_STATE(1843)] = 64212, + [SMALL_STATE(1844)] = 64261, + [SMALL_STATE(1845)] = 64310, + [SMALL_STATE(1846)] = 64419, + [SMALL_STATE(1847)] = 64480, + [SMALL_STATE(1848)] = 64589, + [SMALL_STATE(1849)] = 64700, + [SMALL_STATE(1850)] = 64753, + [SMALL_STATE(1851)] = 64802, + [SMALL_STATE(1852)] = 64855, + [SMALL_STATE(1853)] = 64908, + [SMALL_STATE(1854)] = 64957, + [SMALL_STATE(1855)] = 65006, + [SMALL_STATE(1856)] = 65055, + [SMALL_STATE(1857)] = 65108, + [SMALL_STATE(1858)] = 65217, + [SMALL_STATE(1859)] = 65272, + [SMALL_STATE(1860)] = 65325, + [SMALL_STATE(1861)] = 65378, + [SMALL_STATE(1862)] = 65431, + [SMALL_STATE(1863)] = 65484, + [SMALL_STATE(1864)] = 65593, + [SMALL_STATE(1865)] = 65702, + [SMALL_STATE(1866)] = 65811, + [SMALL_STATE(1867)] = 65884, + [SMALL_STATE(1868)] = 65937, + [SMALL_STATE(1869)] = 66020, + [SMALL_STATE(1870)] = 66069, + [SMALL_STATE(1871)] = 66166, + [SMALL_STATE(1872)] = 66243, + [SMALL_STATE(1873)] = 66292, + [SMALL_STATE(1874)] = 66341, + [SMALL_STATE(1875)] = 66390, + [SMALL_STATE(1876)] = 66441, + [SMALL_STATE(1877)] = 66490, + [SMALL_STATE(1878)] = 66539, + [SMALL_STATE(1879)] = 66588, + [SMALL_STATE(1880)] = 66687, + [SMALL_STATE(1881)] = 66766, + [SMALL_STATE(1882)] = 66815, + [SMALL_STATE(1883)] = 66906, + [SMALL_STATE(1884)] = 66999, + [SMALL_STATE(1885)] = 67048, + [SMALL_STATE(1886)] = 67097, + [SMALL_STATE(1887)] = 67154, + [SMALL_STATE(1888)] = 67249, + [SMALL_STATE(1889)] = 67326, + [SMALL_STATE(1890)] = 67375, + [SMALL_STATE(1891)] = 67454, + [SMALL_STATE(1892)] = 67505, + [SMALL_STATE(1893)] = 67592, + [SMALL_STATE(1894)] = 67701, + [SMALL_STATE(1895)] = 67802, + [SMALL_STATE(1896)] = 67879, + [SMALL_STATE(1897)] = 67988, + [SMALL_STATE(1898)] = 68041, + [SMALL_STATE(1899)] = 68098, + [SMALL_STATE(1900)] = 68173, + [SMALL_STATE(1901)] = 68222, + [SMALL_STATE(1902)] = 68275, + [SMALL_STATE(1903)] = 68324, + [SMALL_STATE(1904)] = 68399, + [SMALL_STATE(1905)] = 68448, + [SMALL_STATE(1906)] = 68557, + [SMALL_STATE(1907)] = 68666, + [SMALL_STATE(1908)] = 68775, + [SMALL_STATE(1909)] = 68852, + [SMALL_STATE(1910)] = 68901, + [SMALL_STATE(1911)] = 68950, + [SMALL_STATE(1912)] = 69059, + [SMALL_STATE(1913)] = 69108, + [SMALL_STATE(1914)] = 69159, + [SMALL_STATE(1915)] = 69212, + [SMALL_STATE(1916)] = 69271, + [SMALL_STATE(1917)] = 69324, + [SMALL_STATE(1918)] = 69377, + [SMALL_STATE(1919)] = 69486, + [SMALL_STATE(1920)] = 69543, + [SMALL_STATE(1921)] = 69592, + [SMALL_STATE(1922)] = 69701, + [SMALL_STATE(1923)] = 69772, + [SMALL_STATE(1924)] = 69827, + [SMALL_STATE(1925)] = 69904, + [SMALL_STATE(1926)] = 69981, + [SMALL_STATE(1927)] = 70034, + [SMALL_STATE(1928)] = 70143, + [SMALL_STATE(1929)] = 70210, + [SMALL_STATE(1930)] = 70259, + [SMALL_STATE(1931)] = 70310, + [SMALL_STATE(1932)] = 70365, + [SMALL_STATE(1933)] = 70416, + [SMALL_STATE(1934)] = 70469, + [SMALL_STATE(1935)] = 70518, + [SMALL_STATE(1936)] = 70575, + [SMALL_STATE(1937)] = 70632, + [SMALL_STATE(1938)] = 70687, + [SMALL_STATE(1939)] = 70736, + [SMALL_STATE(1940)] = 70787, + [SMALL_STATE(1941)] = 70836, + [SMALL_STATE(1942)] = 70885, + [SMALL_STATE(1943)] = 70994, + [SMALL_STATE(1944)] = 71043, + [SMALL_STATE(1945)] = 71092, + [SMALL_STATE(1946)] = 71141, + [SMALL_STATE(1947)] = 71190, + [SMALL_STATE(1948)] = 71241, + [SMALL_STATE(1949)] = 71292, + [SMALL_STATE(1950)] = 71401, + [SMALL_STATE(1951)] = 71452, + [SMALL_STATE(1952)] = 71505, + [SMALL_STATE(1953)] = 71558, + [SMALL_STATE(1954)] = 71607, + [SMALL_STATE(1955)] = 71682, + [SMALL_STATE(1956)] = 71735, + [SMALL_STATE(1957)] = 71788, + [SMALL_STATE(1958)] = 71841, + [SMALL_STATE(1959)] = 71890, + [SMALL_STATE(1960)] = 71939, + [SMALL_STATE(1961)] = 71990, + [SMALL_STATE(1962)] = 72039, + [SMALL_STATE(1963)] = 72088, + [SMALL_STATE(1964)] = 72137, + [SMALL_STATE(1965)] = 72188, + [SMALL_STATE(1966)] = 72239, + [SMALL_STATE(1967)] = 72292, + [SMALL_STATE(1968)] = 72401, + [SMALL_STATE(1969)] = 72452, + [SMALL_STATE(1970)] = 72509, + [SMALL_STATE(1971)] = 72568, + [SMALL_STATE(1972)] = 72627, + [SMALL_STATE(1973)] = 72736, + [SMALL_STATE(1974)] = 72842, + [SMALL_STATE(1975)] = 72912, + [SMALL_STATE(1976)] = 72982, + [SMALL_STATE(1977)] = 73032, + [SMALL_STATE(1978)] = 73086, + [SMALL_STATE(1979)] = 73142, + [SMALL_STATE(1980)] = 73248, + [SMALL_STATE(1981)] = 73304, + [SMALL_STATE(1982)] = 73356, + [SMALL_STATE(1983)] = 73426, + [SMALL_STATE(1984)] = 73482, + [SMALL_STATE(1985)] = 73558, + [SMALL_STATE(1986)] = 73612, + [SMALL_STATE(1987)] = 73682, + [SMALL_STATE(1988)] = 73752, + [SMALL_STATE(1989)] = 73818, + [SMALL_STATE(1990)] = 73870, + [SMALL_STATE(1991)] = 73926, + [SMALL_STATE(1992)] = 73980, + [SMALL_STATE(1993)] = 74086, + [SMALL_STATE(1994)] = 74192, + [SMALL_STATE(1995)] = 74246, + [SMALL_STATE(1996)] = 74322, + [SMALL_STATE(1997)] = 74378, + [SMALL_STATE(1998)] = 74448, + [SMALL_STATE(1999)] = 74522, + [SMALL_STATE(2000)] = 74628, + [SMALL_STATE(2001)] = 74688, + [SMALL_STATE(2002)] = 74794, + [SMALL_STATE(2003)] = 74900, + [SMALL_STATE(2004)] = 75006, + [SMALL_STATE(2005)] = 75112, + [SMALL_STATE(2006)] = 75218, + [SMALL_STATE(2007)] = 75324, + [SMALL_STATE(2008)] = 75430, + [SMALL_STATE(2009)] = 75502, + [SMALL_STATE(2010)] = 75584, + [SMALL_STATE(2011)] = 75680, + [SMALL_STATE(2012)] = 75786, + [SMALL_STATE(2013)] = 75892, + [SMALL_STATE(2014)] = 75990, + [SMALL_STATE(2015)] = 76040, + [SMALL_STATE(2016)] = 76118, + [SMALL_STATE(2017)] = 76218, + [SMALL_STATE(2018)] = 76308, + [SMALL_STATE(2019)] = 76400, + [SMALL_STATE(2020)] = 76494, + [SMALL_STATE(2021)] = 76570, + [SMALL_STATE(2022)] = 76656, + [SMALL_STATE(2023)] = 76734, + [SMALL_STATE(2024)] = 76815, + [SMALL_STATE(2025)] = 76884, + [SMALL_STATE(2026)] = 76965, + [SMALL_STATE(2027)] = 77014, + [SMALL_STATE(2028)] = 77063, + [SMALL_STATE(2029)] = 77112, + [SMALL_STATE(2030)] = 77165, + [SMALL_STATE(2031)] = 77246, + [SMALL_STATE(2032)] = 77313, + [SMALL_STATE(2033)] = 77368, + [SMALL_STATE(2034)] = 77439, + [SMALL_STATE(2035)] = 77488, + [SMALL_STATE(2036)] = 77559, + [SMALL_STATE(2037)] = 77630, + [SMALL_STATE(2038)] = 77683, + [SMALL_STATE(2039)] = 77764, + [SMALL_STATE(2040)] = 77817, + [SMALL_STATE(2041)] = 77866, + [SMALL_STATE(2042)] = 77915, + [SMALL_STATE(2043)] = 77968, + [SMALL_STATE(2044)] = 78039, + [SMALL_STATE(2045)] = 78106, + [SMALL_STATE(2046)] = 78155, + [SMALL_STATE(2047)] = 78206, + [SMALL_STATE(2048)] = 78255, + [SMALL_STATE(2049)] = 78308, + [SMALL_STATE(2050)] = 78377, + [SMALL_STATE(2051)] = 78426, + [SMALL_STATE(2052)] = 78493, + [SMALL_STATE(2053)] = 78542, + [SMALL_STATE(2054)] = 78591, + [SMALL_STATE(2055)] = 78644, + [SMALL_STATE(2056)] = 78713, + [SMALL_STATE(2057)] = 78762, + [SMALL_STATE(2058)] = 78815, + [SMALL_STATE(2059)] = 78868, + [SMALL_STATE(2060)] = 78949, + [SMALL_STATE(2061)] = 79030, + [SMALL_STATE(2062)] = 79111, + [SMALL_STATE(2063)] = 79183, + [SMALL_STATE(2064)] = 79247, + [SMALL_STATE(2065)] = 79307, + [SMALL_STATE(2066)] = 79355, + [SMALL_STATE(2067)] = 79419, + [SMALL_STATE(2068)] = 79483, + [SMALL_STATE(2069)] = 79545, + [SMALL_STATE(2070)] = 79605, + [SMALL_STATE(2071)] = 79677, + [SMALL_STATE(2072)] = 79739, + [SMALL_STATE(2073)] = 79803, + [SMALL_STATE(2074)] = 79865, + [SMALL_STATE(2075)] = 79927, + [SMALL_STATE(2076)] = 80001, + [SMALL_STATE(2077)] = 80053, + [SMALL_STATE(2078)] = 80117, + [SMALL_STATE(2079)] = 80191, + [SMALL_STATE(2080)] = 80263, + [SMALL_STATE(2081)] = 80337, + [SMALL_STATE(2082)] = 80401, + [SMALL_STATE(2083)] = 80463, + [SMALL_STATE(2084)] = 80525, + [SMALL_STATE(2085)] = 80585, + [SMALL_STATE(2086)] = 80647, + [SMALL_STATE(2087)] = 80711, + [SMALL_STATE(2088)] = 80771, + [SMALL_STATE(2089)] = 80833, + [SMALL_STATE(2090)] = 80893, + [SMALL_STATE(2091)] = 80965, + [SMALL_STATE(2092)] = 81015, + [SMALL_STATE(2093)] = 81067, + [SMALL_STATE(2094)] = 81131, + [SMALL_STATE(2095)] = 81203, + [SMALL_STATE(2096)] = 81265, + [SMALL_STATE(2097)] = 81317, + [SMALL_STATE(2098)] = 81381, + [SMALL_STATE(2099)] = 81433, + [SMALL_STATE(2100)] = 81497, + [SMALL_STATE(2101)] = 81559, + [SMALL_STATE(2102)] = 81633, + [SMALL_STATE(2103)] = 81695, + [SMALL_STATE(2104)] = 81757, + [SMALL_STATE(2105)] = 81831, + [SMALL_STATE(2106)] = 81891, + [SMALL_STATE(2107)] = 81955, + [SMALL_STATE(2108)] = 82015, + [SMALL_STATE(2109)] = 82077, + [SMALL_STATE(2110)] = 82137, + [SMALL_STATE(2111)] = 82197, + [SMALL_STATE(2112)] = 82245, + [SMALL_STATE(2113)] = 82319, + [SMALL_STATE(2114)] = 82381, + [SMALL_STATE(2115)] = 82443, + [SMALL_STATE(2116)] = 82515, + [SMALL_STATE(2117)] = 82575, + [SMALL_STATE(2118)] = 82647, + [SMALL_STATE(2119)] = 82721, + [SMALL_STATE(2120)] = 82778, + [SMALL_STATE(2121)] = 82845, + [SMALL_STATE(2122)] = 82922, + [SMALL_STATE(2123)] = 82979, + [SMALL_STATE(2124)] = 83036, + [SMALL_STATE(2125)] = 83093, + [SMALL_STATE(2126)] = 83150, + [SMALL_STATE(2127)] = 83207, + [SMALL_STATE(2128)] = 83264, + [SMALL_STATE(2129)] = 83331, + [SMALL_STATE(2130)] = 83404, + [SMALL_STATE(2131)] = 83461, + [SMALL_STATE(2132)] = 83528, + [SMALL_STATE(2133)] = 83585, + [SMALL_STATE(2134)] = 83634, + [SMALL_STATE(2135)] = 83701, + [SMALL_STATE(2136)] = 83768, + [SMALL_STATE(2137)] = 83825, + [SMALL_STATE(2138)] = 83882, + [SMALL_STATE(2139)] = 83939, + [SMALL_STATE(2140)] = 84006, + [SMALL_STATE(2141)] = 84063, + [SMALL_STATE(2142)] = 84120, + [SMALL_STATE(2143)] = 84177, + [SMALL_STATE(2144)] = 84234, + [SMALL_STATE(2145)] = 84291, + [SMALL_STATE(2146)] = 84348, + [SMALL_STATE(2147)] = 84415, + [SMALL_STATE(2148)] = 84475, + [SMALL_STATE(2149)] = 84531, + [SMALL_STATE(2150)] = 84591, + [SMALL_STATE(2151)] = 84661, + [SMALL_STATE(2152)] = 84713, + [SMALL_STATE(2153)] = 84777, + [SMALL_STATE(2154)] = 84829, + [SMALL_STATE(2155)] = 84895, + [SMALL_STATE(2156)] = 84951, + [SMALL_STATE(2157)] = 85008, + [SMALL_STATE(2158)] = 85061, + [SMALL_STATE(2159)] = 85114, + [SMALL_STATE(2160)] = 85171, + [SMALL_STATE(2161)] = 85228, + [SMALL_STATE(2162)] = 85285, + [SMALL_STATE(2163)] = 85342, + [SMALL_STATE(2164)] = 85401, + [SMALL_STATE(2165)] = 85458, + [SMALL_STATE(2166)] = 85515, + [SMALL_STATE(2167)] = 85572, + [SMALL_STATE(2168)] = 85629, + [SMALL_STATE(2169)] = 85686, + [SMALL_STATE(2170)] = 85747, + [SMALL_STATE(2171)] = 85804, + [SMALL_STATE(2172)] = 85861, + [SMALL_STATE(2173)] = 85924, + [SMALL_STATE(2174)] = 85981, + [SMALL_STATE(2175)] = 86038, + [SMALL_STATE(2176)] = 86094, + [SMALL_STATE(2177)] = 86143, + [SMALL_STATE(2178)] = 86222, + [SMALL_STATE(2179)] = 86301, + [SMALL_STATE(2180)] = 86380, + [SMALL_STATE(2181)] = 86429, + [SMALL_STATE(2182)] = 86508, + [SMALL_STATE(2183)] = 86573, + [SMALL_STATE(2184)] = 86652, + [SMALL_STATE(2185)] = 86699, + [SMALL_STATE(2186)] = 86741, + [SMALL_STATE(2187)] = 86797, + [SMALL_STATE(2188)] = 86837, + [SMALL_STATE(2189)] = 86877, + [SMALL_STATE(2190)] = 86917, + [SMALL_STATE(2191)] = 86957, + [SMALL_STATE(2192)] = 86997, + [SMALL_STATE(2193)] = 87037, + [SMALL_STATE(2194)] = 87095, + [SMALL_STATE(2195)] = 87149, + [SMALL_STATE(2196)] = 87189, + [SMALL_STATE(2197)] = 87229, + [SMALL_STATE(2198)] = 87269, + [SMALL_STATE(2199)] = 87309, + [SMALL_STATE(2200)] = 87365, + [SMALL_STATE(2201)] = 87411, + [SMALL_STATE(2202)] = 87469, + [SMALL_STATE(2203)] = 87515, + [SMALL_STATE(2204)] = 87571, + [SMALL_STATE(2205)] = 87611, + [SMALL_STATE(2206)] = 87651, + [SMALL_STATE(2207)] = 87691, + [SMALL_STATE(2208)] = 87731, + [SMALL_STATE(2209)] = 87771, + [SMALL_STATE(2210)] = 87811, + [SMALL_STATE(2211)] = 87867, + [SMALL_STATE(2212)] = 87907, + [SMALL_STATE(2213)] = 87965, + [SMALL_STATE(2214)] = 88005, + [SMALL_STATE(2215)] = 88045, + [SMALL_STATE(2216)] = 88087, + [SMALL_STATE(2217)] = 88127, + [SMALL_STATE(2218)] = 88167, + [SMALL_STATE(2219)] = 88207, + [SMALL_STATE(2220)] = 88249, + [SMALL_STATE(2221)] = 88289, + [SMALL_STATE(2222)] = 88329, + [SMALL_STATE(2223)] = 88369, + [SMALL_STATE(2224)] = 88420, + [SMALL_STATE(2225)] = 88471, + [SMALL_STATE(2226)] = 88522, + [SMALL_STATE(2227)] = 88573, + [SMALL_STATE(2228)] = 88636, + [SMALL_STATE(2229)] = 88687, + [SMALL_STATE(2230)] = 88738, + [SMALL_STATE(2231)] = 88789, + [SMALL_STATE(2232)] = 88840, + [SMALL_STATE(2233)] = 88881, + [SMALL_STATE(2234)] = 88922, + [SMALL_STATE(2235)] = 88973, + [SMALL_STATE(2236)] = 89024, + [SMALL_STATE(2237)] = 89075, + [SMALL_STATE(2238)] = 89126, + [SMALL_STATE(2239)] = 89177, + [SMALL_STATE(2240)] = 89228, + [SMALL_STATE(2241)] = 89279, + [SMALL_STATE(2242)] = 89330, + [SMALL_STATE(2243)] = 89381, + [SMALL_STATE(2244)] = 89432, + [SMALL_STATE(2245)] = 89483, + [SMALL_STATE(2246)] = 89534, + [SMALL_STATE(2247)] = 89584, + [SMALL_STATE(2248)] = 89622, + [SMALL_STATE(2249)] = 89660, + [SMALL_STATE(2250)] = 89710, + [SMALL_STATE(2251)] = 89760, + [SMALL_STATE(2252)] = 89810, + [SMALL_STATE(2253)] = 89848, + [SMALL_STATE(2254)] = 89898, + [SMALL_STATE(2255)] = 89958, + [SMALL_STATE(2256)] = 89996, + [SMALL_STATE(2257)] = 90034, + [SMALL_STATE(2258)] = 90094, + [SMALL_STATE(2259)] = 90144, + [SMALL_STATE(2260)] = 90194, + [SMALL_STATE(2261)] = 90232, + [SMALL_STATE(2262)] = 90282, + [SMALL_STATE(2263)] = 90320, + [SMALL_STATE(2264)] = 90380, + [SMALL_STATE(2265)] = 90436, + [SMALL_STATE(2266)] = 90486, + [SMALL_STATE(2267)] = 90524, + [SMALL_STATE(2268)] = 90574, + [SMALL_STATE(2269)] = 90612, + [SMALL_STATE(2270)] = 90665, + [SMALL_STATE(2271)] = 90718, + [SMALL_STATE(2272)] = 90769, + [SMALL_STATE(2273)] = 90822, + [SMALL_STATE(2274)] = 90875, + [SMALL_STATE(2275)] = 90916, + [SMALL_STATE(2276)] = 90969, + [SMALL_STATE(2277)] = 91020, + [SMALL_STATE(2278)] = 91073, + [SMALL_STATE(2279)] = 91126, + [SMALL_STATE(2280)] = 91179, + [SMALL_STATE(2281)] = 91226, + [SMALL_STATE(2282)] = 91279, + [SMALL_STATE(2283)] = 91332, + [SMALL_STATE(2284)] = 91385, + [SMALL_STATE(2285)] = 91438, + [SMALL_STATE(2286)] = 91482, + [SMALL_STATE(2287)] = 91526, + [SMALL_STATE(2288)] = 91570, + [SMALL_STATE(2289)] = 91614, + [SMALL_STATE(2290)] = 91658, + [SMALL_STATE(2291)] = 91702, + [SMALL_STATE(2292)] = 91746, + [SMALL_STATE(2293)] = 91790, + [SMALL_STATE(2294)] = 91834, + [SMALL_STATE(2295)] = 91878, + [SMALL_STATE(2296)] = 91922, + [SMALL_STATE(2297)] = 91966, + [SMALL_STATE(2298)] = 92010, + [SMALL_STATE(2299)] = 92054, + [SMALL_STATE(2300)] = 92098, + [SMALL_STATE(2301)] = 92144, + [SMALL_STATE(2302)] = 92188, + [SMALL_STATE(2303)] = 92232, + [SMALL_STATE(2304)] = 92276, + [SMALL_STATE(2305)] = 92320, + [SMALL_STATE(2306)] = 92364, + [SMALL_STATE(2307)] = 92410, + [SMALL_STATE(2308)] = 92456, + [SMALL_STATE(2309)] = 92500, + [SMALL_STATE(2310)] = 92544, + [SMALL_STATE(2311)] = 92588, + [SMALL_STATE(2312)] = 92632, + [SMALL_STATE(2313)] = 92676, + [SMALL_STATE(2314)] = 92720, + [SMALL_STATE(2315)] = 92764, + [SMALL_STATE(2316)] = 92808, + [SMALL_STATE(2317)] = 92852, + [SMALL_STATE(2318)] = 92883, + [SMALL_STATE(2319)] = 92909, + [SMALL_STATE(2320)] = 92935, + [SMALL_STATE(2321)] = 92961, + [SMALL_STATE(2322)] = 92987, + [SMALL_STATE(2323)] = 93013, + [SMALL_STATE(2324)] = 93039, + [SMALL_STATE(2325)] = 93065, + [SMALL_STATE(2326)] = 93099, + [SMALL_STATE(2327)] = 93125, + [SMALL_STATE(2328)] = 93151, + [SMALL_STATE(2329)] = 93177, + [SMALL_STATE(2330)] = 93203, + [SMALL_STATE(2331)] = 93229, + [SMALL_STATE(2332)] = 93255, + [SMALL_STATE(2333)] = 93281, + [SMALL_STATE(2334)] = 93307, + [SMALL_STATE(2335)] = 93333, + [SMALL_STATE(2336)] = 93359, + [SMALL_STATE(2337)] = 93385, + [SMALL_STATE(2338)] = 93411, + [SMALL_STATE(2339)] = 93437, + [SMALL_STATE(2340)] = 93463, + [SMALL_STATE(2341)] = 93489, + [SMALL_STATE(2342)] = 93515, + [SMALL_STATE(2343)] = 93541, + [SMALL_STATE(2344)] = 93567, + [SMALL_STATE(2345)] = 93601, + [SMALL_STATE(2346)] = 93627, + [SMALL_STATE(2347)] = 93653, + [SMALL_STATE(2348)] = 93679, + [SMALL_STATE(2349)] = 93713, + [SMALL_STATE(2350)] = 93739, + [SMALL_STATE(2351)] = 93765, + [SMALL_STATE(2352)] = 93799, + [SMALL_STATE(2353)] = 93825, + [SMALL_STATE(2354)] = 93851, + [SMALL_STATE(2355)] = 93877, + [SMALL_STATE(2356)] = 93903, + [SMALL_STATE(2357)] = 93930, + [SMALL_STATE(2358)] = 93957, + [SMALL_STATE(2359)] = 93982, + [SMALL_STATE(2360)] = 94011, + [SMALL_STATE(2361)] = 94036, + [SMALL_STATE(2362)] = 94067, + [SMALL_STATE(2363)] = 94092, + [SMALL_STATE(2364)] = 94116, + [SMALL_STATE(2365)] = 94140, + [SMALL_STATE(2366)] = 94168, + [SMALL_STATE(2367)] = 94192, + [SMALL_STATE(2368)] = 94213, + [SMALL_STATE(2369)] = 94236, + [SMALL_STATE(2370)] = 94259, + [SMALL_STATE(2371)] = 94280, + [SMALL_STATE(2372)] = 94303, + [SMALL_STATE(2373)] = 94326, + [SMALL_STATE(2374)] = 94349, + [SMALL_STATE(2375)] = 94374, + [SMALL_STATE(2376)] = 94397, + [SMALL_STATE(2377)] = 94420, + [SMALL_STATE(2378)] = 94443, + [SMALL_STATE(2379)] = 94466, + [SMALL_STATE(2380)] = 94489, + [SMALL_STATE(2381)] = 94512, + [SMALL_STATE(2382)] = 94535, + [SMALL_STATE(2383)] = 94556, + [SMALL_STATE(2384)] = 94577, + [SMALL_STATE(2385)] = 94600, + [SMALL_STATE(2386)] = 94623, + [SMALL_STATE(2387)] = 94644, + [SMALL_STATE(2388)] = 94675, + [SMALL_STATE(2389)] = 94706, + [SMALL_STATE(2390)] = 94737, + [SMALL_STATE(2391)] = 94758, + [SMALL_STATE(2392)] = 94781, + [SMALL_STATE(2393)] = 94806, + [SMALL_STATE(2394)] = 94837, + [SMALL_STATE(2395)] = 94858, + [SMALL_STATE(2396)] = 94881, + [SMALL_STATE(2397)] = 94904, + [SMALL_STATE(2398)] = 94927, + [SMALL_STATE(2399)] = 94950, + [SMALL_STATE(2400)] = 94973, + [SMALL_STATE(2401)] = 94998, + [SMALL_STATE(2402)] = 95025, + [SMALL_STATE(2403)] = 95050, + [SMALL_STATE(2404)] = 95071, + [SMALL_STATE(2405)] = 95094, + [SMALL_STATE(2406)] = 95117, + [SMALL_STATE(2407)] = 95140, + [SMALL_STATE(2408)] = 95163, + [SMALL_STATE(2409)] = 95186, + [SMALL_STATE(2410)] = 95209, + [SMALL_STATE(2411)] = 95231, + [SMALL_STATE(2412)] = 95259, + [SMALL_STATE(2413)] = 95301, + [SMALL_STATE(2414)] = 95331, + [SMALL_STATE(2415)] = 95361, + [SMALL_STATE(2416)] = 95391, + [SMALL_STATE(2417)] = 95421, + [SMALL_STATE(2418)] = 95463, + [SMALL_STATE(2419)] = 95485, + [SMALL_STATE(2420)] = 95507, + [SMALL_STATE(2421)] = 95535, + [SMALL_STATE(2422)] = 95557, + [SMALL_STATE(2423)] = 95579, + [SMALL_STATE(2424)] = 95601, + [SMALL_STATE(2425)] = 95623, + [SMALL_STATE(2426)] = 95645, + [SMALL_STATE(2427)] = 95667, + [SMALL_STATE(2428)] = 95689, + [SMALL_STATE(2429)] = 95711, + [SMALL_STATE(2430)] = 95733, + [SMALL_STATE(2431)] = 95755, + [SMALL_STATE(2432)] = 95777, + [SMALL_STATE(2433)] = 95807, + [SMALL_STATE(2434)] = 95837, + [SMALL_STATE(2435)] = 95879, + [SMALL_STATE(2436)] = 95909, + [SMALL_STATE(2437)] = 95939, + [SMALL_STATE(2438)] = 95969, + [SMALL_STATE(2439)] = 95999, + [SMALL_STATE(2440)] = 96027, + [SMALL_STATE(2441)] = 96051, + [SMALL_STATE(2442)] = 96081, + [SMALL_STATE(2443)] = 96123, + [SMALL_STATE(2444)] = 96153, + [SMALL_STATE(2445)] = 96183, + [SMALL_STATE(2446)] = 96205, + [SMALL_STATE(2447)] = 96227, + [SMALL_STATE(2448)] = 96249, + [SMALL_STATE(2449)] = 96271, + [SMALL_STATE(2450)] = 96293, + [SMALL_STATE(2451)] = 96315, + [SMALL_STATE(2452)] = 96337, + [SMALL_STATE(2453)] = 96359, + [SMALL_STATE(2454)] = 96381, + [SMALL_STATE(2455)] = 96403, + [SMALL_STATE(2456)] = 96431, + [SMALL_STATE(2457)] = 96459, + [SMALL_STATE(2458)] = 96487, + [SMALL_STATE(2459)] = 96529, + [SMALL_STATE(2460)] = 96559, + [SMALL_STATE(2461)] = 96587, + [SMALL_STATE(2462)] = 96609, + [SMALL_STATE(2463)] = 96631, + [SMALL_STATE(2464)] = 96653, + [SMALL_STATE(2465)] = 96675, + [SMALL_STATE(2466)] = 96697, + [SMALL_STATE(2467)] = 96719, + [SMALL_STATE(2468)] = 96741, + [SMALL_STATE(2469)] = 96763, + [SMALL_STATE(2470)] = 96785, + [SMALL_STATE(2471)] = 96807, + [SMALL_STATE(2472)] = 96835, + [SMALL_STATE(2473)] = 96861, + [SMALL_STATE(2474)] = 96903, + [SMALL_STATE(2475)] = 96933, + [SMALL_STATE(2476)] = 96977, + [SMALL_STATE(2477)] = 97019, + [SMALL_STATE(2478)] = 97047, + [SMALL_STATE(2479)] = 97071, + [SMALL_STATE(2480)] = 97099, + [SMALL_STATE(2481)] = 97127, + [SMALL_STATE(2482)] = 97162, + [SMALL_STATE(2483)] = 97183, + [SMALL_STATE(2484)] = 97208, + [SMALL_STATE(2485)] = 97229, + [SMALL_STATE(2486)] = 97250, + [SMALL_STATE(2487)] = 97277, + [SMALL_STATE(2488)] = 97312, + [SMALL_STATE(2489)] = 97335, + [SMALL_STATE(2490)] = 97356, + [SMALL_STATE(2491)] = 97391, + [SMALL_STATE(2492)] = 97412, + [SMALL_STATE(2493)] = 97437, + [SMALL_STATE(2494)] = 97462, + [SMALL_STATE(2495)] = 97497, + [SMALL_STATE(2496)] = 97532, + [SMALL_STATE(2497)] = 97557, + [SMALL_STATE(2498)] = 97592, + [SMALL_STATE(2499)] = 97627, + [SMALL_STATE(2500)] = 97662, + [SMALL_STATE(2501)] = 97689, + [SMALL_STATE(2502)] = 97716, + [SMALL_STATE(2503)] = 97743, + [SMALL_STATE(2504)] = 97764, + [SMALL_STATE(2505)] = 97801, + [SMALL_STATE(2506)] = 97836, + [SMALL_STATE(2507)] = 97859, + [SMALL_STATE(2508)] = 97894, + [SMALL_STATE(2509)] = 97919, + [SMALL_STATE(2510)] = 97949, + [SMALL_STATE(2511)] = 97967, + [SMALL_STATE(2512)] = 97999, + [SMALL_STATE(2513)] = 98023, + [SMALL_STATE(2514)] = 98045, + [SMALL_STATE(2515)] = 98067, + [SMALL_STATE(2516)] = 98103, + [SMALL_STATE(2517)] = 98121, + [SMALL_STATE(2518)] = 98153, + [SMALL_STATE(2519)] = 98171, + [SMALL_STATE(2520)] = 98189, + [SMALL_STATE(2521)] = 98207, + [SMALL_STATE(2522)] = 98225, + [SMALL_STATE(2523)] = 98261, + [SMALL_STATE(2524)] = 98293, + [SMALL_STATE(2525)] = 98311, + [SMALL_STATE(2526)] = 98329, + [SMALL_STATE(2527)] = 98347, + [SMALL_STATE(2528)] = 98365, + [SMALL_STATE(2529)] = 98383, + [SMALL_STATE(2530)] = 98401, + [SMALL_STATE(2531)] = 98419, + [SMALL_STATE(2532)] = 98451, + [SMALL_STATE(2533)] = 98483, + [SMALL_STATE(2534)] = 98501, + [SMALL_STATE(2535)] = 98533, + [SMALL_STATE(2536)] = 98569, + [SMALL_STATE(2537)] = 98599, + [SMALL_STATE(2538)] = 98617, + [SMALL_STATE(2539)] = 98647, + [SMALL_STATE(2540)] = 98665, + [SMALL_STATE(2541)] = 98683, + [SMALL_STATE(2542)] = 98719, + [SMALL_STATE(2543)] = 98749, + [SMALL_STATE(2544)] = 98781, + [SMALL_STATE(2545)] = 98817, + [SMALL_STATE(2546)] = 98837, + [SMALL_STATE(2547)] = 98855, + [SMALL_STATE(2548)] = 98873, + [SMALL_STATE(2549)] = 98905, + [SMALL_STATE(2550)] = 98925, + [SMALL_STATE(2551)] = 98943, + [SMALL_STATE(2552)] = 98973, + [SMALL_STATE(2553)] = 99005, + [SMALL_STATE(2554)] = 99023, + [SMALL_STATE(2555)] = 99043, + [SMALL_STATE(2556)] = 99061, + [SMALL_STATE(2557)] = 99079, + [SMALL_STATE(2558)] = 99097, + [SMALL_STATE(2559)] = 99115, + [SMALL_STATE(2560)] = 99133, + [SMALL_STATE(2561)] = 99151, + [SMALL_STATE(2562)] = 99169, + [SMALL_STATE(2563)] = 99187, + [SMALL_STATE(2564)] = 99205, + [SMALL_STATE(2565)] = 99223, + [SMALL_STATE(2566)] = 99259, + [SMALL_STATE(2567)] = 99277, + [SMALL_STATE(2568)] = 99309, + [SMALL_STATE(2569)] = 99327, + [SMALL_STATE(2570)] = 99345, + [SMALL_STATE(2571)] = 99383, + [SMALL_STATE(2572)] = 99419, + [SMALL_STATE(2573)] = 99449, + [SMALL_STATE(2574)] = 99468, + [SMALL_STATE(2575)] = 99487, + [SMALL_STATE(2576)] = 99506, + [SMALL_STATE(2577)] = 99523, + [SMALL_STATE(2578)] = 99542, + [SMALL_STATE(2579)] = 99561, + [SMALL_STATE(2580)] = 99580, + [SMALL_STATE(2581)] = 99599, + [SMALL_STATE(2582)] = 99618, + [SMALL_STATE(2583)] = 99653, + [SMALL_STATE(2584)] = 99672, + [SMALL_STATE(2585)] = 99691, + [SMALL_STATE(2586)] = 99710, + [SMALL_STATE(2587)] = 99731, + [SMALL_STATE(2588)] = 99750, + [SMALL_STATE(2589)] = 99773, + [SMALL_STATE(2590)] = 99796, + [SMALL_STATE(2591)] = 99815, + [SMALL_STATE(2592)] = 99834, + [SMALL_STATE(2593)] = 99853, + [SMALL_STATE(2594)] = 99872, + [SMALL_STATE(2595)] = 99893, + [SMALL_STATE(2596)] = 99910, + [SMALL_STATE(2597)] = 99929, + [SMALL_STATE(2598)] = 99948, + [SMALL_STATE(2599)] = 99969, + [SMALL_STATE(2600)] = 99988, + [SMALL_STATE(2601)] = 100007, + [SMALL_STATE(2602)] = 100028, + [SMALL_STATE(2603)] = 100047, + [SMALL_STATE(2604)] = 100066, + [SMALL_STATE(2605)] = 100085, + [SMALL_STATE(2606)] = 100104, + [SMALL_STATE(2607)] = 100123, + [SMALL_STATE(2608)] = 100140, + [SMALL_STATE(2609)] = 100159, + [SMALL_STATE(2610)] = 100178, + [SMALL_STATE(2611)] = 100197, + [SMALL_STATE(2612)] = 100216, + [SMALL_STATE(2613)] = 100233, + [SMALL_STATE(2614)] = 100250, + [SMALL_STATE(2615)] = 100269, + [SMALL_STATE(2616)] = 100290, + [SMALL_STATE(2617)] = 100309, + [SMALL_STATE(2618)] = 100328, + [SMALL_STATE(2619)] = 100351, + [SMALL_STATE(2620)] = 100370, + [SMALL_STATE(2621)] = 100391, + [SMALL_STATE(2622)] = 100412, + [SMALL_STATE(2623)] = 100435, + [SMALL_STATE(2624)] = 100458, + [SMALL_STATE(2625)] = 100477, + [SMALL_STATE(2626)] = 100494, + [SMALL_STATE(2627)] = 100517, + [SMALL_STATE(2628)] = 100538, + [SMALL_STATE(2629)] = 100557, + [SMALL_STATE(2630)] = 100578, + [SMALL_STATE(2631)] = 100597, + [SMALL_STATE(2632)] = 100615, + [SMALL_STATE(2633)] = 100649, + [SMALL_STATE(2634)] = 100683, + [SMALL_STATE(2635)] = 100717, + [SMALL_STATE(2636)] = 100751, + [SMALL_STATE(2637)] = 100783, + [SMALL_STATE(2638)] = 100817, + [SMALL_STATE(2639)] = 100851, + [SMALL_STATE(2640)] = 100867, + [SMALL_STATE(2641)] = 100885, + [SMALL_STATE(2642)] = 100913, + [SMALL_STATE(2643)] = 100941, + [SMALL_STATE(2644)] = 100975, + [SMALL_STATE(2645)] = 100999, + [SMALL_STATE(2646)] = 101019, + [SMALL_STATE(2647)] = 101053, + [SMALL_STATE(2648)] = 101083, + [SMALL_STATE(2649)] = 101117, + [SMALL_STATE(2650)] = 101139, + [SMALL_STATE(2651)] = 101163, + [SMALL_STATE(2652)] = 101187, + [SMALL_STATE(2653)] = 101217, + [SMALL_STATE(2654)] = 101249, + [SMALL_STATE(2655)] = 101283, + [SMALL_STATE(2656)] = 101307, + [SMALL_STATE(2657)] = 101329, + [SMALL_STATE(2658)] = 101349, + [SMALL_STATE(2659)] = 101383, + [SMALL_STATE(2660)] = 101398, + [SMALL_STATE(2661)] = 101413, + [SMALL_STATE(2662)] = 101432, + [SMALL_STATE(2663)] = 101447, + [SMALL_STATE(2664)] = 101464, + [SMALL_STATE(2665)] = 101491, + [SMALL_STATE(2666)] = 101506, + [SMALL_STATE(2667)] = 101523, + [SMALL_STATE(2668)] = 101554, + [SMALL_STATE(2669)] = 101569, + [SMALL_STATE(2670)] = 101584, + [SMALL_STATE(2671)] = 101599, + [SMALL_STATE(2672)] = 101614, + [SMALL_STATE(2673)] = 101645, + [SMALL_STATE(2674)] = 101660, + [SMALL_STATE(2675)] = 101677, + [SMALL_STATE(2676)] = 101692, + [SMALL_STATE(2677)] = 101707, + [SMALL_STATE(2678)] = 101722, + [SMALL_STATE(2679)] = 101753, + [SMALL_STATE(2680)] = 101768, + [SMALL_STATE(2681)] = 101797, + [SMALL_STATE(2682)] = 101828, + [SMALL_STATE(2683)] = 101855, + [SMALL_STATE(2684)] = 101870, + [SMALL_STATE(2685)] = 101885, + [SMALL_STATE(2686)] = 101900, + [SMALL_STATE(2687)] = 101915, + [SMALL_STATE(2688)] = 101946, + [SMALL_STATE(2689)] = 101961, + [SMALL_STATE(2690)] = 101992, + [SMALL_STATE(2691)] = 102017, + [SMALL_STATE(2692)] = 102038, + [SMALL_STATE(2693)] = 102053, + [SMALL_STATE(2694)] = 102070, + [SMALL_STATE(2695)] = 102085, + [SMALL_STATE(2696)] = 102102, + [SMALL_STATE(2697)] = 102117, + [SMALL_STATE(2698)] = 102144, + [SMALL_STATE(2699)] = 102175, + [SMALL_STATE(2700)] = 102190, + [SMALL_STATE(2701)] = 102215, + [SMALL_STATE(2702)] = 102230, + [SMALL_STATE(2703)] = 102245, + [SMALL_STATE(2704)] = 102262, + [SMALL_STATE(2705)] = 102293, + [SMALL_STATE(2706)] = 102314, + [SMALL_STATE(2707)] = 102329, + [SMALL_STATE(2708)] = 102344, + [SMALL_STATE(2709)] = 102375, + [SMALL_STATE(2710)] = 102406, + [SMALL_STATE(2711)] = 102421, + [SMALL_STATE(2712)] = 102446, + [SMALL_STATE(2713)] = 102471, + [SMALL_STATE(2714)] = 102490, + [SMALL_STATE(2715)] = 102505, + [SMALL_STATE(2716)] = 102520, + [SMALL_STATE(2717)] = 102551, + [SMALL_STATE(2718)] = 102582, + [SMALL_STATE(2719)] = 102599, + [SMALL_STATE(2720)] = 102620, + [SMALL_STATE(2721)] = 102641, + [SMALL_STATE(2722)] = 102656, + [SMALL_STATE(2723)] = 102677, + [SMALL_STATE(2724)] = 102692, + [SMALL_STATE(2725)] = 102717, + [SMALL_STATE(2726)] = 102742, + [SMALL_STATE(2727)] = 102773, + [SMALL_STATE(2728)] = 102800, + [SMALL_STATE(2729)] = 102815, + [SMALL_STATE(2730)] = 102846, + [SMALL_STATE(2731)] = 102873, + [SMALL_STATE(2732)] = 102888, + [SMALL_STATE(2733)] = 102915, + [SMALL_STATE(2734)] = 102942, + [SMALL_STATE(2735)] = 102963, + [SMALL_STATE(2736)] = 102978, + [SMALL_STATE(2737)] = 102993, + [SMALL_STATE(2738)] = 103008, + [SMALL_STATE(2739)] = 103023, + [SMALL_STATE(2740)] = 103050, + [SMALL_STATE(2741)] = 103065, + [SMALL_STATE(2742)] = 103080, + [SMALL_STATE(2743)] = 103111, + [SMALL_STATE(2744)] = 103136, + [SMALL_STATE(2745)] = 103163, + [SMALL_STATE(2746)] = 103182, + [SMALL_STATE(2747)] = 103205, + [SMALL_STATE(2748)] = 103236, + [SMALL_STATE(2749)] = 103267, + [SMALL_STATE(2750)] = 103298, + [SMALL_STATE(2751)] = 103313, + [SMALL_STATE(2752)] = 103328, + [SMALL_STATE(2753)] = 103359, + [SMALL_STATE(2754)] = 103378, + [SMALL_STATE(2755)] = 103392, + [SMALL_STATE(2756)] = 103416, + [SMALL_STATE(2757)] = 103436, + [SMALL_STATE(2758)] = 103460, + [SMALL_STATE(2759)] = 103478, + [SMALL_STATE(2760)] = 103498, + [SMALL_STATE(2761)] = 103522, + [SMALL_STATE(2762)] = 103536, + [SMALL_STATE(2763)] = 103550, + [SMALL_STATE(2764)] = 103574, + [SMALL_STATE(2765)] = 103598, + [SMALL_STATE(2766)] = 103622, + [SMALL_STATE(2767)] = 103646, + [SMALL_STATE(2768)] = 103670, + [SMALL_STATE(2769)] = 103690, + [SMALL_STATE(2770)] = 103714, + [SMALL_STATE(2771)] = 103734, + [SMALL_STATE(2772)] = 103754, + [SMALL_STATE(2773)] = 103778, + [SMALL_STATE(2774)] = 103802, + [SMALL_STATE(2775)] = 103826, + [SMALL_STATE(2776)] = 103850, + [SMALL_STATE(2777)] = 103875, + [SMALL_STATE(2778)] = 103900, + [SMALL_STATE(2779)] = 103925, + [SMALL_STATE(2780)] = 103938, + [SMALL_STATE(2781)] = 103963, + [SMALL_STATE(2782)] = 103988, + [SMALL_STATE(2783)] = 104013, + [SMALL_STATE(2784)] = 104028, + [SMALL_STATE(2785)] = 104049, + [SMALL_STATE(2786)] = 104074, + [SMALL_STATE(2787)] = 104087, + [SMALL_STATE(2788)] = 104108, + [SMALL_STATE(2789)] = 104133, + [SMALL_STATE(2790)] = 104158, + [SMALL_STATE(2791)] = 104173, + [SMALL_STATE(2792)] = 104194, + [SMALL_STATE(2793)] = 104219, + [SMALL_STATE(2794)] = 104240, + [SMALL_STATE(2795)] = 104265, + [SMALL_STATE(2796)] = 104290, + [SMALL_STATE(2797)] = 104315, + [SMALL_STATE(2798)] = 104336, + [SMALL_STATE(2799)] = 104361, + [SMALL_STATE(2800)] = 104374, + [SMALL_STATE(2801)] = 104399, + [SMALL_STATE(2802)] = 104420, + [SMALL_STATE(2803)] = 104433, + [SMALL_STATE(2804)] = 104450, + [SMALL_STATE(2805)] = 104465, + [SMALL_STATE(2806)] = 104486, + [SMALL_STATE(2807)] = 104507, + [SMALL_STATE(2808)] = 104524, + [SMALL_STATE(2809)] = 104549, + [SMALL_STATE(2810)] = 104574, + [SMALL_STATE(2811)] = 104587, + [SMALL_STATE(2812)] = 104612, + [SMALL_STATE(2813)] = 104635, + [SMALL_STATE(2814)] = 104650, + [SMALL_STATE(2815)] = 104675, + [SMALL_STATE(2816)] = 104692, + [SMALL_STATE(2817)] = 104709, + [SMALL_STATE(2818)] = 104726, + [SMALL_STATE(2819)] = 104743, + [SMALL_STATE(2820)] = 104766, + [SMALL_STATE(2821)] = 104781, + [SMALL_STATE(2822)] = 104796, + [SMALL_STATE(2823)] = 104813, + [SMALL_STATE(2824)] = 104830, + [SMALL_STATE(2825)] = 104847, + [SMALL_STATE(2826)] = 104864, + [SMALL_STATE(2827)] = 104877, + [SMALL_STATE(2828)] = 104890, + [SMALL_STATE(2829)] = 104907, + [SMALL_STATE(2830)] = 104924, + [SMALL_STATE(2831)] = 104937, + [SMALL_STATE(2832)] = 104954, + [SMALL_STATE(2833)] = 104971, + [SMALL_STATE(2834)] = 104992, + [SMALL_STATE(2835)] = 105017, + [SMALL_STATE(2836)] = 105034, + [SMALL_STATE(2837)] = 105055, + [SMALL_STATE(2838)] = 105072, + [SMALL_STATE(2839)] = 105097, + [SMALL_STATE(2840)] = 105122, + [SMALL_STATE(2841)] = 105147, + [SMALL_STATE(2842)] = 105168, + [SMALL_STATE(2843)] = 105193, + [SMALL_STATE(2844)] = 105218, + [SMALL_STATE(2845)] = 105235, + [SMALL_STATE(2846)] = 105260, + [SMALL_STATE(2847)] = 105285, + [SMALL_STATE(2848)] = 105300, + [SMALL_STATE(2849)] = 105325, + [SMALL_STATE(2850)] = 105342, + [SMALL_STATE(2851)] = 105355, + [SMALL_STATE(2852)] = 105372, + [SMALL_STATE(2853)] = 105385, + [SMALL_STATE(2854)] = 105402, + [SMALL_STATE(2855)] = 105427, + [SMALL_STATE(2856)] = 105452, + [SMALL_STATE(2857)] = 105469, + [SMALL_STATE(2858)] = 105490, + [SMALL_STATE(2859)] = 105515, + [SMALL_STATE(2860)] = 105528, + [SMALL_STATE(2861)] = 105553, + [SMALL_STATE(2862)] = 105574, + [SMALL_STATE(2863)] = 105599, + [SMALL_STATE(2864)] = 105624, + [SMALL_STATE(2865)] = 105649, + [SMALL_STATE(2866)] = 105666, + [SMALL_STATE(2867)] = 105691, + [SMALL_STATE(2868)] = 105712, + [SMALL_STATE(2869)] = 105729, + [SMALL_STATE(2870)] = 105754, + [SMALL_STATE(2871)] = 105773, + [SMALL_STATE(2872)] = 105786, + [SMALL_STATE(2873)] = 105803, + [SMALL_STATE(2874)] = 105816, + [SMALL_STATE(2875)] = 105829, + [SMALL_STATE(2876)] = 105850, + [SMALL_STATE(2877)] = 105867, + [SMALL_STATE(2878)] = 105892, + [SMALL_STATE(2879)] = 105917, + [SMALL_STATE(2880)] = 105936, + [SMALL_STATE(2881)] = 105961, + [SMALL_STATE(2882)] = 105978, + [SMALL_STATE(2883)] = 106003, + [SMALL_STATE(2884)] = 106024, + [SMALL_STATE(2885)] = 106045, + [SMALL_STATE(2886)] = 106058, + [SMALL_STATE(2887)] = 106075, + [SMALL_STATE(2888)] = 106091, + [SMALL_STATE(2889)] = 106113, + [SMALL_STATE(2890)] = 106135, + [SMALL_STATE(2891)] = 106149, + [SMALL_STATE(2892)] = 106167, + [SMALL_STATE(2893)] = 106189, + [SMALL_STATE(2894)] = 106205, + [SMALL_STATE(2895)] = 106227, + [SMALL_STATE(2896)] = 106243, + [SMALL_STATE(2897)] = 106259, + [SMALL_STATE(2898)] = 106275, + [SMALL_STATE(2899)] = 106297, + [SMALL_STATE(2900)] = 106315, + [SMALL_STATE(2901)] = 106337, + [SMALL_STATE(2902)] = 106359, + [SMALL_STATE(2903)] = 106381, + [SMALL_STATE(2904)] = 106397, + [SMALL_STATE(2905)] = 106413, + [SMALL_STATE(2906)] = 106431, + [SMALL_STATE(2907)] = 106453, + [SMALL_STATE(2908)] = 106475, + [SMALL_STATE(2909)] = 106497, + [SMALL_STATE(2910)] = 106517, + [SMALL_STATE(2911)] = 106535, + [SMALL_STATE(2912)] = 106557, + [SMALL_STATE(2913)] = 106579, + [SMALL_STATE(2914)] = 106601, + [SMALL_STATE(2915)] = 106613, + [SMALL_STATE(2916)] = 106635, + [SMALL_STATE(2917)] = 106653, + [SMALL_STATE(2918)] = 106675, + [SMALL_STATE(2919)] = 106687, + [SMALL_STATE(2920)] = 106709, + [SMALL_STATE(2921)] = 106727, + [SMALL_STATE(2922)] = 106749, + [SMALL_STATE(2923)] = 106771, + [SMALL_STATE(2924)] = 106787, + [SMALL_STATE(2925)] = 106809, + [SMALL_STATE(2926)] = 106825, + [SMALL_STATE(2927)] = 106843, + [SMALL_STATE(2928)] = 106859, + [SMALL_STATE(2929)] = 106875, + [SMALL_STATE(2930)] = 106893, + [SMALL_STATE(2931)] = 106909, + [SMALL_STATE(2932)] = 106927, + [SMALL_STATE(2933)] = 106945, + [SMALL_STATE(2934)] = 106967, + [SMALL_STATE(2935)] = 106989, + [SMALL_STATE(2936)] = 107007, + [SMALL_STATE(2937)] = 107025, + [SMALL_STATE(2938)] = 107043, + [SMALL_STATE(2939)] = 107059, + [SMALL_STATE(2940)] = 107075, + [SMALL_STATE(2941)] = 107093, + [SMALL_STATE(2942)] = 107115, + [SMALL_STATE(2943)] = 107137, + [SMALL_STATE(2944)] = 107159, + [SMALL_STATE(2945)] = 107175, + [SMALL_STATE(2946)] = 107197, + [SMALL_STATE(2947)] = 107213, + [SMALL_STATE(2948)] = 107235, + [SMALL_STATE(2949)] = 107251, + [SMALL_STATE(2950)] = 107267, + [SMALL_STATE(2951)] = 107283, + [SMALL_STATE(2952)] = 107299, + [SMALL_STATE(2953)] = 107317, + [SMALL_STATE(2954)] = 107339, + [SMALL_STATE(2955)] = 107361, + [SMALL_STATE(2956)] = 107383, + [SMALL_STATE(2957)] = 107405, + [SMALL_STATE(2958)] = 107421, + [SMALL_STATE(2959)] = 107437, + [SMALL_STATE(2960)] = 107459, + [SMALL_STATE(2961)] = 107481, + [SMALL_STATE(2962)] = 107497, + [SMALL_STATE(2963)] = 107515, + [SMALL_STATE(2964)] = 107533, + [SMALL_STATE(2965)] = 107545, + [SMALL_STATE(2966)] = 107561, + [SMALL_STATE(2967)] = 107581, + [SMALL_STATE(2968)] = 107599, + [SMALL_STATE(2969)] = 107611, + [SMALL_STATE(2970)] = 107631, + [SMALL_STATE(2971)] = 107653, + [SMALL_STATE(2972)] = 107669, + [SMALL_STATE(2973)] = 107685, + [SMALL_STATE(2974)] = 107707, + [SMALL_STATE(2975)] = 107729, + [SMALL_STATE(2976)] = 107751, + [SMALL_STATE(2977)] = 107767, + [SMALL_STATE(2978)] = 107783, + [SMALL_STATE(2979)] = 107795, + [SMALL_STATE(2980)] = 107811, + [SMALL_STATE(2981)] = 107827, + [SMALL_STATE(2982)] = 107843, + [SMALL_STATE(2983)] = 107865, + [SMALL_STATE(2984)] = 107883, + [SMALL_STATE(2985)] = 107899, + [SMALL_STATE(2986)] = 107911, + [SMALL_STATE(2987)] = 107927, + [SMALL_STATE(2988)] = 107943, + [SMALL_STATE(2989)] = 107955, + [SMALL_STATE(2990)] = 107977, + [SMALL_STATE(2991)] = 107999, + [SMALL_STATE(2992)] = 108015, + [SMALL_STATE(2993)] = 108031, + [SMALL_STATE(2994)] = 108047, + [SMALL_STATE(2995)] = 108063, + [SMALL_STATE(2996)] = 108075, + [SMALL_STATE(2997)] = 108093, + [SMALL_STATE(2998)] = 108105, + [SMALL_STATE(2999)] = 108121, + [SMALL_STATE(3000)] = 108143, + [SMALL_STATE(3001)] = 108161, + [SMALL_STATE(3002)] = 108173, + [SMALL_STATE(3003)] = 108195, + [SMALL_STATE(3004)] = 108217, + [SMALL_STATE(3005)] = 108231, + [SMALL_STATE(3006)] = 108249, + [SMALL_STATE(3007)] = 108271, + [SMALL_STATE(3008)] = 108287, + [SMALL_STATE(3009)] = 108301, + [SMALL_STATE(3010)] = 108317, + [SMALL_STATE(3011)] = 108335, + [SMALL_STATE(3012)] = 108353, + [SMALL_STATE(3013)] = 108371, + [SMALL_STATE(3014)] = 108393, + [SMALL_STATE(3015)] = 108411, + [SMALL_STATE(3016)] = 108427, + [SMALL_STATE(3017)] = 108449, + [SMALL_STATE(3018)] = 108465, + [SMALL_STATE(3019)] = 108487, + [SMALL_STATE(3020)] = 108503, + [SMALL_STATE(3021)] = 108519, + [SMALL_STATE(3022)] = 108535, + [SMALL_STATE(3023)] = 108553, + [SMALL_STATE(3024)] = 108569, + [SMALL_STATE(3025)] = 108591, + [SMALL_STATE(3026)] = 108613, + [SMALL_STATE(3027)] = 108629, + [SMALL_STATE(3028)] = 108645, + [SMALL_STATE(3029)] = 108667, + [SMALL_STATE(3030)] = 108681, + [SMALL_STATE(3031)] = 108703, + [SMALL_STATE(3032)] = 108725, + [SMALL_STATE(3033)] = 108747, + [SMALL_STATE(3034)] = 108769, + [SMALL_STATE(3035)] = 108791, + [SMALL_STATE(3036)] = 108813, + [SMALL_STATE(3037)] = 108829, + [SMALL_STATE(3038)] = 108841, + [SMALL_STATE(3039)] = 108853, + [SMALL_STATE(3040)] = 108869, + [SMALL_STATE(3041)] = 108881, + [SMALL_STATE(3042)] = 108896, + [SMALL_STATE(3043)] = 108907, + [SMALL_STATE(3044)] = 108922, + [SMALL_STATE(3045)] = 108937, + [SMALL_STATE(3046)] = 108954, + [SMALL_STATE(3047)] = 108973, + [SMALL_STATE(3048)] = 108984, + [SMALL_STATE(3049)] = 108995, + [SMALL_STATE(3050)] = 109014, + [SMALL_STATE(3051)] = 109025, + [SMALL_STATE(3052)] = 109042, + [SMALL_STATE(3053)] = 109061, + [SMALL_STATE(3054)] = 109078, + [SMALL_STATE(3055)] = 109095, + [SMALL_STATE(3056)] = 109114, + [SMALL_STATE(3057)] = 109133, + [SMALL_STATE(3058)] = 109152, + [SMALL_STATE(3059)] = 109171, + [SMALL_STATE(3060)] = 109190, + [SMALL_STATE(3061)] = 109201, + [SMALL_STATE(3062)] = 109212, + [SMALL_STATE(3063)] = 109229, + [SMALL_STATE(3064)] = 109240, + [SMALL_STATE(3065)] = 109259, + [SMALL_STATE(3066)] = 109278, + [SMALL_STATE(3067)] = 109289, + [SMALL_STATE(3068)] = 109300, + [SMALL_STATE(3069)] = 109311, + [SMALL_STATE(3070)] = 109330, + [SMALL_STATE(3071)] = 109349, + [SMALL_STATE(3072)] = 109360, + [SMALL_STATE(3073)] = 109379, + [SMALL_STATE(3074)] = 109398, + [SMALL_STATE(3075)] = 109409, + [SMALL_STATE(3076)] = 109420, + [SMALL_STATE(3077)] = 109435, + [SMALL_STATE(3078)] = 109446, + [SMALL_STATE(3079)] = 109461, + [SMALL_STATE(3080)] = 109476, + [SMALL_STATE(3081)] = 109495, + [SMALL_STATE(3082)] = 109506, + [SMALL_STATE(3083)] = 109525, + [SMALL_STATE(3084)] = 109544, + [SMALL_STATE(3085)] = 109555, + [SMALL_STATE(3086)] = 109574, + [SMALL_STATE(3087)] = 109593, + [SMALL_STATE(3088)] = 109604, + [SMALL_STATE(3089)] = 109619, + [SMALL_STATE(3090)] = 109630, + [SMALL_STATE(3091)] = 109645, + [SMALL_STATE(3092)] = 109658, + [SMALL_STATE(3093)] = 109677, + [SMALL_STATE(3094)] = 109688, + [SMALL_STATE(3095)] = 109707, + [SMALL_STATE(3096)] = 109718, + [SMALL_STATE(3097)] = 109737, + [SMALL_STATE(3098)] = 109756, + [SMALL_STATE(3099)] = 109767, + [SMALL_STATE(3100)] = 109778, + [SMALL_STATE(3101)] = 109793, + [SMALL_STATE(3102)] = 109812, + [SMALL_STATE(3103)] = 109823, + [SMALL_STATE(3104)] = 109834, + [SMALL_STATE(3105)] = 109845, + [SMALL_STATE(3106)] = 109856, + [SMALL_STATE(3107)] = 109867, + [SMALL_STATE(3108)] = 109884, + [SMALL_STATE(3109)] = 109903, + [SMALL_STATE(3110)] = 109916, + [SMALL_STATE(3111)] = 109935, + [SMALL_STATE(3112)] = 109952, + [SMALL_STATE(3113)] = 109969, + [SMALL_STATE(3114)] = 109986, + [SMALL_STATE(3115)] = 109997, + [SMALL_STATE(3116)] = 110016, + [SMALL_STATE(3117)] = 110027, + [SMALL_STATE(3118)] = 110046, + [SMALL_STATE(3119)] = 110057, + [SMALL_STATE(3120)] = 110076, + [SMALL_STATE(3121)] = 110095, + [SMALL_STATE(3122)] = 110106, + [SMALL_STATE(3123)] = 110117, + [SMALL_STATE(3124)] = 110132, + [SMALL_STATE(3125)] = 110143, + [SMALL_STATE(3126)] = 110162, + [SMALL_STATE(3127)] = 110173, + [SMALL_STATE(3128)] = 110184, + [SMALL_STATE(3129)] = 110195, + [SMALL_STATE(3130)] = 110206, + [SMALL_STATE(3131)] = 110217, + [SMALL_STATE(3132)] = 110236, + [SMALL_STATE(3133)] = 110255, + [SMALL_STATE(3134)] = 110274, + [SMALL_STATE(3135)] = 110289, + [SMALL_STATE(3136)] = 110306, + [SMALL_STATE(3137)] = 110317, + [SMALL_STATE(3138)] = 110328, + [SMALL_STATE(3139)] = 110339, + [SMALL_STATE(3140)] = 110350, + [SMALL_STATE(3141)] = 110361, + [SMALL_STATE(3142)] = 110380, + [SMALL_STATE(3143)] = 110399, + [SMALL_STATE(3144)] = 110418, + [SMALL_STATE(3145)] = 110437, + [SMALL_STATE(3146)] = 110448, + [SMALL_STATE(3147)] = 110459, + [SMALL_STATE(3148)] = 110470, + [SMALL_STATE(3149)] = 110489, + [SMALL_STATE(3150)] = 110508, + [SMALL_STATE(3151)] = 110527, + [SMALL_STATE(3152)] = 110540, + [SMALL_STATE(3153)] = 110553, + [SMALL_STATE(3154)] = 110564, + [SMALL_STATE(3155)] = 110581, + [SMALL_STATE(3156)] = 110600, + [SMALL_STATE(3157)] = 110619, + [SMALL_STATE(3158)] = 110638, + [SMALL_STATE(3159)] = 110649, + [SMALL_STATE(3160)] = 110668, + [SMALL_STATE(3161)] = 110679, + [SMALL_STATE(3162)] = 110690, + [SMALL_STATE(3163)] = 110701, + [SMALL_STATE(3164)] = 110720, + [SMALL_STATE(3165)] = 110731, + [SMALL_STATE(3166)] = 110742, + [SMALL_STATE(3167)] = 110753, + [SMALL_STATE(3168)] = 110764, + [SMALL_STATE(3169)] = 110783, + [SMALL_STATE(3170)] = 110794, + [SMALL_STATE(3171)] = 110813, + [SMALL_STATE(3172)] = 110830, + [SMALL_STATE(3173)] = 110847, + [SMALL_STATE(3174)] = 110858, + [SMALL_STATE(3175)] = 110877, + [SMALL_STATE(3176)] = 110892, + [SMALL_STATE(3177)] = 110905, + [SMALL_STATE(3178)] = 110924, + [SMALL_STATE(3179)] = 110935, + [SMALL_STATE(3180)] = 110950, + [SMALL_STATE(3181)] = 110969, + [SMALL_STATE(3182)] = 110980, + [SMALL_STATE(3183)] = 110995, + [SMALL_STATE(3184)] = 111014, + [SMALL_STATE(3185)] = 111029, + [SMALL_STATE(3186)] = 111048, + [SMALL_STATE(3187)] = 111063, + [SMALL_STATE(3188)] = 111074, + [SMALL_STATE(3189)] = 111085, + [SMALL_STATE(3190)] = 111104, + [SMALL_STATE(3191)] = 111115, + [SMALL_STATE(3192)] = 111134, + [SMALL_STATE(3193)] = 111145, + [SMALL_STATE(3194)] = 111156, + [SMALL_STATE(3195)] = 111167, + [SMALL_STATE(3196)] = 111178, + [SMALL_STATE(3197)] = 111189, + [SMALL_STATE(3198)] = 111200, + [SMALL_STATE(3199)] = 111211, + [SMALL_STATE(3200)] = 111222, + [SMALL_STATE(3201)] = 111233, + [SMALL_STATE(3202)] = 111252, + [SMALL_STATE(3203)] = 111263, + [SMALL_STATE(3204)] = 111274, + [SMALL_STATE(3205)] = 111285, + [SMALL_STATE(3206)] = 111296, + [SMALL_STATE(3207)] = 111307, + [SMALL_STATE(3208)] = 111326, + [SMALL_STATE(3209)] = 111337, + [SMALL_STATE(3210)] = 111354, + [SMALL_STATE(3211)] = 111365, + [SMALL_STATE(3212)] = 111376, + [SMALL_STATE(3213)] = 111387, + [SMALL_STATE(3214)] = 111398, + [SMALL_STATE(3215)] = 111409, + [SMALL_STATE(3216)] = 111420, + [SMALL_STATE(3217)] = 111439, + [SMALL_STATE(3218)] = 111450, + [SMALL_STATE(3219)] = 111465, + [SMALL_STATE(3220)] = 111476, + [SMALL_STATE(3221)] = 111487, + [SMALL_STATE(3222)] = 111498, + [SMALL_STATE(3223)] = 111509, + [SMALL_STATE(3224)] = 111520, + [SMALL_STATE(3225)] = 111531, + [SMALL_STATE(3226)] = 111542, + [SMALL_STATE(3227)] = 111557, + [SMALL_STATE(3228)] = 111574, + [SMALL_STATE(3229)] = 111589, + [SMALL_STATE(3230)] = 111600, + [SMALL_STATE(3231)] = 111617, + [SMALL_STATE(3232)] = 111636, + [SMALL_STATE(3233)] = 111655, + [SMALL_STATE(3234)] = 111672, + [SMALL_STATE(3235)] = 111683, + [SMALL_STATE(3236)] = 111694, + [SMALL_STATE(3237)] = 111713, + [SMALL_STATE(3238)] = 111732, + [SMALL_STATE(3239)] = 111751, + [SMALL_STATE(3240)] = 111762, + [SMALL_STATE(3241)] = 111773, + [SMALL_STATE(3242)] = 111784, + [SMALL_STATE(3243)] = 111795, + [SMALL_STATE(3244)] = 111806, + [SMALL_STATE(3245)] = 111817, + [SMALL_STATE(3246)] = 111828, + [SMALL_STATE(3247)] = 111843, + [SMALL_STATE(3248)] = 111860, + [SMALL_STATE(3249)] = 111871, + [SMALL_STATE(3250)] = 111882, + [SMALL_STATE(3251)] = 111893, + [SMALL_STATE(3252)] = 111912, + [SMALL_STATE(3253)] = 111923, + [SMALL_STATE(3254)] = 111938, + [SMALL_STATE(3255)] = 111949, + [SMALL_STATE(3256)] = 111966, + [SMALL_STATE(3257)] = 111977, + [SMALL_STATE(3258)] = 111988, + [SMALL_STATE(3259)] = 111999, + [SMALL_STATE(3260)] = 112010, + [SMALL_STATE(3261)] = 112021, + [SMALL_STATE(3262)] = 112032, + [SMALL_STATE(3263)] = 112049, + [SMALL_STATE(3264)] = 112060, + [SMALL_STATE(3265)] = 112071, + [SMALL_STATE(3266)] = 112082, + [SMALL_STATE(3267)] = 112093, + [SMALL_STATE(3268)] = 112104, + [SMALL_STATE(3269)] = 112115, + [SMALL_STATE(3270)] = 112126, + [SMALL_STATE(3271)] = 112141, + [SMALL_STATE(3272)] = 112160, + [SMALL_STATE(3273)] = 112171, + [SMALL_STATE(3274)] = 112182, + [SMALL_STATE(3275)] = 112201, + [SMALL_STATE(3276)] = 112212, + [SMALL_STATE(3277)] = 112223, + [SMALL_STATE(3278)] = 112238, + [SMALL_STATE(3279)] = 112253, + [SMALL_STATE(3280)] = 112264, + [SMALL_STATE(3281)] = 112275, + [SMALL_STATE(3282)] = 112286, + [SMALL_STATE(3283)] = 112303, + [SMALL_STATE(3284)] = 112320, + [SMALL_STATE(3285)] = 112331, + [SMALL_STATE(3286)] = 112342, + [SMALL_STATE(3287)] = 112353, + [SMALL_STATE(3288)] = 112364, + [SMALL_STATE(3289)] = 112375, + [SMALL_STATE(3290)] = 112394, + [SMALL_STATE(3291)] = 112413, + [SMALL_STATE(3292)] = 112424, + [SMALL_STATE(3293)] = 112443, + [SMALL_STATE(3294)] = 112462, + [SMALL_STATE(3295)] = 112481, + [SMALL_STATE(3296)] = 112500, + [SMALL_STATE(3297)] = 112511, + [SMALL_STATE(3298)] = 112526, + [SMALL_STATE(3299)] = 112545, + [SMALL_STATE(3300)] = 112556, + [SMALL_STATE(3301)] = 112567, + [SMALL_STATE(3302)] = 112584, + [SMALL_STATE(3303)] = 112595, + [SMALL_STATE(3304)] = 112606, + [SMALL_STATE(3305)] = 112617, + [SMALL_STATE(3306)] = 112628, + [SMALL_STATE(3307)] = 112639, + [SMALL_STATE(3308)] = 112658, + [SMALL_STATE(3309)] = 112669, + [SMALL_STATE(3310)] = 112680, + [SMALL_STATE(3311)] = 112699, + [SMALL_STATE(3312)] = 112716, + [SMALL_STATE(3313)] = 112727, + [SMALL_STATE(3314)] = 112746, + [SMALL_STATE(3315)] = 112761, + [SMALL_STATE(3316)] = 112776, + [SMALL_STATE(3317)] = 112795, + [SMALL_STATE(3318)] = 112811, + [SMALL_STATE(3319)] = 112825, + [SMALL_STATE(3320)] = 112839, + [SMALL_STATE(3321)] = 112851, + [SMALL_STATE(3322)] = 112867, + [SMALL_STATE(3323)] = 112883, + [SMALL_STATE(3324)] = 112899, + [SMALL_STATE(3325)] = 112913, + [SMALL_STATE(3326)] = 112929, + [SMALL_STATE(3327)] = 112945, + [SMALL_STATE(3328)] = 112961, + [SMALL_STATE(3329)] = 112975, + [SMALL_STATE(3330)] = 112989, + [SMALL_STATE(3331)] = 113005, + [SMALL_STATE(3332)] = 113015, + [SMALL_STATE(3333)] = 113029, + [SMALL_STATE(3334)] = 113043, + [SMALL_STATE(3335)] = 113057, + [SMALL_STATE(3336)] = 113071, + [SMALL_STATE(3337)] = 113087, + [SMALL_STATE(3338)] = 113101, + [SMALL_STATE(3339)] = 113115, + [SMALL_STATE(3340)] = 113129, + [SMALL_STATE(3341)] = 113145, + [SMALL_STATE(3342)] = 113159, + [SMALL_STATE(3343)] = 113173, + [SMALL_STATE(3344)] = 113187, + [SMALL_STATE(3345)] = 113201, + [SMALL_STATE(3346)] = 113217, + [SMALL_STATE(3347)] = 113233, + [SMALL_STATE(3348)] = 113247, + [SMALL_STATE(3349)] = 113261, + [SMALL_STATE(3350)] = 113275, + [SMALL_STATE(3351)] = 113291, + [SMALL_STATE(3352)] = 113307, + [SMALL_STATE(3353)] = 113321, + [SMALL_STATE(3354)] = 113337, + [SMALL_STATE(3355)] = 113353, + [SMALL_STATE(3356)] = 113367, + [SMALL_STATE(3357)] = 113381, + [SMALL_STATE(3358)] = 113397, + [SMALL_STATE(3359)] = 113409, + [SMALL_STATE(3360)] = 113425, + [SMALL_STATE(3361)] = 113439, + [SMALL_STATE(3362)] = 113453, + [SMALL_STATE(3363)] = 113469, + [SMALL_STATE(3364)] = 113483, + [SMALL_STATE(3365)] = 113499, + [SMALL_STATE(3366)] = 113515, + [SMALL_STATE(3367)] = 113531, + [SMALL_STATE(3368)] = 113545, + [SMALL_STATE(3369)] = 113559, + [SMALL_STATE(3370)] = 113575, + [SMALL_STATE(3371)] = 113589, + [SMALL_STATE(3372)] = 113605, + [SMALL_STATE(3373)] = 113619, + [SMALL_STATE(3374)] = 113635, + [SMALL_STATE(3375)] = 113645, + [SMALL_STATE(3376)] = 113661, + [SMALL_STATE(3377)] = 113677, + [SMALL_STATE(3378)] = 113693, + [SMALL_STATE(3379)] = 113709, + [SMALL_STATE(3380)] = 113725, + [SMALL_STATE(3381)] = 113741, + [SMALL_STATE(3382)] = 113757, + [SMALL_STATE(3383)] = 113773, + [SMALL_STATE(3384)] = 113789, + [SMALL_STATE(3385)] = 113803, + [SMALL_STATE(3386)] = 113817, + [SMALL_STATE(3387)] = 113831, + [SMALL_STATE(3388)] = 113845, + [SMALL_STATE(3389)] = 113861, + [SMALL_STATE(3390)] = 113877, + [SMALL_STATE(3391)] = 113891, + [SMALL_STATE(3392)] = 113905, + [SMALL_STATE(3393)] = 113921, + [SMALL_STATE(3394)] = 113935, + [SMALL_STATE(3395)] = 113949, + [SMALL_STATE(3396)] = 113963, + [SMALL_STATE(3397)] = 113977, + [SMALL_STATE(3398)] = 113993, + [SMALL_STATE(3399)] = 114009, + [SMALL_STATE(3400)] = 114025, + [SMALL_STATE(3401)] = 114041, + [SMALL_STATE(3402)] = 114055, + [SMALL_STATE(3403)] = 114069, + [SMALL_STATE(3404)] = 114085, + [SMALL_STATE(3405)] = 114101, + [SMALL_STATE(3406)] = 114117, + [SMALL_STATE(3407)] = 114131, + [SMALL_STATE(3408)] = 114145, + [SMALL_STATE(3409)] = 114159, + [SMALL_STATE(3410)] = 114169, + [SMALL_STATE(3411)] = 114185, + [SMALL_STATE(3412)] = 114201, + [SMALL_STATE(3413)] = 114217, + [SMALL_STATE(3414)] = 114233, + [SMALL_STATE(3415)] = 114247, + [SMALL_STATE(3416)] = 114263, + [SMALL_STATE(3417)] = 114277, + [SMALL_STATE(3418)] = 114291, + [SMALL_STATE(3419)] = 114307, + [SMALL_STATE(3420)] = 114323, + [SMALL_STATE(3421)] = 114339, + [SMALL_STATE(3422)] = 114353, + [SMALL_STATE(3423)] = 114367, + [SMALL_STATE(3424)] = 114383, + [SMALL_STATE(3425)] = 114399, + [SMALL_STATE(3426)] = 114413, + [SMALL_STATE(3427)] = 114429, + [SMALL_STATE(3428)] = 114445, + [SMALL_STATE(3429)] = 114459, + [SMALL_STATE(3430)] = 114475, + [SMALL_STATE(3431)] = 114491, + [SMALL_STATE(3432)] = 114505, + [SMALL_STATE(3433)] = 114519, + [SMALL_STATE(3434)] = 114533, + [SMALL_STATE(3435)] = 114547, + [SMALL_STATE(3436)] = 114561, + [SMALL_STATE(3437)] = 114575, + [SMALL_STATE(3438)] = 114589, + [SMALL_STATE(3439)] = 114605, + [SMALL_STATE(3440)] = 114619, + [SMALL_STATE(3441)] = 114632, + [SMALL_STATE(3442)] = 114645, + [SMALL_STATE(3443)] = 114658, + [SMALL_STATE(3444)] = 114667, + [SMALL_STATE(3445)] = 114680, + [SMALL_STATE(3446)] = 114691, + [SMALL_STATE(3447)] = 114702, + [SMALL_STATE(3448)] = 114715, + [SMALL_STATE(3449)] = 114728, + [SMALL_STATE(3450)] = 114737, + [SMALL_STATE(3451)] = 114746, + [SMALL_STATE(3452)] = 114759, + [SMALL_STATE(3453)] = 114768, + [SMALL_STATE(3454)] = 114781, + [SMALL_STATE(3455)] = 114792, + [SMALL_STATE(3456)] = 114801, + [SMALL_STATE(3457)] = 114814, + [SMALL_STATE(3458)] = 114827, + [SMALL_STATE(3459)] = 114838, + [SMALL_STATE(3460)] = 114847, + [SMALL_STATE(3461)] = 114856, + [SMALL_STATE(3462)] = 114865, + [SMALL_STATE(3463)] = 114878, + [SMALL_STATE(3464)] = 114887, + [SMALL_STATE(3465)] = 114900, + [SMALL_STATE(3466)] = 114913, + [SMALL_STATE(3467)] = 114922, + [SMALL_STATE(3468)] = 114931, + [SMALL_STATE(3469)] = 114940, + [SMALL_STATE(3470)] = 114953, + [SMALL_STATE(3471)] = 114966, + [SMALL_STATE(3472)] = 114979, + [SMALL_STATE(3473)] = 114992, + [SMALL_STATE(3474)] = 115005, + [SMALL_STATE(3475)] = 115018, + [SMALL_STATE(3476)] = 115031, + [SMALL_STATE(3477)] = 115040, + [SMALL_STATE(3478)] = 115053, + [SMALL_STATE(3479)] = 115066, + [SMALL_STATE(3480)] = 115075, + [SMALL_STATE(3481)] = 115088, + [SMALL_STATE(3482)] = 115097, + [SMALL_STATE(3483)] = 115106, + [SMALL_STATE(3484)] = 115115, + [SMALL_STATE(3485)] = 115124, + [SMALL_STATE(3486)] = 115137, + [SMALL_STATE(3487)] = 115146, + [SMALL_STATE(3488)] = 115155, + [SMALL_STATE(3489)] = 115164, + [SMALL_STATE(3490)] = 115175, + [SMALL_STATE(3491)] = 115188, + [SMALL_STATE(3492)] = 115197, + [SMALL_STATE(3493)] = 115210, + [SMALL_STATE(3494)] = 115223, + [SMALL_STATE(3495)] = 115236, + [SMALL_STATE(3496)] = 115249, + [SMALL_STATE(3497)] = 115258, + [SMALL_STATE(3498)] = 115271, + [SMALL_STATE(3499)] = 115282, + [SMALL_STATE(3500)] = 115295, + [SMALL_STATE(3501)] = 115308, + [SMALL_STATE(3502)] = 115321, + [SMALL_STATE(3503)] = 115330, + [SMALL_STATE(3504)] = 115341, + [SMALL_STATE(3505)] = 115354, + [SMALL_STATE(3506)] = 115363, + [SMALL_STATE(3507)] = 115376, + [SMALL_STATE(3508)] = 115389, + [SMALL_STATE(3509)] = 115402, + [SMALL_STATE(3510)] = 115411, + [SMALL_STATE(3511)] = 115422, + [SMALL_STATE(3512)] = 115435, + [SMALL_STATE(3513)] = 115448, + [SMALL_STATE(3514)] = 115461, + [SMALL_STATE(3515)] = 115474, + [SMALL_STATE(3516)] = 115483, + [SMALL_STATE(3517)] = 115492, + [SMALL_STATE(3518)] = 115501, + [SMALL_STATE(3519)] = 115514, + [SMALL_STATE(3520)] = 115527, + [SMALL_STATE(3521)] = 115540, + [SMALL_STATE(3522)] = 115553, + [SMALL_STATE(3523)] = 115562, + [SMALL_STATE(3524)] = 115575, + [SMALL_STATE(3525)] = 115588, + [SMALL_STATE(3526)] = 115597, + [SMALL_STATE(3527)] = 115610, + [SMALL_STATE(3528)] = 115623, + [SMALL_STATE(3529)] = 115636, + [SMALL_STATE(3530)] = 115649, + [SMALL_STATE(3531)] = 115662, + [SMALL_STATE(3532)] = 115675, + [SMALL_STATE(3533)] = 115688, + [SMALL_STATE(3534)] = 115701, + [SMALL_STATE(3535)] = 115714, + [SMALL_STATE(3536)] = 115727, + [SMALL_STATE(3537)] = 115736, + [SMALL_STATE(3538)] = 115749, + [SMALL_STATE(3539)] = 115762, + [SMALL_STATE(3540)] = 115775, + [SMALL_STATE(3541)] = 115786, + [SMALL_STATE(3542)] = 115795, + [SMALL_STATE(3543)] = 115808, + [SMALL_STATE(3544)] = 115821, + [SMALL_STATE(3545)] = 115834, + [SMALL_STATE(3546)] = 115847, + [SMALL_STATE(3547)] = 115860, + [SMALL_STATE(3548)] = 115873, + [SMALL_STATE(3549)] = 115886, + [SMALL_STATE(3550)] = 115899, + [SMALL_STATE(3551)] = 115912, + [SMALL_STATE(3552)] = 115921, + [SMALL_STATE(3553)] = 115934, + [SMALL_STATE(3554)] = 115945, + [SMALL_STATE(3555)] = 115958, + [SMALL_STATE(3556)] = 115967, + [SMALL_STATE(3557)] = 115980, + [SMALL_STATE(3558)] = 115991, + [SMALL_STATE(3559)] = 116000, + [SMALL_STATE(3560)] = 116011, + [SMALL_STATE(3561)] = 116024, + [SMALL_STATE(3562)] = 116037, + [SMALL_STATE(3563)] = 116050, + [SMALL_STATE(3564)] = 116063, + [SMALL_STATE(3565)] = 116076, + [SMALL_STATE(3566)] = 116089, + [SMALL_STATE(3567)] = 116102, + [SMALL_STATE(3568)] = 116115, + [SMALL_STATE(3569)] = 116128, + [SMALL_STATE(3570)] = 116141, + [SMALL_STATE(3571)] = 116154, + [SMALL_STATE(3572)] = 116167, + [SMALL_STATE(3573)] = 116178, + [SMALL_STATE(3574)] = 116191, + [SMALL_STATE(3575)] = 116204, + [SMALL_STATE(3576)] = 116217, + [SMALL_STATE(3577)] = 116230, + [SMALL_STATE(3578)] = 116243, + [SMALL_STATE(3579)] = 116252, + [SMALL_STATE(3580)] = 116265, + [SMALL_STATE(3581)] = 116278, + [SMALL_STATE(3582)] = 116291, + [SMALL_STATE(3583)] = 116304, + [SMALL_STATE(3584)] = 116317, + [SMALL_STATE(3585)] = 116330, + [SMALL_STATE(3586)] = 116343, + [SMALL_STATE(3587)] = 116356, + [SMALL_STATE(3588)] = 116369, + [SMALL_STATE(3589)] = 116382, + [SMALL_STATE(3590)] = 116391, + [SMALL_STATE(3591)] = 116404, + [SMALL_STATE(3592)] = 116413, + [SMALL_STATE(3593)] = 116426, + [SMALL_STATE(3594)] = 116435, + [SMALL_STATE(3595)] = 116444, + [SMALL_STATE(3596)] = 116453, + [SMALL_STATE(3597)] = 116462, + [SMALL_STATE(3598)] = 116475, + [SMALL_STATE(3599)] = 116488, + [SMALL_STATE(3600)] = 116497, + [SMALL_STATE(3601)] = 116510, + [SMALL_STATE(3602)] = 116523, + [SMALL_STATE(3603)] = 116532, + [SMALL_STATE(3604)] = 116541, + [SMALL_STATE(3605)] = 116550, + [SMALL_STATE(3606)] = 116559, + [SMALL_STATE(3607)] = 116568, + [SMALL_STATE(3608)] = 116581, + [SMALL_STATE(3609)] = 116594, + [SMALL_STATE(3610)] = 116607, + [SMALL_STATE(3611)] = 116620, + [SMALL_STATE(3612)] = 116629, + [SMALL_STATE(3613)] = 116638, + [SMALL_STATE(3614)] = 116651, + [SMALL_STATE(3615)] = 116660, + [SMALL_STATE(3616)] = 116669, + [SMALL_STATE(3617)] = 116682, + [SMALL_STATE(3618)] = 116693, + [SMALL_STATE(3619)] = 116702, + [SMALL_STATE(3620)] = 116713, + [SMALL_STATE(3621)] = 116726, + [SMALL_STATE(3622)] = 116735, + [SMALL_STATE(3623)] = 116748, + [SMALL_STATE(3624)] = 116761, + [SMALL_STATE(3625)] = 116770, + [SMALL_STATE(3626)] = 116783, + [SMALL_STATE(3627)] = 116792, + [SMALL_STATE(3628)] = 116801, + [SMALL_STATE(3629)] = 116814, + [SMALL_STATE(3630)] = 116827, + [SMALL_STATE(3631)] = 116840, + [SMALL_STATE(3632)] = 116853, + [SMALL_STATE(3633)] = 116866, + [SMALL_STATE(3634)] = 116875, + [SMALL_STATE(3635)] = 116888, + [SMALL_STATE(3636)] = 116901, + [SMALL_STATE(3637)] = 116912, + [SMALL_STATE(3638)] = 116923, + [SMALL_STATE(3639)] = 116932, + [SMALL_STATE(3640)] = 116941, + [SMALL_STATE(3641)] = 116954, + [SMALL_STATE(3642)] = 116967, + [SMALL_STATE(3643)] = 116980, + [SMALL_STATE(3644)] = 116993, + [SMALL_STATE(3645)] = 117004, + [SMALL_STATE(3646)] = 117017, + [SMALL_STATE(3647)] = 117030, + [SMALL_STATE(3648)] = 117043, + [SMALL_STATE(3649)] = 117056, + [SMALL_STATE(3650)] = 117065, + [SMALL_STATE(3651)] = 117078, + [SMALL_STATE(3652)] = 117091, + [SMALL_STATE(3653)] = 117102, + [SMALL_STATE(3654)] = 117115, + [SMALL_STATE(3655)] = 117128, + [SMALL_STATE(3656)] = 117139, + [SMALL_STATE(3657)] = 117152, + [SMALL_STATE(3658)] = 117163, + [SMALL_STATE(3659)] = 117176, + [SMALL_STATE(3660)] = 117189, + [SMALL_STATE(3661)] = 117200, + [SMALL_STATE(3662)] = 117211, + [SMALL_STATE(3663)] = 117224, + [SMALL_STATE(3664)] = 117237, + [SMALL_STATE(3665)] = 117250, + [SMALL_STATE(3666)] = 117263, + [SMALL_STATE(3667)] = 117276, + [SMALL_STATE(3668)] = 117289, + [SMALL_STATE(3669)] = 117302, + [SMALL_STATE(3670)] = 117313, + [SMALL_STATE(3671)] = 117326, + [SMALL_STATE(3672)] = 117335, + [SMALL_STATE(3673)] = 117345, + [SMALL_STATE(3674)] = 117355, + [SMALL_STATE(3675)] = 117363, + [SMALL_STATE(3676)] = 117373, + [SMALL_STATE(3677)] = 117383, + [SMALL_STATE(3678)] = 117393, + [SMALL_STATE(3679)] = 117403, + [SMALL_STATE(3680)] = 117411, + [SMALL_STATE(3681)] = 117421, + [SMALL_STATE(3682)] = 117431, + [SMALL_STATE(3683)] = 117441, + [SMALL_STATE(3684)] = 117451, + [SMALL_STATE(3685)] = 117459, + [SMALL_STATE(3686)] = 117469, + [SMALL_STATE(3687)] = 117479, + [SMALL_STATE(3688)] = 117487, + [SMALL_STATE(3689)] = 117497, + [SMALL_STATE(3690)] = 117505, + [SMALL_STATE(3691)] = 117515, + [SMALL_STATE(3692)] = 117525, + [SMALL_STATE(3693)] = 117535, + [SMALL_STATE(3694)] = 117545, + [SMALL_STATE(3695)] = 117555, + [SMALL_STATE(3696)] = 117563, + [SMALL_STATE(3697)] = 117571, + [SMALL_STATE(3698)] = 117579, + [SMALL_STATE(3699)] = 117589, + [SMALL_STATE(3700)] = 117599, + [SMALL_STATE(3701)] = 117609, + [SMALL_STATE(3702)] = 117619, + [SMALL_STATE(3703)] = 117627, + [SMALL_STATE(3704)] = 117635, + [SMALL_STATE(3705)] = 117643, + [SMALL_STATE(3706)] = 117653, + [SMALL_STATE(3707)] = 117661, + [SMALL_STATE(3708)] = 117669, + [SMALL_STATE(3709)] = 117679, + [SMALL_STATE(3710)] = 117689, + [SMALL_STATE(3711)] = 117697, + [SMALL_STATE(3712)] = 117705, + [SMALL_STATE(3713)] = 117713, + [SMALL_STATE(3714)] = 117723, + [SMALL_STATE(3715)] = 117733, + [SMALL_STATE(3716)] = 117743, + [SMALL_STATE(3717)] = 117751, + [SMALL_STATE(3718)] = 117759, + [SMALL_STATE(3719)] = 117767, + [SMALL_STATE(3720)] = 117775, + [SMALL_STATE(3721)] = 117783, + [SMALL_STATE(3722)] = 117793, + [SMALL_STATE(3723)] = 117803, + [SMALL_STATE(3724)] = 117811, + [SMALL_STATE(3725)] = 117821, + [SMALL_STATE(3726)] = 117829, + [SMALL_STATE(3727)] = 117837, + [SMALL_STATE(3728)] = 117847, + [SMALL_STATE(3729)] = 117855, + [SMALL_STATE(3730)] = 117863, + [SMALL_STATE(3731)] = 117871, + [SMALL_STATE(3732)] = 117881, + [SMALL_STATE(3733)] = 117891, + [SMALL_STATE(3734)] = 117899, + [SMALL_STATE(3735)] = 117909, + [SMALL_STATE(3736)] = 117917, + [SMALL_STATE(3737)] = 117925, + [SMALL_STATE(3738)] = 117935, + [SMALL_STATE(3739)] = 117943, + [SMALL_STATE(3740)] = 117953, + [SMALL_STATE(3741)] = 117961, + [SMALL_STATE(3742)] = 117971, + [SMALL_STATE(3743)] = 117981, + [SMALL_STATE(3744)] = 117989, + [SMALL_STATE(3745)] = 117999, + [SMALL_STATE(3746)] = 118007, + [SMALL_STATE(3747)] = 118015, + [SMALL_STATE(3748)] = 118025, + [SMALL_STATE(3749)] = 118033, + [SMALL_STATE(3750)] = 118043, + [SMALL_STATE(3751)] = 118051, + [SMALL_STATE(3752)] = 118061, + [SMALL_STATE(3753)] = 118069, + [SMALL_STATE(3754)] = 118079, + [SMALL_STATE(3755)] = 118089, + [SMALL_STATE(3756)] = 118097, + [SMALL_STATE(3757)] = 118105, + [SMALL_STATE(3758)] = 118115, + [SMALL_STATE(3759)] = 118125, + [SMALL_STATE(3760)] = 118135, + [SMALL_STATE(3761)] = 118145, + [SMALL_STATE(3762)] = 118155, + [SMALL_STATE(3763)] = 118165, + [SMALL_STATE(3764)] = 118175, + [SMALL_STATE(3765)] = 118183, + [SMALL_STATE(3766)] = 118193, + [SMALL_STATE(3767)] = 118203, + [SMALL_STATE(3768)] = 118213, + [SMALL_STATE(3769)] = 118223, + [SMALL_STATE(3770)] = 118231, + [SMALL_STATE(3771)] = 118241, + [SMALL_STATE(3772)] = 118251, + [SMALL_STATE(3773)] = 118261, + [SMALL_STATE(3774)] = 118271, + [SMALL_STATE(3775)] = 118279, + [SMALL_STATE(3776)] = 118289, + [SMALL_STATE(3777)] = 118299, + [SMALL_STATE(3778)] = 118309, + [SMALL_STATE(3779)] = 118317, + [SMALL_STATE(3780)] = 118325, + [SMALL_STATE(3781)] = 118333, + [SMALL_STATE(3782)] = 118341, + [SMALL_STATE(3783)] = 118349, + [SMALL_STATE(3784)] = 118359, + [SMALL_STATE(3785)] = 118369, + [SMALL_STATE(3786)] = 118377, + [SMALL_STATE(3787)] = 118387, + [SMALL_STATE(3788)] = 118395, + [SMALL_STATE(3789)] = 118405, + [SMALL_STATE(3790)] = 118415, + [SMALL_STATE(3791)] = 118425, + [SMALL_STATE(3792)] = 118435, + [SMALL_STATE(3793)] = 118445, + [SMALL_STATE(3794)] = 118455, + [SMALL_STATE(3795)] = 118465, + [SMALL_STATE(3796)] = 118475, + [SMALL_STATE(3797)] = 118485, + [SMALL_STATE(3798)] = 118495, + [SMALL_STATE(3799)] = 118505, + [SMALL_STATE(3800)] = 118515, + [SMALL_STATE(3801)] = 118525, + [SMALL_STATE(3802)] = 118535, + [SMALL_STATE(3803)] = 118545, + [SMALL_STATE(3804)] = 118555, + [SMALL_STATE(3805)] = 118565, + [SMALL_STATE(3806)] = 118575, + [SMALL_STATE(3807)] = 118583, + [SMALL_STATE(3808)] = 118593, + [SMALL_STATE(3809)] = 118603, + [SMALL_STATE(3810)] = 118613, + [SMALL_STATE(3811)] = 118623, + [SMALL_STATE(3812)] = 118633, + [SMALL_STATE(3813)] = 118643, + [SMALL_STATE(3814)] = 118653, + [SMALL_STATE(3815)] = 118663, + [SMALL_STATE(3816)] = 118671, + [SMALL_STATE(3817)] = 118681, + [SMALL_STATE(3818)] = 118691, + [SMALL_STATE(3819)] = 118701, + [SMALL_STATE(3820)] = 118711, + [SMALL_STATE(3821)] = 118721, + [SMALL_STATE(3822)] = 118731, + [SMALL_STATE(3823)] = 118741, + [SMALL_STATE(3824)] = 118751, + [SMALL_STATE(3825)] = 118761, + [SMALL_STATE(3826)] = 118771, + [SMALL_STATE(3827)] = 118781, + [SMALL_STATE(3828)] = 118791, + [SMALL_STATE(3829)] = 118801, + [SMALL_STATE(3830)] = 118811, + [SMALL_STATE(3831)] = 118819, + [SMALL_STATE(3832)] = 118829, + [SMALL_STATE(3833)] = 118837, + [SMALL_STATE(3834)] = 118847, + [SMALL_STATE(3835)] = 118857, + [SMALL_STATE(3836)] = 118867, + [SMALL_STATE(3837)] = 118877, + [SMALL_STATE(3838)] = 118887, + [SMALL_STATE(3839)] = 118897, + [SMALL_STATE(3840)] = 118907, + [SMALL_STATE(3841)] = 118915, + [SMALL_STATE(3842)] = 118925, + [SMALL_STATE(3843)] = 118935, + [SMALL_STATE(3844)] = 118945, + [SMALL_STATE(3845)] = 118955, + [SMALL_STATE(3846)] = 118965, + [SMALL_STATE(3847)] = 118975, + [SMALL_STATE(3848)] = 118985, + [SMALL_STATE(3849)] = 118995, + [SMALL_STATE(3850)] = 119003, + [SMALL_STATE(3851)] = 119013, + [SMALL_STATE(3852)] = 119023, + [SMALL_STATE(3853)] = 119031, + [SMALL_STATE(3854)] = 119041, + [SMALL_STATE(3855)] = 119051, + [SMALL_STATE(3856)] = 119059, + [SMALL_STATE(3857)] = 119069, + [SMALL_STATE(3858)] = 119079, + [SMALL_STATE(3859)] = 119089, + [SMALL_STATE(3860)] = 119099, + [SMALL_STATE(3861)] = 119109, + [SMALL_STATE(3862)] = 119119, + [SMALL_STATE(3863)] = 119129, + [SMALL_STATE(3864)] = 119139, + [SMALL_STATE(3865)] = 119149, + [SMALL_STATE(3866)] = 119159, + [SMALL_STATE(3867)] = 119169, + [SMALL_STATE(3868)] = 119179, + [SMALL_STATE(3869)] = 119189, + [SMALL_STATE(3870)] = 119199, + [SMALL_STATE(3871)] = 119207, + [SMALL_STATE(3872)] = 119217, + [SMALL_STATE(3873)] = 119227, + [SMALL_STATE(3874)] = 119235, + [SMALL_STATE(3875)] = 119245, + [SMALL_STATE(3876)] = 119253, + [SMALL_STATE(3877)] = 119263, + [SMALL_STATE(3878)] = 119273, + [SMALL_STATE(3879)] = 119281, + [SMALL_STATE(3880)] = 119291, + [SMALL_STATE(3881)] = 119301, + [SMALL_STATE(3882)] = 119309, + [SMALL_STATE(3883)] = 119319, + [SMALL_STATE(3884)] = 119329, + [SMALL_STATE(3885)] = 119337, + [SMALL_STATE(3886)] = 119347, + [SMALL_STATE(3887)] = 119357, + [SMALL_STATE(3888)] = 119367, + [SMALL_STATE(3889)] = 119377, + [SMALL_STATE(3890)] = 119387, + [SMALL_STATE(3891)] = 119397, + [SMALL_STATE(3892)] = 119407, + [SMALL_STATE(3893)] = 119417, + [SMALL_STATE(3894)] = 119427, + [SMALL_STATE(3895)] = 119437, + [SMALL_STATE(3896)] = 119447, + [SMALL_STATE(3897)] = 119457, + [SMALL_STATE(3898)] = 119467, + [SMALL_STATE(3899)] = 119475, + [SMALL_STATE(3900)] = 119485, + [SMALL_STATE(3901)] = 119495, + [SMALL_STATE(3902)] = 119505, + [SMALL_STATE(3903)] = 119513, + [SMALL_STATE(3904)] = 119523, + [SMALL_STATE(3905)] = 119533, + [SMALL_STATE(3906)] = 119543, + [SMALL_STATE(3907)] = 119553, + [SMALL_STATE(3908)] = 119563, + [SMALL_STATE(3909)] = 119573, + [SMALL_STATE(3910)] = 119583, + [SMALL_STATE(3911)] = 119593, + [SMALL_STATE(3912)] = 119603, + [SMALL_STATE(3913)] = 119613, + [SMALL_STATE(3914)] = 119623, + [SMALL_STATE(3915)] = 119633, + [SMALL_STATE(3916)] = 119643, + [SMALL_STATE(3917)] = 119653, + [SMALL_STATE(3918)] = 119663, + [SMALL_STATE(3919)] = 119671, + [SMALL_STATE(3920)] = 119681, + [SMALL_STATE(3921)] = 119691, + [SMALL_STATE(3922)] = 119701, + [SMALL_STATE(3923)] = 119711, + [SMALL_STATE(3924)] = 119719, + [SMALL_STATE(3925)] = 119729, + [SMALL_STATE(3926)] = 119739, + [SMALL_STATE(3927)] = 119749, + [SMALL_STATE(3928)] = 119759, + [SMALL_STATE(3929)] = 119769, + [SMALL_STATE(3930)] = 119777, + [SMALL_STATE(3931)] = 119785, + [SMALL_STATE(3932)] = 119795, + [SMALL_STATE(3933)] = 119805, + [SMALL_STATE(3934)] = 119813, + [SMALL_STATE(3935)] = 119821, + [SMALL_STATE(3936)] = 119831, + [SMALL_STATE(3937)] = 119841, + [SMALL_STATE(3938)] = 119849, + [SMALL_STATE(3939)] = 119859, + [SMALL_STATE(3940)] = 119867, + [SMALL_STATE(3941)] = 119877, + [SMALL_STATE(3942)] = 119884, + [SMALL_STATE(3943)] = 119891, + [SMALL_STATE(3944)] = 119898, + [SMALL_STATE(3945)] = 119905, + [SMALL_STATE(3946)] = 119912, + [SMALL_STATE(3947)] = 119919, + [SMALL_STATE(3948)] = 119926, + [SMALL_STATE(3949)] = 119933, + [SMALL_STATE(3950)] = 119940, + [SMALL_STATE(3951)] = 119947, + [SMALL_STATE(3952)] = 119954, + [SMALL_STATE(3953)] = 119961, + [SMALL_STATE(3954)] = 119968, + [SMALL_STATE(3955)] = 119975, + [SMALL_STATE(3956)] = 119982, + [SMALL_STATE(3957)] = 119989, + [SMALL_STATE(3958)] = 119996, + [SMALL_STATE(3959)] = 120003, + [SMALL_STATE(3960)] = 120010, + [SMALL_STATE(3961)] = 120017, + [SMALL_STATE(3962)] = 120024, + [SMALL_STATE(3963)] = 120031, + [SMALL_STATE(3964)] = 120038, + [SMALL_STATE(3965)] = 120045, + [SMALL_STATE(3966)] = 120052, + [SMALL_STATE(3967)] = 120059, + [SMALL_STATE(3968)] = 120066, + [SMALL_STATE(3969)] = 120073, + [SMALL_STATE(3970)] = 120080, + [SMALL_STATE(3971)] = 120087, + [SMALL_STATE(3972)] = 120094, + [SMALL_STATE(3973)] = 120101, + [SMALL_STATE(3974)] = 120108, + [SMALL_STATE(3975)] = 120115, + [SMALL_STATE(3976)] = 120122, + [SMALL_STATE(3977)] = 120129, + [SMALL_STATE(3978)] = 120136, + [SMALL_STATE(3979)] = 120143, + [SMALL_STATE(3980)] = 120150, + [SMALL_STATE(3981)] = 120157, + [SMALL_STATE(3982)] = 120164, + [SMALL_STATE(3983)] = 120171, + [SMALL_STATE(3984)] = 120178, + [SMALL_STATE(3985)] = 120185, + [SMALL_STATE(3986)] = 120192, + [SMALL_STATE(3987)] = 120199, + [SMALL_STATE(3988)] = 120206, + [SMALL_STATE(3989)] = 120213, + [SMALL_STATE(3990)] = 120220, + [SMALL_STATE(3991)] = 120227, + [SMALL_STATE(3992)] = 120234, + [SMALL_STATE(3993)] = 120241, + [SMALL_STATE(3994)] = 120248, + [SMALL_STATE(3995)] = 120255, + [SMALL_STATE(3996)] = 120262, + [SMALL_STATE(3997)] = 120269, + [SMALL_STATE(3998)] = 120276, + [SMALL_STATE(3999)] = 120283, + [SMALL_STATE(4000)] = 120290, + [SMALL_STATE(4001)] = 120297, + [SMALL_STATE(4002)] = 120304, + [SMALL_STATE(4003)] = 120311, + [SMALL_STATE(4004)] = 120318, + [SMALL_STATE(4005)] = 120325, + [SMALL_STATE(4006)] = 120332, + [SMALL_STATE(4007)] = 120339, + [SMALL_STATE(4008)] = 120346, + [SMALL_STATE(4009)] = 120353, + [SMALL_STATE(4010)] = 120360, + [SMALL_STATE(4011)] = 120367, + [SMALL_STATE(4012)] = 120374, + [SMALL_STATE(4013)] = 120381, + [SMALL_STATE(4014)] = 120388, + [SMALL_STATE(4015)] = 120395, + [SMALL_STATE(4016)] = 120402, + [SMALL_STATE(4017)] = 120409, + [SMALL_STATE(4018)] = 120416, + [SMALL_STATE(4019)] = 120423, + [SMALL_STATE(4020)] = 120430, + [SMALL_STATE(4021)] = 120437, + [SMALL_STATE(4022)] = 120444, + [SMALL_STATE(4023)] = 120451, + [SMALL_STATE(4024)] = 120458, + [SMALL_STATE(4025)] = 120465, + [SMALL_STATE(4026)] = 120472, + [SMALL_STATE(4027)] = 120479, + [SMALL_STATE(4028)] = 120486, + [SMALL_STATE(4029)] = 120493, + [SMALL_STATE(4030)] = 120500, + [SMALL_STATE(4031)] = 120507, + [SMALL_STATE(4032)] = 120514, + [SMALL_STATE(4033)] = 120521, + [SMALL_STATE(4034)] = 120528, + [SMALL_STATE(4035)] = 120535, + [SMALL_STATE(4036)] = 120542, + [SMALL_STATE(4037)] = 120549, + [SMALL_STATE(4038)] = 120556, + [SMALL_STATE(4039)] = 120563, + [SMALL_STATE(4040)] = 120570, + [SMALL_STATE(4041)] = 120577, + [SMALL_STATE(4042)] = 120584, + [SMALL_STATE(4043)] = 120591, + [SMALL_STATE(4044)] = 120598, + [SMALL_STATE(4045)] = 120605, + [SMALL_STATE(4046)] = 120612, + [SMALL_STATE(4047)] = 120619, + [SMALL_STATE(4048)] = 120626, + [SMALL_STATE(4049)] = 120633, + [SMALL_STATE(4050)] = 120640, + [SMALL_STATE(4051)] = 120647, + [SMALL_STATE(4052)] = 120654, + [SMALL_STATE(4053)] = 120661, + [SMALL_STATE(4054)] = 120668, + [SMALL_STATE(4055)] = 120675, + [SMALL_STATE(4056)] = 120682, + [SMALL_STATE(4057)] = 120689, + [SMALL_STATE(4058)] = 120696, + [SMALL_STATE(4059)] = 120703, + [SMALL_STATE(4060)] = 120710, + [SMALL_STATE(4061)] = 120717, + [SMALL_STATE(4062)] = 120724, + [SMALL_STATE(4063)] = 120731, + [SMALL_STATE(4064)] = 120738, + [SMALL_STATE(4065)] = 120745, + [SMALL_STATE(4066)] = 120752, + [SMALL_STATE(4067)] = 120759, + [SMALL_STATE(4068)] = 120766, + [SMALL_STATE(4069)] = 120773, + [SMALL_STATE(4070)] = 120780, + [SMALL_STATE(4071)] = 120787, + [SMALL_STATE(4072)] = 120794, + [SMALL_STATE(4073)] = 120801, + [SMALL_STATE(4074)] = 120808, + [SMALL_STATE(4075)] = 120815, + [SMALL_STATE(4076)] = 120822, + [SMALL_STATE(4077)] = 120829, + [SMALL_STATE(4078)] = 120836, + [SMALL_STATE(4079)] = 120843, + [SMALL_STATE(4080)] = 120850, + [SMALL_STATE(4081)] = 120857, + [SMALL_STATE(4082)] = 120864, + [SMALL_STATE(4083)] = 120871, + [SMALL_STATE(4084)] = 120878, + [SMALL_STATE(4085)] = 120885, + [SMALL_STATE(4086)] = 120892, + [SMALL_STATE(4087)] = 120899, + [SMALL_STATE(4088)] = 120906, + [SMALL_STATE(4089)] = 120913, + [SMALL_STATE(4090)] = 120920, + [SMALL_STATE(4091)] = 120927, + [SMALL_STATE(4092)] = 120934, + [SMALL_STATE(4093)] = 120941, + [SMALL_STATE(4094)] = 120948, + [SMALL_STATE(4095)] = 120955, + [SMALL_STATE(4096)] = 120962, + [SMALL_STATE(4097)] = 120969, + [SMALL_STATE(4098)] = 120976, + [SMALL_STATE(4099)] = 120983, + [SMALL_STATE(4100)] = 120990, + [SMALL_STATE(4101)] = 120997, + [SMALL_STATE(4102)] = 121004, + [SMALL_STATE(4103)] = 121011, + [SMALL_STATE(4104)] = 121018, + [SMALL_STATE(4105)] = 121025, + [SMALL_STATE(4106)] = 121032, + [SMALL_STATE(4107)] = 121039, + [SMALL_STATE(4108)] = 121046, + [SMALL_STATE(4109)] = 121053, + [SMALL_STATE(4110)] = 121060, + [SMALL_STATE(4111)] = 121067, + [SMALL_STATE(4112)] = 121074, + [SMALL_STATE(4113)] = 121081, + [SMALL_STATE(4114)] = 121088, + [SMALL_STATE(4115)] = 121095, + [SMALL_STATE(4116)] = 121102, + [SMALL_STATE(4117)] = 121109, + [SMALL_STATE(4118)] = 121116, + [SMALL_STATE(4119)] = 121123, + [SMALL_STATE(4120)] = 121130, + [SMALL_STATE(4121)] = 121137, + [SMALL_STATE(4122)] = 121144, + [SMALL_STATE(4123)] = 121151, + [SMALL_STATE(4124)] = 121158, + [SMALL_STATE(4125)] = 121165, + [SMALL_STATE(4126)] = 121172, + [SMALL_STATE(4127)] = 121179, + [SMALL_STATE(4128)] = 121186, + [SMALL_STATE(4129)] = 121193, + [SMALL_STATE(4130)] = 121200, + [SMALL_STATE(4131)] = 121207, + [SMALL_STATE(4132)] = 121214, + [SMALL_STATE(4133)] = 121221, + [SMALL_STATE(4134)] = 121228, + [SMALL_STATE(4135)] = 121235, + [SMALL_STATE(4136)] = 121242, + [SMALL_STATE(4137)] = 121249, + [SMALL_STATE(4138)] = 121256, + [SMALL_STATE(4139)] = 121263, + [SMALL_STATE(4140)] = 121270, + [SMALL_STATE(4141)] = 121277, + [SMALL_STATE(4142)] = 121284, + [SMALL_STATE(4143)] = 121291, + [SMALL_STATE(4144)] = 121298, + [SMALL_STATE(4145)] = 121305, + [SMALL_STATE(4146)] = 121312, + [SMALL_STATE(4147)] = 121319, + [SMALL_STATE(4148)] = 121326, + [SMALL_STATE(4149)] = 121333, + [SMALL_STATE(4150)] = 121340, + [SMALL_STATE(4151)] = 121347, + [SMALL_STATE(4152)] = 121354, + [SMALL_STATE(4153)] = 121361, + [SMALL_STATE(4154)] = 121368, + [SMALL_STATE(4155)] = 121375, + [SMALL_STATE(4156)] = 121382, + [SMALL_STATE(4157)] = 121389, + [SMALL_STATE(4158)] = 121396, + [SMALL_STATE(4159)] = 121403, + [SMALL_STATE(4160)] = 121410, + [SMALL_STATE(4161)] = 121417, + [SMALL_STATE(4162)] = 121424, + [SMALL_STATE(4163)] = 121431, + [SMALL_STATE(4164)] = 121438, + [SMALL_STATE(4165)] = 121445, + [SMALL_STATE(4166)] = 121452, + [SMALL_STATE(4167)] = 121459, + [SMALL_STATE(4168)] = 121466, + [SMALL_STATE(4169)] = 121473, + [SMALL_STATE(4170)] = 121480, + [SMALL_STATE(4171)] = 121487, + [SMALL_STATE(4172)] = 121494, + [SMALL_STATE(4173)] = 121501, + [SMALL_STATE(4174)] = 121508, + [SMALL_STATE(4175)] = 121515, + [SMALL_STATE(4176)] = 121522, + [SMALL_STATE(4177)] = 121529, + [SMALL_STATE(4178)] = 121536, + [SMALL_STATE(4179)] = 121543, + [SMALL_STATE(4180)] = 121550, + [SMALL_STATE(4181)] = 121557, + [SMALL_STATE(4182)] = 121564, + [SMALL_STATE(4183)] = 121571, + [SMALL_STATE(4184)] = 121578, + [SMALL_STATE(4185)] = 121585, + [SMALL_STATE(4186)] = 121592, + [SMALL_STATE(4187)] = 121599, + [SMALL_STATE(4188)] = 121606, + [SMALL_STATE(4189)] = 121613, + [SMALL_STATE(4190)] = 121620, + [SMALL_STATE(4191)] = 121627, + [SMALL_STATE(4192)] = 121634, + [SMALL_STATE(4193)] = 121641, + [SMALL_STATE(4194)] = 121648, + [SMALL_STATE(4195)] = 121655, + [SMALL_STATE(4196)] = 121662, + [SMALL_STATE(4197)] = 121669, + [SMALL_STATE(4198)] = 121676, + [SMALL_STATE(4199)] = 121683, + [SMALL_STATE(4200)] = 121690, + [SMALL_STATE(4201)] = 121697, + [SMALL_STATE(4202)] = 121704, + [SMALL_STATE(4203)] = 121711, + [SMALL_STATE(4204)] = 121718, + [SMALL_STATE(4205)] = 121725, + [SMALL_STATE(4206)] = 121732, + [SMALL_STATE(4207)] = 121739, + [SMALL_STATE(4208)] = 121746, + [SMALL_STATE(4209)] = 121753, + [SMALL_STATE(4210)] = 121760, + [SMALL_STATE(4211)] = 121767, + [SMALL_STATE(4212)] = 121774, + [SMALL_STATE(4213)] = 121781, + [SMALL_STATE(4214)] = 121788, + [SMALL_STATE(4215)] = 121795, + [SMALL_STATE(4216)] = 121802, + [SMALL_STATE(4217)] = 121809, + [SMALL_STATE(4218)] = 121816, + [SMALL_STATE(4219)] = 121823, + [SMALL_STATE(4220)] = 121830, + [SMALL_STATE(4221)] = 121837, + [SMALL_STATE(4222)] = 121844, + [SMALL_STATE(4223)] = 121851, + [SMALL_STATE(4224)] = 121858, + [SMALL_STATE(4225)] = 121865, + [SMALL_STATE(4226)] = 121872, + [SMALL_STATE(4227)] = 121879, + [SMALL_STATE(4228)] = 121886, + [SMALL_STATE(4229)] = 121893, + [SMALL_STATE(4230)] = 121900, + [SMALL_STATE(4231)] = 121907, + [SMALL_STATE(4232)] = 121914, + [SMALL_STATE(4233)] = 121921, + [SMALL_STATE(4234)] = 121928, + [SMALL_STATE(4235)] = 121935, + [SMALL_STATE(4236)] = 121942, + [SMALL_STATE(4237)] = 121949, + [SMALL_STATE(4238)] = 121956, + [SMALL_STATE(4239)] = 121963, + [SMALL_STATE(4240)] = 121970, + [SMALL_STATE(4241)] = 121977, + [SMALL_STATE(4242)] = 121984, + [SMALL_STATE(4243)] = 121991, + [SMALL_STATE(4244)] = 121998, + [SMALL_STATE(4245)] = 122005, + [SMALL_STATE(4246)] = 122012, + [SMALL_STATE(4247)] = 122019, + [SMALL_STATE(4248)] = 122026, + [SMALL_STATE(4249)] = 122033, + [SMALL_STATE(4250)] = 122040, + [SMALL_STATE(4251)] = 122047, + [SMALL_STATE(4252)] = 122054, + [SMALL_STATE(4253)] = 122061, + [SMALL_STATE(4254)] = 122068, + [SMALL_STATE(4255)] = 122075, + [SMALL_STATE(4256)] = 122082, + [SMALL_STATE(4257)] = 122089, + [SMALL_STATE(4258)] = 122096, + [SMALL_STATE(4259)] = 122103, + [SMALL_STATE(4260)] = 122110, + [SMALL_STATE(4261)] = 122117, + [SMALL_STATE(4262)] = 122124, + [SMALL_STATE(4263)] = 122131, + [SMALL_STATE(4264)] = 122138, + [SMALL_STATE(4265)] = 122145, + [SMALL_STATE(4266)] = 122152, + [SMALL_STATE(4267)] = 122159, + [SMALL_STATE(4268)] = 122166, + [SMALL_STATE(4269)] = 122173, + [SMALL_STATE(4270)] = 122180, + [SMALL_STATE(4271)] = 122187, + [SMALL_STATE(4272)] = 122194, + [SMALL_STATE(4273)] = 122201, + [SMALL_STATE(4274)] = 122208, + [SMALL_STATE(4275)] = 122215, + [SMALL_STATE(4276)] = 122222, + [SMALL_STATE(4277)] = 122229, + [SMALL_STATE(4278)] = 122236, + [SMALL_STATE(4279)] = 122243, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -208693,3762 +209634,3787 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(431), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(377), [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(481), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(420), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4090), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(401), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(401), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4268), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(414), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(414), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(406), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(366), [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1090), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(524), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1108), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(526), [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1065), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(989), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1059), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(991), [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(319), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1174), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2870), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2764), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2748), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(319), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3922), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3921), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3429), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(443), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1178), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2784), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2791), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2769), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(443), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3681), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3683), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3447), [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(115), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(345), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3920), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(41), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3915), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3912), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3433), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3434), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3911), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(206), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(292), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(616), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(344), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3691), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(42), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3692), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3693), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3553), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3458), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3697), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(218), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(619), [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(90), [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(149), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3910), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(820), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4239), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2639), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(560), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2775), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(264), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(407), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(407), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3314), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3309), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2937), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1898), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1898), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1872), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3442), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1094), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(530), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(993), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4226), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4225), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4224), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 206), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 206), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 57), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 57), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 58), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 58), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(116), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(145), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(820), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3013), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3703), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2635), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(566), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2843), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(296), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4256), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(812), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(314), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(314), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3329), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3333), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2920), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1953), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1953), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1950), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3598), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1101), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(531), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(994), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4249), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4244), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4243), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 208), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 208), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 48), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 48), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 49), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 49), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(116), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(140), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(812), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2929), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 30), [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 30), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 201), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 201), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 201), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 201), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 165), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 165), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 165), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 165), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 156), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 156), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 156), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 156), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 27), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 27), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 166), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 166), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 166), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 166), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 56), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 56), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 56), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 56), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 156), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 156), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 156), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 156), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 105), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 105), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 105), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 105), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 123), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 123), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 123), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 123), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 115), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 115), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 115), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 115), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 151), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 151), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 151), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 151), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 106), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 106), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 106), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 106), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 195), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 195), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 195), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 195), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [1596] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2363), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1608] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2575), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(40), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2281), - [1902] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(120), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(360), - [1909] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3777), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(120), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3777), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 30), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(240), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(453), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 209), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 209), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 35), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 35), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 231), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 231), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 114), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 114), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 106), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 106), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 105), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 105), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 122), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 122), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 46), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 46), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 126), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 126), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 23), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 23), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 25), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 25), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 126), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 126), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 208), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 208), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 203), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 203), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 202), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 202), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 134), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 134), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 166), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 166), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 165), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 165), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 200), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 200), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 31), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 31), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 198), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 198), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 80), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 80), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 196), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 196), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 56), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 56), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 34), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 34), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 156), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 156), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 65), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 65), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 156), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 156), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 36), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 36), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 158), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 158), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 151), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 151), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 96), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 96), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 168), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 168), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 164), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 164), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 89), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 89), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 157), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 157), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 80), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 80), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 175), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 175), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 195), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 195), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 76), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 76), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 226), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 226), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 78), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 78), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 79), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 79), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 46), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 46), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 155), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 155), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 198), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 198), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 200), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 200), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 201), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 201), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 227), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 227), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 88), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 88), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 87), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 87), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 34), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 34), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 45), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 45), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 78), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 78), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 170), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 170), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 115), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 115), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 84), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 84), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 173), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 173), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 230), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 230), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 207), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 207), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 174), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 174), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 90), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 90), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 147), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 147), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 147), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 147), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 189), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 189), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 189), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 189), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 82), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 82), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 81), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 81), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 203), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 203), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 203), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 203), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 167), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 167), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 167), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 167), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 100), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 100), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 100), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 100), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 147), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 147), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 147), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 147), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 101), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 101), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 101), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 101), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 142), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 142), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 142), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 142), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 125), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 125), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 125), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 125), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 110), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 110), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 110), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 110), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 27), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 27), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 47), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 47), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 47), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 47), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 168), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 168), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 168), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 168), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [1600] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2610), + [1604] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2385), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(33), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2313), + [1908] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(127), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(357), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [1917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3786), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(127), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3786), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 30), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(265), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(511), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 233), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 233), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 35), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 35), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 211), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 211), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 80), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 80), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 228), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 228), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 100), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 100), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 125), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 125), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 170), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 170), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 172), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 172), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 166), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 166), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 80), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 80), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 142), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 142), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 160), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 160), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 159), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 159), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 109), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 109), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 177), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 177), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 47), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 47), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 142), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 142), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 147), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 147), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 98), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 98), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 31), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 31), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 147), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 147), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 34), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 34), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 36), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 36), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 119), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 119), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 25), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 25), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 100), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 100), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 146), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 146), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 189), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 189), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 91), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 91), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 47), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 47), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 65), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 65), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 136), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 136), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 37), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 110), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 110), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 124), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 124), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 90), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 90), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 89), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 89), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 34), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 34), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 210), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 210), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 128), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 128), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 78), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 78), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 23), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 23), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 200), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 200), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 205), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 205), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 204), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 204), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 168), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 168), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 86), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 86), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 167), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 167), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 202), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 202), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 76), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 76), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 200), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 200), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 130), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 130), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 78), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 78), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 79), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 79), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 202), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 202), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 128), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 128), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 203), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 203), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 229), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 229), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 45), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 45), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 46), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 46), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 46), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 46), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 232), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 232), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 175), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 175), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 92), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 92), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 176), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 176), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 209), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 209), [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 68), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 68), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 162), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 162), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 67), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 67), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 69), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 69), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 70), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 70), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(936), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(3946), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(402), - [3013] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 12), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(3783), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(880), - [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4010), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(429), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 12), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3071] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), REDUCE(sym_rest_pattern, 2), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(246), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3086] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 30), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT_REPEAT(3442), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [3108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(441), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 67), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 67), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT(2631), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1424), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1492), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1396), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1741), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1991), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1533), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3254] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 29), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 12), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 49), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 49), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 48), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 48), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 186), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 186), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 55), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 55), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 147), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 147), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 148), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 148), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 15), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 15), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 66), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 187), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 187), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 146), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 146), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 188), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 188), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 85), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 85), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(82), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 163), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 163), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 220), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 220), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 50), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 50), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 189), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 189), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 26), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 190), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 190), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 24), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 51), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 51), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 54), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 54), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 62), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 62), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 63), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 161), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 99), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 99), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 217), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 217), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 64), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 100), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 100), - [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(82), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 218), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 218), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 63), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 219), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 219), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 101), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 101), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 101), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 103), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 103), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 221), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 221), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 68), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 68), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 141), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 141), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 142), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 142), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 240), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 240), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 113), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 143), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 143), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 145), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 145), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 144), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 144), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 110), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 66), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 74), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 81), REDUCE(sym_assignment_expression, 3, .production_id = 24), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 81), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 116), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 116), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 111), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 111), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 113), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 111), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 111), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 110), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 63), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), - [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 104), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 104), - [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(80), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 81), REDUCE(sym_assignment_expression, 3, .production_id = 63), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 29), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 28), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 28), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 77), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 77), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 74), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 73), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 73), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 72), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 72), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 71), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 71), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 121), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 121), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 124), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 124), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 125), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 125), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 57), - [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 57), SHIFT(501), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 57), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), - [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(81), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(80), - [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(80), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 64), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 154), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 154), - [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(80), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 60), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 60), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 59), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 59), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 58), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 58), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 167), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 167), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(81), - [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), REDUCE(sym_object_pattern, 3, .production_id = 29), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 26), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 19), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 19), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4212] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 63), - [4218] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 29), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 57), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2596), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2292), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(239), - [4253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2101), - [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3963), - [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3337), - [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3336), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2404), - [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3461), - [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1938), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2050), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2136), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2002), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2078), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2123), - [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2259), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(83), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(83), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(86), - [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(86), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym__parameter_name, 2, .production_id = 38), - [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(86), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 14), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 82), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(87), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 38), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 38), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), - [4501] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 14), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(87), - [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(86), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(78), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 95), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 95), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 91), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 91), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 133), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 133), - [4612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(78), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4623] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 57), SHIFT(463), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 131), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 131), - [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), REDUCE(sym_object_pattern, 3, .production_id = 29), - [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(78), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 41), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 41), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 176), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 176), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(78), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(85), - [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), - [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 151), REDUCE(sym_class, 6, .production_id = 201), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 151), REDUCE(sym_class, 6, .production_id = 201), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 56), REDUCE(sym_class, 4, .production_id = 123), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 56), REDUCE(sym_class, 4, .production_id = 123), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 58), REDUCE(sym_class, 4, .production_id = 124), - [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 58), REDUCE(sym_class, 4, .production_id = 124), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 59), REDUCE(sym_class, 4, .production_id = 125), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 59), REDUCE(sym_class, 4, .production_id = 125), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 105), REDUCE(sym_class, 5, .production_id = 165), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 105), REDUCE(sym_class, 5, .production_id = 165), - [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 77), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 77), - [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 106), REDUCE(sym_class, 5, .production_id = 166), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 106), REDUCE(sym_class, 5, .production_id = 166), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 167), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 167), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 29), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 258), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 258), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 171), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 171), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 156), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 156), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 204), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 204), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 195), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 195), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 83), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 83), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 268), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 268), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 115), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 115), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 259), - [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 259), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 129), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 129), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 246), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 246), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 247), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 247), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 229), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 229), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 228), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 228), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 11), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 11), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 80), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 137), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 183), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 216), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 183), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), REDUCE(sym_type_parameter, 1, .production_id = 13), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(934), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 137), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 216), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 80), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 216), - [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 137), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 80), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 183), - [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(3783), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 137), - [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 216), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 80), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 183), - [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 29), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 245), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 107), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 185), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 107), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 139), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 136), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 269), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 263), - [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 262), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 97), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 248), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 249), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 237), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 236), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 211), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 210), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 13), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 245), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 177), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 155), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(429), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 98), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 140), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 114), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [5778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(402), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1201), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3967), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(238), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 75), - [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3007), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(258), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 215), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 261), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 260), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 47), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 257), - [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(911), - [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(818), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 178), - [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(853), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 179), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 180), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 252), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), - [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 181), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 266), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 252), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 251), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 250), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 182), - [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(969), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 184), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 239), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 33), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 238), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(973), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 239), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 238), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 235), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 181), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 182), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 234), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 232), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 138), - [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(816), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(924), - [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3200), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 213), - [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(849), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 212), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(907), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 33), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 214), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 85), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 213), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 212), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 138), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 135), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 80), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 197), - [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 197), SHIFT_REPEAT(3371), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 197), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 108), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(895), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 233), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [6392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 40), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 152), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 153), - [6403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 153), SHIFT_REPEAT(324), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 93), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2825), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 159), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 159), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 160), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 160), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3388), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 29), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [6466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3394), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 53), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(177), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 255), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 254), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 253), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(3448), - [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 80), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 264), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 82), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(441), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 256), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 86), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(174), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(155), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 236), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 244), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 243), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 242), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 222), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 210), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 211), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 225), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 224), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 223), - [6772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3750), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 86), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 150), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 32), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 149), - [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 114), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 191), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 192), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 193), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 155), - [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 177), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 194), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(786), - [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 265), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 267), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2757), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 270), - [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2129), - [6946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2053), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2725), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 199), SHIFT_REPEAT(2261), - [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 199), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 132), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 127), - [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 130), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 205), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 127), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 85), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 102), - [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 32), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 33), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 94), - [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 39), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 92), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 169), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 172), - [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 80), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 169), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 31), - [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 52), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7719] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 67), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 67), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 70), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 70), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 164), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 164), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 69), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 69), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 68), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 68), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 122), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 122), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(430), + [3001] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 13), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 13), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4085), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 13), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(870), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 13), SHIFT(3864), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(3987), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(859), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(360), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 13), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3079] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 13), REDUCE(sym_rest_pattern, 2), + [3083] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 30), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(266), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(494), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT_REPEAT(3598), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT(2658), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 67), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 67), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1375), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1401), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1588), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1501), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1994), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1728), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [3260] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 29), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 13), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 12), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 12), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 55), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 55), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 56), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 56), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 195), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 195), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 66), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(85), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 63), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 64), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 63), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 53), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 53), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 74), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 66), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 24), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 26), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 105), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 107), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 108), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 163), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 16), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 16), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 165), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 165), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 87), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 87), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 57), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 57), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 58), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 58), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 61), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 61), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 62), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 62), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 114), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 114), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 115), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 115), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 116), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 116), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 81), REDUCE(sym_nested_type_identifier, 3, .production_id = 116), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 82), REDUCE(sym_nested_type_identifier, 3, .production_id = 116), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 118), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 118), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 68), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 68), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 151), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 151), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 152), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 152), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 153), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 153), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 154), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 154), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 155), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 155), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 156), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 156), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 247), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 247), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 157), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 157), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 227), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 227), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 226), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 226), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 158), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 158), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 225), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 225), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 224), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 224), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 122), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 122), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 193), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 193), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 223), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 223), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 194), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 194), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 197), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 197), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 196), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 196), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(84), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 64), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 52), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 52), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 51), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 51), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 49), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 49), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 71), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 71), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 72), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 72), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 73), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 73), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 74), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 77), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 77), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 28), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 28), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 29), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 28), REDUCE(sym_object_pattern, 3, .production_id = 29), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 105), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 26), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 106), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 106), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 107), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 19), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 19), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(81), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 108), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 106), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 106), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), + [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 112), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 112), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(84), + [4076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(84), + [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(84), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 123), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 123), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 126), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 126), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 127), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 127), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 145), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 145), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 169), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 169), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 48), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(81), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 48), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 48), SHIFT(371), + [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 63), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), + [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 83), REDUCE(sym_assignment_expression, 3, .production_id = 63), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 83), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 83), REDUCE(sym_assignment_expression, 3, .production_id = 24), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(83), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 48), + [4196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(83), + [4199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), + [4255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2581), + [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2298), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(246), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2095), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3991), + [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3436), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3435), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2417), + [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3565), + [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1871), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2031), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2144), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1998), + [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2091), + [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2133), + [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2276), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [4307] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 63), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [4323] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 29), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), + [4352] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 15), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 38), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 38), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(87), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 15), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), + [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), + [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(87), + [4486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(82), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), + [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(82), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 84), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), REDUCE(sym__parameter_name, 2, .production_id = 38), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 178), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 178), + [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 28), REDUCE(sym_object_pattern, 3, .production_id = 29), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4564] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 48), SHIFT(404), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 41), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 41), + [4618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(78), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 133), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 133), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 97), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 97), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), + [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(78), + [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(78), + [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 93), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 93), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(78), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 135), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 135), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(80), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(80), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(80), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 66), SHIFT(80), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [4770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 100), REDUCE(sym_class, 5, .production_id = 167), + [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 100), REDUCE(sym_class, 5, .production_id = 167), + [4776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 101), REDUCE(sym_class, 5, .production_id = 168), + [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 101), REDUCE(sym_class, 5, .production_id = 168), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 142), REDUCE(sym_class, 6, .production_id = 203), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 142), REDUCE(sym_class, 6, .production_id = 203), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), REDUCE(sym_class, 5, .production_id = 169), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), REDUCE(sym_class, 5, .production_id = 169), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 77), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 77), + [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 47), REDUCE(sym_class, 4, .production_id = 125), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 47), REDUCE(sym_class, 4, .production_id = 125), + [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 49), REDUCE(sym_class, 4, .production_id = 126), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 49), REDUCE(sym_class, 4, .production_id = 126), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 50), REDUCE(sym_class, 4, .production_id = 127), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 50), REDUCE(sym_class, 4, .production_id = 127), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 29), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 28), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 261), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 261), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 206), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 206), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 260), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 260), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 270), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 270), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 249), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 249), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 173), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 173), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 189), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 189), + [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 147), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 147), + [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 248), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 248), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 110), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 110), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 85), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 85), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 231), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 231), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 230), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 230), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 131), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 131), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 11), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 11), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 137), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 80), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 187), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 221), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 1), + [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 1), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 137), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 221), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 187), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 80), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), REDUCE(sym_type_parameter, 1, .production_id = 14), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), SHIFT(974), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 221), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 137), + [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 137), + [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 80), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 221), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 187), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 80), + [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), SHIFT(3864), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 187), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 29), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 246), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 102), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 179), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(430), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 146), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(360), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 272), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 269), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 264), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 250), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 251), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 239), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 238), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 113), + [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 99), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 141), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 109), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 150), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 213), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 149), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 212), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 246), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 192), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 102), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 120), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 120), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 121), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 121), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1202), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 120), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 120), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4261), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(264), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3022), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(259), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 75), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(843), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 121), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 121), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 191), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 185), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 183), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 190), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 242), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(905), + [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(828), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 185), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 183), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 245), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 181), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 180), + [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(835), + [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(918), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 237), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 215), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), + [6188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(933), + [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 139), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 219), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 236), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 220), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 242), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 245), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 254), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 33), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 215), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 219), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 222), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(854), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 253), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 234), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 267), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 263), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 262), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 87), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 33), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 256), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 87), + [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(922), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 54), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 259), + [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 139), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 148), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(988), + [6288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3311), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 256), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 29), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 80), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 199), + [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 199), SHIFT_REPEAT(3383), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 199), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 144), + [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 144), SHIFT_REPEAT(398), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 143), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2833), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(187), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 95), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), + [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 162), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 162), + [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 161), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 161), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 40), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [6452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(945), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3421), + [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3422), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 103), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 235), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 60), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 32), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 213), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 252), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 138), + [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(176), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 212), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 214), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 218), + [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 109), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 271), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2760), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 217), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 216), + [6625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(787), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 140), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), + [6640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3790), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 255), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 268), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 266), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 265), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 240), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 244), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 257), + [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(3544), + [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 80), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2063), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [6821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2121), + [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(138), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 182), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 184), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 88), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 186), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 146), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 179), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 188), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 88), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 87), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 243), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), + [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 238), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [6949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(494), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 258), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 84), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 201), SHIFT_REPEAT(2280), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 201), + [6991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2680), + [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 80), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 94), + [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 96), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 207), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 31), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 171), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 174), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 171), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 32), + [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 87), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 59), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 134), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 129), + [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 132), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 33), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 117), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 39), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 129), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7750] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), }; #ifdef __cplusplus